/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 90px;
    overflow: hidden;

    background-image: url("../assets/images/Hero-Banner.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* .hero-gradient {
    position: absolute;
    inset: 0 auto 0 0;
    width: 55%;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0) 100%
    );

    z-index: 1;
    pointer-events: none;
} */

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: var(--container-width);

    margin: -180px auto 0;
    padding: 0 40px;
}

.hero-content h1 {
    margin: 0;

    color: var(--white);

    text-transform: uppercase;
    line-height: 4.5rem;
}

.hero-content h1 .line2 {
    color: var(--terracotta);
    font-weight: 800;
}

.hero-cta {
    margin-top: 44px;
}

.hero-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: flex-end;

    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 40px 60px;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    position: relative;
    z-index: 3;

    background: var(--charcoal);
    color: var(--white);

    padding: var(--large-section-padding);
}

.stats-content {
    width: var(--container-width);
    max-width: 100%;
    height: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    place-items: center;

    margin: 0 auto;
}

.stat {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.stat .num {
    display: block;

    font-family: var(--tertiary);
    font-size: clamp(30px, 3.5vw, 65px);
    line-height: 0.85;

    color: var(--terracotta);

    font-weight: 800;
    letter-spacing: -6px;

    font-variant-numeric: tabular-nums;

    text-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25);
}

.stat .label {
    display: block;

    margin-top: 25px;

    font-family: var(--secondary);
    font-size: 16px;

    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 3px;

    color: var(--white);
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    min-height: 100vh;

    background: var(--cream);

    padding: var(--extra-large-section-padding);

    display: flex;
    align-items: center;
    justify-content: center;
}

.services .wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 0.6fr 1.2fr;
    gap: 8px;
    align-items: center;
    padding: 0 20px;
}

.services-intro .eyebrow {
    color: var(--terracotta);
    margin-bottom: var(--content-gap);
}

.services-intro h2 {
    font-family: var(--secondary);

    font-size: 24px;
    line-height: 1.15;

    font-weight: 500;

    color: var(--onyx);

    margin-bottom: var(--content-gap);

    text-transform: uppercase;
}

.services-intro h2 .fade {
    color: var(--terracotta);
    font-weight: 700;
}

.services-intro p {
    max-width: 380px;

    font-size: 12px;
    line-height: 1.5;

    color: rgba(32, 33, 31, 0.7);

    margin-bottom: var(--content-gap);
}


/* =========================================================
   LINKS
========================================================= */

.link-arrow {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    font-size: 12px;
    letter-spacing: 1.5px;

    font-weight: 700;

    text-transform: uppercase;

    color: var(--terracotta);

    padding-bottom: 4px;
}

.link-arrow::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--terracotta);

    transition: width 0.3s ease;
}

.link-arrow:hover::after {
    width: 30%;
}

.link-arrow svg {
    width: 14px;
    height: 14px;

    display: block;

    fill: currentColor;
    stroke: currentColor;

    transition: transform 0.25s ease;
}

.link-arrow:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   SERVICE GRID
========================================================= */

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 8px;
}

