/* =====================================================
   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: #F6F8F9;

    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 / --dark carry a deep logo-blue cast rather
       than neutral charcoal, so the dark sections read as
       "deep Akruti blue", not black. --text stays true
       charcoal for body copy. */
    --black: #0E1826;

    --dark: #1A2A3E;

    --white: #ffffff;

    --cream: #E9ECEE;

    --warm: #FCEBB5;


    /* Text */

    --text: #171717;

    --muted: #5F6A6E;


    /* 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(
            2.4rem,
            4.4vw,
            3.75rem
        );
}


h2 {

    font-size:
        clamp(
            1.9rem,
            3.1vw,
            2.9rem
        );
}


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: 60px;
}


/* =====================================================
   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(1.9rem, 7vw, 2.8rem);
    }

}


@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: 74px;

    padding-bottom: 80px;
}


/* =====================================================
   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: 60px;

        padding-bottom: 60px;

    }


    .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: 74px;

}


/* =====================================================
   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(1.8rem, 3vw, 2.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(1.8rem, 8vw, 2.6rem);

    }


    .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: 82px;

    padding-bottom: 92px;

    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(2rem, 3.2vw, 3rem);

    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: 62px;

        padding-bottom: 70px;

    }


    .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(1.9rem, 6vw, 2.8rem);

    }


    .studio-about-image {

        width: 90%;

        height: 500px;

        margin-top: 70px;

    }

}


@media (max-width: 600px) {

    .studio-about {

        padding-top: 90px;

        padding-bottom: 60px;

    }


    .studio-about-main h2 {

        font-size: 2.3rem;

    }


    .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: 78px;

    padding-bottom: 84px;

}


/* =====================================================
   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(1.95rem, 3vw, 2.9rem);

    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: 1;

    filter:
        saturate(0.95);

}


/* =====================================================
   08. FROSTED GLASS EFFECT
===================================================== */

.about-story-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(14, 24, 38, 0.12),
            rgba(14, 24, 38, 0.02)
        );

    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: 46vh;

    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(1.7rem, 2.6vw, 2.4rem);

    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(1.9rem, 6vw, 2.8rem);

    }


    .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: auto;

    }

}


/* =====================================================
   18. MOBILE
===================================================== */

@media (max-width: 600px) {

    .about-story {

        padding-top: 60px;

        padding-bottom: 60px;

    }


    .about-story-intro,
    .about-story-layout {

        width:
            calc(100% - 40px);

    }


    .about-story-heading h2 {

        font-size: 2.3rem;

    }


    .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: 2rem;

    }

}
/* =====================================================
   PART 06 — SERVICES
===================================================== */


/* =====================================================
   01. SERVICES SECTION
===================================================== */

.services-section {

    position: relative;

    background: var(--cream);

    padding-top: 82px;

    padding-bottom: 92px;

    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(1.7rem, 2.6vw, 2.4rem);

    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(1.55rem, 2.3vw, 2.2rem);

    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: 62px;

        padding-bottom: 70px;

    }


    .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(1.6rem, 5vw, 2.3rem);

    }


    .service-arrow {

        width: 40px;

        height: 40px;

    }

}


@media (max-width: 600px) {

    .services-header h2 {

        font-size: 2.3rem;

    }


    .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: 88px;

    padding-bottom: 88px;

    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(2rem, 3.4vw, 3.1rem);

    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: 62px;

        padding-bottom: 62px;

    }


    .contact-cta-inner {

        width:
            calc(100% - 40px);

    }


    .contact-cta h2 {

        font-size:
            clamp(1.9rem, 6vw, 2.8rem);

    }


    .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: 2.3rem;

    }

}
/* =====================================================
   FOOTER — ARCHITECTURAL
===================================================== */

.site-footer {

    position: relative;

    overflow: hidden;

    background: #000000;

    color: #EDF0F2;

    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: 70px;

}


/* =====================================================
   FOOTER BRAND
===================================================== */

.footer-brand {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

}


.footer-logo {

    display: flex;

    align-items: center;

    gap: 14px;

    color: #EDF0F2;

    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(1.6rem, 2.4vw, 2.4rem);

    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: #EDF0F2;

    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: 62px;

}


/* =====================================================
   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: #EDF0F2;

}


/* =====================================================
   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: 2rem;

    }


    .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:
        #EDF0F2;

    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:
        #EDF0F2;

    color:
        #1b2228;

    border-color:
        #EDF0F2;

}


/* =====================================================
   11. CLOSE BUTTON
===================================================== */

.mega-menu-close {

    position: absolute;

    top: 35px;

    right: 40px;

    z-index: 20;

    padding: 0;

    border: 0;

    background: transparent;

    color:
        #EDF0F2;

    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(1.7rem, 2.5vw, 2.3rem);

    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: 2.3rem;

    }


    .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(2rem, 3.3vw, 3rem);

    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: 60px 0 44px;
}


.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: 52px 0 70px;

}


/* =====================================================
   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(1.7rem, 2.4vw, 2.4rem);

    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(1.7rem, 2.6vw, 2.4rem);

    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(1.7rem, 2.6vw, 2.4rem);

    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: 2rem;

    }


    .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: 0;

    padding: 44px 7vw 40px;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;

    gap: clamp(40px, 8vh, 96px);

    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(38px, 4.5vw, 58px);

    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: 56px 7vw 50px 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(34px, 3.4vw, 50px);

    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: 0;

        padding:
            100px
            7vw
            80px;

    }


    .projects-intro-content {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .projects-intro-content h1 {

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

    }


    .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(32px, 8vw, 48px);

    }


    .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: #EDF0F2;

    display: flex;
    flex-direction: column;

    padding-top: 60px;
}


/* 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(2rem, 3.4vw, 3.1rem);

    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(1.85rem, 2.9vw, 2.8rem);

    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: #EDF0F2;

    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(1.8rem, 2.8vw, 2.7rem);

    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: 44vh;

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        120px
        30px;

    background: #111;

    color: #EDF0F2;

    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(1.9rem, 3vw, 2.8rem);

    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: #EDF0F2;

    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: #EDF0F2;

    color: #111;

    border-color: #EDF0F2;
}


.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(1.8rem, 8vw, 2.6rem);
    }


    .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(1.7rem, 7vw, 2.4rem);
    }


    .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(1.6rem, 6vw, 2.3rem);
    }


    .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(1.8rem, 8vw, 2.6rem);
    }


    .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: 52px 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(40px, 4vw, 60px);
    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: 60px 7vw 64px;

    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(34px, 3.4vw, 50px);
    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: 60px 7vw 66px;

    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(237,240,242,.55);
}

.service-section-heading h2 {
    max-width: 850px;

    margin: 0;

    font-size: clamp(36px, 3.6vw, 52px);
    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(237,240,242,.5);
}


/* CARD TITLE */

.service-offering h3 {
    margin: 0 0 18px;

    font-size: clamp(26px, 2.5vw, 36px);
    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(237,240,242,.65);
}


/* =========================================================
   04 — IMAGE GALLERY
========================================================= */

.service-gallery {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    padding: 58px 7vw 62px;
}

.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: 62px 7vw 66px;

    background: #171717;

    color: #f2ede4;

    box-sizing: border-box;
}

.service-elements .service-section-label {
    color: rgba(237,240,242,.55);
}

.service-elements-content {
    max-width: 1100px;
}

.service-elements-content h2 {
    max-width: 950px;

    margin: 0 0 35px;

    font-size: clamp(36px, 3.6vw, 52px);
    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(237,240,242,.65);
}


/* =========================================================
   APPROACH LIST
========================================================= */

.service-elements-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0 60px;

    border-top: 1px solid rgba(237,240,242,.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(237,240,242,.2);

    font-size: 15px;

    color: rgba(237,240,242,.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(237,240,242,.5);

    border-radius: 50%;

    font-size: 11px;

    flex-shrink: 0;
}


/* =========================================================
   CTA
========================================================= */

.service-cta {
    padding: 66px 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(36px, 3.8vw, 54px);
    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: auto;

        padding: 50px 7vw 44px;
    }

    .service-hero-content h1 {
        font-size: clamp(38px, 9vw, 56px);
    }

    .service-hero-description {
        font-size: 16px;
    }

    .service-hero-image {
        height: 60vh;
    }


    .service-about,
    .service-elements {
        grid-template-columns: 1fr;

        padding: 54px 7vw;
    }

    .service-section-label {
        margin-bottom: 35px;
    }

    .service-about-content h2,
    .service-elements-content h2 {
        font-size: clamp(32px, 8vw, 46px);
    }

    .service-about-text {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .service-offerings {
        padding: 54px 7vw 58px;
    }

    .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: 58px 7vw;
    }
}


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

@media (max-width: 600px) {

    .service-meta {
        gap: 18px;

        margin-bottom: 30px;

        font-size: 9px;
    }

    .service-hero-content {
        min-height: auto;

        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: 50px 6vw 54px;
    }

    .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;
    }
}

