/* =====================================================
   ARC STUDIO
   MAIN STYLESHEET

   PART 01 — GLOBAL DESIGN SYSTEM
===================================================== */


/* =====================================================
   01. RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;

    background-color: #f5f3ef;

    color: #171717;

    line-height: 1.6;

    overflow-x: hidden;
}


img {
    width: 100%;

    display: block;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


/* =====================================================
   02. DESIGN VARIABLES
===================================================== */

:root {

    /* Main Colors */

    --black: #171717;

    --dark: #20201e;

    --white: #ffffff;

    --cream: #E3DBCE;

    --warm: #D6CBB9;


    /* Text */

    --text: #171717;

    --muted: #666158;


    /* Borders */

    --border: rgba(23, 23, 23, 0.18);


    /* Layout */

    --container: 1380px;


    /* Animation */

    --transition:
        0.4s cubic-bezier(.2, .8, .2, 1);

}

/* =====================================================
   03. TYPOGRAPHY
===================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-weight: 500;

    line-height: 1.05;
}


h1,
h2 {

    font-family:
        "Playfair Display",
        serif;
}


h1 {

    font-size:
        clamp(
            4rem,
            8vw,
            8.5rem
        );
}


h2 {

    font-size:
        clamp(
            3rem,
            5vw,
            5.5rem
        );
}


h3 {

    font-size: 1.4rem;
}


/* =====================================================
   04. EYEBROW TEXT
===================================================== */

.eyebrow {

    font-size: 0.72rem;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: var(--muted);
}


/* =====================================================
   05. COMMON SECTION CONTAINER
===================================================== */

.section {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;
}


/* =====================================================
   06. COMMON BUTTONS
===================================================== */

.outline-button,
.dark-button {

    display: inline-block;

    padding:
        15px 28px;

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    transition:
        var(--transition);
}


.outline-button {

    color: var(--white);

    border:
        1px solid
        rgba(255, 255, 255, 0.7);
}


.outline-button:hover {

    background-color: var(--white);

    color: var(--black);
}


.dark-button {

    background-color: var(--black);

    color: var(--white);

    margin-top: 25px;
}


.dark-button:hover {

    transform:
        translateY(-4px);
}


/* =====================================================
   07. TEXT LINK
===================================================== */

.text-link {

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    border-bottom:
        1px solid
        var(--black);

    padding-bottom: 5px;
}
/* =====================================================
   PART 02 — NAVBAR
===================================================== */


/* =====================================================
   01. MAIN HEADER
===================================================== */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    color: white;

     transition:
        transform 0.45s
        cubic-bezier(.2, .8, .2, 1);
}
.site-header.nav-hidden {

    transform:
        translateY(-100%);

}


/* =====================================================
   02. NAVBAR CONTAINER
===================================================== */

.navbar {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    height: 90px;

    margin-inline: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =====================================================
   03. LOGO
===================================================== */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 0.85rem;

    letter-spacing: 0.1em;

    font-weight: 600;

    font-family:
        "Arial";
}


.logo-mark {

    width: 32px;

    height: 32px;

    border:
        1px solid
        currentColor;

    display: grid;

    place-items: center;

    font-family:
        "Arial";
}


.logo-text {

    white-space: nowrap;

    font-family:
        "helvetica";
}


/* =====================================================
   04. DESKTOP NAVIGATION
===================================================== */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 35px;
}


.desktop-nav a {

    position: relative;

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    opacity: 0.8;

    transition:
        var(--transition);
}


.desktop-nav a:hover {

    opacity: 1;
}


/* Animated underline */

.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 1px;

    background: white;

    transition:
        width 0.3s ease;
}


.desktop-nav a:hover::after {

    width: 100%;
}


/* =====================================================
   05. LET'S TALK BUTTON
===================================================== */

.nav-button {

    padding:
        13px 24px;

    border:
        1px solid
        rgba(255, 255, 255, 0.5);

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    transition:
        var(--transition);
}


.nav-button:hover {

    background: white;

    color: var(--black);
}


/* =====================================================
   06. NAVBAR AFTER SCROLL
===================================================== */

.site-header.scrolled {

    background:
        rgba(23, 23, 23, 0.95);

    backdrop-filter:
        blur(12px);
}


.site-header.scrolled .navbar {

    height: 75px;
}


/* =====================================================
   07. MOBILE MENU BUTTON
===================================================== */

.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    cursor: pointer;

    padding: 5px;
}


.menu-toggle span {

    display: block;

    width: 26px;

    height: 1px;

    background: currentColor;

    margin: 6px 0;

    transition:
        var(--transition);
}
/* =====================================================
   SERVICES NAV DROPDOWN
===================================================== */

.mega-nav-services {
    position: relative;
    width: 100%;
}


/* SERVICES MAIN ROW */

.mega-services-main {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}


/* PLUS BUTTON */

.mega-services-arrow {
    position: absolute !important;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 44px !important;
    height: 44px !important;

    border: 1px solid rgba(255,255,255,0.45);

    border-radius: 50% !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    font-size: 18px !important;
    font-weight: 300 !important;

    padding: 0 !important;
}


/* =====================================================
   DROPDOWN
===================================================== */

.mega-services-dropdown {
    width: 100%;

    display: flex;
    flex-direction: column;

    padding-left: 60px;

    max-height: 0;
    opacity: 0;

    overflow: hidden;

    transition:
        max-height 0.45s ease,
        opacity 0.35s ease,
        padding 0.45s ease;
}


/* SHOW ON HOVER */

.mega-nav-services:hover .mega-services-dropdown,
.mega-nav-services:focus-within .mega-services-dropdown {
    max-height: 300px;

    opacity: 1;

    padding-top: 8px;
    padding-bottom: 12px;
}


/* =====================================================
   INDIVIDUAL SERVICE
===================================================== */

.mega-service-link {
    display: flex;
    align-items: center;

    gap: 22px;

    width: 100%;

    padding: 11px 0;

    color: rgba(255,255,255,0.72);

    text-decoration: none;

    font-size: 17px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.mega-service-link span {
    font-size: 11px;

    letter-spacing: 0.12em;

    opacity: 0.5;

    min-width: 25px;
}


.mega-service-link strong {
    font-size: 17px;

    font-weight: 400;
}


/* HOVER */

.mega-service-link:hover {
    color: #ffffff;

    transform: translateX(8px);
}


/* =====================================================
   PLUS ROTATION
===================================================== */

.mega-nav-services:hover .mega-services-arrow {
    transform: translateY(-50%) rotate(45deg);
}

/* =====================================================
   08. MOBILE MENU
===================================================== */

.mobile-menu {

    display: none;

    background:
        rgba(23, 23, 23, 0.98);

    padding:
        30px 40px 40px;
}


.mobile-menu.active {

    display: flex;

    flex-direction: column;

    gap: 20px;
}


.mobile-menu a {

    font-family:
        "Playfair Display",
        serif;

    font-size: 2rem;
}


/* =====================================================
   09. NAVBAR RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .desktop-nav,
    .nav-button {

        display: none;
    }


    .menu-toggle {

        display: block;
    }


    .navbar {

        width:
            calc(100% - 40px);
    }

}
/* =====================================================
   PART 03 — HERO SECTION
===================================================== */


/* =====================================================
   01. HERO CONTAINER
===================================================== */

.hero {

    position: relative;

    height: 100svh;

    min-height: 700px;

    display: flex;

    align-items: center;

    color: white;

    overflow: hidden;
}


/* =====================================================
   02. HERO BACKGROUND IMAGE
===================================================== */

.hero-image {

    position: absolute;

    inset: 0;

    background-image:
        url(
            "https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=2200&q=90"
        );

    background-size: cover;

    background-position: center;

    transform: scale(1.05);

    animation:
        heroZoom 12s
        ease-out
        forwards;
}


/* =====================================================
   03. HERO DARK OVERLAY
===================================================== */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.15)
        );
}


/* =====================================================
   04. HERO CONTENT
===================================================== */

.hero-content {

    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;

    padding-top: 100px;
}


/* =====================================================
   05. HERO EYEBROW
===================================================== */

.hero-content .eyebrow {

    color:
        rgba(255, 255, 255, 0.75);

    margin-bottom: 30px;
}


/* =====================================================
   06. HERO HEADING
===================================================== */

.hero h1 {

    max-width: 900px;

    color: white;
}


.hero h1 span {

    display: block;

    font-style: italic;
}


/* =====================================================
   07. HERO DESCRIPTION
===================================================== */

.hero-description {

    max-width: 470px;

    margin:
        35px 0;

    color:
        rgba(255, 255, 255, 0.75);
}


/* =====================================================
   08. HERO COUNTER
===================================================== */

.hero-counter {

    position: absolute;

    z-index: 3;

    bottom: 50px;

    right: 50px;

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 0.75rem;
}


.counter-line {

    width: 70px;

    height: 1px;

    background:
        rgba(255, 255, 255, 0.6);
}


/* =====================================================
   09. HERO ZOOM ANIMATION
===================================================== */

@keyframes heroZoom {

    from {

        transform:
            scale(1.05);

    }

    to {

        transform:
            scale(1);

    }

}


/* =====================================================
   10. HERO RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .hero-content {

        width:
            calc(100% - 40px);
    }


    .hero h1 {

        font-size:
            clamp(
                3.5rem,
                12vw,
                6rem
            );
    }

}


@media (max-width: 600px) {

    .hero {

        min-height: 650px;
    }


    .hero-description {

        max-width: 320px;
    }


    .hero-counter {

        right: 20px;

        bottom: 25px;
    }

}
/* =====================================================
   PART 04 — FEATURED PROJECTS
===================================================== */


/* =====================================================
   01. PROJECT SECTION
===================================================== */

.projects-section {

    padding-top: 140px;

    padding-bottom: 150px;
}


/* =====================================================
   02. SECTION HEADER
===================================================== */

.section-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 60px;
}


.section-header h2 {

    margin-top: 18px;
}


/* =====================================================
   03. PROJECT GRID
===================================================== */

.project-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    column-gap: 25px;

    row-gap: 70px;
}


/* =====================================================
   04. PROJECT CARD
===================================================== */

.project-card {

    display: block;

    overflow: hidden;
}


/* =====================================================
   05. PROJECT IMAGE
===================================================== */

.project-image {

    overflow: hidden;

    aspect-ratio: 1.4;
}


.project-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s
        cubic-bezier(.2, .8, .2, 1);
}


/* =====================================================
   06. IMAGE HOVER
===================================================== */

.project-card:hover
.project-image img {

    transform:
        scale(1.06);
}


/* =====================================================
   07. PROJECT INFORMATION
===================================================== */

