/* =========================================================
   LASER TECH SERVICE
   REALIZACJE.CSS

   PAGE:
   /realizacje/

   IMPORTANT:
   This file extends /css/main.css
========================================================= */


/* =========================================================
   01. PAGE HERO
========================================================= */

.realizacje-hero {
    position: relative;

    overflow: hidden;

    padding: 95px 0 100px;

    background:
        linear-gradient(
            145deg,
            #111112 0%,
            #19191b 55%,
            #101011 100%
        );

    color: var(--white);
}


.realizacje-hero::before {
    content: '';

    position: absolute;

    top: -200px;
    right: -120px;

    width: 560px;
    height: 560px;

    border-radius: 50%;

    background:
        rgba(203, 178, 106, 0.07);

    filter: blur(80px);

    pointer-events: none;
}


.realizacje-hero::after {
    content: '';

    position: absolute;

    left: -180px;
    bottom: -260px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.025);

    filter: blur(80px);

    pointer-events: none;
}


.realizacje-hero .container {
    position: relative;

    z-index: 2;
}


.realizacje-hero__content {
    max-width: 900px;
}


/* =========================================================
   02. BREADCRUMBS
========================================================= */

.breadcrumbs {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    margin-bottom: 42px;

    font-size: 12px;

    font-weight: 500;

    color: rgba(255, 255, 255, 0.38);
}


.breadcrumbs a {
    color: rgba(255, 255, 255, 0.55);

    transition: color var(--transition);
}


.breadcrumbs a:hover {
    color: var(--gold);
}


.breadcrumbs span:last-child {
    color: var(--gold);
}


/* =========================================================
   03. HERO TYPOGRAPHY
========================================================= */

.realizacje-eyebrow {
    display: block;

    margin-bottom: 14px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3.5px;

    text-transform: uppercase;

    color: var(--gold);
}


.realizacje-hero__title {
    max-width: 850px;

    margin: 0 0 25px;

    font-size: clamp(48px, 7vw, 82px);

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -3px;

    background:
        linear-gradient(
            90deg,
            #b98947 0%,
            #faf0a1 52%,
            #c9a85e 100%
        );

    color: transparent;

    background-clip: text;

    -webkit-background-clip: text;
}


.realizacje-hero__text {
    max-width: 760px;

    margin: 0 0 18px;

    font-size: clamp(21px, 2.5vw, 30px);

    font-weight: 500;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.88);
}


.realizacje-hero__description {
    max-width: 720px;

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.52);
}


/* =========================================================
   04. REALIZATIONS SECTION
========================================================= */

.realizacje-section {
    padding: 100px 0 115px;

    background: var(--page-bg);
}


.realizacje-heading {
    max-width: 760px;

    margin-bottom: 55px;
}


.realizacje-heading h2 {
    margin: 0 0 18px;

    font-size: clamp(38px, 5vw, 56px);

    font-weight: 700;

    line-height: 1.12;

    letter-spacing: -1.8px;

    color: var(--text);
}


.realizacje-heading p {
    max-width: 680px;

    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color: var(--text-soft);
}


/* =========================================================
   05. GRID
========================================================= */

.realizacje-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   06. CARD
========================================================= */

.realizacja-card {
    overflow: hidden;

    border:
        1px solid rgba(203, 178, 106, 0.24);

    border-radius: var(--radius-lg);

    background: var(--white);

    box-shadow:
        0 12px 34px rgba(0, 0, 0, 0.06);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


.realizacja-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(203, 178, 106, 0.55);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   07. CARD IMAGE
========================================================= */

.realizacja-card__image {
    position: relative;

    display: block;

    overflow: hidden;

    aspect-ratio: 16 / 10;

    background: #ededed;
}


.realizacja-card__image::after {
    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(0, 0, 0, 0.15) 100%
        );

    pointer-events: none;
}


.realizacja-card__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.realizacja-card:hover .realizacja-card__image img {
    transform: scale(1.035);
}


