:root {
    --bg-color: #FFFFFF;
    /* Pure White — 70% background */
    --text-color: #231F20;
    /* Raisin Black — 10% text & UI */
    --accent: #B04925;
    /* Burnt Orange — 20% highlights */
    --font-primary: 'Bricolage Grotesque', sans-serif;
    --font-secondary: 'Urbanist', sans-serif;

    /* Spacing & Grid */
    --container-padding: 4vw;

    /* Standardized Section Padding */
    --section-padding-y: 64px;
    --section-padding-x: var(--container-padding);
}

@media (max-width: 768px) {
    :root {
        --section-padding-y: 40px;
        --section-padding-x: 5vw;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Visible Focus States for Keyboard Navigation */
*:focus-visible {
    outline: 2px solid var(--accent) !important;
    outline-offset: 3px !important;
    box-shadow: 0 0 0 4px rgba(176, 73, 37, 0.15) !important;
}

/* Screen-reader only (hidden SEO H1) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-secondary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.services__statement,
.process__title,
.why-us__title,
.promise__title,
.form__title,
.faq__title {
    font-family: var(--font-primary);
}

/* ------------------------
   Intro Sequence (Collage)
   ------------------------ */
.intro-sequence {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9000;
    /* Above everything but cursor */
    background-color: var(--bg-color);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-loader {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    z-index: 9002;
    position: absolute;
    color: var(--text-color);
    will-change: opacity;
}

.intro-collage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 0vw;
    z-index: 9001;
    opacity: 0;
    will-change: transform, opacity;
}

.collage-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(0.95);
    /* Simulates the gap performantly */
    will-change: opacity, transform;
}

/* ------------------------
   Custom Cursor
   ------------------------ */
.cursor-dot,
.cursor-ring {
    display: none;
}

@media (pointer: fine) and (hover: hover) {

    /* Hide native cursor globally on devices that support a custom cursor */
    *,
    a,
    button,
    select,
    textarea,
    input,
    [role="button"],
    .faq-question,
    .floating-cta,
    .services__item,
    .work-gallery__card {
        cursor: none !important;
    }

    .cursor-dot {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #FFFFFF;
        mix-blend-mode: difference;
        transform: translate(-50%, -50%);
        will-change: transform, opacity;
        pointer-events: none;
        z-index: 9999;
    }

    .cursor-ring {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid #FFFFFF;
        mix-blend-mode: difference;
        transform: translate(-50%, -50%);
        will-change: transform, background-color, border-color, opacity;
        pointer-events: none;
        z-index: 9998;
    }
}


/* ------------------------
   Floating Contact CTA
   ------------------------ */
.floating-cta {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    border: 1px solid rgba(35, 31, 32, 0.25);
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
}

.floating-cta__icon {
    transition: transform 0.3s ease;
}

.floating-cta:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(176, 73, 37, 0.3);
}

.floating-cta:hover .floating-cta__icon {
    transform: translateX(3px);
}

/* ------------------------
   Header
   ------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.9rem var(--container-padding) 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
    will-change: transform, opacity;
}

/* Activated via JS after scrolling past the hero */
.header--scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    padding: 0.9rem var(--container-padding) 0.7rem;
}

.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 110;
}

.header__logo-img {
    height: 46px;
    width: auto;
    display: block;
    filter: invert(1) brightness(2);
    transition: opacity 0.3s ease, filter 0.4s ease;
}

.header--scrolled .header__logo-img {
    filter: none;
}

.header__logo-img:hover {
    opacity: 0.8;
}

.header__nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin-left: 2vw;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.4s ease;
}

.header--scrolled .header__nav a {
    color: var(--text-color);
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__nav a:hover {
    color: var(--accent);
}

.header__nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* Mobile: the 150px desktop logo is oversized on phones.
   Scale it down and tighten header padding. Desktop/tablet unchanged. */
@media (max-width: 768px) {
    .header {
        padding: 0.3rem var(--container-padding);
    }

    .header__logo-img {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.2rem var(--container-padding);
    }

    .header__logo-img {
        height: 30px;
    }
}

/* ------------------------
   Hero Section
   ------------------------ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 var(--container-padding);
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0;
    /* Will be faded in */
    will-change: opacity, transform;
}



.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15vh;
    background: linear-gradient(to top, var(--bg-color) 0%, #00000000 15%);
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
}