.project-info {

    display: flex;

    justify-content: space-between;

    align-items: baseline;

    padding-top: 18px;

    padding-bottom: 18px;

    border-bottom:
        1px solid
        var(--border);
}


.project-info h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.5rem;

    font-weight: 500;
}


.project-info p {

    font-size: 0.72rem;

    color: var(--muted);

    text-transform: uppercase;

    letter-spacing: 0.05em;
}


/* =====================================================
   08. PROJECT CARD HOVER
===================================================== */

.project-card .project-info h3 {

    transition:
        transform 0.4s ease;
}


.project-card:hover
.project-info h3 {

    transform:
        translateX(8px);
}


/* =====================================================
   09. PROJECT RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .project-grid {

        grid-template-columns: 1fr;

    }


    .section-header {

        align-items: flex-start;

    }

}


@media (max-width: 600px) {

    .projects-section {

        padding-top: 100px;

        padding-bottom: 100px;

    }


    .section-header {

        display: block;

        margin-bottom: 45px;

    }


    .section-header .text-link {

        display: inline-block;

        margin-top: 20px;

    }


    .project-grid {

        row-gap: 50px;

    }


    .project-info {

        display: block;

    }


    .project-info p {

        margin-top: 6px;

    }

}
/* =====================================================
   PART 04 — STACKED PROJECT SCROLL
===================================================== */


/* =====================================================
   01. PROJECT SECTION
===================================================== */

.stacked-projects {

    position: relative;

    background: var(--cream);

    padding-top: 140px;

}


/* =====================================================
   02. SECTION HEADER
===================================================== */

.stacked-projects-header {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;

    margin-bottom: 80px;

    display: flex;

    justify-content: space-between;

    align-items: flex-end;
}


.stacked-projects-header h2 {

    margin-top: 18px;

}


/* =====================================================
   03. SCROLL STAGE
===================================================== */

.stacked-projects-stage {

    position: relative;

    height: 400vh;

}


/* =====================================================
   04. STICKY VIEWPORT
===================================================== */

.stacked-project {

    position: sticky;

    top: 0;

    width: 100%;

    height: 100vh;

    overflow: hidden;

    background: #111;

}


/* =====================================================
   05. PROJECT IMAGE
===================================================== */

.stacked-project img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transform: scale(1.04);

    transition:
        transform 1.2s
        cubic-bezier(.2, .8, .2, 1);
}


/* =====================================================
   06. DARK OVERLAY
===================================================== */

.stacked-project-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .68),
            rgba(0, 0, 0, .08)
        );
}


/* =====================================================
   07. PROJECT INFORMATION
===================================================== */

.stacked-project-info {

    position: absolute;

    z-index: 2;

    left: 6vw;

    bottom: 10vh;

    color: white;

    max-width: 650px;
}


.stacked-project-info span {

    display: block;

    margin-bottom: 20px;

    font-size: .75rem;

    letter-spacing: .15em;

    text-transform: uppercase;

    opacity: .7;
}


.stacked-project-info h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            3rem,
            7vw,
            7rem
        );

    font-weight: 300;

    line-height: .95;
}


.stacked-project-info p {

    margin-top: 20px;

    font-size: .8rem;

    letter-spacing: .08em;

    text-transform: uppercase;

    opacity: .75;
}


/* =====================================================
   08. PROJECT NUMBER INDICATOR
===================================================== */

.stacked-project::after {

    content: "";

    position: absolute;

    right: 5vw;

    bottom: 10vh;

    width: 80px;

    height: 1px;

    background:
        rgba(255,255,255,.5);
}


/* =====================================================
   09. IMAGE MOVEMENT
===================================================== */

.stacked-project.active img {

    transform: scale(1);

}


/* =====================================================
   10. MOBILE
===================================================== */

@media (max-width: 900px) {

    .stacked-projects-header {

        width:
            calc(100% - 40px);

        display: block;

    }


    .stacked-projects-header
    .text-link {

        display: inline-block;

        margin-top: 20px;

    }


    .stacked-project-info {

        left: 30px;

        bottom: 70px;

        right: 30px;
    }


    .stacked-project-info h3 {

        font-size:
            clamp(
                3rem,
                13vw,
                5rem
            );

    }


    .stacked-project::after {

        display: none;

    }

}
/* =====================================================
   11. STACK ORDER
===================================================== */

.stacked-project:nth-child(1) {
    z-index: 1;
}

.stacked-project:nth-child(2) {
    z-index: 2;
}

.stacked-project:nth-child(3) {
    z-index: 3;
}

.stacked-project:nth-child(4) {
    z-index: 4;
}
/* =====================================================
   PART 05 — STUDIO ABOUT
===================================================== */


/* =====================================================
   01. MAIN SECTION
===================================================== */

.studio-about {

    position: relative;

    background: var(--cream);

    padding-top: 160px;

    padding-bottom: 180px;

    overflow: hidden;
}


/* =====================================================
   02. SECTION LABEL
===================================================== */

.studio-about-intro {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;

    margin-bottom: 70px;
}


/* =====================================================
   03. MAIN CONTENT
===================================================== */

.studio-about-main {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        1.4fr 0.6fr;

    gap: 100px;

    align-items: end;
}


/* =====================================================
   04. LARGE STATEMENT
===================================================== */

.studio-about-main h2 {

    max-width: 900px;

    font-size:
        clamp(
            4rem,
            7vw,
            8rem
        );

    line-height: .95;

    font-weight: 400;
}


.studio-about-main h2 em {

    display: block;

    font-weight: 400;

}


/* =====================================================
   05. DESCRIPTION
===================================================== */

.studio-about-description {

    max-width: 400px;

    padding-bottom: 10px;
}


.studio-about-description p {

    color: var(--muted);

    font-size: .95rem;

    margin-bottom: 20px;

}


/* =====================================================
   06. IMAGE
===================================================== */

.studio-about-image {

    width:
        min(
            70%,
            1000px
        );

    height: 650px;

    margin-top: 100px;

    margin-left: auto;

    overflow: hidden;

}


.studio-about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s
        cubic-bezier(.2,.8,.2,1);
}


.studio-about-image:hover img {

    transform:
        scale(1.04);

}


/* =====================================================
   07. IMAGE CAPTION
===================================================== */

.studio-about-caption {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin:
        20px auto 0;

    display: flex;

    justify-content: flex-end;

    gap: 80px;

    color: var(--muted);

    font-size: .7rem;

    letter-spacing: .12em;

    text-transform: uppercase;
}


/* =====================================================
   08. ABOUT RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .studio-about {

        padding-top: 110px;

        padding-bottom: 120px;

    }


    .studio-about-intro,
    .studio-about-main,
    .studio-about-caption {

        width:
            calc(100% - 40px);

    }


    .studio-about-main {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .studio-about-main h2 {

        font-size:
            clamp(
                3.5rem,
                11vw,
                6rem
            );

    }


    .studio-about-image {

        width: 90%;

        height: 500px;

        margin-top: 70px;

    }

}


@media (max-width: 600px) {

    .studio-about {

        padding-top: 90px;

        padding-bottom: 100px;

    }


    .studio-about-main h2 {

        font-size: 3.5rem;

    }


    .studio-about-image {

        width: 100%;

        height: 400px;

    }


    .studio-about-caption {

        justify-content: space-between;

        gap: 20px;

    }

}
/* =====================================================
   PART 05 — ABOUT SCROLL STORY
===================================================== */


/* =====================================================
   01. SECTION
===================================================== */

.about-story {

    position: relative;

    background: var(--cream);

    padding-top: 150px;

    padding-bottom: 160px;

}


/* =====================================================
   02. INTRO LABEL
===================================================== */

.about-story-intro {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;

    margin-bottom: 80px;

}


/* =====================================================
   03. MAIN TWO-COLUMN LAYOUT
===================================================== */

.about-story-layout {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 100px;

    align-items: start;

}


/* =====================================================
   04. LEFT SIDE — STICKY COMPOSITION
===================================================== */

.about-story-left {

    position: sticky;

    top: 110px;

    align-self: start;

    height: 760px;

}


/* =====================================================
   05. HEADING — ABOVE IMAGE
===================================================== */

.about-story-heading {

    position: absolute;

    top: 10px;
    left: 0;

    width: 100%;
    height: 520px;

    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    pointer-events: none;
}


.about-story-heading h2 {


    z-index: 10;

    max-width: 800px;

    font-size:
        clamp(
            4rem,
            6vw,
            7rem
        );

    line-height: .94;

    font-weight: 300;

    margin: 0;

    color: #ffff;

}


.about-story-heading h2 em {

    display: block;

    font-weight: 400;

}


/* =====================================================
   06. IMAGE — BEHIND HEADING
===================================================== */

.about-story-image {

    position: absolute;

    z-index: 1;

    top: 10px;

    left: 0;

    width: 100%;

    height: 520px;

    overflow: hidden;

    

    background:
        rgba(255, 255, 255, 0.15);

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.08);

}


/* =====================================================
   07. IMAGE
===================================================== */

.about-story-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0.62;

    filter:
        saturate(0.75)
        contrast(0.9);

}


/* =====================================================
   08. FROSTED GLASS EFFECT
===================================================== */

.about-story-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(3, 2, 0, 0.491),
            rgba(20, 16, 1, 0.201)
        );

    backdrop-filter:
        blur(1px);

    -webkit-backdrop-filter:
        blur(2px);

    pointer-events: none;

}


/* =====================================================
   09. GLASS BORDER
===================================================== */

.about-story-image::before {

    content: "";

    position: absolute;

    z-index: 2;

    inset: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.3);

    pointer-events: none;

}


/* =====================================================
   10. IMAGE CAPTION
===================================================== */

.about-story-caption {

    position: absolute;

    z-index: 10;

    top: 765px;

    left: 0;

    width: 82%;

    display: flex;

    justify-content: space-between;

    color: var(--muted);

    font-size: .65rem;

    letter-spacing: .12em;

    text-transform: uppercase;

}


/* =====================================================
   11. RIGHT STORY COLUMN
===================================================== */

.about-story-content {

    padding-top: 80px;

}


/* =====================================================
   12. STORY BLOCK
===================================================== */

.about-story-block {

    min-height: 75vh;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-top:
        1px solid
        var(--border);

    padding:
        80px 0;

}


.about-story-block:last-child {

    border-bottom:
        1px solid
        var(--border);

}


/* =====================================================
   13. STORY NUMBER
===================================================== */

.story-number {

    display: block;

    margin-bottom: 35px;

    color: var(--muted);

    font-size: .7rem;

    letter-spacing: .15em;

}


/* =====================================================
   14. STORY HEADING
===================================================== */

.about-story-block h3 {

    max-width: 600px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            3rem,
            5vw,
            5.5rem
        );

    line-height: .95;

    font-weight: 400;

}