/* =========================================================
   08. CARD CONTENT
========================================================= */

.realizacja-card__content {
    padding: 30px 30px 32px;
}


.realizacja-card__meta {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 18px;
}


.realizacja-card__meta span {
    display: inline-flex;

    align-items: center;

    min-height: 29px;

    padding: 5px 10px;

    border:
        1px solid rgba(203, 178, 106, 0.28);

    border-radius: 999px;

    background:
        rgba(203, 178, 106, 0.055);

    color: var(--gold-dark);

    font-size: 10px;

    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


.realizacja-card__title {
    margin: 0 0 15px;

    font-size: clamp(24px, 2.4vw, 32px);

    font-weight: 700;

    line-height: 1.3;

    letter-spacing: -0.6px;

    color: var(--text);
}


.realizacja-card__title a {
    transition: color var(--transition);
}


.realizacja-card__title a:hover {
    color: var(--gold-dark);
}


.realizacja-card__text {
    margin: 0 0 23px;

    font-size: 15px;

    line-height: 1.75;

    color: var(--text-soft);
}


.realizacja-card__link {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--gold-dark);

    font-size: 13px;

    font-weight: 700;

    transition:
        color var(--transition),
        gap var(--transition);
}


.realizacja-card__link:hover {
    gap: 14px;

    color: var(--gold);
}


/* =========================================================
   09. EMPTY SPACE PREPARATION
   future cards
========================================================= */

.realizacje-grid::after {
    content: '';

    display: none;
}


/* =========================================================
   10. ABOUT SECTION
========================================================= */

.realizacje-about {
    padding: 110px 0;

    background: var(--section-soft);
}


.realizacje-about__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 90px;
}


.realizacje-about__content {
    max-width: 700px;
}


.realizacje-about__content h2 {
    margin: 0 0 30px;

    font-size: clamp(36px, 4.5vw, 54px);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1.8px;

    color: var(--text);
}


.realizacje-about__content p {
    margin: 0 0 18px;

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-soft);
}


/* =========================================================
   11. STATS
========================================================= */

.realizacje-about__stats {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


.realizacje-stat {
    min-height: 170px;

    padding: 27px 24px;

    border:
        1px solid rgba(203, 178, 106, 0.26);

    border-radius: var(--radius-md);

    background: var(--white);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.045);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.realizacje-stat:hover {
    transform: translateY(-4px);

    border-color:
        rgba(203, 178, 106, 0.55);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.075);
}


.realizacje-stat strong {
    display: block;

    margin-bottom: 9px;

    font-size: clamp(21px, 2.3vw, 28px);

    font-weight: 700;

    line-height: 1.25;

    color: var(--gold-dark);
}


.realizacje-stat span {
    display: block;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.55;

    color: var(--text-soft);
}


/* =========================================================
   12. CTA
========================================================= */

.realizacje-cta {
    position: relative;

    overflow: hidden;

    padding: 105px 0;

    background:
        linear-gradient(
            145deg,
            #111112 0%,
            #19191b 55%,
            #101011 100%
        );

    color: var(--white);
}


.realizacje-cta::before {
    content: '';

    position: absolute;

    top: -180px;
    left: 50%;

    width: 650px;
    height: 420px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        rgba(203, 178, 106, 0.08);

    filter: blur(90px);

    pointer-events: none;
}


.realizacje-cta__inner {
    position: relative;

    z-index: 2;

    max-width: 820px;

    margin: 0 auto;

    text-align: center;
}


.realizacje-cta h2 {
    margin: 0 0 20px;

    font-size: clamp(40px, 5vw, 62px);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -2px;

    color: var(--white);
}


.realizacje-cta p {
    max-width: 650px;

    margin: 0 auto 32px;

    font-size: 16px;

    line-height: 1.75;

    color: rgba(255, 255, 255, 0.58);
}


.realizacje-cta__actions {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;
}


.realizacje-phone {
    display: inline-flex;

    align-items: center;

    min-height: 50px;

    color: var(--white);

    font-size: 17px;

    font-weight: 600;

    transition: color var(--transition);
}