.hero__title div {
    font-size: clamp(3rem, 8vw, 10rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    /* Fallback */
    background: linear-gradient(120deg, #FFFFFF 0%, #FF8A5B 25%, #FFFFFF 50%, #FFCAD4 75%, #FFFFFF 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    text-emphasis-color: transparent;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 6s linear infinite;
    display: inline-block;
    will-change: transform;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.line {
    display: block;
    overflow: hidden;
    /* For GSAP text reveal */
}

/* ========================
   Section 2: Services
   ======================== */
.services {
    position: relative;
    background-color: var(--bg-color);
    padding: var(--section-padding-y) var(--section-padding-x);
    overflow: hidden;
}

/* --- Opening Statement --- */
.services__opening {
    padding: 0 0 2rem;
    max-width: 1100px;
}

.services__statement {
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-color);
}

/* Per-word wrapper for GSAP reveal */
.services__statement .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.3em;
}

.services__statement .word-inner {
    display: inline-block;
    transform: translateY(110%);
    will-change: transform;
}

/* --- Service List --- */
.services__list {
    padding-bottom: 2rem;
}

/* Individual service row */
.services__item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 2vw;
    align-items: center;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    transition: opacity 0.5s ease, background-color 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.services__item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Focus / Dim effect on hover */
.services__list:hover .services__item:not(:hover) {
    opacity: 0.25 !important;
    transform: scale(0.98) !important;
}

/* Burnt Orange glow on hover */
.services__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -4vw;
    right: -4vw;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%,
            rgba(176, 73, 37, 0.06) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.services__item:hover::before {
    opacity: 1;
}

/* Number index */
.services__index {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    padding-top: 0.15em;
}

/* Service title */
.services__title {
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    font-weight: 300;
    color: var(--text-color);
    letter-spacing: -0.03em;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left center;
}

.services__item:hover .services__title {
    color: var(--accent);
    transform: translateX(1.5vw);
}

/* Service detail block (wraps multiple paragraphs + meta) */
.services__detail-block {
    position: relative;
    z-index: 1;
    max-width: 420px;
    justify-self: end;
    text-align: right;
}

/* Service details — each paragraph */
.services__details {
    font-size: clamp(0.85rem, 1.1vw, 1.1rem);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-bottom: 0.5em;
}

.services__details:last-of-type {
    margin-bottom: 0;
}

/* Meta list: included / timeline / turnaround */
.services__meta {
    list-style: none;
    margin-top: 1em;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 0.75em;
    display: flex;
    flex-direction: column;
    gap: 0.3em;
}

.services__meta li {
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.4);
    line-height: 1.5;
}

.services__meta-label {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75em;
}



/* --- Footer Note --- */
.services__footer {
    padding: 2.5rem 0 0;
    text-align: center;
}

.services__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin-bottom: 5vh;
}

.services__note {
    font-size: clamp(0.85rem, 1.2vw, 1.15rem);
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .services__opening {
        padding: 0 0 1.5rem;
    }

    .services__item {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }

    .services__detail-block,
    .services__details {
        grid-column: 2;
        text-align: left;
        justify-self: start;
        max-width: none;
        margin-top: 0.5rem;
    }


    .services__footer {
        padding: 1.5rem 0 0;
    }
}

/* ========================
   Section 4: How it works
   ======================== */
.process {
    position: relative;
    background-color: var(--bg-color);
    visibility: hidden;
    /* Prevent GPU load during intro zoom */
}

.process__visuals {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.process__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
}

/* Note: .process__img active states and transitions are now purely handled by GSAP scrub in main.js */

.process__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, var(--bg-color) 0%, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0) 90%, var(--bg-color) 100%),
        linear-gradient(to right, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.25) 25%, rgba(255, 255, 255, 0) 50%);
    z-index: 2;
    pointer-events: none;
}

.process__container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    margin-top: -100vh;
    /* Pulls content over the sticky background */
    padding: 0 var(--container-padding);
}

.process__left {
    position: relative;
}

.process__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 4vw;
}

.process__title {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1rem;
}

.process__numbers {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process__number {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    font-family: var(--font-primary);
    font-variant-numeric: tabular-nums;
    color: rgba(0, 0, 0, 0.08);
    transition: color 0.4s ease, transform 0.4s ease;
    transform-origin: left center;
}

.process__number.is-active {
    color: var(--accent);
    transform: scale(1.1);
}

.process__right {
    display: flex;
    flex-direction: column;
    padding-bottom: 40vh;
    /* Extra white space to keep Deliver step on screen longer */
}

.process__step {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2vw;
}

.process__step-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    max-width: 600px;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.process__step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.82);
}