/* =====================================================
   15. STORY TEXT
===================================================== */

.about-story-block p {

    max-width: 480px;

    margin-top: 35px;

    color: var(--muted);

    font-size: 1rem;

    line-height: 1.8;

}


/* =====================================================
   16. STORY BUTTON
===================================================== */

.about-story-block .dark-button {

    width: fit-content;

    margin-top: 40px;

}


/* =====================================================
   17. TABLET
===================================================== */

@media (max-width: 1000px) {

    .about-story-layout {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .about-story-left {

        position: relative;

        top: auto;

        height: auto;

    }


    .about-story-heading {

        position: relative;

        z-index: 10;

    }


    .about-story-heading h2 {

        font-size:
            clamp(
                3.5rem,
                10vw,
                6rem
            );

    }


    .about-story-image {

        position: relative;

        top: auto;

        left: auto;

        width: 90%;

        height: 550px;

        margin-top: 45px;

    }


    .about-story-caption {

        position: relative;

        top: auto;

        left: auto;

        width: 90%;

        margin-top: 15px;

    }


    .about-story-content {

        padding-top: 40px;

    }


    .about-story-block {

        min-height: 60vh;

    }

}


/* =====================================================
   18. MOBILE
===================================================== */

@media (max-width: 600px) {

    .about-story {

        padding-top: 100px;

        padding-bottom: 100px;

    }


    .about-story-intro,
    .about-story-layout {

        width:
            calc(100% - 40px);

    }


    .about-story-heading h2 {

        font-size: 3.5rem;

    }


    .about-story-image {

        width: 100%;

        height: 400px;

    }


    .about-story-caption {

        width: 100%;

    }


    .about-story-block {

        min-height: auto;

        padding:
            80px 0;

    }


    .about-story-block h3 {

        font-size: 3rem;

    }

}
/* =====================================================
   PART 06 — SERVICES
===================================================== */


/* =====================================================
   01. SERVICES SECTION
===================================================== */

.services-section {

    position: relative;

    background: var(--cream);

    padding-top: 160px;

    padding-bottom: 180px;

    border-top:
        1px solid
        var(--border);

}


/* =====================================================
   02. SERVICES HEADER
===================================================== */

.services-header {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;

    margin-bottom: 120px;

}


.services-header h2 {

    max-width: 900px;

    margin-top: 30px;

    font-size:
        clamp(
            3rem,
            5vw,
            5rem
        );

    line-height: .92;

    font-weight: 400;

}


.services-header h2 em {

    display: block;

    font-weight: 400;

}


/* =====================================================
   03. SERVICES LIST
===================================================== */

.services-list {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;

}


/* =====================================================
   04. SERVICE ITEM
===================================================== */

.service-item {

    position: relative;

    display: grid;

    grid-template-columns:
        80px 1fr 60px;

    align-items: center;

    min-height: 95px;

    border-top:
        1px solid
        var(--border);

    text-decoration: none;

    color: var(--text);

    transition:
        padding .5s
        cubic-bezier(.2,.8,.2,1);

}


.service-item:last-child {

    border-bottom:
        1px solid
        var(--border);

}


/* =====================================================
   05. SERVICE NUMBER
===================================================== */

.service-number {

    color: var(--muted);

    font-size: .7rem;

    letter-spacing: .12em;

}


/* =====================================================
   06. SERVICE TITLE
===================================================== */

.service-item h3 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            2rem,
            4vw,
            3.5rem
        );

    line-height: 1;

    font-weight: 300;

    transition:
        transform .5s
        cubic-bezier(.2,.8,.2,1);

}


/* =====================================================
   07. ARROW
===================================================== */

.service-arrow {

    display: flex;

    justify-content: center;

    align-items: center;

    width: 42px;

    height: 42px;

    border:
        1px solid
        var(--border);

    border-radius: 50%;

    font-size: 1rem;

    transition:
        transform .5s
        cubic-bezier(.2,.8,.2,1),
        background .4s,
        color .4s;

}


/* =====================================================
   08. HOVER EFFECT
===================================================== */

.service-item:hover {

    padding-left: 25px;

}


.service-item:hover h3 {

    transform:
        translateX(20px);

}


.service-item:hover .service-arrow {

    transform:
        rotate(45deg);

    background:
        var(--text);

    color:
        var(--cream);

}


/* =====================================================
   09. SERVICES RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .services-section {

        padding-top: 110px;

        padding-bottom: 120px;

    }


    .services-header,
    .services-list {

        width:
            calc(100% - 40px);

    }


    .services-header {

        margin-bottom: 70px;

    }


    .service-item {

        grid-template-columns:
            50px 1fr 50px;

        min-height: 120px;

    }


    .service-item h3 {

        font-size:
            clamp(
                2.5rem,
                8vw,
                4rem
            );

    }


    .service-arrow {

        width: 40px;

        height: 40px;

    }

}


@media (max-width: 600px) {

    .services-header h2 {

        font-size: 3.5rem;

    }


    .service-item {

        grid-template-columns:
            35px 1fr 40px;

        min-height: 100px;

    }


    .service-item h3 {

        font-size: 2.3rem;

    }


    .service-number {

        font-size: .6rem;

    }


    .service-arrow {

        width: 34px;

        height: 34px;

        font-size: .9rem;

    }


    .service-item:hover {

        padding-left: 0;

    }


    .service-item:hover h3 {

        transform:
            translateX(8px);

    }

}
/* =====================================================
   PART 07 — CONTACT / FINAL CTA
===================================================== */


/* =====================================================
   01. CONTACT SECTION
===================================================== */

.contact-cta {

    position: relative;

    background: var(--text);

    color: var(--cream);

    padding-top: 170px;

    padding-bottom: 170px;

    overflow: hidden;

}


/* =====================================================
   02. CTA INNER
===================================================== */

.contact-cta-inner {

    width:
        min(
            calc(100% - 80px),
            var(--container)
        );

    margin-inline: auto;

}


/* =====================================================
   03. CTA EYEBROW
===================================================== */

.contact-cta .eyebrow {

    color:
        rgba(255,255,255,.55);

}


/* =====================================================
   04. CTA HEADING
===================================================== */

.contact-cta h2 {

    max-width: 1200px;

    margin-top: 45px;

    font-size:
        clamp(
            4rem,
            8vw,
            9rem
        );

    line-height: .9;

    font-weight: 400;

}


.contact-cta h2 em {

    display: block;

    font-weight: 400;

}


/* =====================================================
   05. CTA BOTTOM
===================================================== */

.contact-cta-bottom {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-top: 100px;

    padding-top: 35px;

    border-top:
        1px solid
        rgba(255,255,255,.25);

}


/* =====================================================
   06. CTA DESCRIPTION
===================================================== */

.contact-cta-bottom p {

    max-width: 420px;

    color:
        rgba(255,255,255,.65);

    font-size: .95rem;

    line-height: 1.7;

}


/* =====================================================
   07. CTA BUTTON
===================================================== */

.cta-outline-button {

    display: inline-flex;

    align-items: center;

    gap: 35px;

    padding:
        18px 24px;

    border:
        1px solid
        rgba(255,255,255,.45);

    color: var(--cream);

    text-decoration: none;

    font-size: .75rem;

    letter-spacing: .1em;

    text-transform: uppercase;

    transition:
        background .4s,
        color .4s,
        padding .4s;

}


.cta-outline-button span {

    font-size: 1.1rem;

    transition:
        transform .4s;

}


.cta-outline-button:hover {

    background: var(--cream);

    color: var(--text);

    padding-left: 32px;

    padding-right: 32px;

}


.cta-outline-button:hover span {

    transform:
        translate(4px,-4px);

}


/* =====================================================
   08. CONTACT RESPONSIVE
===================================================== */

@media (max-width: 800px) {

    .contact-cta {

        padding-top: 110px;

        padding-bottom: 110px;

    }


    .contact-cta-inner {

        width:
            calc(100% - 40px);

    }


    .contact-cta h2 {

        font-size:
            clamp(
                3.5rem,
                11vw,
                6rem
            );

    }


    .contact-cta-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 45px;

        margin-top: 70px;

    }

}


@media (max-width: 600px) {

    .contact-cta {

        padding-top: 90px;

        padding-bottom: 90px;

    }


    .contact-cta h2 {

        font-size: 3.5rem;

    }

}
/* =====================================================
   FOOTER — ARCHITECTURAL
===================================================== */

.site-footer {

    position: relative;

    overflow: hidden;

    background: #000000;

    color: #f2eee7;

    padding:
        100px
        4vw
        30px;

}


/* =====================================================
   DECORATIVE BACKGROUND
===================================================== */

.footer-decoration {

    position: absolute;

    left: -120px;
    bottom: -180px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background-image:
        radial-gradient(
            rgba(255,255,255,.12) 1px,
            transparent 1px
        );

    background-size: 8px 8px;

    opacity: .45;

    pointer-events: none;

}


/* =====================================================
   TOP FOOTER
===================================================== */

.footer-top {

    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        1fr
        1.6fr
        .8fr;

    gap: 80px;

    padding-bottom: 130px;

}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 14px;

    color: #f2eee7;

    text-decoration: none;

}


.footer-logo-mark {

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(242,238,231,.7);

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.1rem;

}


.footer-logo-text {

    font-size: 1.4rem;

    font-weight: 500;

    letter-spacing: .08em;

}


.footer-logo-sub {

    margin-top: 12px;

    margin-left: 56px;

    font-size: .52rem;

    letter-spacing: .25em;

    opacity: .65;

}


/* =====================================================
   FOOTER STATEMENT
===================================================== */

.footer-statement h3 {

    max-width: 700px;

    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            2.5rem,
            4vw,
            5rem
        );

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -.02em;

}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-social h4,
.footer-info-column h4 {

    margin: 0 0 28px;

    font-size: .65rem;

    font-weight: 500;

    letter-spacing: .16em;

    text-transform: uppercase;

    opacity: .65;

}


.footer-social a {

    margin-bottom: 12px;

    color: #f2eee7;

    text-decoration: none;

    font-size: .8rem;

    text-transform: uppercase;

    letter-spacing: .08em;

    transition:
        opacity .3s ease;

}


.footer-social a:hover {

    opacity: .55;

}


/* =====================================================
   INFORMATION
===================================================== */

.footer-information {

    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    gap: 80px;

    margin-left: 25%;

    padding-bottom: 110px;

}


/* =====================================================
   INFORMATION COLUMNS
===================================================== */

.footer-info-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-info-column a,
.footer-info-column p {

    margin: 0 0 12px;

    color:
        rgba(
            242,
            238,
            231,
            .75
        );

    text-decoration: none;

    font-size: .85rem;

    line-height: 1.7;

}


.footer-info-column a {

    transition:
        color .3s ease;

}