.realizacje-phone:hover {
    color: var(--gold);
}


/* =========================================================
   13. NAVIGATION FIX
   4 items on Realizacje page
========================================================= */

.realizacje-hero + .realizacje-section {
    position: relative;
}


body:is(.pl, .ru) .nav-list {
    white-space: nowrap;
}


/* =========================================================
   14. ACCESSIBILITY
========================================================= */

.realizacja-card__image:focus-visible,
.realizacja-card__title a:focus-visible,
.realizacja-card__link:focus-visible,
.realizacje-phone:focus-visible,
.breadcrumbs a:focus-visible {
    outline:
        2px solid var(--gold);

    outline-offset: 4px;
}


/* =========================================================
   15. TABLET
   <= 900px
========================================================= */

@media (max-width: 900px) {

    .realizacje-hero {
        padding: 80px 0 85px;
    }


    .realizacje-hero__title {
        font-size: 62px;
    }


    .realizacje-section {
        padding: 80px 0 90px;
    }


    .realizacje-grid {
        grid-template-columns: 1fr;
    }


    .realizacja-card {
        max-width: 800px;
    }


    .realizacje-about {
        padding: 85px 0;
    }


    .realizacje-about__grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .realizacje-about__stats {
        max-width: 760px;
    }


    .realizacje-cta {
        padding: 85px 0;
    }

}


/* =========================================================
   16. MOBILE
   <= 650px
========================================================= */

@media (max-width: 650px) {

    /* NAV */

    body:is(.pl, .ru) .nav-list {
        gap: 5px;
    }


    body:is(.pl, .ru) .nav-list__link {
        font-size: 10.5px;
    }


    /* HERO */

    .realizacje-hero {
        padding: 62px 0 68px;
    }


    .breadcrumbs {
        margin-bottom: 30px;

        font-size: 11px;
    }


    .realizacje-eyebrow {
        font-size: 10px;

        letter-spacing: 2.7px;
    }


    .realizacje-hero__title {
        margin-bottom: 20px;

        font-size: 46px;

        letter-spacing: -2px;
    }


    .realizacje-hero__text {
        font-size: 20px;
    }


    .realizacje-hero__description {
        font-size: 14px;
    }


    /* REALIZATIONS */

    .realizacje-section {
        padding: 65px 0 75px;
    }


    .realizacje-heading {
        margin-bottom: 35px;
    }


    .realizacje-heading h2 {
        font-size: 35px;
    }


    .realizacje-heading p {
        font-size: 14px;
    }


    .realizacje-grid {
        gap: 20px;
    }


    .realizacja-card {
        border-radius: 16px;
    }


    .realizacja-card__image {
        aspect-ratio: 4 / 3;
    }


    .realizacja-card__content {
        padding: 23px 20px 26px;
    }


    .realizacja-card__meta {
        margin-bottom: 14px;
    }


    .realizacja-card__title {
        font-size: 24px;
    }


    .realizacja-card__text {
        font-size: 14px;
    }


    /* ABOUT */

    .realizacje-about {
        padding: 70px 0;
    }


    .realizacje-about__grid {
        gap: 40px;
    }


    .realizacje-about__content h2 {
        font-size: 34px;
    }


    .realizacje-about__content p {
        font-size: 14px;
    }


    .realizacje-about__stats {
        grid-template-columns: 1fr;
    }


    .realizacje-stat {
        min-height: 0;

        padding: 23px 20px;
    }


    /* CTA */

    .realizacje-cta {
        padding: 70px 0;
    }


    .realizacje-cta h2 {
        font-size: 38px;
    }


    .realizacje-cta p {
        font-size: 14px;
    }


    .realizacje-cta__actions {
        flex-direction: column;

        gap: 12px;
    }


    .realizacje-cta__actions .btn {
        width: 100%;

        max-width: 340px;
    }


    .realizacje-phone {
        justify-content: center;

        width: 100%;
    }

}