/* =========================================================
   ABOUT AKRUTI — REFERENCE EDITORIAL LAYOUT (2026-09-12)
========================================================= */
body.page-id-14 { --ab-navy:#06294a; --ab-blue:#00aee9; --ab-yellow:#fbc600; --ab-ivory:#fbf8f1; --ab-line:rgba(6,41,74,.18); background:var(--ab-ivory); }
body.page-id-14 .site-main, body.page-id-14 .content-area, body.page-id-14 article, body.page-id-14 .entry-content { margin:0!important; padding:0!important; max-width:none!important; width:100%!important; }
body.page-id-14 .ab-page { display:block!important; padding-top:126px; overflow:hidden; background:var(--ab-ivory); color:var(--ab-navy); }
body.page-id-14 .ab-page .elementor-widget { margin:0; }
body.page-id-14 .ab-page h1, body.page-id-14 .ab-page h2, body.page-id-14 .ab-page h3, body.page-id-14 .ab-page h4, body.page-id-14 .ab-page h5, body.page-id-14 .ab-page h6, body.page-id-14 .ab-page p { margin-top:0; }
body.page-id-14 .ab-page h1, body.page-id-14 .ab-page h2, body.page-id-14 .ab-page h3 { color:var(--ab-navy); font-family:"Cormorant Garamond",Georgia,serif; font-weight:500; line-height:.93; letter-spacing:-.035em; }
body.page-id-14 .ab-page em { color:var(--ab-blue); font-weight:400; }
body.page-id-14 .ab-eyebrow .elementor-heading-title, body.page-id-14 .ab-kicker .elementor-heading-title, body.page-id-14 .ab-count .elementor-heading-title, body.page-id-14 .ab-meta-line .elementor-heading-title, body.page-id-14 .ab-profile-role .elementor-heading-title, body.page-id-14 .ab-profile-number .elementor-heading-title { color:var(--ab-navy); font-family:Montserrat,Arial,sans-serif; font-size:11px; font-weight:600; line-height:1.6; letter-spacing:.23em; text-transform:uppercase; }
body.page-id-14 .ab-eyebrow span { display:inline-block; width:28px; height:3px; margin:0 16px 3px 0; background:var(--ab-yellow); }
body.page-id-14 .ab-body, body.page-id-14 .ab-intro, body.page-id-14 .ab-card-copy { color:var(--ab-navy); font-family:Montserrat,Arial,sans-serif; font-size:15px; line-height:1.65; }
body.page-id-14 .ab-body p, body.page-id-14 .ab-intro p, body.page-id-14 .ab-card-copy p { margin:0 0 18px; }
body.page-id-14 .ab-cover, body.page-id-14 .ab-cover .elementor-widget-container, body.page-id-14 .ab-cover img { width:100%; height:100%; }
body.page-id-14 .ab-cover img { display:block; object-fit:cover; }
body.page-id-14 .ab-arrow-button .elementor-button { padding:0; border:0; background:transparent; color:var(--ab-navy); font-family:Montserrat,Arial,sans-serif; font-size:10px; font-weight:600; letter-spacing:.2em; }
body.page-id-14 .ab-arrow-button .elementor-button-icon { display:inline-grid; place-items:center; width:52px; height:52px; margin-right:16px; border-radius:50%; background:var(--ab-yellow); color:var(--ab-navy); font-size:17px; }
body.page-id-14 .ab-display .elementor-heading-title { font-size:clamp(64px,6.1vw,104px); }
body.page-id-14 .ab-section-title .elementor-heading-title { font-size:clamp(50px,4.6vw,76px); }

body.page-id-14 .ab-hero { display:grid!important; grid-template-columns:36% 64%; max-width:1440px; min-height:690px; margin:0 auto; padding:0 42px 46px; }
body.page-id-14 .ab-hero-copy { display:flex!important; flex-direction:column; justify-content:center; padding:34px 58px 10px 0; }
body.page-id-14 .ab-hero-copy .ab-display { margin:24px 0 30px; }
body.page-id-14 .ab-hero-copy .ab-intro { max-width:350px; }
body.page-id-14 .ab-hero-copy .ab-arrow-button { margin-top:20px; }
body.page-id-14 .ab-hero-meta { display:flex!important; align-items:center; justify-content:space-between; margin-top:auto; padding-top:34px; border-top:1px solid var(--ab-line); }
body.page-id-14 .ab-meta-line { text-align:right; }
body.page-id-14 .ab-hero-visual { position:relative; min-height:620px; overflow:hidden; }
body.page-id-14 .ab-image-note { position:absolute; right:38px; top:50%; transform:translateY(-50%); }
body.page-id-14 .ab-image-note .elementor-heading-title { color:#fff; font-family:Montserrat,Arial,sans-serif; font-size:13px; line-height:1.7; letter-spacing:.22em; text-shadow:0 2px 12px rgba(0,0,0,.28); }

body.page-id-14 .ab-story { display:grid!important; grid-template-columns:50% 50%; max-width:1440px; min-height:470px; margin:0 auto; padding:0 42px 44px; }
body.page-id-14 .ab-story-copy { display:flex!important; flex-direction:column; justify-content:center; padding:58px 72px 48px 0; }
body.page-id-14 .ab-story-copy .ab-section-title { margin:24px 0 26px; }
body.page-id-14 .ab-story-visual { position:relative; min-height:430px; overflow:hidden; }
body.page-id-14 .ab-image-quote { position:absolute; right:36px; bottom:42px; text-align:right; }
body.page-id-14 .ab-image-quote .elementor-heading-title { color:#fff; font-size:34px; font-style:italic; text-shadow:0 2px 15px rgba(0,0,0,.35); }

body.page-id-14 .ab-principles { display:block!important; max-width:1360px; margin:0 auto; padding:42px 42px 66px; border-top:1px solid var(--ab-line); border-bottom:1px solid var(--ab-line); }
body.page-id-14 .ab-section-heading { display:flex!important; align-items:center; justify-content:space-between; margin-bottom:30px; }
body.page-id-14 .ab-principle-grid { display:grid!important; grid-template-columns:repeat(3,1fr); }
body.page-id-14 .ab-principle-card { display:block!important; min-height:260px; padding:24px 44px; border-right:1px solid var(--ab-line); }
body.page-id-14 .ab-principle-card:first-child { padding-left:0; }
body.page-id-14 .ab-principle-card:last-child { padding-right:0; border-right:0; }
body.page-id-14 .ab-line-icon .elementor-heading-title { color:var(--ab-navy); font-family:Georgia,serif; font-size:60px; line-height:1; }
body.page-id-14 .ab-card-title { margin:14px 0 16px!important; }
body.page-id-14 .ab-card-title .elementor-heading-title { font-size:39px; }
body.page-id-14 .ab-card-copy { max-width:290px; font-size:13px; }

body.page-id-14 .ab-principals { display:block!important; max-width:1440px; margin:0 auto; padding:86px 42px 76px; }
body.page-id-14 .ab-principals-intro { max-width:820px; margin:0 auto 58px; text-align:center; }
body.page-id-14 .ab-principals-intro .ab-section-title { margin:20px 0 24px; }
body.page-id-14 .ab-principals-intro .ab-body { max-width:680px; margin:0 auto; }
body.page-id-14 .ab-profile { display:grid!important; grid-template-columns:48% 52%; min-height:610px; margin-bottom:34px; background:#f3eee3; }
body.page-id-14 .ab-profile-image { min-height:610px; overflow:hidden; }
body.page-id-14 .ab-portrait, body.page-id-14 .ab-portrait .elementor-widget-container, body.page-id-14 .ab-portrait img { width:100%; height:100%; }
body.page-id-14 .ab-portrait img { display:block; object-fit:cover; object-position:center 22%; }
body.page-id-14 .ab-profile-copy { display:flex!important; flex-direction:column; justify-content:center; padding:64px 9%; }
body.page-id-14 .ab-profile-number { margin-bottom:26px!important; }
body.page-id-14 .ab-profile-number .elementor-heading-title { color:var(--ab-yellow); font-size:14px; }
body.page-id-14 .ab-profile-name .elementor-heading-title { font-size:64px; }
body.page-id-14 .ab-profile-role { margin:20px 0 28px!important; }
body.page-id-14 .ab-profile-copy .ab-body { max-width:520px; }
body.page-id-14 .ab-profile-sreeram .ab-profile-image { grid-column:2; grid-row:1; }
body.page-id-14 .ab-profile-sreeram .ab-profile-copy { grid-column:1; grid-row:1; }
body.page-id-14 .ab-socials { display:flex!important; gap:10px; margin-top:16px; }
body.page-id-14 .ab-social { width:38px; height:38px; }
body.page-id-14 .ab-social .elementor-icon-wrapper { line-height:1; }
body.page-id-14 .ab-social .elementor-icon { display:grid; place-items:center; width:38px; height:38px; border:1px solid var(--ab-navy); border-radius:50%; color:var(--ab-navy); font-size:16px; }
body.page-id-14 .ab-social .elementor-icon:hover { border-color:var(--ab-yellow); background:var(--ab-yellow); color:var(--ab-navy); }
body.page-id-14 .ab-together { display:grid!important; grid-template-columns:39% 61%; min-height:600px; margin-top:62px; background:var(--ab-navy); color:#fff; }
body.page-id-14 .ab-together-image { min-height:600px; overflow:hidden; background:#eadfbf; }
body.page-id-14 .ab-joint, body.page-id-14 .ab-joint .elementor-widget-container, body.page-id-14 .ab-joint img { width:100%; height:100%; }
body.page-id-14 .ab-joint img { display:block; object-fit:cover; object-position:center 24%; }
body.page-id-14 .ab-together-copy { display:flex!important; flex-direction:column; justify-content:center; padding:70px 11%; }
body.page-id-14 .ab-together .ab-eyebrow .elementor-heading-title, body.page-id-14 .ab-together .ab-kicker .elementor-heading-title { color:#fff; }
body.page-id-14 .ab-together .ab-section-title { margin:22px 0 26px; }
body.page-id-14 .ab-together .ab-section-title .elementor-heading-title { color:#fff; }
body.page-id-14 .ab-together .ab-body { color:#fff; max-width:620px; }
body.page-id-14 .ab-together .ab-kicker { margin-top:26px; }

body.page-id-14 .ab-studio { display:grid!important; grid-template-columns:28% 44% 28%; max-width:1440px; margin:0 auto; padding:78px 42px 62px; }
body.page-id-14 .ab-studio-copy { display:flex!important; flex-direction:column; justify-content:center; padding-right:36px; }
body.page-id-14 .ab-studio-copy .ab-section-title { margin:20px 0 26px; }
body.page-id-14 .ab-studio-main { min-height:540px; overflow:hidden; }
body.page-id-14 .ab-studio-stack { display:grid!important; grid-template-rows:1fr 1fr; gap:10px; padding-left:10px; }
body.page-id-14 .ab-studio-stack > .elementor-widget { min-height:265px; overflow:hidden; }
body.page-id-14 .ab-studio .ab-arrow-button { margin-top:18px; }

body.page-id-14 .ab-philosophy { display:grid!important; grid-template-columns:48% 52%; min-height:480px; }
body.page-id-14 .ab-philosophy-image { position:relative; min-height:480px; overflow:hidden; }
body.page-id-14 .ab-philosophy-copy { display:flex!important; flex-direction:column; justify-content:center; padding:64px 8%; }
body.page-id-14 .ab-philosophy-copy .ab-section-title { margin:20px 0 24px; }
body.page-id-14 .ab-philosophy-copy .ab-arrow-button { margin-top:16px; }

@media (max-width: 900px) {
 body.page-id-14 .ab-page { padding-top:92px; }
 body.page-id-14 .ab-display .elementor-heading-title { font-size:58px; }
 body.page-id-14 .ab-section-title .elementor-heading-title { font-size:46px; }
 body.page-id-14 .ab-hero { grid-template-columns:49% 51%; min-height:520px; padding:0 0 38px 26px; }
 body.page-id-14 .ab-hero-copy { padding:32px 18px 18px 0; }
 body.page-id-14 .ab-hero-copy .ab-display { margin:20px 0 22px; }
 body.page-id-14 .ab-hero-copy .ab-intro, body.page-id-14 .ab-hero-copy .ab-arrow-button, body.page-id-14 .ab-hero-meta { display:none; }
 body.page-id-14 .ab-hero-visual { min-height:500px; }
 body.page-id-14 .ab-image-note { right:16px; font-size:9px; }
 body.page-id-14 .ab-story { display:flex!important; flex-direction:column; padding:0; }
 body.page-id-14 .ab-story-copy { padding:46px 28px 30px; }
 body.page-id-14 .ab-story-visual { min-height:330px; order:2; }
 body.page-id-14 .ab-principles { padding:38px 28px 48px; border-top:0; }
 body.page-id-14 .ab-section-heading .ab-kicker { display:none; }
 body.page-id-14 .ab-principle-card { min-height:220px; padding:22px 24px; }
 body.page-id-14 .ab-card-title .elementor-heading-title { font-size:28px; }
 body.page-id-14 .ab-line-icon .elementor-heading-title { font-size:46px; }
 body.page-id-14 .ab-principals { padding:62px 24px 52px; }
 body.page-id-14 .ab-principals-intro { text-align:left; margin-bottom:38px; }
 body.page-id-14 .ab-profile { min-height:0; }
 body.page-id-14 .ab-profile-image { min-height:480px; }
 body.page-id-14 .ab-profile-copy { padding:48px 8%; }
 body.page-id-14 .ab-profile-name .elementor-heading-title { font-size:50px; }
 body.page-id-14 .ab-together { min-height:0; }
 body.page-id-14 .ab-together-image { min-height:480px; }
 body.page-id-14 .ab-studio { grid-template-columns:40% 60%; padding:54px 24px; }
 body.page-id-14 .ab-studio-main { min-height:490px; }
 body.page-id-14 .ab-studio-stack { grid-column:1/-1; grid-template-columns:1fr 1fr; grid-template-rows:auto; padding:10px 0 0; }
 body.page-id-14 .ab-philosophy { min-height:430px; }
}

@media (max-width: 600px) {
 body.page-id-14 .ab-eyebrow .elementor-heading-title, body.page-id-14 .ab-kicker .elementor-heading-title, body.page-id-14 .ab-profile-role .elementor-heading-title { font-size:9px; }
 body.page-id-14 .ab-display .elementor-heading-title { font-size:44px; line-height:.98; }
 body.page-id-14 .ab-section-title .elementor-heading-title { font-size:42px; line-height:.98; }
 body.page-id-14 .ab-body, body.page-id-14 .ab-intro { font-size:15px; line-height:1.5; }
 body.page-id-14 .ab-hero { grid-template-columns:48% 52%; min-height:500px; padding-left:24px; }
 body.page-id-14 .ab-hero-copy { justify-content:flex-start; padding-top:38px; }
 body.page-id-14 .ab-hero-copy .ab-eyebrow { display:none; }
 body.page-id-14 .ab-hero-visual { min-height:500px; }
 body.page-id-14 .ab-image-note .elementor-heading-title { font-size:8px; }
 body.page-id-14 .ab-story-copy { padding:42px 28px 28px; }
 body.page-id-14 .ab-story-copy .ab-section-title { margin:20px 0; }
 body.page-id-14 .ab-story-visual { min-height:320px; }
 body.page-id-14 .ab-image-quote { right:22px; bottom:25px; }
 body.page-id-14 .ab-image-quote .elementor-heading-title { font-size:26px; }
 body.page-id-14 .ab-principles { padding:36px 24px 38px; }
 body.page-id-14 .ab-principle-grid { grid-template-columns:repeat(3,1fr); }
 body.page-id-14 .ab-principle-card { min-height:170px; padding:14px 10px; text-align:center; }
 body.page-id-14 .ab-principle-card:first-child { padding-left:0; }
 body.page-id-14 .ab-principle-card:last-child { padding-right:0; }
 body.page-id-14 .ab-line-icon .elementor-heading-title { font-size:38px; }
 body.page-id-14 .ab-card-title { margin:9px 0!important; }
 body.page-id-14 .ab-card-title .elementor-heading-title { font-size:21px; line-height:1; }
 body.page-id-14 .ab-card-copy { display:none; }
 body.page-id-14 .ab-principals { padding:56px 0 42px; }
 body.page-id-14 .ab-principals-intro { padding:0 26px; }
 body.page-id-14 .ab-profile { display:flex!important; flex-direction:column; margin-bottom:18px; }
 body.page-id-14 .ab-profile-image, body.page-id-14 .ab-together-image { min-height:470px; }
 body.page-id-14 .ab-profile-sreeram .ab-profile-image { order:0; }
 body.page-id-14 .ab-profile-sreeram .ab-profile-copy { order:1; }
 body.page-id-14 .ab-profile-copy { padding:42px 28px 44px; }
 body.page-id-14 .ab-profile-number { margin-bottom:18px!important; }
 body.page-id-14 .ab-profile-name .elementor-heading-title { font-size:48px; }
 body.page-id-14 .ab-profile-role { margin:16px 0 22px!important; }
 body.page-id-14 .ab-together { display:flex!important; flex-direction:column; margin-top:42px; }
 body.page-id-14 .ab-together-copy { padding:46px 28px 50px; }
 body.page-id-14 .ab-joint img { object-position:center 18%; }
 body.page-id-14 .ab-studio { display:flex!important; flex-direction:column; padding:52px 0 0; }
 body.page-id-14 .ab-studio-copy { padding:0 28px 38px; }
 body.page-id-14 .ab-studio-main { min-height:390px; }
 body.page-id-14 .ab-studio-stack { display:none!important; }
 body.page-id-14 .ab-philosophy { display:grid!important; grid-template-columns:43% 57%; min-height:470px; }
 body.page-id-14 .ab-philosophy-image { min-height:470px; }
 body.page-id-14 .ab-philosophy-copy { padding:38px 20px; }
 body.page-id-14 .ab-philosophy-copy .ab-section-title .elementor-heading-title { font-size:36px; }
 body.page-id-14 .ab-philosophy-copy .ab-body { font-size:13px; }
 body.page-id-14 .ab-philosophy-copy .ab-arrow-button { display:none; }
}


/* ABOUT — TESTIMONIALS */
body.page-id-14 .ab-testimonials { display:block!important; padding:78px max(42px,calc((100vw - 1356px)/2)) 86px; background:#f3eee3; }
body.page-id-14 .ab-testimonials-heading { display:grid!important; grid-template-columns:52% 48%; align-items:end; margin-bottom:42px; }
body.page-id-14 .ab-testimonials-title .ab-section-title { margin-top:20px; }
body.page-id-14 .ab-testimonials-action { padding:0 0 8px 14%; border-left:1px solid var(--ab-line); }
body.page-id-14 .ab-testimonials-action .ab-body { max-width:500px; }
body.page-id-14 .ab-testimonials-action .ab-arrow-button { margin-top:18px; }
body.page-id-14 .ab-testimonial-grid { display:grid!important; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--ab-line); }
body.page-id-14 .ab-testimonial-card { display:flex!important; flex-direction:column; min-height:390px; padding:38px 38px 32px; border-right:1px solid var(--ab-line); }
body.page-id-14 .ab-testimonial-card:first-child { padding-left:0; }
body.page-id-14 .ab-testimonial-card:last-child { padding-right:0; border-right:0; }
body.page-id-14 .ab-quote-mark .elementor-heading-title { color:var(--ab-yellow); font-family:Georgia,serif; font-size:70px; line-height:.7; }
body.page-id-14 .ab-testimonial-copy { margin:24px 0 auto; }
body.page-id-14 .ab-testimonial-copy p { color:var(--ab-navy); font-family:"Cormorant Garamond",Georgia,serif; font-size:27px; font-style:italic; line-height:1.25; }
body.page-id-14 .ab-testimonial-name .elementor-heading-title, body.page-id-14 .ab-testimonial-role .elementor-heading-title { font-family:Montserrat,Arial,sans-serif; font-size:10px; font-weight:600; line-height:1.45; letter-spacing:.16em; }
body.page-id-14 .ab-testimonial-name { margin-top:28px!important; }
body.page-id-14 .ab-testimonial-role { margin-top:7px!important; opacity:.65; }
@media(max-width:900px){
 body.page-id-14 .ab-testimonials { padding:58px 26px 64px; }
 body.page-id-14 .ab-testimonials-heading { grid-template-columns:1fr; }
 body.page-id-14 .ab-testimonials-action { margin-top:24px; padding:22px 0 0; border-top:1px solid var(--ab-line); border-left:0; }
 body.page-id-14 .ab-testimonial-card { min-height:360px; padding:28px 22px; }
 body.page-id-14 .ab-testimonial-card:first-child { padding-left:0; }
 body.page-id-14 .ab-testimonial-card:last-child { padding-right:0; }
 body.page-id-14 .ab-testimonial-copy p { font-size:23px; }
}
@media(max-width:600px){
 body.page-id-14 .ab-testimonial-grid { display:flex!important; overflow-x:auto; scroll-snap-type:x mandatory; scrollbar-width:none; }
 body.page-id-14 .ab-testimonial-grid::-webkit-scrollbar { display:none; }
 body.page-id-14 .ab-testimonial-card, body.page-id-14 .ab-testimonial-card:first-child, body.page-id-14 .ab-testimonial-card:last-child { flex:0 0 86%; min-height:370px; padding:28px 24px; border-right:1px solid var(--ab-line); scroll-snap-align:start; }
 body.page-id-14 .ab-testimonial-copy p { font-size:25px; }
}

/* ABOUT — RESPONSIVE IMAGE AND SOCIAL ROW CORRECTIONS */
body.page-id-14 .ab-portrait img{height:610px!important;}
body.page-id-14 .ab-joint img{height:600px!important;}
body.page-id-14 .ab-socials{flex-direction:row!important;align-items:center!important;}
@media(max-width:600px){
 body.page-id-14 .ab-hero-copy .ab-hero-meta{display:none!important;}
 body.page-id-14 .ab-portrait img, body.page-id-14 .ab-joint img{height:470px!important;}
}


/* ABOUT — DESKTOP HERO HEADING FIT */
@media (min-width:901px){
 body.page-id-14 .ab-hero{grid-template-columns:39% 61%;}
 body.page-id-14 .ab-hero-copy{padding-right:42px;}
 body.page-id-14 .ab-display .elementor-heading-title{font-size:clamp(62px,5.1vw,76px);line-height:.98;letter-spacing:-.03em;}
 body.page-id-14 .ab-display{max-width:100%;overflow:visible;}
}


/* ABOUT — ONEPLUS / HIGH-DENSITY MOBILE CORRECTIONS */
@media (max-width:600px){
 body.page-id-14 .ab-hero{
   grid-template-columns:48% 52%;
   min-height:400px;
   height:400px;
   padding-left:22px;
   padding-bottom:0;
 }
 body.page-id-14 .ab-hero-copy{
   min-width:0;
   height:400px;
   padding:38px 12px 20px 0;
   justify-content:flex-start;
 }
 body.page-id-14 .ab-display .elementor-heading-title{
   font-size:34px;
   line-height:1;
   letter-spacing:-.025em;
 }
 body.page-id-14 .ab-hero-copy .ab-display{margin:10px 0 0;}
 body.page-id-14 .ab-hero-visual{min-height:400px;height:400px;}
 body.page-id-14 .ab-hero-visual .ab-cover,
 body.page-id-14 .ab-hero-visual .ab-cover .elementor-widget-container,
 body.page-id-14 .ab-hero-visual .ab-cover img{height:400px!important;}
 body.page-id-14 .ab-image-note{right:10px;}
 body.page-id-14 .ab-image-note .elementor-heading-title{font-size:7px;line-height:1.55;}
 body.page-id-14 .ab-story-visual{height:300px;min-height:300px;}
 body.page-id-14 .ab-story-visual .ab-cover,
 body.page-id-14 .ab-story-visual .ab-cover .elementor-widget-container,
 body.page-id-14 .ab-story-visual .ab-cover img{height:300px!important;}
 body.page-id-14 .ab-story-visual .ab-cover img{object-fit:cover;}
 body.page-id-14 .ab-story-visual .ab-image-quote{right:18px;bottom:18px;max-width:235px;}
 body.page-id-14 .ab-story-visual .ab-image-quote .elementor-heading-title{font-size:22px;line-height:1;}
 body.page-id-14 .ab-principles{padding:30px 18px 32px;}
 body.page-id-14 .ab-principles .ab-section-heading{margin-bottom:18px;}
 body.page-id-14 .ab-principle-card{min-height:145px;padding:12px 8px;}
 body.page-id-14 .ab-line-icon .elementor-heading-title{font-size:32px;}
 body.page-id-14 .ab-card-title .elementor-heading-title{font-size:17px;line-height:.98;letter-spacing:-.02em;}
 body.page-id-14 .ab-principals{padding-top:44px;}
}

/* === Akruti Home reference rebuild v1 — 2026-09-12 === */
body.home{overflow-x:hidden;background:#f8f5ee;color:#08284a}
body.home .site-main,body.home .elementor{background:#f8f5ee}
body.home .elementor-element.hm-hero{position:relative;min-height:720px;overflow:hidden;background:#eef0ed}
body.home .hm-hero-image{position:absolute;inset:0;margin:0;width:100%;height:100%}
body.home .hm-hero-image .elementor-widget-container,body.home .hm-hero-image img{width:100%;height:100%;object-fit:cover}
body.home .hm-hero-image:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(248,247,242,.98) 0%,rgba(248,247,242,.92) 20%,rgba(248,247,242,.38) 42%,rgba(248,247,242,0) 62%)}
body.home .elementor-element.hm-hero-copy{position:relative;z-index:2;width:min(480px,38vw);min-height:720px;padding:72px 0 42px max(4vw,42px);justify-content:center;align-items:flex-start}
body.home .hm-kicker{font:600 11px/1.4 Arial,sans-serif;letter-spacing:.19em;text-transform:uppercase}
body.home .hm-kicker p{display:flex;align-items:center;gap:12px;margin:0}
body.home .hm-kicker i{display:block;width:4px;height:4px;border-radius:50%;background:#ffc400}
body.home .hm-hero-title .elementor-heading-title{margin:22px 0 20px;color:#08284a;font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(58px,5.7vw,88px);font-weight:500;line-height:.91;letter-spacing:-.035em}
body.home .hm-hero-title em,body.home .hm-philosophy-title em,body.home .hm-closing-title em{color:#08aeda;font-weight:400}
body.home .hm-hero-desc{max-width:315px;color:#24415e;font:400 16px/1.45 Arial,sans-serif}
body.home .hm-round-link{margin-top:24px}
body.home .hm-round-link .elementor-button{display:flex;align-items:center;gap:12px;padding:0;background:transparent;color:#08284a;font:700 11px/1 Arial,sans-serif;letter-spacing:.2em}
body.home .hm-round-link .elementor-button-icon{order:-1;display:grid;place-items:center;width:58px;height:58px;border-radius:50%;background:#ffc400;color:#08284a;font-size:18px}
body.home .hm-hero-counter{margin-top:28px;color:#08284a;font:600 11px/1 Arial,sans-serif;letter-spacing:.12em}
body.home .hm-hero-counter p{display:flex;align-items:center;gap:14px}
body.home .hm-hero-counter span{display:inline-block;width:82px;height:1px;background:#9aa7ad}
body.home .hm-hero-location{position:absolute;z-index:3;right:38px;bottom:34px;color:#fff;text-align:right;font:600 11px/1.65 Arial,sans-serif;letter-spacing:.22em;text-shadow:0 1px 8px rgba(0,0,0,.45)}
body.home .elementor-element.hm-featured,body.home .elementor-element.hm-services{padding:46px max(3.6vw,36px) 54px;gap:26px}
body.home .hm-section-head{display:flex;flex-direction:row;align-items:center;justify-content:space-between;border-left:5px solid #ffc400;padding-left:18px}
body.home .hm-section-title .elementor-heading-title{margin:0;color:#08284a;font:700 19px/1.1 Arial,sans-serif;letter-spacing:.02em}
body.home .hm-text-link{width:auto}
body.home .hm-text-link .elementor-button{padding:0;background:transparent;color:#08284a;font:700 10px/1 Arial,sans-serif;letter-spacing:.16em}
body.home .hm-text-link .elementor-button-icon{color:#ffc400}
body.home .hm-project-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px}
body.home .hm-project-card{position:relative;background:#fbfaf6;border:1px solid #ddd9ce;box-shadow:0 6px 18px rgba(10,40,70,.05);padding:0 24px 24px;overflow:hidden}
body.home .hm-project-image{margin:0 -24px 18px}
body.home .hm-project-image img{display:block;width:100%;height:340px;object-fit:cover}
body.home .hm-project-count{position:absolute;top:315px;left:20px;color:#ffc400;font:700 11px/1 Arial,sans-serif;letter-spacing:.12em}
body.home .hm-card-arrow{position:absolute;top:292px;right:18px;width:54px}
body.home .hm-card-arrow .elementor-button{display:grid;place-items:center;width:54px;height:54px;border-radius:50%;padding:0;background:#ffc400;color:#08284a}
body.home .hm-project-title .elementor-heading-title{margin:0 0 5px;color:#08284a;font-family:"Cormorant Garamond",Georgia,serif;font-size:32px;font-weight:500;line-height:1}
body.home .hm-project-title a{color:inherit}
body.home .hm-project-meta{color:#566b7c;font:700 9px/1.3 Arial,sans-serif;letter-spacing:.18em}
body.home .hm-project-desc{margin-top:12px;max-width:92%;color:#385169;font:400 14px/1.45 Arial,sans-serif}
body.home .hm-project-link{margin-top:14px;width:auto}
body.home .hm-project-link .elementor-button,body.home .hm-service-link .elementor-button{padding:0;background:transparent;color:#08284a;font:700 10px/1 Arial,sans-serif;letter-spacing:.17em}
body.home .hm-project-link .elementor-button-icon,body.home .hm-service-link .elementor-button-icon{color:#ffc400}
body.home .hm-philosophy{display:grid;grid-template-columns:36% 36% 28%;min-height:440px;background:#f2efe7}
body.home .hm-philosophy-copy{padding:54px 32px 46px max(4.3vw,42px);justify-content:center;border-left:5px solid #ffc400;margin:36px 0}
body.home .hm-eyebrow{font:700 10px/1 Arial,sans-serif;letter-spacing:.2em}
body.home .hm-philosophy-title .elementor-heading-title{margin:18px 0;color:#08284a;font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(42px,4vw,60px);font-weight:500;line-height:.95}
body.home .hm-philosophy-desc{max-width:320px;color:#3a5267;font:400 16px/1.45 Arial,sans-serif}
body.home .hm-philosophy-tags{margin-top:auto;color:#52697a;font:700 9px/1 Arial,sans-serif;letter-spacing:.16em}
body.home .hm-philosophy-image,body.home .hm-philosophy-image .elementor-widget-container,body.home .hm-philosophy-image img{width:100%;height:100%}
body.home .hm-philosophy-image img{object-fit:cover}
body.home .hm-philosophy-quote{padding:50px 40px;justify-content:center}
body.home .hm-quote-mark{color:#ffc400;font:700 66px/.5 Georgia,serif}
body.home .hm-quote .elementor-heading-title{color:#0a3156;font-family:"Cormorant Garamond",Georgia,serif;font-size:32px;font-style:italic;font-weight:500;line-height:1.08}
body.home .hm-quote-tag{margin-top:24px;padding-top:20px;border-top:1px solid #173b5b;color:#5e7180;font:700 9px/1.55 Arial,sans-serif;letter-spacing:.19em}
body.home .hm-service-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:0}
body.home .hm-service-card{position:relative;padding:8px 26px 24px;border-right:1px solid #d8d7d2;min-height:275px}
body.home .hm-service-card:last-child{border-right:0}
body.home .hm-service-num{display:none}
body.home .hm-service-icon{width:auto;color:#0a3156;font-size:40px}
body.home .hm-service-icon .elementor-icon{color:#0a3156}
body.home .hm-service-title .elementor-heading-title{margin:14px 0;color:#08284a;font-family:"Cormorant Garamond",Georgia,serif;font-size:30px;font-weight:500;line-height:.98}
body.home .hm-service-copy{color:#40586e;font:400 14px/1.4 Arial,sans-serif}
body.home .hm-service-link{margin-top:auto;width:auto}
body.home .hm-service-consultancy{display:none}
body.home .hm-closing{display:grid;grid-template-columns:41% 59%;position:relative;min-height:255px;background:#023952;color:#fff;overflow:hidden}
body.home .hm-closing-copy{padding:50px 30px 45px max(4.3vw,42px);justify-content:center}
body.home .hm-closing-line{width:42px;height:4px;background:#ffc400;margin-bottom:18px}
body.home .hm-closing-title .elementor-heading-title{color:#fff;font-family:"Cormorant Garamond",Georgia,serif;font-size:47px;font-weight:500;line-height:1}
body.home .hm-closing-image,body.home .hm-closing-image .elementor-widget-container,body.home .hm-closing-image img{width:100%;height:100%}
body.home .hm-closing-image img{object-fit:cover}
body.home .hm-closing-image:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,#023952 0%,rgba(2,57,82,.2) 32%,rgba(2,57,82,.08) 100%)}
body.home .hm-closing-link{position:absolute;z-index:2;right:5%;top:50%;transform:translateY(-50%);width:auto}
body.home .hm-closing-link .elementor-button{display:flex;align-items:center;gap:16px;padding:0;background:transparent;color:#fff;text-align:left;font:700 10px/1.5 Arial,sans-serif;letter-spacing:.17em}
body.home .hm-closing-link .elementor-button-icon{order:-1;display:grid;place-items:center;width:58px;height:58px;border-radius:50%;background:#ffc400;color:#08284a;font-size:18px}
@media (max-width:1024px) and (min-width:701px){
 body.home .hm-hero-title .elementor-heading-title{font-size:60px}
 body.home .hm-project-image img{height:270px}
 body.home .hm-project-count{top:245px}
 body.home .hm-card-arrow{top:222px}
 body.home .hm-service-card{padding-left:18px;padding-right:18px}
}
@media (max-width:700px){
 body.home .elementor-element.hm-hero{min-height:590px}
 body.home .hm-hero-image:after{background:linear-gradient(90deg,rgba(248,247,242,.95) 0%,rgba(248,247,242,.76) 30%,rgba(248,247,242,.18) 58%,rgba(248,247,242,0) 80%)}
 body.home .elementor-element.hm-hero-copy{width:72%;min-height:590px;padding:52px 0 30px 28px;justify-content:center}
 body.home .hm-kicker{display:none}
 body.home .hm-hero-title .elementor-heading-title{margin:0 0 18px;font-size:49px;line-height:.93}
 body.home .hm-hero-desc{display:none}
 body.home .hm-round-link{margin-top:12px}
 body.home .hm-round-link .elementor-button-icon{width:46px;height:46px;font-size:15px}
 body.home .hm-hero-counter{display:none}
 body.home .hm-hero-location{right:20px;bottom:20px;font-size:8px}
 body.home .elementor-element.hm-featured,body.home .elementor-element.hm-services{padding:32px 26px 38px;gap:20px}
 body.home .hm-section-head{align-items:flex-end;padding-left:12px}
 body.home .hm-section-title .elementor-heading-title{font-size:11px;letter-spacing:.18em}
 body.home .hm-text-link{display:none}
 body.home .hm-project-grid{grid-template-columns:1fr;gap:26px}
 body.home .hm-project-card{padding:0 0 12px;border:0;box-shadow:none;background:transparent}
 body.home .hm-project-image{margin:0 0 10px}
 body.home .hm-project-image img{height:220px}
 body.home .hm-project-count,body.home .hm-project-desc,body.home .hm-project-link{display:none}
 body.home .hm-card-arrow{top:226px;right:4px;width:42px}
 body.home .hm-card-arrow .elementor-button{width:42px;height:42px}
 body.home .hm-project-title .elementor-heading-title{padding-right:50px;font-size:26px}
 body.home .hm-project-meta{font-size:8px}
 body.home .hm-philosophy{display:grid;grid-template-columns:1fr;min-height:0}
 body.home .hm-philosophy-copy{margin:0;padding:38px 28px 30px;border-left:0}
 body.home .hm-eyebrow{padding-left:14px;border-left:4px solid #ffc400}
 body.home .hm-philosophy-title .elementor-heading-title{font-size:42px}
 body.home .hm-philosophy-tags{position:absolute;right:28px;bottom:34px;width:76px;line-height:2}
 body.home .hm-philosophy-image{display:none}
 body.home .hm-philosophy-quote{display:none}
 body.home .hm-service-grid{grid-template-columns:1fr}
 body.home .hm-service-card,body.home .hm-service-consultancy{display:grid;grid-template-columns:58px 1fr 48px;grid-template-rows:auto auto;align-items:center;min-height:74px;padding:10px 0;border-right:0;border-bottom:1px solid #d6d5d0}
 body.home .hm-service-num,body.home .hm-service-copy{display:none}
 body.home .hm-service-icon{grid-column:1;grid-row:1/3;font-size:28px}
 body.home .hm-service-title{grid-column:2;grid-row:1}
 body.home .hm-service-title .elementor-heading-title{margin:0;font-size:24px;line-height:1}
 body.home .hm-service-title:after{content:attr(data-subtitle);display:block}
 body.home .hm-service-link{grid-column:3;grid-row:1/3;margin:0}
 body.home .hm-service-link .elementor-button{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;background:#ffc400;font-size:0}
 body.home .hm-service-link .elementor-button-icon{margin:0;color:#08284a;font-size:15px}
 body.home .hm-closing{grid-template-columns:52% 48%;min-height:245px}
 body.home .hm-closing-copy{padding:34px 0 34px 26px}
 body.home .hm-closing-title .elementor-heading-title{font-size:36px}
 body.home .hm-closing-link{left:26px;right:auto;top:auto;bottom:24px;transform:none}
 body.home .hm-closing-link .elementor-button{font-size:8px}
 body.home .hm-closing-link .elementor-button-icon{width:40px;height:40px}
}
@media (max-width:420px){
 body.home .elementor-element.hm-hero,body.home .elementor-element.hm-hero-copy{min-height:520px}
 body.home .hm-hero-title .elementor-heading-title{font-size:43px}
 body.home .hm-project-image img{height:190px}
 body.home .hm-card-arrow{top:196px}
 body.home .hm-philosophy-title .elementor-heading-title{font-size:38px}
 body.home .hm-closing-title .elementor-heading-title{font-size:31px}
}

/* === Home reference layout correction v2 === */
body.home .elementor-element.hm-featured,
body.home .elementor-element.hm-section-head,
body.home .elementor-element.hm-project-grid,
body.home .elementor-element.hm-project-card,
body.home .elementor-element.hm-philosophy,
body.home .elementor-element.hm-philosophy-copy,
body.home .elementor-element.hm-philosophy-quote,
body.home .elementor-element.hm-services,
body.home .elementor-element.hm-service-grid,
body.home .elementor-element.hm-service-card,
body.home .elementor-element.hm-closing,
body.home .elementor-element.hm-closing-copy{
 --width:100%!important;width:100%!important;max-width:none!important;align-self:stretch!important
}
@media (min-width:701px){
 body.home .elementor-element.hm-featured,
 body.home .elementor-element.hm-services{padding-left:3.6vw!important;padding-right:3.6vw!important}
 body.home .elementor-element.hm-project-grid{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important}
 body.home .elementor-element.hm-philosophy{display:grid!important;grid-template-columns:36% 36% 28%!important}
 body.home .elementor-element.hm-service-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important}
 body.home .elementor-element.hm-closing{display:grid!important;grid-template-columns:41% 59%!important}
}
@media (max-width:700px){
 body.home .elementor-element.hm-featured,
 body.home .elementor-element.hm-services{padding-left:26px!important;padding-right:26px!important}
 body.home .elementor-element.hm-project-grid,
 body.home .elementor-element.hm-philosophy,
 body.home .elementor-element.hm-service-grid{display:grid!important;grid-template-columns:1fr!important}
 body.home .elementor-element.hm-project-card{width:100%!important}
 body.home .hm-hero-image img{object-position:56% center!important}
 body.home .elementor-element.hm-hero-copy{padding-top:80px!important;padding-bottom:44px!important;justify-content:center!important}
 body.home .hm-hero-title{width:100%!important}
 body.home .hm-hero-title .elementor-heading-title{font-size:46px!important;line-height:.92!important}
 body.home .hm-project-image,body.home .hm-project-image .elementor-widget-container{width:100%!important}
 body.home .hm-project-image img{width:100%!important;height:auto!important;aspect-ratio:16/9;object-fit:cover!important}
 body.home .hm-card-arrow{top:auto!important;bottom:43px!important}
 body.home .elementor-element.hm-closing{display:grid!important;grid-template-columns:52% 48%!important}
}
@media (max-width:420px){
 body.home .hm-hero-title .elementor-heading-title{font-size:41px!important}
 body.home .elementor-element.hm-hero-copy{width:78%!important;padding-left:24px!important}
}

/* === Home final fidelity pass v3 === */
body.home .hm-feature-mobile-title{display:none}
@media (min-width:701px){
 body.home .elementor-element.hm-hero-copy{padding-top:108px!important}
}
@media (max-width:700px){
 body.home .elementor-element.hm-hero{min-height:560px!important}
 body.home .hm-hero-image,body.home .hm-hero-image .elementor-widget-container,body.home .hm-hero-image img{height:560px!important}
 body.home .hm-hero-image:after{background:linear-gradient(90deg,rgba(248,247,242,.92) 0%,rgba(248,247,242,.78) 27%,rgba(248,247,242,.2) 62%,rgba(248,247,242,0) 82%)!important}
 body.home .elementor-element.hm-hero-copy{min-height:560px!important;width:82%!important;padding:72px 0 38px 28px!important;justify-content:center!important}
 body.home .hm-hero-title .elementor-heading-title{font-size:48px!important;line-height:.91!important}
 body.home .hm-hero-link .elementor-button-text{white-space:nowrap}
 body.home .hm-section-head{display:grid!important;grid-template-columns:1fr auto!important;gap:10px!important;border-left:0!important;padding-left:0!important}
 body.home .hm-section-head:before{content:"";display:block;grid-column:1/3;width:38px;height:3px;background:#ffc400}
 body.home .hm-section-head .hm-section-title{grid-column:1/3}
 body.home .hm-featured .hm-section-head .hm-section-title .elementor-heading-title{font-size:9px!important;letter-spacing:.22em!important}
 body.home .hm-feature-mobile-title{display:block!important;grid-column:1/3}
 body.home .hm-feature-mobile-title .elementor-heading-title{color:#08284a;font-family:"Cormorant Garamond",Georgia,serif;font-size:34px;font-weight:500;line-height:1}
 body.home .hm-feature-mobile-title em{color:#08aeda;font-weight:400}
 body.home .elementor-element.hm-featured{padding-top:30px!important}
 body.home .hm-project-grid{gap:20px!important}
 body.home .hm-project-title .elementor-heading-title{font-size:25px!important;line-height:.95!important}
 body.home .hm-project-meta{font-size:7.5px!important;letter-spacing:.18em!important}
 body.home .elementor-element.hm-philosophy-copy{min-height:265px;padding-top:34px!important}
 body.home .hm-philosophy-title .elementor-heading-title{font-size:39px!important;line-height:.93!important}
 body.home .hm-philosophy-desc{max-width:72%;font-size:13px!important}
 body.home .elementor-element.hm-services{padding-top:32px!important}
 body.home .hm-service-card,body.home .hm-service-consultancy{min-height:72px!important}
 body.home .hm-closing-title .elementor-heading-title{font-size:34px!important;line-height:.95!important}
}
@media (max-width:390px){
 body.home .elementor-element.hm-hero,body.home .hm-hero-image,body.home .hm-hero-image .elementor-widget-container,body.home .hm-hero-image img,body.home .elementor-element.hm-hero-copy{min-height:520px!important;height:520px!important}
 body.home .hm-hero-title .elementor-heading-title{font-size:41px!important}
 body.home .hm-feature-mobile-title .elementor-heading-title{font-size:30px!important}
}

/* === Home closing + mobile philosophy correction v4 === */
@media (min-width:701px){
 body.home .elementor-element.hm-closing{
  height:300px!important;min-height:300px!important;max-height:300px!important;overflow:hidden!important
 }
 body.home .elementor-element.hm-closing-copy,
 body.home .hm-closing-image,
 body.home .hm-closing-image .elementor-widget-container,
 body.home .hm-closing-image img{
  height:300px!important;min-height:0!important;max-height:300px!important
 }
 body.home .hm-closing-image img{display:block!important;object-fit:cover!important}
}
@media (max-width:700px){
 body.home .elementor-element.hm-philosophy-copy{
  min-height:285px!important;padding:34px 28px 32px!important
 }
 body.home .hm-philosophy-desc{max-width:100%!important;padding-right:0!important}
 body.home .hm-philosophy-tags{
  position:static!important;width:100%!important;margin-top:20px!important;
  font-size:7.5px!important;line-height:1.5!important;letter-spacing:.15em!important
 }
 body.home .elementor-element.hm-closing{
  grid-template-columns:55% 45%!important;height:250px!important;min-height:250px!important;max-height:250px!important
 }
 body.home .elementor-element.hm-closing-copy{
  height:250px!important;min-height:0!important;padding:30px 10px 76px 24px!important;justify-content:center!important
 }
 body.home .hm-closing-title .elementor-heading-title{font-size:30px!important;line-height:.92!important}
 body.home .hm-closing-image,
 body.home .hm-closing-image .elementor-widget-container,
 body.home .hm-closing-image img{height:250px!important;min-height:0!important;max-height:250px!important}
 body.home .hm-closing-image img{display:block!important;object-fit:cover!important;object-position:58% center!important}
 body.home .hm-closing-link{left:24px!important;right:auto!important;bottom:22px!important;top:auto!important;transform:none!important}
 body.home .hm-closing-link .elementor-button{gap:9px!important;font-size:7px!important;line-height:1.25!important;letter-spacing:.12em!important}
 body.home .hm-closing-link .elementor-button-icon{width:38px!important;height:38px!important;flex:0 0 38px!important}
}
@media (max-width:390px){
 body.home .hm-closing-title .elementor-heading-title{font-size:27px!important}
}

/* === Home mobile reference detail correction v5 === */
@media (max-width:700px){
 body.home .elementor-element.hm-philosophy-copy{
  position:relative!important;min-height:250px!important;padding:32px 24px 28px!important;overflow:hidden!important
 }
 body.home .hm-philosophy-copy:after{
  content:"";position:absolute;right:56px;bottom:5px;width:90px;height:150px;opacity:.18;
  background:no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 180'%3E%3Cg fill='none' stroke='%2308284a' stroke-width='2'%3E%3Cpath d='M15 175C40 128 57 77 73 8'/%3E%3Cpath d='M36 126C14 116 7 99 8 83c22 7 33 21 28 43Z'/%3E%3Cpath d='M51 91C31 78 29 60 34 45c20 12 25 27 17 46Z'/%3E%3Cpath d='M64 55C52 37 58 20 70 7c11 19 8 35-6 48Z'/%3E%3Cpath d='M42 112c21-7 37-2 47 11-20 9-36 6-47-11Z'/%3E%3Cpath d='M57 75c20-7 34-2 42 10-18 9-32 6-42-10Z'/%3E%3C/g%3E%3C/svg%3E")
 }
 body.home .hm-philosophy-title{position:relative;z-index:2;max-width:92%!important}
 body.home .hm-philosophy-title .elementor-heading-title{font-size:35px!important}
 body.home .hm-philosophy-desc{position:relative;z-index:2;max-width:58%!important;font-size:11.5px!important;line-height:1.35!important}
 body.home .hm-philosophy-tags{
  position:absolute!important;z-index:2;right:18px!important;bottom:27px!important;width:62px!important;
  margin:0!important;font-size:6.5px!important;line-height:1.9!important;letter-spacing:.17em!important;text-align:left!important
 }
 body.home .elementor-element.hm-closing{position:relative!important}
 body.home .elementor-element.hm-closing-link{
  position:absolute!important;z-index:20!important;left:22px!important;right:auto!important;top:auto!important;bottom:18px!important;
  width:160px!important;transform:none!important
 }
 body.home .hm-closing-link .elementor-button{
  display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:flex-start!important;
  gap:9px!important;color:#fff!important;font-size:8px!important;font-weight:700!important;line-height:1.2!important;
  letter-spacing:.13em!important;text-shadow:0 1px 3px rgba(0,0,0,.35)!important
 }
 body.home .hm-closing-link .elementor-button-icon{
  order:-1!important;width:40px!important;height:40px!important;flex:0 0 40px!important;
  background:#ffc400!important;color:#08284a!important;text-shadow:none!important
 }
 body.home .hm-closing-link .elementor-button-text{display:block!important;max-width:96px!important;white-space:normal!important}
}

/* === Home real mobile breakpoint + footer bottom alignment v6 === */
.elementor-element.akruti-footer-bottom,
.elementor-element.akruti-footer-bottom>.e-con-inner{
 width:100%!important;max-width:none!important;display:grid!important;
 grid-template-columns:minmax(0,1fr) auto minmax(0,1fr)!important;align-items:center!important
}
.akruti-footer-copy{grid-column:1;text-align:left!important;justify-self:start!important}
.akruti-footer-tagline{grid-column:2;text-align:center!important;justify-self:center!important}
.akruti-footer-legal{grid-column:3;text-align:right!important;justify-self:end!important}
.akruti-footer-legal a{color:inherit!important}
@media (max-width:900px){
 body.home .elementor-element.hm-hero{height:590px!important;min-height:590px!important}
 body.home .hm-hero-image,body.home .hm-hero-image .elementor-widget-container,body.home .hm-hero-image img{height:590px!important}
 body.home .hm-hero-image img{object-position:58% center!important}
 body.home .hm-hero-image:after{background:linear-gradient(90deg,rgba(248,247,242,.94) 0%,rgba(248,247,242,.78) 29%,rgba(248,247,242,.2) 63%,rgba(248,247,242,0) 84%)!important}
 body.home .elementor-element.hm-hero-copy{
  width:68%!important;height:590px!important;min-height:590px!important;
  padding:88px 0 42px 34px!important;justify-content:center!important;align-items:flex-start!important
 }
 body.home .hm-kicker{display:none!important}
 body.home .hm-hero-title{width:100%!important}
 body.home .hm-hero-title .elementor-heading-title{margin:0 0 22px!important;font-size:56px!important;line-height:.91!important}
 body.home .hm-hero-desc{display:none!important}
 body.home .hm-round-link{margin-top:12px!important}
 body.home .hm-round-link .elementor-button-icon{width:46px!important;height:46px!important}
 body.home .hm-hero-counter{display:none!important}
 body.home .hm-hero-location{right:20px!important;bottom:20px!important;font-size:8px!important}
 body.home .elementor-element.hm-featured,body.home .elementor-element.hm-services{padding:32px 28px 40px!important;gap:20px!important}
 body.home .hm-section-head{display:grid!important;grid-template-columns:1fr!important;gap:9px!important;border-left:0!important;padding-left:0!important;width:100%!important}
 body.home .hm-section-head:before{content:"";display:block!important;width:38px!important;height:3px!important;background:#ffc400!important}
 body.home .hm-section-head .hm-section-title{grid-column:1!important}
 body.home .hm-section-title .elementor-heading-title{font-size:9px!important;letter-spacing:.22em!important}
 body.home .hm-text-link{display:none!important}
 body.home .hm-feature-mobile-title{display:block!important}
 body.home .hm-feature-mobile-title .elementor-heading-title{color:#08284a!important;font-family:"Cormorant Garamond",Georgia,serif!important;font-size:34px!important;font-weight:500!important;line-height:1!important}
 body.home .hm-feature-mobile-title em{color:#08aeda!important;font-weight:400!important}
 body.home .elementor-element.hm-project-grid{display:grid!important;grid-template-columns:1fr!important;gap:20px!important;width:100%!important}
 body.home .elementor-element.hm-project-card{width:100%!important;padding:0 0 12px!important;border:0!important;box-shadow:none!important;background:transparent!important}
 body.home .hm-project-image{width:100%!important;margin:0 0 10px!important}
 body.home .hm-project-image img{width:100%!important;height:auto!important;aspect-ratio:16/9!important;object-fit:cover!important}
 body.home .hm-project-count,body.home .hm-project-desc,body.home .hm-project-link{display:none!important}
 body.home .hm-card-arrow{top:auto!important;right:4px!important;bottom:43px!important;width:42px!important}
 body.home .hm-card-arrow .elementor-button{width:42px!important;height:42px!important}
 body.home .hm-project-title .elementor-heading-title{padding-right:50px!important;font-size:25px!important;line-height:.96!important}
 body.home .hm-project-meta{font-size:7.5px!important}
 body.home .elementor-element.hm-philosophy{display:grid!important;grid-template-columns:1fr!important;min-height:0!important}
 body.home .elementor-element.hm-philosophy-copy{position:relative!important;min-height:250px!important;margin:0!important;padding:32px 24px 28px!important;border-left:0!important;overflow:hidden!important}
 body.home .hm-eyebrow{padding-left:13px!important;border-left:4px solid #ffc400!important}
 body.home .hm-philosophy-title{position:relative!important;z-index:2!important;max-width:92%!important}
 body.home .hm-philosophy-title .elementor-heading-title{font-size:35px!important;line-height:.93!important}
 body.home .hm-philosophy-desc{display:block!important;position:relative!important;z-index:2!important;max-width:58%!important;font-size:11.5px!important;line-height:1.35!important}
 body.home .hm-philosophy-tags{position:absolute!important;z-index:2!important;right:18px!important;bottom:27px!important;width:62px!important;margin:0!important;font-size:6.5px!important;line-height:1.9!important;letter-spacing:.17em!important}
 body.home .hm-philosophy-image,body.home .hm-philosophy-quote{display:none!important}
 body.home .elementor-element.hm-service-grid{display:grid!important;grid-template-columns:1fr!important;width:100%!important}
 body.home .hm-service-card,body.home .hm-service-consultancy{display:grid!important;grid-template-columns:58px 1fr 48px!important;grid-template-rows:auto auto!important;align-items:center!important;width:100%!important;min-height:74px!important;padding:10px 0!important;border-right:0!important;border-bottom:1px solid #d6d5d0!important}
 body.home .hm-service-num,body.home .hm-service-copy{display:none!important}
 body.home .hm-service-icon{grid-column:1!important;grid-row:1/3!important;font-size:28px!important}
 body.home .hm-service-title{grid-column:2!important;grid-row:1!important}
 body.home .hm-service-title .elementor-heading-title{margin:0!important;font-size:24px!important;line-height:1!important}
 body.home .hm-service-link{display:block!important;grid-column:3!important;grid-row:1/3!important;margin:0!important}
 body.home .hm-service-link .elementor-button{display:grid!important;place-items:center!important;width:40px!important;height:40px!important;border-radius:50%!important;background:#ffc400!important;font-size:0!important}
 body.home .hm-service-link .elementor-button-icon{margin:0!important;color:#08284a!important;font-size:15px!important}
 body.home .elementor-element.hm-closing{display:grid!important;grid-template-columns:55% 45%!important;height:250px!important;min-height:250px!important;max-height:250px!important;position:relative!important;overflow:hidden!important}
 body.home .elementor-element.hm-closing-copy{height:250px!important;min-height:0!important;padding:28px 18px 26px 24px!important;justify-content:center!important;align-items:flex-start!important}
 body.home .hm-closing-title .elementor-heading-title{font-size:30px!important;line-height:.92!important}
 body.home .hm-closing-image,body.home .hm-closing-image .elementor-widget-container,body.home .hm-closing-image img{height:250px!important;min-height:0!important;max-height:250px!important}
 body.home .hm-closing-image img{object-fit:cover!important;object-position:58% center!important}
 body.home .elementor-element.hm-closing-link{position:static!important;width:auto!important;margin-top:20px!important;transform:none!important}
 body.home .hm-closing-link .elementor-button{display:flex!important;align-items:center!important;gap:9px!important;padding:0!important;color:#fff!important;font-size:8px!important;line-height:1.2!important;letter-spacing:.13em!important;text-shadow:none!important}
 body.home .hm-closing-link .elementor-button-icon{order:-1!important;width:40px!important;height:40px!important;flex:0 0 40px!important;background:#ffc400!important;color:#08284a!important}
 body.home .hm-closing-link .elementor-button-text{display:block!important;max-width:90px!important;white-space:normal!important}
 .elementor-element.akruti-footer-bottom,.elementor-element.akruti-footer-bottom>.e-con-inner{display:flex!important;flex-direction:column!important;gap:10px!important;align-items:flex-start!important}
 .akruti-footer-copy,.akruti-footer-tagline,.akruti-footer-legal{width:100%!important;text-align:left!important;justify-self:start!important}
}
@media (max-width:480px){
 body.home .hm-hero-title .elementor-heading-title{font-size:45px!important}
 body.home .elementor-element.hm-hero-copy{width:78%!important;padding-left:24px!important}
 body.home .hm-feature-mobile-title .elementor-heading-title{font-size:30px!important}
 body.home .hm-closing-title .elementor-heading-title{font-size:27px!important}
}

/* === Home desktop hero header clearance v7 === */
@media (min-width:901px){
 body.home .elementor-element.hm-hero-copy{transform:translateY(44px)!important}
}

/* === Footer bottom safe edge spacing v2 === */
.elementor-element.akruti-footer-bottom{
 box-sizing:border-box!important;padding-left:40px!important;padding-right:40px!important
}
@media (max-width:900px){
 .elementor-element.akruti-footer-bottom{
  padding-left:22px!important;padding-right:22px!important
 }
}

/* === Actual Akruti footer logo + soundtrack control === */
.akruti-footer-logo{width:min(320px,100%)!important;margin-bottom:18px!important}
.akruti-footer-logo img{display:block!important;width:100%!important;height:auto!important;object-fit:contain!important}
.akruti-sound-toggle{
 position:fixed;right:20px;bottom:20px;z-index:9998;display:flex;align-items:center;gap:8px;
 padding:9px 13px;border:1px solid rgba(255,196,0,.75);border-radius:999px;
 background:rgba(5,27,49,.88);color:#fff;box-shadow:0 6px 20px rgba(0,0,0,.18);
 font:600 10px/1 Arial,sans-serif;letter-spacing:.1em;text-transform:uppercase;
 cursor:pointer;backdrop-filter:blur(8px)
}
.akruti-sound-icon{display:grid;place-items:center;width:24px;height:24px;border-radius:50%;background:#ffc400;color:#08284a;font-size:15px}
.akruti-sound-toggle.is-muted{opacity:.72}
@media(max-width:900px){
 .akruti-footer-logo{width:220px!important}
 .akruti-sound-toggle{right:12px;bottom:12px;padding:7px}
 .akruti-sound-label{display:none}
}
/* Desktop hero intro must clear the overlay header. */
@media(min-width:901px){
 body.home .elementor-element.hm-hero-copy{transform:translateY(52px)!important}
}

/* === Footer logo legibility + sound control clearance === */
.akruti-footer-logo .elementor-widget-container{
 display:inline-flex!important;background:#f7f4ec!important;padding:8px 10px!important
}
.akruti-footer-logo img{background:#f7f4ec!important}
.akruti-sound-toggle{right:28px!important;bottom:76px!important}
@media(max-width:900px){
 .akruti-sound-toggle{right:14px!important;bottom:72px!important}
}

/* Background soundtrack runs without a visible control. */
#akruti-sound-toggle,.akruti-sound-toggle{display:none!important}


/* Contextual soundtrack control */
.akruti-sound-control{
  appearance:none;
  -webkit-appearance:none;
  border:1px solid rgba(7,42,74,.28);
  background:transparent;
  color:#072a4a;
  min-height:36px;
  padding:7px 13px 7px 8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  font-family:inherit;
  font-size:10px;
  font-weight:700;
  letter-spacing:.14em;
  line-height:1;
  white-space:nowrap;
  cursor:pointer;
  transition:border-color .2s ease,background-color .2s ease,color .2s ease;
}
.akruti-sound-control:hover,
.akruti-sound-control:focus-visible{
  border-color:#f5c400;
  background:rgba(245,196,0,.08);
  outline:none;
}
.akruti-sound-control-icon{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f5c400;
  color:#072a4a;
  font-size:12px;
  letter-spacing:0;
}
.akruti-sound-control.is-muted .akruti-sound-control-icon{
  background:transparent;
  box-shadow:inset 0 0 0 1px currentColor;
}
.akruti-sound-desktop{flex:0 0 auto;margin-left:2px}
.akruti-sound-mobile{display:none}

@media(max-width:900px){
  .akruti-sound-desktop{display:none!important}
  .mega-menu .akruti-sound-mobile{
    display:inline-flex;
    width:max-content;
    margin:28px 0 34px;
    color:#fff;
    border-color:rgba(255,255,255,.38);
    background:rgba(7,42,74,.14);
  }
  .mega-menu .akruti-sound-mobile:hover,
  .mega-menu .akruti-sound-mobile:focus-visible{
    color:#fff;
    border-color:#f5c400;
    background:rgba(245,196,0,.10);
  }
}

@media(min-width:901px){
  .akruti-sound-desktop{display:inline-flex}
  .akruti-sound-mobile{display:none!important}
}


/* Keep desktop header actions in distinct, non-overlapping columns. */
@media(min-width:901px){
  .akruti-nav-right{
    width:auto!important;
    flex:0 0 auto!important;
    gap:12px!important;
    align-items:center!important;
  }
  .akruti-nav-right > .elementor-element,
  .akruti-nav-right > .akruti-sound-control{
    width:auto!important;
    min-width:max-content!important;
    flex:0 0 auto!important;
  }
  .akruti-nav-est p{margin:0!important;white-space:nowrap}
}
@media(min-width:901px) and (max-width:1450px){
  .akruti-nav-right .akruti-nav-link{display:none!important}
  .akruti-sound-desktop{
    width:38px!important;
    min-width:38px!important;
    height:38px;
    padding:7px!important;
    gap:0;
  }
  .akruti-sound-desktop .akruti-sound-control-label{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    padding:0!important;
    margin:-1px!important;
    overflow:hidden!important;
    clip:rect(0,0,0,0)!important;
    white-space:nowrap!important;
    border:0!important;
  }
}


/* Header: switch from inline navigation to the menu toggle before items collide. */
@media (max-width: 1180px) and (min-width: 901px) {
  .akruti-inline-nav {
    display: none !important;
  }

  .akruti-nav-toggle {
    display: flex !important;
    flex: 0 0 auto !important;
  }

  .akruti-nav-right {
    margin-left: auto !important;
  }
}


/* Override later brand.css desktop rule at the tablet header range. */
@media (max-width: 1180px) and (min-width: 901px) {
  .site-header .akruti-inline-nav {
    display: none !important;
  }

  body .site-header .akruti-nav-toggle {
    display: flex !important;
    flex: 0 0 auto !important;
  }
}