.process__step-title {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 350;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.process__step-content {
    font-size: clamp(1.1rem, 1.6vw, 1.6rem);
    font-weight: 300;
    color: rgba(35, 31, 32, 0.85);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process__container {
        grid-template-columns: 1fr;
        margin-top: -100vh;
    }

    .process__sticky {
        height: auto;
        position: relative;
        padding-top: 10vh;
    }

    .process__overlay {
        background: linear-gradient(to bottom, var(--bg-color) 0%, rgba(255, 255, 255, 0.25) 15%, rgba(255, 255, 255, 0.25) 85%, var(--bg-color) 100%);
    }

    .process__step {
        height: auto;
        min-height: 50vh;
        margin: 15vh 0;
        padding-left: 0;
    }

    .process__step-card {
        padding: 2.5rem 1.5rem;
    }
}

/* =========================================
   SECTION 6: WHY WORK WITH US
   ========================================= */
.why-us {
    padding: var(--section-padding-y) var(--section-padding-x);
    background-color: var(--bg-color);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.why-us__container {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 6vw;
    min-height: 100vh;
}

/* Left column: sticky header */
.why-us__left {
    position: relative;
}

.why-us__sticky {
    position: sticky;
    top: 15vh;
}

.why-us__title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.05;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
}

.why-us__subtitle {
    font-size: clamp(1.1rem, 1.4vw, 1.4rem);
    color: var(--accent);
    line-height: 1.55;
    max-width: 420px;
    font-weight: 300;
}

/* Right column: scrolling manifesto */
.why-us__right {
    padding-top: 0;
    padding-bottom: 2rem;
}

.why-us__manifesto-p {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.25);
    margin-bottom: 5rem;
    font-weight: 300;
    transition: color 0.6s ease;
}

/* --- Work Gallery (Masonry-style) --- */
.work-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5vw;
    padding: var(--section-padding-y) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.work-gallery__col {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    will-change: transform;
}

/* Offset columns for asymmetric stagger */
.work-gallery__col--left {
    padding-top: 8vh;
}

.work-gallery__col--center {
    padding-top: 0;
}

.work-gallery__col--right {
    padding-top: 14vh;
}

/* Individual image card */
.work-gallery__card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.work-gallery__card:hover {
    border-color: rgba(176, 73, 37, 0.5);
    box-shadow: 0 0 30px rgba(176, 73, 37, 0.15), 0 0 60px rgba(176, 73, 37, 0.06);
}

.work-gallery__card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-gallery__card:hover img {
    transform: scale(1.05);
}

/* Variable aspect ratios for editorial feel */
.work-gallery__card--tall {
    aspect-ratio: 3 / 4.5;
}

.work-gallery__card--wide {
    aspect-ratio: 4 / 3;
}

.work-gallery__card--square {
    aspect-ratio: 1 / 1;
}

@media (max-width: 768px) {
    .work-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .work-gallery__col {
        display: contents;
        /* Flatten column wrappers on mobile */
    }

    .work-gallery__card {
        aspect-ratio: 1 / 1 !important;
        /* Uniform aspect-ratio on mobile */
        width: 100%;
    }
}

/* --- Team --- */
.team {
    padding-top: var(--section-padding-y);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.team__intro {
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem auto;
    color: var(--text-color);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.team__members {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 3rem;
}

.team-card {
    padding: 5rem 4rem;
    position: relative;
}

/* Vertical divider between cards */
.team-card:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.team-card__name {
    font-size: clamp(2.5rem, 3.5vw, 4rem);
    margin-bottom: 0.5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.team-card__role {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2.5rem;
    display: block;
    font-weight: 500;
}

.team-card__bio {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 300;
}

/* Highlighted stats in Geena's bio */
.team-card__bio .bio-highlight {
    color: var(--accent);
    font-weight: 500;
    font-size: 1.25rem;
}

.text-orange {
    color: var(--accent);
    font-weight: 500;
}

.team__closing {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-color);
    line-height: 1.5;
    font-weight: 300;
    padding-bottom: 5vh;
}

/* =========================================
   SECTION 7: PROMISE & CONTACT
   ========================================= */
.contact-section {
    padding: var(--section-padding-y) 0;
    background-color: var(--bg-color);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-section__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    padding: 0 var(--section-padding-x);
}

/* Promise */
.promise__title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 4rem;
    font-weight: 500;
}

.promise__line {
    font-size: clamp(2rem, 3vw, 3.2rem);
    color: rgba(0, 0, 0, 0.28);
    line-height: 1.25;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: -0.01em;
    transition: color 0.5s ease;
}

.promise__line--conclusion {
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    color: rgba(0, 0, 0, 0.4);
    margin-top: 5rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
}

/* Form */
.form-wrapper {
    padding: 4rem 3.5rem;
    background: rgba(245, 245, 247, 0.65);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.form__title {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    color: var(--text-color);
    margin-bottom: 3.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.form__field {
    margin-bottom: 3rem;
    position: relative;
}

.form__field label {
    display: block;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
}

.form__field input,
.form__field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    color: var(--text-color);
    font-size: 1.15rem;
    font-family: inherit;
    font-weight: 300;
    transition: border-color 0.4s ease;
}

.form__field textarea {
    resize: vertical;
    min-height: 80px;
}

.form__field input:focus,
.form__field textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.form__field input::placeholder,
.form__field textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

/* Connect Button — inverse hover */
.form__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--accent);
    color: #FFFFFF;
    border: 2px solid var(--accent);
    padding: 1.1rem 2.8rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

#whatsapp-link {
    display: inline-block;
    color: var(--accent) !important;
    text-decoration: underline;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: opacity 0.2s ease;
}