/* =========================================================
   17. SMALL MOBILE
   <= 420px
========================================================= */

@media (max-width: 420px) {

    body:is(.pl, .ru) .nav-list__link {
        font-size: 9.7px;
    }


    .realizacje-hero {
        padding-top: 52px;
    }


    .realizacje-hero__title {
        font-size: 39px;
    }


    .realizacje-hero__text {
        font-size: 18px;
    }


    .realizacje-heading h2 {
        font-size: 31px;
    }


    .realizacja-card__title {
        font-size: 21px;
    }


    .realizacje-about__content h2 {
        font-size: 30px;
    }


    .realizacje-cta h2 {
        font-size: 33px;
    }

}


/* =========================================================
   18. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .realizacja-card,
    .realizacja-card__image img,
    .realizacja-card__link,
    .realizacje-stat {
        transition: none;
    }

}

/* =========================================================
   19. CASE STUDY PAGE
   /realizacje/.../
========================================================= */

/* =========================================================
   20. VIDEO CASE SECTION
========================================================= */

.case-video-section {
    padding: 100px 0;

    background:
        linear-gradient(
            145deg,
            #111112 0%,
            #19191b 55%,
            #101011 100%
        );

    color: var(--white);
}


.case-video-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 420px);

    align-items: center;

    gap: 80px;
}


.case-video-content {
    max-width: 700px;
}


.case-video-content h2 {
    margin: 0 0 24px;

    font-size: clamp(36px, 4.5vw, 54px);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1.8px;

    color: var(--white);
}


.case-video-content p {
    margin: 0 0 18px;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.62);
}


.case-video-wrapper {
    position: relative;

    width: 100%;

    aspect-ratio: 9 / 16;

    overflow: hidden;

    border:
        1px solid rgba(203, 178, 106, 0.28);

    border-radius: var(--radius-xl);

    background: #000;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.35);
}


.case-video-wrapper iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   21. FOUR IMAGE GALLERY
========================================================= */

.case-gallery--four {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}


.case-gallery--four figure {
    height: 420px;
}


/* =========================================================
   22. TABLET VIDEO
========================================================= */

@media (max-width: 900px) {

    .case-video-section {
        padding: 85px 0;
    }


    .case-video-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .case-video-content {
        max-width: 760px;
    }


    .case-video-wrapper {
        width: min(100%, 380px);

        margin: 0 auto;
    }


    .case-gallery--four {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   23. MOBILE VIDEO
========================================================= */

@media (max-width: 650px) {

    .case-video-section {
        padding: 70px 0;
    }


    .case-video-content h2 {
        font-size: 31px;
    }


    .case-video-content p {
        font-size: 14px;
    }


    .case-video-wrapper {
        width: min(100%, 340px);

        border-radius: 18px;
    }


    .case-gallery--four {
        grid-template-columns: 1fr;
    }


    .case-gallery--four figure {
        height: 440px;
    }

}


/* =========================================================
   24. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .case-video-content h2 {
        font-size: 28px;
    }


    .case-video-wrapper {
        width: 100%;
    }


    .case-gallery--four figure {
        height: 390px;
    }

}


/* =========================================================
   CASE HERO
========================================================= */

.case-hero {
    padding: 70px 0 95px;

    background:
        linear-gradient(
            145deg,
            #111112 0%,
            #19191b 55%,
            #101011 100%
        );

    color: var(--white);
}


.case-breadcrumbs {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    margin-bottom: 45px;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.42);
}


.case-breadcrumbs a {
    color: rgba(255, 255, 255, 0.62);

    transition: color var(--transition);
}


.case-breadcrumbs a:hover {
    color: var(--gold);
}


.case-breadcrumbs span:last-child {
    color: var(--gold);
}


.case-hero__grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(380px, 0.9fr);

    align-items: center;

    gap: 70px;
}


.case-hero__content {
    max-width: 720px;
}