.footer-info-column a:hover {

    color: #f2eee7;

}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.site-footer .footer-bottom {

    position: relative;

    z-index: 1;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(
            242,
            238,
            231,
            .18
        );

    color:
        rgba(
            242,
            238,
            231,
            .5
        );

    font-size: .65rem;

    letter-spacing: .05em;

}


/* =====================================================
   FOOTER RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .site-footer {

        padding:
            80px
            30px
            25px;

    }


    .footer-top {

        grid-template-columns:
            1fr
            1fr;

        gap: 60px;

        padding-bottom: 80px;

    }


    .footer-social {

        grid-column: 1 / -1;

    }


    .footer-information {

        margin-left: 0;

        grid-template-columns:
            1fr
            1fr
            1fr;

        gap: 30px;

        padding-bottom: 80px;

    }

}


@media (max-width: 600px) {

    .site-footer {

        padding:
            70px
            20px
            20px;

    }


    .footer-top {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .footer-social {

        grid-column: auto;

    }


    .footer-information {

        grid-template-columns: 1fr;

        gap: 45px;

        padding-bottom: 60px;

    }


    .footer-statement h3 {

        font-size: 3rem;

    }


    .site-footer .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

    }

}
/* =====================================================
   PART 10 — HIDE NAVBAR ON SCROLL
===================================================== */

.site-header {
    transition:
        transform 0.45s cubic-bezier(.2, .8, .2, 1);
}


/* Hidden while scrolling down */

.site-header.nav-hidden {

    transform:
        translateY(-100%);

}

/* =====================================================
   SIDE MENU — AKRUTI FROSTED GLASS
===================================================== */


/* =====================================================
   01. FULL MENU OVERLAY
===================================================== */

.mega-menu {

    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    width: min(700px, 92vw);

    z-index: 2000;

    overflow-y: auto;
    overflow-x: hidden;

    background:
        rgba(5, 9, 13, 0.22);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transform:
        translateX(100%);

    transition:
        transform .6s
        cubic-bezier(.2,.8,.2,1),

        opacity .4s ease,

        visibility .4s ease;

}


/* =====================================================
   OPEN
===================================================== */

.mega-menu.active {

    visibility: visible;

    opacity: 1;

    pointer-events: auto;

    transform:
        translateX(0);

}


/* =====================================================
   02. FROSTED GLASS PANEL
===================================================== */

.mega-menu-info {

    position: relative;

    width: 100%;

    min-height: 100%;

    height: auto;

    padding:
        55px
        65px
        30px;

    display: flex;

    flex-direction: column;

    color:
        #f1eee7;

    background:
        linear-gradient(
            135deg,
            rgba(38, 47, 55, .72),
            rgba(17, 23, 29, .78)
        );

    backdrop-filter:
        blur(24px)
        saturate(115%);

    -webkit-backdrop-filter:
        blur(24px)
        saturate(115%);

    border-left:
        1px solid
        rgba(
            255,
            255,
            255,
            .16
        );

    box-shadow:
        -25px 0 80px
        rgba(
            0,
            0,
            0,
            .22
        );

}


/* =====================================================
   03. SUBTLE GLASS HIGHLIGHT
===================================================== */

.mega-menu-info::before {

    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            transparent 35%,
            rgba(255,255,255,.025)
        );

}


/* =====================================================
   04. NAVIGATION
===================================================== */

/*
   IMPORTANT:

   DO NOT use position:absolute here.

   The navigation must remain in the
   normal document flow so the sidebar
   can scroll naturally.
*/

.mega-menu-nav {

    position: relative;

    z-index: 5;

    width: 100%;

    padding:
        0
        0;

    margin-top: 45px;

}


/* =====================================================
   05. MENU LABEL
===================================================== */

.mega-menu-top {

    display: none;

}


/* =====================================================
   06. NAVIGATION
===================================================== */

.mega-navigation {

    display: flex;

    flex-direction: column;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            .18
        );

}


/* =====================================================
   07. NAV ITEM
===================================================== */

.mega-nav-item {

    position: relative;

    display: grid;

    grid-template-columns:
        48px
        1fr;

    align-items: center;

    min-height: 82px;

    padding:
        12px
        0;

    color:
        rgba(
            241,
            238,
            231,
            .82
        );

    text-decoration: none;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .13
        );

    transition:
        color .3s ease,
        padding-left .35s ease;

}


/* =====================================================
   08. NUMBER CIRCLE
===================================================== */

.mega-nav-item span {

    width: 36px;

    height: 36px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(
            241,
            238,
            231,
            .42
        );

    border-radius: 50%;

    font-size: .58rem;

    color:
        rgba(
            241,
            238,
            231,
            .75
        );

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;

}


/* =====================================================
   09. NAV TEXT
===================================================== */

.mega-nav-item strong {

    font-family:
        "DM Sans",
        sans-serif;

    font-size:
        clamp(
            1.35rem,
            2vw,
            1.65rem
        );

    font-weight: 400;

    letter-spacing:
        -.025em;

}


/* =====================================================
   10. HOVER
===================================================== */

.mega-nav-item:hover {

    padding-left: 10px;

    color:
        #ffffff;

}


.mega-nav-item:hover span {

    background:
        #f1eee7;

    color:
        #1b2228;

    border-color:
        #f1eee7;

}


/* =====================================================
   11. CLOSE BUTTON
===================================================== */

.mega-menu-close {

    position: absolute;

    top: 35px;

    right: 40px;

    z-index: 20;

    padding: 0;

    border: 0;

    background: transparent;

    color:
        #f1eee7;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: .7rem;

    letter-spacing: .12em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        opacity .3s ease;

}


.mega-menu-close:hover {

    opacity: .5;

}
/* =====================================================
   08. AKRUTI BRAND
===================================================== */

.mega-brand {

    position: relative;

    z-index: 10;

    padding-bottom: 30px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, .17);

}


/* =====================================================
   09. BRAND NAME
===================================================== */

.mega-brand-main {

    display: block;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            3rem,
            5vw,
            4.5rem
        );

    line-height: .9;

    font-weight: 400;

    letter-spacing: .025em;

}


/* =====================================================
   10. BRAND SUBTITLE
===================================================== */

.mega-brand-sub {

    display: block;

    margin-top: 12px;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: .48rem;

    letter-spacing: .28em;

    opacity: .62;

}


/* =====================================================
   11. INFORMATION
===================================================== */

.mega-info-grid {

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        35px
        40px;

    /*
       IMPORTANT:

       No giant margin-top here.

       The navigation now sits in normal
       document flow, so the information
       naturally comes underneath it.
    */

    margin-top: 55px;

    padding-top: 38px;

    border-top:
        1px solid
        rgba(255, 255, 255, .15);

}


/* =====================================================
   12. INFO BLOCK
===================================================== */

.mega-info-block {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.mega-info-label {

    margin-bottom: 10px;

    font-size: .58rem;

    letter-spacing: .18em;

    opacity: .5;

}


.mega-info-block a,
.mega-info-block p {

    margin: 0;

    color:
        rgba(
            241,
            238,
            231,
            .72
        );

    text-decoration: none;

    font-size: .75rem;

    line-height: 1.7;

}


.mega-info-block a:hover {

    color:
        #ffffff;

}


/* =====================================================
   13. SOCIAL
===================================================== */

.mega-social {

    grid-column:
        1 / -1;

    display: flex;

    flex-direction: row;

    align-items: center;

    gap: 25px;

}


.mega-social
.mega-info-label {

    margin:
        0
        10px
        0
        0;

}


.mega-social a {

    font-size: .62rem;

    letter-spacing: .08em;

    text-transform: uppercase;

}


/* =====================================================
   14. BOTTOM
===================================================== */

.mega-menu-bottom {

    position: relative;

    z-index: 5;

    margin-top: auto;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, .15);

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color:
        rgba(
            241,
            238,
            231,
            .42
        );

    font-size: .55rem;

    letter-spacing: .05em;

}


/* =====================================================
   15. MOBILE
===================================================== */

@media (max-width: 700px) {

    .mega-menu {

        width: 100%;

    }


    .mega-menu-info {

        width: 100%;

        padding:
            35px
            25px
            25px;

    }


    /*
       IMPORTANT:

       No top positioning here.
       Navigation remains in normal flow.
    */

    .mega-menu-nav {

        width: 100%;

        padding: 0;

        margin-top: 40px;

    }


    .mega-menu-close {

        top: 25px;

        right: 25px;

    }


    .mega-brand-main {

        font-size: 3.5rem;

    }


    .mega-info-grid {

        grid-template-columns: 1fr;

        margin-top: 45px;

    }


    .mega-social {

        grid-column: auto;

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }


    .mega-social
    .mega-info-label {

        margin:
            0
            0
            5px;

    }


    .mega-menu-bottom {

        flex-direction: column;

        align-items: flex-start;

    }

}
/* =====================================================
   08. MENU BRAND
===================================================== */

.mega-brand {

    margin-top: 10px;

    margin-bottom: 70px;

}


.mega-brand-main {

    display: block;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            4rem,
            8vw,
            8rem
        );

    line-height: .8;

    font-weight: 400;

    letter-spacing: .05em;

}


.mega-brand-sub {

    display: block;

    margin-top: 15px;

    font-size: .55rem;

    letter-spacing: .3em;

    opacity: .7;

}


/* =====================================================
   09. INFORMATION GRID
===================================================== */

.mega-info-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        55px 70px;

}


/* =====================================================
   10. INFORMATION BLOCK
===================================================== */

.mega-info-block {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.mega-info-label {

    font-size: .65rem;

    letter-spacing: .18em;

    color:
        rgba(255,255,255,.55);

}


.mega-info-block a,
.mega-info-block p {

    margin: 0;

    color:
        var(--cream);

    text-decoration: none;

    font-size: .8rem;

    line-height: 1.7;

}


.mega-info-block a:hover {

    opacity: .65;

}


/* =====================================================
   11. SOCIAL
===================================================== */

.mega-social {

    grid-column:
        1 / -1;

}


.mega-social a {

    width: fit-content;

    text-transform: uppercase;

    letter-spacing: .08em;

}


/* =====================================================
   12. MENU BOTTOM
===================================================== */

.mega-menu-bottom {

    margin-top: auto;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255,255,255,.25);

    display: flex;

    justify-content: space-between;

    font-size: .6rem;

    color:
        rgba(255,255,255,.55);

    letter-spacing: .05em;

}


/* =====================================================
   13. HAMBURGER → X
===================================================== */

.menu-toggle.active span:nth-child(1) {

    transform:
        translateY(8px)
        rotate(45deg);

}