.service-card {
    display: flex;
    flex-direction: column;

    height: 345px;

    background: var(--onyx);
    padding: 50px 20px;
    opacity: 0;

    will-change: transform, opacity;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.service-card:hover {
    background: var(--white);
}

.service-card:hover .card-title,
.service-card:hover .card-desc {
    color: var(--charcoal);
}

.service-card:hover .link-arrow {
    color: var(--terracotta);
}


/* =========================================================
   SERVICE ICON
========================================================= */

.service-icon {
    width: 64px;
    height: 64px;

    border: 1px solid var(--terracotta);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 26px;
}

.service-icon svg {
    width: 32px;
    height: 32px;

    stroke: var(--terracotta);
}

.card-title {
    font-family: var(--secondary);

    font-size: 16px;

    color: var(--terracotta);

    font-weight: 500;

    margin-bottom: 12px;

    transition: color 0.25s;

    text-transform: uppercase;
}

.card-desc {
    font-size: 12px;
    line-height: 1.4;

    color: rgba(255, 255, 255, 0.65);

    transition: color 0.25s;
}

.service-card .link-arrow {
    margin-top: auto;

    padding-top: 12px;

    font-size: 10px;
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    position: relative;

    background: var(--onyx);

    padding: var(--extra-large-section-padding);

    overflow: hidden;

    display: flex;
    align-items: center;
}


/* =========================================================
   PROCESS BACKGROUND
========================================================= */

.process::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 0;

    background-image: url("/assets/images/Process-Banner.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =========================================================
   PROCESS OVERLAY
========================================================= */

.process-gradient {
    position: absolute;
    inset: 0;

    z-index: 1;

    background: rgba(0, 0, 0, 0.75);

    pointer-events: none;
}


/* =========================================================
   PROCESS WRAPPER
========================================================= */

.process .wrap {
    position: relative;
    z-index: 2;

    width: var(--container-width);
    max-width: 100%;

    margin: 0 auto;

    padding: 0 20px;
}


/* =========================================================
   PROCESS HEADING
========================================================= */

.process-head {
    text-align: center;

    margin-bottom: 72px;
}

.process-head h2 {
    margin: 0;

    font-family: var(--secondary);

    color: var(--white);

    font-size: 40px;

    font-weight: 500;

    text-transform: uppercase;
}

.process-head .sub {
    display: block;

    margin-top: 8px;

    font-size: 24px;

    letter-spacing: 3px;

    color: var(--terracotta);

    font-weight: 700;
}


/* =========================================================
   PROCESS STEPS
========================================================= */

.steps {
    position: relative;

    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;

    padding: 0 20px;
}

.step {
    position: relative;

    flex: 1;

    text-align: center;

    padding: 0 10px;
}


/* =========================================================
   CONNECTOR
========================================================= */

.step-connector {
    position: absolute;

    top: 32px;

    left: calc(50% + 32px);
    right: calc(-50% + 32px);

    height: 2px;

    background: var(--terracotta);

    z-index: 1;
}

.step:last-child .step-connector {
    display: none;
}


/* =========================================================
   STEP CIRCLE
========================================================= */

.step-circle {
    position: relative;

    width: 64px;
    height: 64px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: var(--terracotta);

    border: 2px solid var(--onyx);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;

    box-shadow:
        0 0 0 7px var(--glass);
}


/* =========================================================
   STEP ICON
========================================================= */

.step-circle svg {
    width: 32px;
    height: 32px;

    display: block;

    color: var(--white);

    fill: currentColor;
    stroke: currentColor;
}

.step-circle .icon-consultation {
    width: 38px;
    height: 38px;
}


/* =========================================================
   STEP NUMBER
========================================================= */

.step-num {
    margin-bottom: 8px;

    font-family: var(--tertiary);

    color: var(--terracotta);

    font-size: 14px;
    line-height: 1;

    font-weight: 600;
}


/* =========================================================
   STEP TITLE
========================================================= */

.step-title {
    color: var(--white);

    font-size: 15px;

    letter-spacing: 1px;

    text-transform: uppercase;

    font-weight: 700;

    line-height: 1.5;
}


/* =========================================================
   STEP DESCRIPTION
========================================================= */

.step-desc {
    margin-top: 8px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   PROJECT DETAIL
========================================================= */

.project-detail {
    background: var(--onyx);

    padding: 120px 0;

    overflow: hidden;
}


.project-detail .wrap {
    width: var(--container-width);
    max-width: 100%;

    margin: 0 auto;

    padding: 0 40px;
}


/* =========================================================
   PROJECT HEADER
========================================================= */

.pd-head {
    margin-bottom: 72px;
}


.pd-head h2 {
    font-family: var(--secondary);

    color: var(--white);

    font-size: 40px;

    line-height: 1.15;

    font-weight: 500;

    margin: 0 0 var(--content-gap);

    text-transform: uppercase;
}


.pd-head p {
    color: rgba(255, 255, 255, 0.55);

    font-size: 14px;

    margin-top: 12px;

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================================
   PROJECT SLIDER
========================================================= */

.pd-slider {
    position: relative;

    width: 100%;
}


/* =========================================================
   PROJECT GRID
========================================================= */

.pd-grid {
    display: grid;

    grid-template-columns: 1.3fr 1fr;

    gap: 64px;

    align-items: center;
}


/* =========================================================
   IMAGE CONTAINER
========================================================= */

.pd-image {
    position: relative;

    aspect-ratio: 16 / 11;

    overflow: hidden;

    isolation: isolate;
}


/* =========================================================
   BOTH IMAGE LAYERS
========================================================= */

.pd-image-inner,
.pd-image-inner-next {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    will-change: transform;

    transform: translate3d(0, 0, 0);
}


/* Current image */

.pd-image-inner {
    z-index: 1;
}


/* Incoming image */

.pd-image-inner-next {
    z-index: 2;
}

/* =========================================================
   PROJECT INFO
========================================================= */

.pd-info {
    position: relative;
}


.pd-project-num {
    color: var(--terracotta);

    font-size: 14px;

    letter-spacing: 2px;

    font-weight: 500;

    text-transform: uppercase;
}


.pd-info h3 {
    font-family: var(--secondary);

    color: var(--white);

    font-size: 38px;

    font-weight: 500;

    margin: 14px 0 10px;

    text-transform: uppercase;
}


.pd-info .tags {
    display: flex;

    flex-direction: column;

    gap: 6px;

    font-size: 12px;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.5);

    text-transform: uppercase;

    margin-bottom: 20px;

    font-weight: 400;
}


.pd-info .divider {
    height: 1px;

    width: 100%;

    background-color: var(--white);

    margin-bottom: 20px;
}


.pd-info p.desc {
    color: rgba(255, 255, 255, 0.6);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 26px;
}


.pd-info .link-arrow {
    color: var(--terracotta);

    display: inline-flex;

    align-items: center;

    gap: 8px;

    text-decoration: none;
}


.pd-info .link-arrow svg {
    width: 18px;

    height: 18px;

    fill: currentColor;
}


/* =========================================================
   PROJECT NAVIGATION
========================================================= */

.pd-nav {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 36px;

    color: var(--white);

    font-family: var(--primary);

    font-size: 16px;

    position: absolute;

    right: 0;

    bottom: 0;
}


.pd-nav .pdCounter {
    font-family: var(--tertiary);

    font-size: 32px;

    min-width: 42px;
}


.pd-nav .circle-btn {
    width: 40px;

    height: 40px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.35);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    background: transparent;

    color: var(--white);

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.pd-nav .circle-btn svg {
    width: 20px;

    height: 20px;

    fill: currentColor;

    stroke: none;

    display: block;
}


.pd-nav .circle-btn:hover {
    background: var(--terracotta);

    border-color: var(--terracotta);

    transform: translateY(-2px);
}


/* =========================================================
   CLOSING
========================================================= */

.closing {
    position: relative;

    background: var(--cream);

    padding: 130px 0 0;

    text-align: center;

    overflow: hidden;
}

.closing .wrap {
    max-width: 100%;
}

.closing .eyebrow {
    color: var(--terracotta);

    margin-bottom: var(--content-gap);
}

.closing h2 {
    font-family: var(--secondary);

    font-size: 40px;

    font-weight: 500;

    margin: 0 auto;

    line-height: 1.1;

    text-transform: uppercase;
}


/* =========================================================
   CLOSING GRID
========================================================= */

.closing-grid {
    max-width: var(--container-width);

    margin: 72px auto 0;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    text-align: left;
}

.closing-item {
    width: 100%;

    padding: 15px 25px;

    z-index: 2;

    position: relative;
}

.closing-item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 8px;
    bottom: 8px;

    right: 0;

    width: 1px;

    background: var(--dark-terracotta);
}

.closing-item .num {
    font-family: var(--tertiary);

    font-size: 24px;

    color: var(--terracotta);

    font-weight: 600;

    margin-bottom: var(--content-gap);
}

.closing-item h4 {
    font-size: 20px;

    text-transform: uppercase;

    font-weight: 600;

    min-height: 50px;

    margin: 14px 0 var(--content-gap);
}

.closing-item p {
    font-size: 14px;

    line-height: 1.3;

    color: rgba(32, 33, 31, 0.65);

    font-weight: 400;
}


/* =========================================================
   CLOSING IMAGE
========================================================= */

.closing-illustration {
    position: relative;

    z-index: 1;

    margin-top: -290px;

    padding: 0 40px;
}

.closing-illustration img {
    width: 100%;
    height: auto;

    display: block;
}


/* =========================================================
   CLOSING TAGLINE
========================================================= */

.closing-tagline {
    position: relative;

    z-index: 3;

    color: var(--charcoal);

    padding: 26px 20px;

    font-size: 11.5px;

    letter-spacing: 2px;

    text-transform: uppercase;

    font-weight: 600;
}

.closing-tagline .accent {
    color: var(--terracotta);
}


/* =========================================================
   QUADSIGHT — RESPONSIVE
   TABLET + MOBILE
========================================================= */


/* =========================================================
   TABLET
   769px — 1200px
========================================================= */

@media (min-width: 769px) and (max-width: 1200px) {

    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: 90vh;
        padding-top: 90px;
        background-position: center center;
    }

    .hero-content {
        max-width: 100%;
        margin: -100px auto 0;
        padding: 0 40px;
    }

    .hero-content h1 {
        font-size: clamp(48px, 7vw, 70px);
        line-height: 1.02;
        max-width: 750px;
    }

    .hero-cta {
        margin-top: 35px;
    }

    .hero-bottom {
        max-width: 100%;
        padding: 0 40px 40px;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .stats {
        padding: 60px 40px;
    }

    .stats-content {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .stat .num {
        font-size: clamp(42px, 6vw, 65px);
        letter-spacing: -4px;
    }

    .stat .label {
        margin-top: 20px;
        font-size: 13px;
        letter-spacing: 2px;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services {
        min-height: auto;
        padding: 80px 40px;
    }

    .services .wrap {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0;
    }

    .services-intro {
        max-width: 700px;
    }

    .services-intro h2 {
        font-size: 36px;
    }

    .services-intro p {
        max-width: 600px;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .service-card {
        height: 320px;
        padding: 40px 25px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 22px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }


    /* =====================================================
       PROCESS
    ===================================================== */

    .process {
        padding: 80px 40px;
    }

    .process .wrap {
        width: 100%;
        padding: 0;
    }

    .process-head {
        margin-bottom: 60px;
    }

    .process-head h2 {
        font-size: 36px;
    }

    .process-head .sub {
        font-size: 21px;
    }

    .steps {
        padding: 0;
        gap: 10px;
    }

    .step {
        padding: 0 5px;
    }

    .step-circle {
        width: 58px;
        height: 58px;
        margin-bottom: 16px;
    }

    .step-circle svg {
        width: 28px;
        height: 28px;
    }

    .step-circle .icon-consultation {
        width: 34px;
        height: 34px;
    }

    .step-connector {
        top: 29px;
        left: calc(50% + 29px);
        right: calc(-50% + 29px);
    }

    .step-title {
        font-size: 13px;
    }

    .step-desc {
        font-size: 12px;
        line-height: 1.5;
    }


    /* =====================================================
       PROJECT DETAIL
    ===================================================== */

    .project-detail {
        padding: 90px 40px;
    }

    .project-detail .wrap {
        width: 100%;
        padding: 0;
    }

    .pd-head {
        margin-bottom: 55px;
    }

    .pd-head h2 {
        font-size: 36px;
    }

    .pd-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 40px;
    }

    .pd-info h3 {
        font-size: 32px;
    }

    .pd-info p.desc {
        font-size: 13px;
        line-height: 1.7;
    }

    .pd-nav {
        position: static;
        justify-content: flex-start;
        margin-top: 35px;
    }


    /* =====================================================
       CLOSING
    ===================================================== */

    .closing {
        padding: 100px 40px 0;
    }

    .closing h2 {
        font-size: 36px;
    }

    .closing-grid {
        max-width: 100%;
        margin-top: 60px;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .closing-item {
        padding: 20px;
    }

    .closing-item:nth-child(3)::after {
        display: none;
    }

    .closing-item .num {
        font-size: 22px;
    }

    .closing-item h4 {
        font-size: 17px;
    }

    .closing-item p {
        font-size: 13px;
    }

    .closing-illustration {
        margin-top: -180px;
        padding: 0;
    }

    .closing-tagline {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
}


/* =========================================================
   MOBILE
   0 — 768px
========================================================= */

@media (max-width: 768px) {

    /* =====================================================
       GLOBAL
    ===================================================== */

    .hero,
    .stats,
    .services,
    .process,
    .project-detail,
    .closing {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }


    /* =====================================================
       HERO
    ===================================================== */

    .hero {
        min-height: 100svh;
        height: auto;
        padding-top: 80px;
        justify-content: center;

        background-position: center center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 12vw, 62px);
        line-height: 0.98;
        max-width: 100%;
        margin-top: -250px;
    }

    .hero-cta {
        margin-top: 30px;
    }

    .hero-cta .btn {
        width: auto;
    }

    .hero-bottom {
        width: 100%;
        max-width: 100%;
        padding: 0 20px 30px;
        justify-content: flex-start;
    }


    /* =====================================================
       STATS
    ===================================================== */

    .stats {
        padding: 50px 20px;
    }

    .stats-content {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;
        gap: 42px;
    }

    .stat {
        width: 100%;
    }

    .stat .num {
        font-size: clamp(25px, 10vw, 50px);
        letter-spacing: -4px;
        line-height: 0.9;
    }

    .stat .label {
        margin-top: 16px;
        font-size: 11px;
        letter-spacing: 2px;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services {
        min-height: auto;
        padding: 70px 20px;
        display: block;
    }

    .services .wrap {
        width: 100%;
        max-width: 100%;
        display: block;
        padding: 0;
    }

    .services-intro {
        width: 100%;
        margin-bottom: 45px;
    }

    .services-intro .eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
        text-align: center;
    }

    .services-intro h2 {
        font-size: clamp(27px, 8vw, 38px);
        line-height: 1.08;
        margin-bottom: 15px;
        text-align: center;
    }

    .services-intro p {
        width: 100%;
        max-width: 100%;
        font-size: 12px;
        text-align: center;
    }


    /* =====================================================
       LINKS
    ===================================================== */

    .link-arrow {
        font-size: 10px;
        letter-spacing: 1.2px;
        gap: 6px;
        justify-content: center;
        width: 100%;
    }

    .link-arrow svg {
        width: 13px;
        height: 13px;
    }


    /* =====================================================
       SERVICE GRID
    ===================================================== */

    .service-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .service-card {
        width: 100%;
        height: auto;
        min-height: 300px;
        padding: 35px 25px;
        justify-content:center;
        align-items: center;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 22px;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .card-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .card-desc {
        font-size: 12px;
        text-align: center;
    }

    .service-card .link-arrow {
        margin-top: 30px;
        padding-top: 10px;
    }


    /* =====================================================
       PROCESS
    ===================================================== */

    .process {
        min-height: auto;
        padding: 70px 20px;
        display: block;
    }

    .process .wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .process-head {
        margin-bottom: 50px;
    }

    .process-head h2 {
        font-size: clamp(24px, 3.5vw, 38px);
        line-height: 1.1;
    }

    .process-head .sub {
        margin-top: 8px;
        font-size: clamp(16px, 5vw, 22px);
        letter-spacing: 2px;
    }


    /* =====================================================
       PROCESS STEPS
    ===================================================== */

    .steps {
        width: 100%;
        max-width: 100%;

        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;

        padding: 0;
    }

    .step {
        width: 100%;
        padding: 0;

        display: grid;
        grid-template-columns: 64px 1fr;
        column-gap: 20px;

        text-align: left;
        align-items: center;
    }

    .step-circle {
        width: 58px;
        height: 58px;

        margin: 0;

        grid-row: span 3;
    }

    .step-circle svg {
        width: 28px;
        height: 28px;
    }

    .step-circle .icon-consultation {
        width: 34px;
        height: 34px;
    }

    /* Hide desktop connector */
    .step-connector {
        display: none;
    }

    .step-num {
        margin-bottom: 5px;
        font-size: 11px;
    }

    .step-title {
        font-size: 13px;
        line-height: 1.3;
        letter-spacing: 1px;
    }

    .step-desc {
        margin-top: 5px;
        font-size: 12px;
        line-height: 1.5;
    }


    /* =====================================================
       PROJECT DETAIL
    ===================================================== */

    .project-detail {
        padding: 70px 20px;
    }

    .project-detail .wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .pd-head {
        margin-bottom: 45px;
    }

    .pd-head h2 {
        font-size: clamp(24px, 3.5vw, 38px);
        line-height: 1.08;
        text-align: center;
    }

    .pd-head p {
        font-size: 12px;
        text-align: center;
    }


    /* =====================================================
       PROJECT GRID
    ===================================================== */

    .pd-grid {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr;

        gap: 35px;
        align-items: start;
    }


    /* =====================================================
       PROJECT IMAGE
    ===================================================== */

    .pd-image {
        width: 100%;
        aspect-ratio: 4 / 3;
    }


    /* =====================================================
       PROJECT INFO
    ===================================================== */

    .pd-info {
        width: 100%;
    }

    .pd-project-num {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .pd-info h3 {
        font-size: clamp(25px, 7vw, 34px);
        line-height: 1.05;
        margin: 10px 0;
    }

    .pd-info .tags {
        font-size: 10px;
        gap: 5px;
        margin-bottom: 18px;
    }

    .pd-info .divider {
        margin-bottom: 18px;
    }

    .pd-info p.desc {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 22px;
    }


    /* =====================================================
       PROJECT NAVIGATION
    ===================================================== */

    .pd-nav {
        position: absolute;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        top: -40%;
    }

    .pd-nav .pdCounter {
        display: none;
    }

    .pd-nav .circle-btn {
        width: 38px;
        height: 38px;
    }

    .pd-nav .circle-btn svg {
        width: 17px;
        height: 17px;
    }


    /* =====================================================
       CLOSING
    ===================================================== */

    .closing {
        padding: 75px 20px 0;
    }

    .closing .wrap {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .closing .eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .closing h2 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(24px, 8vw, 38px);
        line-height: 1.08;
    }


    /* =====================================================
       CLOSING GRID
    ===================================================== */

    .closing-grid {
        width: 100%;
        max-width: 100%;

        margin: 45px 0 0;

        display: grid;
        grid-template-columns: 1fr 1fr;

        text-align: left;
    }

    .closing-item {
        width: 100%;
        padding: 18px 15px;
    }

    .closing-item:nth-child(odd) {
        padding-left: 0;
    }

    .closing-item:nth-child(even) {
        padding-right: 0;
    }

    .closing-item:nth-child(2)::after,
    .closing-item:nth-child(4)::after {
        display: none;
    }

    .closing-item:nth-child(1),
    .closing-item:nth-child(2) {
        border-bottom: 1px solid var(--dark-terracotta);
        padding-bottom: 25px;
    }

    .closing-item:nth-child(3),
    .closing-item:nth-child(4) {
        padding-top: 25px;
    }

    .closing-item .num {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .closing-item h4 {
        font-size: 18px;
        line-height: 1.2;
        min-height: auto;
        margin: 10px 0;
    }

    .closing-item p {
        font-size: 12px;
    }


    /* =====================================================
       CLOSING ILLUSTRATION
    ===================================================== */

    .closing-illustration {
        width: 100%;

        margin-top: -40px;
        padding: 0;
    }

    .closing-illustration img {
        width: 100%;
        height: auto;
        display: block;
    }


    /* =====================================================
       CLOSING TAGLINE
    ===================================================== */

    .closing-tagline {
        padding: 22px 5px;

        font-size:14px;
        line-height: 1.5;

        letter-spacing: 1.2px;
    }

}