#whatsapp-link:hover {
    opacity: 0.8;
}

.form__submit svg {
    transition: transform 0.3s ease;
}

.form__submit:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-2px);
}

.form__submit:hover svg {
    transform: translateX(4px);
}

/* =========================================
   SECTION 8: FOOTER
   ========================================= */
.site-footer {
    padding: var(--section-padding-y) var(--section-padding-x);
    background-color: #FAF9F6;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.site-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer__logo {
    height: 34px;
    width: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.site-footer__logo:hover {
    opacity: 0.7;
}

.site-footer__nav {
    display: flex;
    align-items: center;
    gap: 2.5vw;
}

.site-footer__links {
    display: flex;
    gap: 3vw;
}

.site-footer__links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.site-footer__links a:hover {
    opacity: 1;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer__copy {
    color: rgba(0, 0, 0, 0.65);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-footer__social a {
    color: var(--text-color);
    opacity: 0.6;
    display: inline-flex;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-footer__social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .site-footer__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 4vh;
    }

    .site-footer__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 3vh;
    }

    .site-footer__links {
        flex-direction: column;
        gap: 2vh;
    }
}

/* =========================================
   RESPONSIVE OVERRIDES: Sections 6–8
   ========================================= */
@media (max-width: 1024px) {
    .why-us__container {
        grid-template-columns: 1fr;
        gap: 6vh;
        min-height: auto;
    }

    .why-us__sticky {
        position: relative;
        top: 0;
    }

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

    .team-card:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .contact-section__container {
        grid-template-columns: 1fr;
        gap: 8vh;
    }

    .form-wrapper {
        padding: 3rem 2rem;
    }
}

/* =========================================
   NEW SECTIONS (FAQ, Closing, Retainer, Conviction)
   ========================================= */

/* WhatsApp */
.whatsapp-wrap {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.whatsapp-wrap a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

/* Closing Section */
.closing-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--bg-color);
}

.closing__statements {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.closing-statement {
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.closing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .closing__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Retainer */
.retainer {
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3rem;
    margin: 0 auto;
    max-width: 600px;
}

.retainer p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.retainer p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--accent);
}

#retainer-line-2 {
    display: inline-block;
    background-color: var(--accent);
    color: #FFFFFF !important;
    padding: 0.6rem 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
    cursor: pointer;
}

#retainer-line-2:hover {
    background-color: #923a1c;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--bg-color);
    max-width: 900px;
    margin: 0 auto;
}

.faq__title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 3rem;
    font-weight: 400;
}

.faq-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-family: var(--font-primary);
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
    /* arbitrary large enough height */
}

.faq-answer-inner {
    padding-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

/* Conviction */
.why-us__conviction {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    max-width: 900px;
    margin: 8vh auto;
    line-height: 1.2;
}

/* Process Footer CTA */
.process__footer {
    padding: 10vh var(--container-padding);
    text-align: center;
    background: var(--bg-color);
}

.process__bridge {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-color);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn:hover {
    background: var(--accent);
}

/* Legal Section Accordion Override */
.legal-section {
    padding: var(--section-padding-y) var(--section-padding-x);
    background: var(--bg-color);
    max-width: 900px;
    margin: 0 auto 3rem;
}

.legal__title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 3rem;
    font-weight: 400;
}

.legal-section .faq-answer-inner {
    padding-right: 1.5rem;
    color: rgba(0, 0, 0, 0.75);
}

.legal-section .faq-item.is-open .faq-answer {
    max-height: 50vh;
    overflow-y: auto;
}

/* Legal Content Typography */
.legal-date {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    display: block;
}

.legal-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.legal-list {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    list-style-type: disc;
}

.legal-list li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-sublist {
    margin-left: 1.5rem;
    margin-top: 0.4rem;
    list-style-type: circle;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}