.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-8px)
        rotate(-45deg);

}
/* =====================================================
   FINAL NAVBAR — FROSTED ARCHITECTURAL HEADER
===================================================== */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    color: var(--white);

    transition:
        transform .45s cubic-bezier(.2,.8,.2,1);

}


/* HIDE NAVBAR WHEN SCROLLING DOWN */

.site-header.nav-hidden {

    transform: translateY(-100%);

}


/* =====================================================
   FROSTED NAVBAR
===================================================== */

.site-header .navbar {

    position: relative;

    width: 100%;

    height: 110px;

    padding:
        0 4vw;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    background:
        rgba(20, 20, 20, 0.28);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(255,255,255,.22);

}


/* =====================================================
   LEFT
===================================================== */

.site-header .nav-portfolio {

    justify-self: start;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        12px 30px;

    border:
        1px solid
        rgba(255,255,255,.65);

    border-radius: 999px;

    color: white;

    text-decoration: none;

    font-size: .7rem;

    letter-spacing: .08em;

    text-transform: uppercase;

}


/* =====================================================
   CENTER LOGO
===================================================== */

.site-header .nav-logo {

    justify-self: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    color: white;

    text-decoration: none;

}


.site-header .nav-logo-main {

    font-family:
        "Playfair Display",
        serif;

    font-size: 3.2rem;

    font-weight: 400;

    letter-spacing: .08em;

    line-height: .8;

}


.site-header .nav-logo-sub {

    margin-top: 12px;

    font-size: .45rem;

    letter-spacing: .28em;

    opacity: .8;

}


/* =====================================================
   RIGHT SIDE
===================================================== */

.site-header .nav-right {

    justify-self: end;

    display: flex;

    align-items: center;

    gap: 35px;

}


.site-header .nav-est {

    color: white;

    font-size: .7rem;

    letter-spacing: .1em;

}


/* =====================================================
   HAMBURGER
===================================================== */

/*
   IMPORTANT:
   This deliberately uses !important
   because your existing navbar CSS
   is currently hiding/overriding it.
*/

.site-header .menu-toggle {

    display: flex !important;

    width: 48px;

    height: 48px;

    padding: 0;

    margin: 0;

    border: none;

    outline: none;

    background: transparent;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 7px;

    cursor: pointer;

    z-index: 2100;

}


.site-header .menu-toggle span {

    display: block !important;

    width: 38px;

    height: 1px;

    background: white;

    opacity: 1;

    visibility: visible;

    transition:
        transform .35s ease,
        opacity .25s ease;

}


/* HAMBURGER → X */

.site-header .menu-toggle.active span:nth-child(1) {

    transform:
        translateY(8px)
        rotate(45deg);

}


.site-header .menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.site-header .menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-8px)
        rotate(-45deg);

}
/* =====================================================
   FINAL HAMBURGER VISIBILITY FIX
===================================================== */

.site-header .navbar .nav-right .menu-toggle {

    display: flex !important;

    position: relative !important;

    width: 48px !important;
    height: 48px !important;

    padding: 0 !important;
    margin: 0 !important;

    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;

    gap: 7px !important;

    background: transparent !important;

    border: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    z-index: 9999 !important;

    cursor: pointer !important;

}


.site-header .navbar .nav-right .menu-toggle span {

    display: block !important;

    position: relative !important;

    width: 32px !important;
    height: 2px !important;

    min-width: 32px !important;
    min-height: 2px !important;

    margin: 0 !important;
    padding: 0 !important;

    background-color: #ffffff !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none;

}
/* =====================================================
   ABOUT PAGE
===================================================== */

.about-page {
    background: var(--cream);
    color: var(--text);
    overflow: hidden;
}

/* =====================================================
   ABOUT PAGE
===================================================== */


/* =====================================================
   01. ABOUT INTRO
===================================================== */

.about-intro {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

    padding: 100px 0 70px;
}


.about-intro-label {
    display: flex;

    align-items: center;

    gap: 18px;

    margin: 0;

    font-size: .75rem;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.about-logo-mark {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    font-size: .7rem;
}


/* =====================================================
   02. STORY SECTION
===================================================== */

.about-split {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1.15fr;

    gap: 70px;

    align-items: center;

    padding: 80px 0 120px;

}


/* =====================================================
   03. IMAGE LEFT
===================================================== */

.about-split-left {

    grid-template-columns:
        1.15fr 1fr;

}


/* =====================================================
   04. IMAGE RIGHT
===================================================== */

.about-split-right {

    grid-template-columns:
        1.5fr 1fr;

}


/* =====================================================
   05. TEXT
===================================================== */

.about-split-text {

    max-width: 700px;

}


.about-small-label {

    display: block;

    margin-bottom: 22px;

    color: var(--muted);

    font-size: .65rem;

    letter-spacing: .13em;

    text-transform: uppercase;

}


.about-split-text h2 {

    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            3rem,
            4.5vw,
            5rem
        );

    line-height: .95;

    font-weight: 400;

}


.about-split-text h2 em {

    display: block;

    font-weight: 400;

}


.about-split-text p {

    max-width: 530px;

    margin-top: 28px;

    color: var(--muted);

    font-size: .9rem;

    line-height: 1.8;

}


/* =====================================================
   06. IMAGES
===================================================== */

.about-split-image {

    width: 100%;

    height: 560px;

    overflow: hidden;

}


.about-split-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1);

}


.about-split-image:hover img {

    transform: scale(1.035);

}
/* =====================================================
   ABOUT PAGE — SCROLL REVEAL
===================================================== */


/* =====================================================
   BASE
===================================================== */

.about-split-text,
.about-split-image {

    opacity: 0;

    transition:
        opacity 0.9s ease,
        transform 1s cubic-bezier(.2, .8, .2, 1);
}


/* =====================================================
   STARTING POSITIONS
===================================================== */

/* TEXT — ENTER FROM LEFT */

.about-split-right .about-split-text.reveal-left {

    transform: translateX(-80px);
}


/* IMAGE — ENTER FROM RIGHT */

.about-split-right .about-split-image.reveal-right {

    transform: translateX(80px);
}


/* IMAGE — ENTER FROM LEFT */

.about-split-left .about-split-image.reveal-left {

    transform: translateX(-80px);
}


/* TEXT — ENTER FROM RIGHT */

.about-split-left .about-split-text.reveal-right {

    transform: translateX(80px);
}


/* =====================================================
   VISIBLE STATE
   IMPORTANT: selectors have equal/higher specificity
===================================================== */

.about-split-right .about-split-text.reveal-left.is-visible {

    opacity: 1;
    transform: translateX(0);
}


.about-split-right .about-split-image.reveal-right.is-visible {

    opacity: 1;
    transform: translateX(0);
}


.about-split-left .about-split-image.reveal-left.is-visible {

    opacity: 1;
    transform: translateX(0);
}


.about-split-left .about-split-text.reveal-right.is-visible {

    opacity: 1;
    transform: translateX(0);
}


/* =====================================================
   ABOUT SPLIT LAYOUT
===================================================== */

.about-split {

    width: 100%;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    min-height: 720px;

    overflow: hidden;
}


/* =====================================================
   TEXT
===================================================== */

.about-split-text {

    padding:
        80px 7vw;

    box-sizing: border-box;
}


/* =====================================================
   IMAGE
===================================================== */

.about-split-image {

    width: 100%;
    height: 600px;

    overflow: hidden;
}


.about-split-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 800px) {

    .about-split {

        grid-template-columns: 1fr;

        min-height: auto;
    }


    .about-split-text {

        padding:
            70px 25px;
    }


    .about-split-image {

        height: 500px;
    }

}
/* =====================================================
   08. OUR PROJECTS
===================================================== */

.about-projects {

    padding:
        120px 0
        140px;

    background:
        var(--warm);

}


.about-section-heading {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin:
        0 auto 70px;

}


.about-section-heading h2 {

    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            3rem,
            5vw,
            5.5rem
        );

    line-height: .92;

    font-weight: 400;

}


.about-section-heading h2 em {

    display: block;

}


.about-section-heading p {

    max-width: 450px;

    margin-top: 25px;

    color: var(--muted);

    line-height: 1.8;

}
/* =====================================================
   09. PROJECT GRID
===================================================== */

.about-project-grid {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px 35px;

}


/* REMOVE SPECIAL LARGE PROJECT */

.project-large {

    grid-row: auto;

}


/* PROJECT IMAGE */

.about-project-image {

    width: 100%;

    height: 420px;

    overflow: hidden;

}


.about-project-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1);

}


.about-project:hover
.about-project-image img {

    transform: scale(1.04);

}


/* PROJECT INFO */

.about-project-info {

    display: flex;

    flex-direction: column;

    gap: 7px;

    padding-top: 16px;

}


.about-project-info span {

    color: var(--muted);

    font-size: .6rem;

    letter-spacing: .1em;

    text-transform: uppercase;

}


.about-project-info h3 {

    margin: 3px 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.8rem;

    font-weight: 400;

}




/* =====================================================
   10. PROJECTS LINK
===================================================== */

.about-projects-link {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin:
        70px auto 0;

    text-align: right;

}


.about-projects-link a {

    color: var(--text);

    text-decoration: none;

    border-bottom:
        1px solid
        var(--text);

    padding-bottom: 7px;

    font-size: .75rem;

    letter-spacing: .08em;

    text-transform: uppercase;

}


/* =====================================================
   11. TESTIMONIALS
===================================================== */

.about-testimonials {

    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    background:
        url("../images/testimonials/testimonial-bg.jpg")
        center / cover
        no-repeat;

    color: #fff;

}


.testimonial-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(15,22,24,.72);

}


.testimonial-inner {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;

    align-items: center;

}


.testimonial-heading h2 {

    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            3rem,
            5vw,
            5.5rem
        );

    line-height: .92;

    font-weight: 400;

}


.testimonial-heading h2 em {

    display: block;

}


.testimonial-heading p {

    max-width: 350px;

    margin-top: 25px;

    color:
        rgba(255,255,255,.7);

    line-height: 1.8;

}


/* =====================================================
   12. TESTIMONIAL CARD
===================================================== */

.testimonial-card {

    position: relative;

    padding: 50px;

    background:
        rgba(250,248,244,.96);

    color: var(--text);

}


.testimonial-stars {

    margin-bottom: 25px;

    font-size: 1.3rem;

    letter-spacing: 4px;

}


.testimonial-card blockquote {

    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            1.4rem,
            2vw,
            2.1rem
        );

    line-height: 1.45;

}


.testimonial-author {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 40px;

}


.testimonial-author-image {

    width: 50px;

    height: 50px;

    overflow: hidden;

    border-radius: 50%;

}


.testimonial-author-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.testimonial-author strong {

    display: block;

    font-size: .85rem;

    font-weight: 500;

}


.testimonial-author span {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: .7rem;

}