.case-hero__title {
    margin: 0 0 18px;

    font-size: clamp(42px, 5vw, 66px);

    font-weight: 800;

    line-height: 1.06;

    letter-spacing: -2.2px;

    background:
        linear-gradient(
            90deg,
            #b98947 0%,
            #faf0a1 52%,
            #c9a85e 100%
        );

    color: transparent;

    background-clip: text;

    -webkit-background-clip: text;
}


.case-hero__model {
    margin: 0 0 20px;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 1px;

    color: var(--gold);
}


.case-hero__lead {
    margin: 0;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.66);
}


.case-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 30px;
}


.case-tags span {
    padding: 8px 12px;

    border: 1px solid rgba(203, 178, 106, 0.28);

    border-radius: 999px;

    background: rgba(203, 178, 106, 0.055);

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.case-hero__image {
    overflow: hidden;

    border: 1px solid rgba(203, 178, 106, 0.22);

    border-radius: var(--radius-xl);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.30);
}


.case-hero__image img {
    width: 100%;
    height: 620px;

    object-fit: cover;
}


/* =========================================================
   CASE INFO
========================================================= */

.case-info {
    border-bottom:
        1px solid rgba(0, 0, 0, 0.07);

    background: var(--white);
}


.case-info__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}


.case-info__item {
    padding: 26px 24px;

    border-right:
        1px solid rgba(0, 0, 0, 0.07);
}


.case-info__item:first-child {
    padding-left: 0;
}


.case-info__item:last-child {
    border-right: 0;
}


.case-info__item span {
    display: block;

    margin-bottom: 6px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: var(--text-soft);
}


.case-info__item strong {
    font-size: 15px;

    font-weight: 700;

    color: var(--text);
}


/* =========================================================
   CASE GENERAL SECTION
========================================================= */

.case-section {
    padding: 95px 0;

    background: var(--white);
}


.case-section--soft {
    background: var(--section-soft);
}


.case-text {
    max-width: 820px;
}


.case-text h2,
.case-work-content h2,
.case-section-heading h2,
.case-result h2 {
    margin: 0 0 25px;

    font-size: clamp(34px, 4vw, 50px);

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -1.6px;

    color: var(--text);
}


.case-text p,
.case-work-content p {
    margin: 0 0 18px;

    font-size: 16px;

    line-height: 1.8;

    color: var(--text-soft);
}


.case-text strong {
    color: var(--gold-dark);
}


/* =========================================================
   WORK GRID
========================================================= */

.case-work-grid {
    display: grid;

    grid-template-columns:
        minmax(380px, 0.95fr)
        minmax(0, 1.05fr);

    align-items: center;

    gap: 75px;
}


.case-work-grid--reverse {
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(380px, 0.95fr);
}


.case-work-image {
    overflow: hidden;

    border-radius: var(--radius-xl);

    border:
        1px solid rgba(203, 178, 106, 0.22);

    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.10);
}


.case-work-image img {
    width: 100%;
    height: 620px;

    object-fit: cover;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.case-service-list {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin: 30px 0 0;

    padding: 0;

    list-style: none;
}


.case-service-list li {
    position: relative;

    padding: 15px 18px 15px 42px;

    border:
        1px solid rgba(203, 178, 106, 0.20);

    border-radius: var(--radius-sm);

    background: var(--white);

    font-size: 14px;

    font-weight: 500;

    line-height: 1.55;

    color: var(--text);
}


.case-service-list li::before {
    content: '✓';

    position: absolute;

    top: 15px;
    left: 16px;

    color: var(--gold-dark);

    font-weight: 800;
}


/* =========================================================
   TECHNICAL SECTION
========================================================= */

.case-technical {
    background: #eef0f2;
}


/* =========================================================
   BENEFITS
========================================================= */

.case-benefits-section {
    padding: 100px 0;

    background: var(--white);
}


.case-section-heading {
    max-width: 760px;

    margin-bottom: 50px;
}


.case-section-heading p {
    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color: var(--text-soft);
}


.case-benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


.case-benefit {
    min-height: 250px;

    padding: 27px 24px;

    border:
        1px solid rgba(203, 178, 106, 0.24);

    border-radius: var(--radius-md);

    background: var(--white);

    box-shadow:
        0 9px 26px rgba(0, 0, 0, 0.045);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}


.case-benefit:hover {
    transform: translateY(-4px);

    border-color:
        rgba(203, 178, 106, 0.55);

    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.08);
}