/* =====================================================
   13. RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .about-intro,
    .about-split,
    .about-section-heading,
    .about-project-grid,
    .about-projects-link,
    .testimonial-inner {

        width:
            calc(100% - 40px);

    }


    .about-split,
    .about-split-left,
    .about-split-right {

        grid-template-columns: 1fr;

        gap: 45px;

        padding:
            70px 0
            90px;

    }


    .about-split-text {

        max-width: 560px;
        padding: 80px 5vw;
    }


    .about-split-image {

        height: 480px;

    }


    .about-project-grid {

        grid-template-columns: 1fr;

    }


    .project-large {

        grid-row: auto;

    }


    .project-large
    .about-project-image,
    .about-project-image {

        height: 480px;

    }


    .testimonial-inner {

        grid-template-columns: 1fr;

        gap: 50px;

        padding:
            90px 0;

    }

}


@media (max-width: 600px) {

    .about-intro {

        padding:
            80px 0
            50px;

    }


    .about-split-text h2 {

        font-size: 3rem;

    }


    .about-split-image {

        height: 380px;

    }


    .about-project-image,
    .project-large
    .about-project-image {

        height: 380px;

    }


    .testimonial-card {

        padding: 30px;

    }


    .about-testimonials {

        min-height: auto;

    }

}

/* =====================================================
   TESTIMONIAL SLIDER ANIMATION
===================================================== */

.testimonial-card {

    opacity: 1;

    transform: translateX(0);

    transition:
        opacity .3s ease,
        transform .3s ease;

}


.testimonial-card.testimonial-changing {

    opacity: 0;

    transform: translateX(35px);

}
/* =====================================================
   PROJECTS PAGE
===================================================== */


/* =====================================================
   PAGE
===================================================== */

.projects-page {
    width: 100%;
    background: #e9dfcf;
    color: #111;
    overflow: hidden;
}



/* =====================================================
   PROJECTS INTRO
===================================================== */

.projects-intro {

    min-height: 72vh;

    padding: 100px 7vw 80px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    box-sizing: border-box;
}



/* TOP ROW */

.projects-intro-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 12px;

    letter-spacing: .2em;

    text-transform: uppercase;

    padding: 30px 0px;

}



/* INTRO CONTENT */

.projects-intro-content {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    align-items: end;

    gap: 50px;

}



/* MAIN HEADING */

.projects-intro-content h1 {

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(
        80px,
        10vw,
        170px
    );

    font-weight: 400;

    line-height: .82;

    letter-spacing: -.055em;

}



/* ITALIC WORD */

.projects-intro-content h1 em {

    font-style: italic;

    font-weight: 100;

}



/* INTRO DESCRIPTION */

.projects-intro-content p {

    max-width: 570px;

    margin: 0 0 15px;

    font-size: 20px;

    line-height: 1.65;

    color: #5f625f;

}



/* =====================================================
   PROJECT LIST
===================================================== */

.projects-list {

    width: 100%;

    padding: 0 4vw 100px;

    box-sizing: border-box;

}



/* =====================================================
   PROJECT CARD
===================================================== */

.project-card {

    width: 100%;

    min-height: 650px;

    margin-bottom: 55px;

    display: grid;

    grid-template-columns: 1.08fr .92fr;

    background: #111;

    color: #f5f1e8;

    overflow: hidden;

    position: relative;

}



/* =====================================================
   ALTERNATING LAYOUT
===================================================== */

.project-left {

    grid-template-columns: 1.08fr .92fr;

}


.project-right {

    grid-template-columns: .92fr 1.08fr;

}



/* =====================================================
   IMAGE
===================================================== */

.project-image {

    width: 100%;

    height: 100%;

    min-height: 650px;

    overflow: hidden;

    position: relative;

}



/* IMAGE */

.project-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1.2s cubic-bezier(
            .22,
            1,
            .36,
            1
        );

}



/* HOVER */

.project-card:hover .project-image img {

    transform: scale(1.045);

}



/* =====================================================
   PROJECT INFORMATION
===================================================== */

.project-info {

    min-height: 650px;

    padding: 90px 7vw 80px 6vw;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    justify-content: center;

}



/* RIGHT VERSION */

.project-right .project-info {

    padding-left: 7vw;

    padding-right: 6vw;

}



/* PROJECT NUMBER */

.project-number {

    display: block;

    margin-bottom: 50px;

    font-size: 11px;

    letter-spacing: .2em;

    text-transform: uppercase;

    color: rgba(245, 241, 232, .62);

}



/* PROJECT TITLE */

.project-info h2 {

    margin: 0 0 28px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(
        50px,
        5vw,
        88px
    );

    font-weight: 400;

    line-height: .9;

    letter-spacing: -.045em;

}



/* ITALIC */

.project-info h2 em {

    font-style: italic;

}



/* LOCATION */

.project-location {

    display: block;

    margin-bottom: 65px;

    font-size: 11px;

    letter-spacing: .2em;

    text-transform: uppercase;

    color: rgba(245, 241, 232, .65);

}



/* DESCRIPTION */

.project-info p {

    max-width: 470px;

    margin: 0 0 55px;

    font-size: 16px;

    line-height: 1.7;

    color: rgba(245, 241, 232, .72);

}



/* =====================================================
   VIEW PROJECT
===================================================== */

.project-link {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 30px;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(
        245,
        241,
        232,
        .6
    );

    color: #f5f1e8;

    text-decoration: none;

    font-size: 11px;

    letter-spacing: .2em;

    transition:
        gap .4s ease,
        border-color .4s ease;

}



.project-link span {

    font-size: 18px;

    line-height: 1;

}



.project-link:hover {

    gap: 42px;

    border-color: #f5f1e8;

}



/* =====================================================
   SCROLL REVEAL — INITIAL STATE
===================================================== */


/*
   IMAGE starts outside the viewport direction.
*/

.project-left .project-image {

    opacity: 0;

    transform:
        translateX(-90px)
        scale(1.06);

    transition:
        opacity 1s cubic-bezier(
            .22,
            1,
            .36,
            1
        ),

        transform 1.2s cubic-bezier(
            .22,
            1,
            .36,
            1
        );

}



/*
   TEXT enters from opposite direction.
*/

.project-left .project-info {

    opacity: 0;

    transform: translateX(90px);

    transition:
        opacity .9s cubic-bezier(
            .22,
            1,
            .36,
            1
        ) .15s,

        transform 1s cubic-bezier(
            .22,
            1,
            .36,
            1
        ) .15s;

}



/* =====================================================
   PROJECT RIGHT
===================================================== */

.project-right .project-image {

    opacity: 0;

    transform:
        translateX(90px)
        scale(1.06);

    transition:
        opacity 1s cubic-bezier(
            .22,
            1,
            .36,
            1
        ),

        transform 1.2s cubic-bezier(
            .22,
            1,
            .36,
            1
        );

}



.project-right .project-info {

    opacity: 0;

    transform: translateX(-90px);

    transition:
        opacity .9s cubic-bezier(
            .22,
            1,
            .36,
            1
        ) .15s,

        transform 1s cubic-bezier(
            .22,
            1,
            .36,
            1
        ) .15s;

}



/* =====================================================
   VISIBLE STATE
===================================================== */

.project-card.project-visible .project-image {

    opacity: 1;

    transform:
        translateX(0)
        scale(1);

}



.project-card.project-visible .project-info {

    opacity: 1;

    transform: translateX(0);

}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {


    .projects-intro {

        min-height: 72vh;

        padding:
            100px
            7vw
            80px;

    }


    .projects-intro-content {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .projects-intro-content h1 {

        font-size:
            clamp(
                70px,
                17vw,
                120px
            );

    }


    .projects-intro-content p {

        max-width: 520px;

        font-size: 16px;

    }


    .projects-list {

        padding:
            0
            18px
            70px;

    }


    .project-card,
    .project-left,
    .project-right {

        grid-template-columns: 1fr;

        min-height: auto;

        margin-bottom: 30px;

    }


    .project-image {

        min-height: 430px;

        height: 430px;

    }


    .project-info,
    .project-right .project-info {

        min-height: 500px;

        padding:
            65px
            35px;

    }


    .project-number {

        margin-bottom: 35px;

    }


    .project-info h2 {

        font-size:
            clamp(
                52px,
                13vw,
                80px
            );

    }


    .project-location {

        margin-bottom: 45px;

    }


    .project-info p {

        margin-bottom: 40px;

    }

}



/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 500px) {


    .projects-intro-top {

        font-size: 10px;

    }


    .projects-intro {

        padding:
            25px
            20px
            60px;

    }


    .projects-list {

        padding:
            0
            12px
            50px;

    }


    .project-image {

        min-height: 320px;

        height: 320px;

    }


    .project-info,
    .project-right .project-info {

        min-height: 460px;

        padding:
            50px
            25px;

    }


}
/* =====================================================
   PART 11 — SINGLE PROJECT DETAIL PAGE
===================================================== */


/* =====================================================
   01. PAGE
===================================================== */

.single-project-page {
    width: 100%;
    overflow: hidden;
}


/* =====================================================
   02. PROJECT HERO
===================================================== */

.project-detail-hero {
    position: relative;
    min-height: 100vh;
    background: #111;
    color: #f4f0e8;

    display: flex;
    flex-direction: column;

    padding-top: 100px;
}


/* HERO CONTENT */

.project-detail-hero-content {
    position: relative;
    z-index: 3;

    width: min(
        calc(100% - 100px),
        var(--container)
    );

    margin: 0 auto;

    padding: 70px 0 55px;
}


/* META */

.project-detail-meta {
    display: flex;
    align-items: center;
    gap: 35px;

    margin-bottom: 35px;

    font-size: .65rem;
    letter-spacing: .16em;
    text-transform: uppercase;

    color: rgba(244,240,232,.55);
}


/* TITLE */

.project-detail-hero h1 {
    max-width: 950px;

    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(
            4rem,
            8vw,
            9rem
        );

    font-weight: 400;

    line-height: .88;

    letter-spacing: -.045em;
}


/* LOCATION */

.project-detail-location {
    margin-top: 35px;

    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;

    color: rgba(244,240,232,.55);
}


/* =====================================================
   03. HERO IMAGE
===================================================== */

.project-detail-hero-image {
    position: relative;

    width: min(
        calc(100% - 100px),
        1500px
    );

    height: 62vh;

    margin: 0 auto;

    overflow: hidden;

    background: #1b1b1b;
}


.project-detail-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    animation:
        projectHeroZoom
        1.5s
        cubic-bezier(.2,.8,.2,1)
        both;
}


@keyframes projectHeroZoom {

    from {
        opacity: 0;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


/* =====================================================
   04. SCROLL INDICATOR
===================================================== */

.project-scroll-indicator {

    width: min(
        calc(100% - 100px),
        1500px
    );

    margin: 25px auto 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: .58rem;
    letter-spacing: .16em;

    color: rgba(244,240,232,.4);
}


/* =====================================================
   05. PROJECT INTRO
===================================================== */

.project-detail-intro {

    width: 100%;

    padding:
        150px
        max(50px, 7vw)
        170px;

    background: var(--warm);

    color: var(--text);
}


.project-detail-intro-label {
    margin-bottom: 70px;

    font-size: .65rem;
    letter-spacing: .18em;

    color: var(--muted);
}


.project-detail-intro-content {

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.1fr
        .9fr;

    gap: 100px;

    align-items: end;
}


.project-detail-intro-content h2 {

    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(
            3.2rem,
            6vw,
            7rem
        );

    font-weight: 400;

    line-height: .92;

    letter-spacing: -.035em;
}


.project-detail-intro-content h2 em {
    font-style: italic;
}


.project-detail-intro-text {
    max-width: 520px;
}


.project-detail-intro-text p {

    margin: 0;

    font-size:
        clamp(
            1rem,
            1.3vw,
            1.25rem
        );

    line-height: 1.8;

    color: var(--muted);
}


/* =====================================================
   06. DETAIL SECTIONS
===================================================== */

.project-detail-sections {

    width: 100%;

    padding:
        100px
        5vw
        120px;

    background: var(--warm);
}


/* =====================================================
   07. DETAIL CARD
===================================================== */

.project-detail-section {

    position: relative;

    width: 100%;
    max-width: 1500px;

    min-height: 650px;

    margin:
        0 auto
        90px;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    background:
        rgba(
            20,
            20,
            20,
            .92
        );

    color: #f4f0e8;

    overflow: hidden;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            .08
        );

    box-shadow:
        0 30px 80px
        rgba(
            0,
            0,
            0,
            .12
        );

    opacity: 0;

    transform:
        translateY(80px);

    transition:
        opacity .8s ease,
        transform .9s
        cubic-bezier(
            .2,
            .8,
            .2,
            1
        );
}


/* REVEALED */

.project-detail-section.is-visible {

    opacity: 1;

    transform:
        translateY(0);
}


/* =====================================================
   08. IMAGE
===================================================== */

.project-detail-section-image {

    position: relative;

    min-height: 650px;

    overflow: hidden;

    background: #1b1b1b;
}


.project-detail-section-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transform: scale(1.06);

    transition:
        transform 1.2s
        cubic-bezier(
            .2,
            .8,
            .2,
            1
        );
}


.project-detail-section.is-visible
.project-detail-section-image img {

    transform: scale(1);
}


/* =====================================================
   09. TEXT
===================================================== */

.project-detail-section-content {

    position: relative;

    min-height: 650px;

    padding:
        90px
        7vw;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(42,46,47,.94),
            rgba(17,19,20,.98)
        );

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


/* LABEL */

.project-detail-section-label {

    margin-bottom: 35px;

    font-size: .62rem;

    letter-spacing: .18em;

    text-transform: uppercase;

    color:
        rgba(
            244,
            240,
            232,
            .45
        );
}


/* TITLE */

.project-detail-section-content h2 {

    max-width: 600px;

    margin: 0 0 30px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(
            2.8rem,
            5vw,
            5.8rem
        );

    font-weight: 400;

    line-height: .94;

    letter-spacing: -.035em;
}


/* DESCRIPTION */

.project-detail-section-content p {

    max-width: 500px;

    margin: 0;

    font-size:
        clamp(
            .9rem,
            1.1vw,
            1.05rem
        );

    line-height: 1.85;

    color:
        rgba(
            244,
            240,
            232,
            .62
        );
}


/* NUMBER */

.project-detail-section-number {

    position: absolute;

    right: 45px;
    bottom: 35px;

    font-size: .62rem;

    letter-spacing: .12em;

    color:
        rgba(
            244,
            240,
            232,
            .28
        );
}


/* =====================================================
   10. ALTERNATING LAYOUT
===================================================== */


/* IMAGE LEFT */

.project-detail-section.image-left {

    grid-template-columns:
        1.1fr
        .9fr;
}


/* IMAGE RIGHT */

.project-detail-section.image-right {

    grid-template-columns:
        .9fr
        1.1fr;
}


/*
   Because the HTML always puts IMAGE first,
   image-right needs the image moved to column 2.
*/

.project-detail-section.image-right
.project-detail-section-image {

    grid-column: 2;
    grid-row: 1;
}


.project-detail-section.image-right
.project-detail-section-content {

    grid-column: 1;
    grid-row: 1;
}


/* =====================================================
   11. IMAGE HOVER
===================================================== */

.project-detail-section:hover
.project-detail-section-image img {

    transform:
        scale(1.035);
}


/* =====================================================
   12. CLOSING SECTION
===================================================== */

.project-detail-closing {

    min-height: 80vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        120px
        30px;

    background: #111;

    color: #f4f0e8;

    text-align: center;
}


.project-detail-closing-inner {

    width: min(
        850px,
        100%
    );
}


.project-detail-closing-inner
> span {

    display: block;

    margin-bottom: 35px;

    font-size: .62rem;

    letter-spacing: .2em;

    text-transform: uppercase;

    color:
        rgba(
            244,
            240,
            232,
            .4
        );
}


.project-detail-closing h2 {

    margin: 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size:
        clamp(
            3.5rem,
            7vw,
            7rem
        );

    font-weight: 400;

    line-height: .9;

    letter-spacing: -.04em;
}


.project-detail-closing h2 em {

    font-style: italic;
}


.project-detail-closing p {

    max-width: 600px;

    margin:
        40px
        auto
        50px;

    font-size: 1rem;

    line-height: 1.8;

    color:
        rgba(
            244,
            240,
            232,
            .55
        );
}


/* =====================================================
   13. BACK TO PROJECTS
===================================================== */

.project-back-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding:
        14px
        25px;

    border:
        1px solid
        rgba(
            244,
            240,
            232,
            .35
        );

    color: #f4f0e8;

    text-decoration: none;

    font-size: .65rem;

    letter-spacing: .13em;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}


.project-back-link span {

    font-size: 1rem;

    transition:
        transform .3s ease;
}


.project-back-link:hover {

    background: #f4f0e8;

    color: #111;

    border-color: #f4f0e8;
}


.project-back-link:hover span {

    transform:
        translateX(-4px);
}


/* =====================================================
   14. TABLET
===================================================== */

@media (max-width: 900px) {

    .project-detail-hero-content {

        width:
            calc(100% - 50px);

        padding-top: 55px;

    }


    .project-detail-hero-image {

        width:
            calc(100% - 50px);

        height: 55vh;
    }


    .project-scroll-indicator {

        width:
            calc(100% - 50px);
    }


    .project-detail-intro {

        padding:
            110px
            40px
            120px;
    }


    .project-detail-intro-content {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .project-detail-sections {

        padding:
            70px
            25px
            90px;
    }


    .project-detail-section {

        min-height: 560px;
    }


    .project-detail-section-image {

        min-height: 560px;
    }


    .project-detail-section-content {

        min-height: 560px;

        padding:
            60px
            50px;
    }

}


/* =====================================================
   15. MOBILE
===================================================== */

@media (max-width: 700px) {

    .project-detail-hero {

        min-height: auto;

        padding-top: 80px;
    }


    .project-detail-hero-content {

        width:
            calc(100% - 40px);

        padding:
            45px
            0
            40px;
    }


    .project-detail-meta {

        gap: 20px;

        margin-bottom: 25px;

        font-size: .58rem;
    }


    .project-detail-hero h1 {

        font-size:
            clamp(
                3.2rem,
                15vw,
                5rem
            );
    }


    .project-detail-location {

        margin-top: 25px;

        font-size: .58rem;
    }


    .project-detail-hero-image {

        width:
            calc(100% - 40px);

        height: 60vh;
    }


    .project-scroll-indicator {

        width:
            calc(100% - 40px);

        margin:
            20px auto
            25px;
    }


    /* INTRO */

    .project-detail-intro {

        padding:
            90px
            25px
            100px;
    }


    .project-detail-intro-label {

        margin-bottom: 45px;
    }


    .project-detail-intro-content {

        gap: 40px;
    }


    .project-detail-intro-content h2 {

        font-size:
            clamp(
                2.8rem,
                13vw,
                4.5rem
            );
    }


    .project-detail-intro-text p {

        font-size: .95rem;

        line-height: 1.75;
    }


    /* DETAIL SECTIONS */

    .project-detail-sections {

        padding:
            40px
            15px
            60px;
    }


    .project-detail-section,
    .project-detail-section.image-left,
    .project-detail-section.image-right {

        display: flex;

        flex-direction: column;

        min-height: auto;

        margin-bottom: 45px;
    }


    .project-detail-section-image,
    .project-detail-section.image-right
    .project-detail-section-image {

        order: 1;

        width: 100%;

        min-height: 420px;

        height: 420px;

        grid-column: auto;
        grid-row: auto;
    }


    .project-detail-section-content,
    .project-detail-section.image-right
    .project-detail-section-content {

        order: 2;

        width: 100%;

        min-height: 430px;

        padding:
            55px
            30px;

        grid-column: auto;
        grid-row: auto;
    }


    .project-detail-section-label {

        margin-bottom: 25px;
    }


    .project-detail-section-content h2 {

        font-size:
            clamp(
                2.5rem,
                11vw,
                4rem
            );
    }


    .project-detail-section-content p {

        font-size: .9rem;

        line-height: 1.75;
    }


    .project-detail-section-number {

        right: 25px;
        bottom: 25px;
    }


    /* CLOSING */

    .project-detail-closing {

        min-height: 650px;

        padding:
            90px
            25px;
    }


    .project-detail-closing h2 {

        font-size:
            clamp(
                3rem,
                14vw,
                5rem
            );
    }


    .project-detail-closing p {

        font-size: .9rem;

        margin:
            30px
            auto
            40px;
    }

}


/* =====================================================
   16. REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .project-detail-hero-image img {

        animation: none;
    }


    .project-detail-section {

        opacity: 1;

        transform: none;

        transition: none;
    }


    .project-detail-section-image img {

        transform: none;

        transition: none;
    }

}
/* =========================================================
   SERVICES — SERVICE DETAIL PAGES
   COMPLETE REPLACEMENT
========================================================= */


/* =========================================================
   BASE
========================================================= */

.service-page {
    background: #e8dfd0;
    color: #171717;
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.service-hero {
    min-height: calc(100vh - 120px);

    display: grid;
    grid-template-columns: 42% 58%;

    overflow: hidden;
}

.service-hero-content {
    padding: 80px 7vw;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-sizing: border-box;
}

.service-meta {
    display: flex;
    gap: 30px;

    margin-bottom: 40px;

    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: #68645d;
}

.service-hero-content h1 {
    margin: 0;

    max-width: 620px;

    font-size: clamp(64px, 6vw, 105px);
    line-height: .88;

    font-weight: 400;
    letter-spacing: -.05em;

    position: relative;
    z-index: 2;
}

.service-hero-description {
    max-width: 500px;

    margin: 42px 0 0;

    font-size: 18px;
    line-height: 1.7;

    color: #68645d;
}

.service-location {
    margin-top: 42px;

    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: #68645d;
}

.service-hero-image {
    height: calc(100vh - 120px);

    overflow: hidden;
}

.service-hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.02);

    transition:
        transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.service-hero:hover .service-hero-image img {
    transform: scale(1);
}


/* =========================================================
   02 — ABOUT THE SERVICE
========================================================= */

.service-about {
    display: grid;

    grid-template-columns: 20% 80%;

    padding: 105px 7vw 115px;

    border-top: 1px solid rgba(23,23,23,.15);

    box-sizing: border-box;

    position: relative;
}

.service-section-label {
    padding-top: 10px;

    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: #68645d;
}

.service-about-content {
    max-width: 1100px;
}

.service-about-content h2 {
    margin: 0 0 45px;

    max-width: 950px;

    font-size: clamp(48px, 5vw, 82px);
    line-height: .96;

    font-weight: 400;
    letter-spacing: -.045em;
}

.service-about-content h2 em {
    font-style: italic;
}

.service-about-text {
    max-width: 900px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 45px;
}

.service-about-text p {
    margin: 0;

    font-size: 17px;
    line-height: 1.75;

    color: #68645d;
}


/* SMALL DECORATIVE CIRCLE */

.service-about::after {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: 7vw;
    bottom: 25px;

    border: 1px solid rgba(23,23,23,.13);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   03 — WHAT WE OFFER
========================================================= */

.service-offerings {
    padding: 105px 7vw 120px;

    background: #111820;

    color: #f2ede4;

    border-top: none;
}

.service-section-heading {
    margin-bottom: 60px;
}

.service-section-heading > span {
    display: block;

    margin-bottom: 22px;

    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: rgba(242,237,228,.55);
}

.service-section-heading h2 {
    max-width: 850px;

    margin: 0;

    font-size: clamp(52px, 5.5vw, 88px);
    line-height: .92;

    font-weight: 400;
    letter-spacing: -.045em;
}

.service-section-heading h2 em {
    font-style: italic;
}


/* =========================================================
   FROSTED SERVICE CARDS
========================================================= */

.service-offerings-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    border: none;
}

.service-offering {
    position: relative;

    min-height: 310px;

    padding: 35px;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.12),
            rgba(255,255,255,.035)
        );

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 20px 50px rgba(0,0,0,.14);

    overflow: hidden;

    opacity: 0;
    transform: translateY(55px) scale(.98);

    transition:
        opacity .8s ease,
        transform .9s cubic-bezier(.2,.7,.2,1),
        background .4s ease;
}