.case-benefit > span {
    display: block;

    margin-bottom: 52px;

    font-size: 12px;

    font-weight: 800;

    color: var(--gold-dark);
}


.case-benefit h3 {
    margin: 0 0 12px;

    font-size: 19px;

    font-weight: 700;

    color: var(--text);
}


.case-benefit p {
    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: var(--text-soft);
}


/* =========================================================
   RESULT
========================================================= */

.case-result {
    padding: 100px 0;

    background:
        linear-gradient(
            145deg,
            #111112 0%,
            #19191b 55%,
            #101011 100%
        );

    color: var(--white);
}


.case-result__content {
    max-width: 850px;
}


.case-result h2 {
    color: var(--white);
}


.case-result p {
    max-width: 760px;

    margin: 0 0 18px;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.64);
}


/* =========================================================
   GALLERY
========================================================= */

.case-gallery {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


.case-gallery figure {
    overflow: hidden;

    height: 470px;

    margin: 0;

    border-radius: var(--radius-lg);

    border:
        1px solid rgba(203, 178, 106, 0.18);
}


.case-gallery img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.case-gallery figure:hover img {
    transform: scale(1.025);
}


/* =========================================================
   INLINE LINK
========================================================= */

.case-inline-link {
    display: inline-flex;

    margin-top: 18px;

    color: var(--gold-dark);

    font-size: 14px;

    font-weight: 700;

    transition: color var(--transition);
}


.case-inline-link:hover {
    color: var(--gold);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .case-hero__grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .case-hero__image img {
        height: 560px;
    }


    .case-info__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .case-info__item {
        border-bottom:
            1px solid rgba(0, 0, 0, 0.07);
    }


    .case-work-grid,
    .case-work-grid--reverse {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .case-work-image img {
        height: 560px;
    }


    .case-benefits-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .case-gallery {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .case-hero {
        padding: 50px 0 65px;
    }


    .case-breadcrumbs {
        margin-bottom: 30px;

        font-size: 11px;
    }


    .case-hero__title {
        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .case-hero__model {
        font-size: 15px;
    }


    .case-hero__lead {
        font-size: 14px;
    }


    .case-hero__image {
        border-radius: 18px;
    }


    .case-hero__image img {
        height: 470px;
    }


    .case-info__grid {
        grid-template-columns: 1fr;
    }


    .case-info__item,
    .case-info__item:first-child {
        padding: 20px 0;

        border-right: 0;
    }


    .case-section,
    .case-benefits-section,
    .case-result {
        padding: 70px 0;
    }


    .case-text h2,
    .case-work-content h2,
    .case-section-heading h2,
    .case-result h2 {
        font-size: 31px;
    }


    .case-text p,
    .case-work-content p {
        font-size: 14px;
    }


    .case-work-image {
        border-radius: 18px;
    }


    .case-work-image img {
        height: 470px;
    }


    .case-service-list li {
        font-size: 13px;
    }


    .case-benefits-grid {
        grid-template-columns: 1fr;
    }


    .case-benefit {
        min-height: 0;
    }


    .case-benefit > span {
        margin-bottom: 30px;
    }


    .case-gallery {
        grid-template-columns: 1fr;
    }


    .case-gallery figure {
        height: 460px;
    }


    .case-result p {
        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .case-hero__title {
        font-size: 33px;
    }


    .case-hero__image img,
    .case-work-image img,
    .case-gallery figure {
        height: 400px;
    }


    .case-text h2,
    .case-work-content h2,
    .case-section-heading h2,
    .case-result h2 {
        font-size: 28px;
    }

}