/* REMOVE OLD GRID BORDERS */

.service-offering:nth-child(odd),
.service-offering:nth-child(even) {
    border-right: 1px solid rgba(255,255,255,.15);

    padding-left: 35px;
    padding-right: 35px;
}


/* DECORATIVE GLOW */

.service-offering::before {
    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    right: -90px;
    top: -90px;

    border-radius: 50%;

    background: rgba(255,255,255,.07);

    filter: blur(8px);

    transition: transform .7s ease;
}

.service-offering:hover {
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.17),
            rgba(255,255,255,.05)
        );
}

.service-offering:hover::before {
    transform: scale(1.4);
}


/* SCROLL REVEAL */

.service-offering.service-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* STAGGER */

.service-offering:nth-child(2) {
    transition-delay: .08s;
}

.service-offering:nth-child(3) {
    transition-delay: .16s;
}

.service-offering:nth-child(4) {
    transition-delay: .24s;
}


/* CARD NUMBER */

.service-offering-number {
    display: block;

    margin-bottom: 75px;

    font-size: 11px;
    letter-spacing: .18em;

    color: rgba(242,237,228,.5);
}


/* CARD TITLE */

.service-offering h3 {
    margin: 0 0 18px;

    font-size: clamp(30px, 3vw, 48px);
    line-height: .95;

    font-weight: 400;

    letter-spacing: -.035em;
}


/* CARD DESCRIPTION */

.service-offering p {
    max-width: 500px;

    margin: 0;

    font-size: 16px;
    line-height: 1.65;

    color: rgba(242,237,228,.65);
}


/* =========================================================
   04 — IMAGE GALLERY
========================================================= */

.service-gallery {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    padding: 100px 7vw 110px;
}

.service-gallery-image {
    height: 470px;

    overflow: hidden;

    opacity: 0;

    transform: translateY(55px);

    transition:
        opacity .8s ease,
        transform .9s cubic-bezier(.2,.7,.2,1);
}

.service-gallery-image:first-child {
    grid-column: span 2;

    height: 580px;
}

.service-gallery-image.service-visible {
    opacity: 1;

    transform: translateY(0);
}

.service-gallery-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1);
}

.service-gallery-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   05 — OUR APPROACH
========================================================= */

.service-elements {
    display: grid;

    grid-template-columns: 20% 80%;

    padding: 110px 7vw 120px;

    background: #171717;

    color: #f2ede4;

    box-sizing: border-box;
}

.service-elements .service-section-label {
    color: rgba(242,237,228,.55);
}

.service-elements-content {
    max-width: 1100px;
}

.service-elements-content h2 {
    max-width: 950px;

    margin: 0 0 35px;

    font-size: clamp(52px, 5.5vw, 88px);
    line-height: .92;

    font-weight: 400;
    letter-spacing: -.045em;
}

.service-elements-content h2 em {
    font-style: italic;
}

.service-elements-intro {
    max-width: 850px;

    margin: 0 0 60px;

    font-size: 18px;
    line-height: 1.7;

    color: rgba(242,237,228,.65);
}


/* =========================================================
   APPROACH LIST
========================================================= */

.service-elements-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0 60px;

    border-top: 1px solid rgba(242,237,228,.2);
}

.service-elements-column {
    display: flex;

    flex-direction: column;
}

.service-element {
    display: flex;

    align-items: center;

    gap: 18px;

    min-height: 70px;

    border-bottom: 1px solid rgba(242,237,228,.2);

    font-size: 15px;

    color: rgba(242,237,228,.9);

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2,.7,.2,1),
        padding-left .35s ease;
}

.service-element.service-visible {
    opacity: 1;

    transform: translateY(0);
}

.service-element:hover {
    padding-left: 8px;
}

.service-check {
    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(242,237,228,.5);

    border-radius: 50%;

    font-size: 11px;

    flex-shrink: 0;
}


/* =========================================================
   CTA
========================================================= */

.service-cta {
    padding: 120px 7vw;

    background: #e8dfd0;

    text-align: center;

    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.service-cta.service-visible {
    opacity: 1;

    transform: translateY(0);
}

.service-cta-inner {
    max-width: 900px;

    margin: 0 auto;
}

.service-cta-inner > span {
    display: block;

    margin-bottom: 30px;

    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;

    color: #68645d;
}

.service-cta h2 {
    margin: 0;

    font-size: clamp(52px, 6vw, 90px);
    line-height: .92;

    font-weight: 400;
    letter-spacing: -.05em;
}

.service-cta h2 em {
    font-style: italic;
}

.service-cta p {
    max-width: 550px;

    margin: 30px auto 40px;

    font-size: 17px;
    line-height: 1.7;

    color: #68645d;
}

.service-cta-link {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding-bottom: 10px;

    border-bottom: 1px solid #171717;

    color: #171717;

    font-size: 11px;
    letter-spacing: .15em;

    text-decoration: none;

    transition: gap .35s ease;
}

.service-cta-link:hover {
    gap: 30px;
}

.service-cta-link span {
    font-size: 16px;
}


/* =========================================================
   GENERAL SCROLL REVEAL
========================================================= */

.service-about {
    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);
}

.service-about.service-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .service-hero {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .service-hero-content {
        min-height: 65vh;

        padding: 80px 7vw 65px;
    }

    .service-hero-content h1 {
        font-size: clamp(60px, 12vw, 95px);
    }

    .service-hero-description {
        font-size: 16px;
    }

    .service-hero-image {
        height: 60vh;
    }


    .service-about,
    .service-elements {
        grid-template-columns: 1fr;

        padding: 90px 7vw;
    }

    .service-section-label {
        margin-bottom: 35px;
    }

    .service-about-content h2,
    .service-elements-content h2 {
        font-size: clamp(45px, 10vw, 70px);
    }

    .service-about-text {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .service-offerings {
        padding: 90px 7vw 100px;
    }

    .service-offerings-grid {
        grid-template-columns: 1fr;
    }

    .service-offering,
    .service-offering:nth-child(odd),
    .service-offering:nth-child(even) {
        border-right: 1px solid rgba(255,255,255,.15);

        padding: 35px;
    }


    .service-gallery {
        grid-template-columns: 1fr;

        padding: 0 7vw 90px;
    }

    .service-gallery-image,
    .service-gallery-image:first-child {
        grid-column: auto;

        height: 55vh;
    }


    .service-elements-list {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .service-cta {
        padding: 100px 7vw;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .service-meta {
        gap: 18px;

        margin-bottom: 30px;

        font-size: 9px;
    }

    .service-hero-content {
        min-height: 60vh;

        padding: 65px 6vw 50px;
    }

    .service-hero-content h1 {
        font-size: 62px;
        letter-spacing: -.045em;
    }

    .service-hero-image {
        height: 50vh;
    }


    .service-about,
    .service-elements {
        padding: 75px 6vw;
    }


    .service-offerings {
        padding: 75px 6vw 85px;
    }

    .service-section-heading {
        margin-bottom: 45px;
    }

    .service-section-heading h2 {
        font-size: 52px;
    }

    .service-offering {
        min-height: 270px;

        padding: 28px;
    }

    .service-offering,
    .service-offering:nth-child(odd),
    .service-offering:nth-child(even) {
        padding: 28px;
    }

    .service-offering-number {
        margin-bottom: 60px;
    }

    .service-offering h3 {
        font-size: 30px;
    }

    .service-offering p,
    .service-about-text p,
    .service-elements-intro {
        font-size: 15px;
    }


    .service-gallery {
        padding: 0 6vw 75px;
    }

    .service-gallery-image,
    .service-gallery-image:first-child {
        height: 45vh;
    }


    .service-cta {
        padding: 80px 6vw;
    }
}