/* ============================================
   VERDURE STUDIO — Premium Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,200;1,9..40,300&display=swap');

/* ── CSS Variables: Ultra Luxury ────────────── */
:root {
    --gold: #D4AF37;
    --gold-soft: #E5C76B;
    --ivory: #FFFFF0;
    --cream: #FDFBF7;
    --beige: #F5F1E9;
    --warm-brown: #3D2B1F;
    --charcoal: #1A1A1A;
    --charcoal-mid: #4A4A4A;
    --white: #FFFFFF;

    /* Premium Sage Palette */
    --sage: #A3B18A;
    --sage-light: #DAD7CD;
    --sage-dark: #3A5A40;
    --sage-extra-dark: #344E41;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;

    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --nav-h: 110px;
    --section-pad: clamp(80px, 12vw, 180px);
    --gutter: clamp(24px, 6vw, 100px);
}

/* ── Reset & Base ──────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: initial;
    overflow-x: hidden;
    font-size: 16px;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ── Custom Cursor — REMOVED, using default browser cursor ── */

/* ── Noise Overlay ─────────────────────────── */
.noise {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* ── Page Loader ───────────────────────────── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--charcoal);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.loader__logo {
    width: clamp(240px, 20vw, 340px);
    margin-bottom: 32px;
    opacity: 0;
    transform: scale(0.9);
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.05));
}

.loader__logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.loader__wordmark {
    font-family: var(--font-display);
    font-size: clamp(14px, 2.5vw, 34px);
    font-weight: 300;
    color: var(--sage);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 24px;
    overflow: hidden;
    display: flex;
    gap: 0.1em;
}

.loader__wordmark span {
    display: inline-block;
    filter: blur(5px);
    opacity: 0;
    transform: translateY(1.2em);
}

.loader__bar-wrap {
    width: 200px;
    height: 1px;
    background: rgba(244, 241, 234, 0.15);
    overflow: hidden;
}

.loader__bar {
    height: 100%;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: left;
}

.loader__count {
    font-family: var(--font-body);
    font-size: 20px;
    letter-spacing: 0.3em;
    color: var(--sage);
    font-weight: 400;
}

/* ── Navigation ────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 800;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    padding: 0 var(--gutter);
    mix-blend-mode: normal;
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(244, 241, 234, 0.0);
    backdrop-filter: blur(0px);
    transition: background 0.5s, backdrop-filter 0.5s;
}

.nav.scrolled::before {
    background: rgba(244, 241, 234, 0.85);
    backdrop-filter: blur(20px);
}

.nav__brand {
    z-index: 1;
    position: relative;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--charcoal);
}

.nav__brand img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav--hero-dark .nav__brand {
    color: var(--cream);
}

.nav--hero-dark.scrolled .nav__brand {
    color: var(--charcoal);
}

.nav__links {
    display: flex;
    gap: 40px;
    margin-left: auto;
    margin-right: 40px;
    z-index: 1;
    position: relative;
}

.nav__link {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    transition: color 0.3s;
}

.nav--hero-dark .nav__link {
    color: var(--cream);
}

.nav--hero-dark.scrolled .nav__link {
    color: var(--charcoal);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ── Premium Service Card Styles ───────────────── */
.service-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.6s var(--ease-out-expo);
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card__img {
    overflow: hidden;
    height: 250px;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover .service-card__img img {
    transform: scale(1.07);
}

.service-card__content {
    padding: 24px;
    color: var(--charcoal);
    text-align: left;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 28px);
    margin-bottom: 12px;
    color: var(--gold);
}

.service-card__desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--charcoal-mid);
}

.service-card .btn {
    background: var(--gold);
    color: var(--cream);
    border: none;
    padding: 12px 24px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(0);
    transition: transform 0.6s var(--ease-out-expo), background 0.4s var(--ease-out-expo);
    cursor: pointer;
}

.service-card .btn:hover {
    background: var(--gold-soft);
    transform: translateY(-5px);
}


/* ── Animation Safety Net ─────────────────────
   Content is VISIBLE by default (no-JS / CDN failure fallback).
   GSAP hides elements via gsap.set() only after js-ready class is added.
   This prevents the "invisible content on some devices" bug where CDN
   scripts block or the Reduce Motion setting causes GSAP to exit early.
   ─────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-in {
    will-change: opacity, transform;
}

/* When JS is active and running, GSAP manages these entirely via gsap.set() */
/* No opacity:0 here — GSAP explicitly sets that in main.js after body.js-ready */

/* Accessibility: if user prefers reduced motion, skip ALL animations
   and force everything visible immediately — no hidden content ever */
@media (prefers-reduced-motion: reduce) {

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-in,
    .split-line__inner,
    .footer__brand,
    .footer__tagline,
    .footer__col-title,
    .footer__link,
    .footer__copy,
    .footer__social,
    .contact-info-item,
    .contact-branding,
    .contact-social-card,
    .story-block__img,
    .story-block__body,
    .testimonial__card,
    .numbers-bar__item,
    .faq-item,
    .insight-card,
    .client-logo,
    .award-item,
    .timeline-item,
    .service-item,
    .value-item,
    .team-card,
    .card,
    .process__item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.reveal-up.scroll-triggered,
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hamburger — visible only on ≤1024px ───── */
.nav__burger {
    z-index: 900;
    position: relative;
    width: 30px;
    height: 18px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav__burger:hover {
    transform: scale(1.1);
}

.nav__burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--charcoal);
    transform-origin: center;
    transition: transform 0.6s var(--ease-out-expo),
        opacity 0.4s var(--ease-out-expo),
        background 0.4s;
}

.nav--hero-dark .nav__burger span {
    background: var(--cream);
}

.nav--hero-dark.scrolled .nav__burger span {
    background: var(--charcoal);
}

/* Open State Animation — Premium Morphing */
.nav__burger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--cream) !important;
}

.nav__burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav__burger.open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background: var(--cream) !important;
}

/* ── Right-Side Menu Panel ─────────────────── */
.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(480px, 100%);
    z-index: 700;
    background: var(--charcoal);
    transform: translateX(100%);
    transition: transform 0.75s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--nav-h) clamp(32px, 5vw, 64px) clamp(32px, 5vw, 64px);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
    overflow-y: auto;
}

/* dim backdrop */
.menu-overlay::before {
    content: '';
    position: fixed;
    inset: 0;
    width: 100vw;
    background: rgba(15, 20, 22, 0);
    z-index: -1;
    transition: background 0.6s;
    pointer-events: none;
}

.menu-overlay.open {
    transform: translateX(0);
}

.menu-overlay.open::before {
    background: rgba(15, 20, 22, 0.55);
    pointer-events: auto;
}

.menu-overlay__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.menu-overlay__item {
    overflow: hidden;
    padding: 4px 0;
}

.menu-overlay__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 300;
    color: rgba(244, 241, 234, 0.25);
    letter-spacing: -0.02em;
    transform: translateX(60px);
    opacity: 0;
    transition: transform 0.55s var(--ease-out-expo),
        opacity 0.55s var(--ease-out-expo),
        color 0.3s;
    line-height: 1.1;
    cursor: pointer;
}

.menu-overlay__link-num {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--sage);
    opacity: 0;
    transition: opacity 0.4s 0.1s;
    align-self: flex-end;
    padding-bottom: 10px;
}

.menu-overlay.open .menu-overlay__link {
    transform: translateX(0);
    opacity: 1;
    color: rgba(244, 241, 234, 0.25);
}

.menu-overlay.open .menu-overlay__link-num {
    opacity: 1;
}

.menu-overlay__link:hover {
    color: var(--cream) !important;
}

.menu-overlay__link.current {
    color: var(--cream);
}

.menu-overlay__item:nth-child(1) .menu-overlay__link {
    transition-delay: 0.06s;
}

.menu-overlay__item:nth-child(2) .menu-overlay__link {
    transition-delay: 0.12s;
}

.menu-overlay__item:nth-child(3) .menu-overlay__link {
    transition-delay: 0.18s;
}

.menu-overlay__item:nth-child(4) .menu-overlay__link {
    transition-delay: 0.24s;
}

.menu-overlay__divider {
    width: 100%;
    height: 1px;
    background: rgba(244, 241, 234, 0.08);
    margin: 28px 0;
    opacity: 0;
    transition: opacity 0.5s 0.3s;
}

.menu-overlay.open .menu-overlay__divider {
    opacity: 1;
}

.menu-overlay__footer {
    opacity: 0;
    transition: opacity 0.5s 0.35s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-overlay.open .menu-overlay__footer {
    opacity: 1;
}

.menu-overlay__footer-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
}

.menu-overlay__socials {
    display: flex;
    gap: 20px;
}

.menu-overlay__socials a {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.4);
    transition: color 0.3s;
}

.menu-overlay__socials a:hover {
    color: var(--sage);
}

.menu-overlay__close-hint {
    position: absolute;
    top: calc(var(--nav-h) / 2);
    right: clamp(32px, 5vw, 64px);
    transform: translateY(-50%);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.3);
    opacity: 0;
    transition: opacity 0.4s 0.4s;
}

.menu-overlay.open .menu-overlay__close-hint {
    opacity: 1;
}

/* ── Shared Section Styles ─────────────────── */
.section {
    padding: var(--section-pad) var(--gutter);
    position: relative;
}

.section--dark {
    background: var(--charcoal);
    color: var(--cream);
}

.section--beige {
    background: var(--beige);
}

.section--sage {
    background: var(--sage);
}

.section--cream {
    background: var(--cream);
}

/* ── Typography Utilities ──────────────────── */
.eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 20px;
}

.section--dark .eyebrow {
    color: var(--sage-light);
}

.display-xl {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 120px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.display-lg {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
}

.display-md {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.body-lg {
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
}

/* ── Split Text Lines ──────────────────────── */
.split-line {
    overflow: hidden;
    display: block;
}

.split-line__inner {
    display: block;
    transform: translateY(110%);
}

/* ── Buttons ───────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 18px 36px;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
    cursor: pointer;
}

.btn--outline {
    border: 1.5px solid var(--charcoal);
    color: var(--charcoal);
}

.btn--outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--charcoal);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 0;
}

.btn--outline:hover {
    color: var(--cream);
}

.btn--outline:hover::before {
    transform: scaleY(1);
}

.btn--outline-light {
    border: 1.5px solid var(--cream);
    color: var(--cream);
}

.btn--outline-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cream);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 0;
}

.btn--outline-light:hover {
    color: var(--charcoal);
}

.btn--outline-light:hover::before {
    transform: scaleY(1);
}

.btn__label {
    position: relative;
    z-index: 1;
}

/* Arrow: starts diagonal (↗) → slides to horizontal (→) on hover */
.btn__arrow {
    position: relative;
    z-index: 1;
    width: 16px;
    height: 16px;
    /* rotate to horizontal arrow direction */
    transform: rotate(-45deg);
    transition: transform 0.4s var(--ease-out-expo), translate 0.4s var(--ease-out-expo);
}

.btn:hover .btn__arrow {
    transform: rotate(0deg);
    translate: 4px 0;
}

/* ── Marquee ───────────────────────────────── */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee__track {
    display: flex;
    align-items: center;
    animation: marquee 20s linear infinite;
    gap: 0;
}

.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding-right: 48px;
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    opacity: 0.15;
}

.marquee__sep {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
    opacity: 1;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Grid & Layout ─────────────────────────── */
.container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

/* ── Divider ───────────────────────────────── */
.divider {
    width: 100%;
    height: 1px;
    background: var(--beige);
}

.section--dark .divider {
    background: rgba(244, 241, 234, 0.12);
}

/* ── Page Transition Curtain ───────────────── */
.page-curtain {
    position: fixed;
    inset: 0;
    z-index: 9500;
    pointer-events: none;
}

.page-curtain__panel {
    position: absolute;
    inset: 0;
    background: var(--charcoal);
    transform: scaleY(0);
    transform-origin: bottom;
}

.page-curtain__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 84px);
    /* Slightly smaller to avoid overflow with long titles */
    color: var(--cream);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    font-weight: 200;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: normal;
    /* Allow wrapping for long service names */
    text-align: center;
    width: 90%;
    mix-blend-mode: difference;
}


/* ── Scroll progress ───────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--sage);
    z-index: 801;
    transition: width 0.1s linear;
}

/* ============================================
   HOME PAGE
   ============================================ */

/* ── Hero ──────────────────────────────────── */
/* ── Cinematic Hero Fullscreen ─────────────── */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
    animation: ken-burns 30s infinite alternate ease-in-out;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(61, 43, 31, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--gutter);
    color: var(--ivory);
}

.hero__subtitle {
    font-size: clamp(16px, 1.3vw, 24px);
    font-weight: 300;
    margin: 32px 0 48px;
    opacity: 0.85;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scroll-hint-anim 2s infinite ease-in-out;
}

@keyframes scroll-hint-anim {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes ken-burns {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.15);
    }
}

.gold-divider {
    transition: width 1.2s var(--ease-out-expo);
}

.reveal-up.scroll-triggered .gold-divider {
    width: 120px !important;
}

/* ── Typography Scale ─────────────────────── */
.display-lg {
    font-family: var(--font-display);
    font-size: clamp(56px, 10vw, 150px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.02em;
}

.display-md {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.2;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(60px, 10vw, 160px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.0;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
}

.hero__title em {
    font-style: italic;
    color: var(--sage);
}

.hero__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.hero__desc {
    max-width: 480px;
    font-size: clamp(14px, 1.3vw, 17px);
    line-height: 1.75;
    color: rgba(244, 241, 234, 0.65);
    font-weight: 300;
}

.hero__scroll-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: default;
}

.hero__scroll-text {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-light);
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: var(--sage);
    transform-origin: top;
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.3);
        opacity: 0.4;
    }

    100% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.hero__floating-badge {
    position: absolute;
    top: clamp(100px, 15vw, 180px);
    right: var(--gutter);
    z-index: 3;
    width: clamp(100px, 10vw, 140px);
    height: clamp(100px, 10vw, 140px);
    border-radius: 50%;
    border: 1px solid rgba(163, 177, 138, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-spin 20s linear infinite;
}

.hero__floating-badge svg {
    width: 100%;
    height: 100%;
}

@keyframes badge-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ───────────────────────Statement Section ─────────────────────── */
.statement {
    padding: var(--section-pad) var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
    background: var(--cream);
}

.statement__line {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}

.statement__num {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--sage);
}

.statement__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 80px);
    font-weight: 300;
    line-height: 1.0;
    letter-spacing: -0.02em;
    max-width: 800px;
}

.statement__body {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}

.statement__desc {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.8;
    color: var(--charcoal-mid);
}

/* Stats — single full-width row */
.statement__stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--beige);
    padding-top: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat {
    flex: 1 1 0;
    min-width: 120px;
    padding: 0 clamp(16px, 2.5vw, 40px);
    border-left: 1px solid var(--beige);
}

.stat:first-child {
    border-left: none;
    padding-left: 0;
}

.stat__num {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
    letter-spacing: -0.02em;
    display: block;
}

.stat__label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-top: 8px;
    display: block;
}

/* ── Services Marquee Band ─────────────────── */
.marquee-band {
    padding: clamp(24px, 4vw, 48px) 0;
    background: var(--charcoal);
    overflow: hidden;
}

.marquee-band .marquee__item {
    color: var(--cream);
    opacity: 0.12;
}

/* ── Featured Work Preview ─────────────────── */
.featured {
    padding: var(--section-pad) var(--gutter);
    background: var(--cream);
}

.featured__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(48px, 6vw, 96px);
    flex-wrap: wrap;
    gap: 24px;
}

.featured__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: clamp(16px, 2vw, 28px);
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--beige);
}

.card:first-child {
    grid-row: span 2;
}

.card__img {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.card:first-child .card__img {
    aspect-ratio: 3/4;
}

.card:not(:first-child) .card__img {
    aspect-ratio: 16/10;
}

.card__img img {
    transition: transform 0.8s var(--ease-out-expo);
}

.card:hover .card__img img {
    transform: scale(1.05);
}

.card__info {
    padding: clamp(20px, 3vw, 32px);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.card__tag {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-dark);
}

.card__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 400;
    margin-top: 8px;
    line-height: 1.15;
}

.card__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out-expo);
}

.card:hover .card__arrow {
    background: var(--charcoal);
    transform: rotate(45deg);
}

.card:hover .card__arrow svg path {
    stroke: var(--cream);
}

.card__arrow svg {
    width: 16px;
    height: 16px;
}


/* ── Process Section ───────────────────────── */
.process {
    padding: var(--section-pad) var(--gutter);
    background: var(--beige);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 48px);
    margin-top: clamp(48px, 6vw, 96px);
}

.process__item {
    padding-top: 32px;
    border-top: 1px solid rgba(47, 62, 70, 0.2);
}

.process__num {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    color: rgba(47, 62, 70, 0.12);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.process__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.2;
}

.process__desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--charcoal-mid);
}

/* ── Testimonial ───────────────────────────── */
.testimonial {
    padding: var(--section-pad) var(--gutter);
    background: var(--charcoal);
    text-align: center;
}

.testimonial__quote {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    max-width: 900px;
    margin: 40px auto;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.testimonial__author {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
}

/* ── CTA Section ───────────────────────────── */
.cta-section {
    padding: var(--section-pad) var(--gutter);
    background: var(--sage);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px;
    overflow: hidden;
    position: relative;
}

.cta-section__bg-text {
    position: absolute;
    pointer-events: none;
    font-family: var(--font-display);
    font-size: clamp(100px, 18vw, 280px);
    font-weight: 300;
    color: rgba(47, 62, 70, 0.06);
    white-space: nowrap;
    bottom: -0.15em;
    left: var(--gutter);
    letter-spacing: -0.04em;
    line-height: 1;
}

.cta-section .btn--outline {
    border-color: var(--charcoal);
}

/* ── Footer ────────────────────────────────── */
.footer {
    padding: clamp(60px, 8vw, 120px) var(--gutter) clamp(32px, 4vw, 48px);
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: clamp(32px, 5vw, 80px);
    padding-bottom: clamp(40px, 5vw, 72px);
    border-bottom: 1px solid rgba(244, 241, 234, 0.1);
    margin-bottom: clamp(32px, 4vw, 56px);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.footer__brand img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(244, 241, 234, 0.45);
    max-width: 260px;
}

.footer__col-title {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 24px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 14px;
    color: rgba(244, 241, 234, 0.55);
    transition: color 0.3s;
    position: relative;
    width: fit-content;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.footer__link:hover {
    color: var(--cream);
}

.footer__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer__newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(244, 241, 234, 0.25);
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    transition: border-color 0.3s;
}

.footer__newsletter-form:focus-within {
    border-color: var(--sage);
}

.footer__newsletter-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--cream);
    font-weight: 300;
}

.footer__newsletter-input::placeholder {
    color: rgba(244, 241, 234, 0.3);
}

.footer__newsletter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(244, 241, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
    cursor: none;
}

.footer__newsletter-btn:hover {
    background: var(--sage);
    border-color: var(--sage);
}

.footer__newsletter-btn svg {
    width: 14px;
    height: 14px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__copy {
    font-size: 12px;
    color: rgba(244, 241, 234, 0.25);
    letter-spacing: 0.05em;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 241, 234, 0.1);
    border-radius: 50%;
    color: rgba(244, 241, 234, 0.4);
    transition: all 0.5s var(--ease-out-expo);
}

.footer__social-link:hover {
    background: var(--sage);
    color: var(--charcoal);
    border-color: var(--sage);
    transform: translateY(-5px);
}

.footer__social-link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}


/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
    min-height: 100svh;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-h) + 40px) var(--gutter) clamp(60px, 8vw, 120px);
    position: relative;
    overflow: hidden;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    mix-blend-mode: luminosity;
}

.about-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: end;
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 116px);
    font-weight: 300;
    color: var(--cream);
    line-height: 0.92;
    letter-spacing: -0.03em;
}

.about-hero__title em {
    font-style: italic;
    color: var(--sage);
}

.about-hero__right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 8px;
}

.about-hero__desc {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.8;
    color: rgba(244, 241, 234, 0.6);
}

.about-hero__scroll-line {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-hero__scroll-line span {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
}

.about-hero__scroll-line::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(163, 177, 138, 0.3);
}

/* ── Philosophy ────────────────────────────── */
.philosophy {
    padding: var(--section-pad) var(--gutter);
    background: var(--cream);
}

.philosophy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
    margin-top: clamp(48px, 6vw, 80px);
}

.philosophy__img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--beige);
    position: sticky;
    top: calc(var(--nav-h) + 40px);
}

.philosophy__text {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 4vw, 64px);
}

.philosophy__block-num {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--sage);
    font-style: italic;
    margin-bottom: 16px;
}

.philosophy__block-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.15;
}

.philosophy__block-desc {
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.85;
    color: var(--charcoal-mid);
}

/* ── Team ──────────────────────────────────── */
.team {
    padding: var(--section-pad) var(--gutter);
    background: var(--beige);
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-top: clamp(48px, 5vw, 80px);
}

.team-card {
    position: relative;
    overflow: hidden;
}

.team-card__img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: transparent;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-card__placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(47, 62, 70, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card__placeholder svg {
    width: 40px;
    height: 40px;
    stroke: rgba(47, 62, 70, 0.5);
}

.team-card__name {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    margin-bottom: 6px;
}

.team-card__role {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-dark);
}

/* ── Values Accordion ──────────────────────── */
.values {
    padding: var(--section-pad) var(--gutter);
    background: var(--charcoal);
}

.values__list {
    margin-top: clamp(48px, 5vw, 80px);
    border-top: 1px solid rgba(244, 241, 234, 0.1);
}

.value-item {
    border-bottom: 1px solid rgba(244, 241, 234, 0.1);
    overflow: hidden;
}

.value-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(24px, 3vw, 40px) 0;
    cursor: none;
    gap: 20px;
}

.value-item__num {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--sage);
    flex-shrink: 0;
    width: 40px;
}

.value-item__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--cream);
    flex: 1;
}

.value-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(244, 241, 234, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out-expo), background 0.3s;
}

.value-item.open .value-item__icon {
    transform: rotate(45deg);
    background: var(--sage);
    border-color: var(--sage);
}

.value-item__icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--cream);
}

.value-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-out-expo);
}

.value-item.open .value-item__body {
    max-height: 200px;
}

.value-item__desc {
    padding-bottom: clamp(24px, 3vw, 40px);
    padding-left: 60px;
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.8;
    color: rgba(244, 241, 234, 0.5);
    max-width: 600px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
}

.contact-left {
    background: var(--charcoal);
    padding: calc(var(--nav-h) + clamp(60px, 8vw, 120px)) var(--gutter) var(--gutter);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-left__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-left__bg svg {
    width: 100%;
    height: 100%;
}

.contact-left__content {
    position: relative;
    z-index: 1;
}

.contact-left__title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 300;
    color: var(--cream);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-top: 24px;
}

.contact-left__title em {
    font-style: italic;
    color: var(--sage);
}

.contact-left__info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-item__label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
}

.contact-info-item__value {
    font-size: clamp(15px, 1.3vw, 18px);
    color: var(--cream);
}

/* ── Contact Branding Hero (Right side) ─────── */
.contact-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: clamp(10px, 10vw, 10px);
}

.contact-branding-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 19vw, 100px);
    text-align: center;
    width: 100%;
}

.contact-branding-logo {
    width: clamp(140px, 20vw, 340px);
    height: auto;
    transition: transform 0.8s var(--ease-out-expo);
}

.contact-branding-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-branding-socials {
    display: flex;
    gap: clamp(24px, 4vw, 68px);
    flex-wrap: wrap;
    justify-content: center;
}

.branding-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.branding-social-link svg {
    width: 52px;
    height: 52px;
    transition: all 0.4s var(--ease-out-expo);
}

.branding-social-link span {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-mid);
    opacity: 0.6;
    transition: all 0.4s var(--ease-out-expo);
}

.branding-social-link:hover {
    transform: translateY(-8px);
}


.branding-social-link:hover span {
    color: var(--sage-dark);
    opacity: 1;
}

.branding-social-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    width: 4px;
    height: 4px;
    background: var(--sage);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s var(--ease-out-expo);
}

.branding-social-link:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {

    /* ── Show burger, hide inline nav links on tablets & below ── */
    .nav__burger {
        display: flex;
        margin-left: auto;
        /* Pushes burger to the top right */
    }

    .nav__links {
        display: none;
    }

    .statement__body {
        grid-template-columns: 1fr;
    }

    .featured__grid {
        grid-template-columns: 1fr;
    }

    .card:first-child {
        grid-row: auto;
    }

    .card__img,
    .card:first-child .card__img,
    .card:not(:first-child) .card__img {
        aspect-ratio: 16/10;
    }

    .process__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero__content {
        grid-template-columns: 1fr;
    }

    .about-hero__right {
        margin-top: 40px;
    }

    .philosophy__grid {
        grid-template-columns: 1fr;
    }

    .philosophy__img-wrap {
        position: static;
        aspect-ratio: 16/9;
    }

    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-left {
        min-height: 60svh;
    }

    .contact-branding-hero {
        padding: 40px 0;
    }

    /* Move menu-overlay to full width on smaller tablets */
    .menu-overlay {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: clamp(44px, 10vw, 80px);
    }

    .statement {
        display: block;
    }

    .statement__title {
        font-size: clamp(32px, 8vw, 60px);
    }

    .statement__body {
        grid-template-columns: 1fr;
    }

    .statement__stats {
        grid-template-columns: 1fr 1fr;
    }

    .process__grid {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-section {
        flex-direction: column;
        text-align: center;
    }


    .footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .values .value-item__desc {
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    :root {
        --gutter: 20px;
    }

    .footer__top {
        grid-template-columns: 1fr;
    }

    .statement__stats {
        flex-wrap: wrap;
    }

    .stat {
        flex: 1 1 40%;
    }

    .hero__footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Scroll-triggered reveal states ─────────── */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
}

.reveal-in {
    opacity: 0;
}

.reveal-soft {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(30px);
}

[data-page-exit] {
    transition: opacity 0s;
}

/* ============================================
   NEW CONTENT SECTIONS
   ============================================ */

/* ── Section Fade Divider ──────────────────── */
.section-fade {
    height: clamp(48px, 6vw, 96px);
    background: linear-gradient(to bottom, var(--cream), var(--beige));
}

.section-fade--dark {
    background: linear-gradient(to bottom, var(--beige), var(--charcoal));
}

/* ── Services Section ──────────────────────── */
.services {
    padding: var(--section-pad) var(--gutter);
    background: var(--cream);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1px, 0.1vw, 1px) 0;
    margin-top: clamp(48px, 6vw, 80px);
    border-top: 1px solid var(--beige);
}

.service-item {
    padding: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 48px);
    border-right: 1px solid var(--beige);
    border-bottom: 1px solid var(--beige);
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}

.service-item:nth-child(3n) {
    border-right: none;
}

.service-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--charcoal);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s var(--ease-out-expo);
    z-index: 0;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover .service-item__title,
.service-item:hover .service-item__desc,
.service-item:hover .service-item__num {
    color: var(--cream);
}

.service-item:hover .service-item__icon {
    border-color: var(--sage);
    stroke: var(--sage);
}

.service-item__inner {
    position: relative;
    z-index: 1;
}

.service-item__num {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--sage-dark);
    margin-bottom: 24px;
    display: block;
    transition: color 0.4s;
}

.service-item__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: border-color 0.4s;
}

.service-item__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--charcoal);
    transition: stroke 0.4s;
}

.service-item__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 400;
    margin-bottom: 16px;
    transition: color 0.4s;
    line-height: 1.15;
}

.service-item__desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--charcoal-mid);
    transition: color 0.4s;
}

/* ── Awards / Recognition Strip ────────────── */
.awards {
    padding: clamp(48px, 6vw, 80px) var(--gutter);
    background: var(--charcoal);
}

.awards__inner {
    display: flex;
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
    flex-wrap: wrap;
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    opacity: 0.4;
    transition: opacity 0.3s;
    flex: 1 1 0;
    min-width: 140px;
}

.award-item:hover {
    opacity: 1;
}

.award-item__org {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage);
}

.award-item__name {
    font-family: var(--font-display);
    font-size: clamp(16px, 2vw, 24px);
    color: var(--cream);
    font-weight: 300;
    line-height: 1.2;
}

.award-item__year {
    font-size: 12px;
    color: rgba(244, 241, 234, 0.3);
    letter-spacing: 0.1em;
}

.awards__divider {
    width: 1px;
    height: 48px;
    background: rgba(244, 241, 234, 0.1);
    flex-shrink: 0;
}

/* ── Clients / Logos Band ───────────────────── */
.clients {
    padding: clamp(48px, 5vw, 80px) var(--gutter);
    background: var(--beige);
}

.clients__label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-dark);
    text-align: center;
    margin-bottom: 40px;
}

.clients__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(32px, 5vw, 80px);
    flex-wrap: wrap;
}

.client-logo {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    opacity: 0.3;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.client-logo:hover {
    opacity: 0.85;
}

/* ── Approach / Timeline ───────────────────── */
.approach {
    padding: var(--section-pad) var(--gutter);
    background: var(--charcoal);
    overflow: hidden;
}

.approach__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: clamp(48px, 6vw, 80px);
    position: relative;
}

.approach__timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(163, 177, 138, 0.15);
}

.timeline-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: clamp(24px, 3vw, 48px);
    padding: clamp(24px, 3vw, 40px) 0;
    border-bottom: 1px solid rgba(244, 241, 234, 0.05);
    position: relative;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sage);
    border: 2px solid var(--charcoal);
    outline: 1px solid var(--sage);
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
    left: 24px;
}

.timeline-item__num {
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--sage);
    margin-bottom: 10px;
    display: block;
}

.timeline-item__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 34px);
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.2;
}

.timeline-item__desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(244, 241, 234, 0.45);
    max-width: 560px;
}


/* ── FAQ / Accordion ───────────────────────── */
.faq {
    padding: var(--section-pad) var(--gutter);
    background: var(--cream);
}

.faq__list {
    margin-top: clamp(48px, 5vw, 80px);
    border-top: 1px solid var(--beige);
    max-width: 860px;
}

.faq-item {
    border-bottom: 1px solid var(--beige);
    overflow: hidden;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(20px, 2.5vw, 32px) 0;
    cursor: pointer;
    gap: 20px;
    user-select: none;
}

.faq-item__q-text {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 400;
    line-height: 1.25;
    transition: color 0.3s;
}

.faq-item.open .faq-item__q-text {
    color: var(--sage-dark);
}

.faq-item__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out-expo), background 0.3s, border-color 0.3s;
}

.faq-item.open .faq-item__icon {
    transform: rotate(45deg);
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.faq-item.open .faq-item__icon svg {
    stroke: var(--cream);
}

.faq-item__icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--charcoal);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s var(--ease-out-expo);
}

.faq-item.open .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer-text {
    padding-bottom: clamp(20px, 2.5vw, 32px);
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.85;
    color: var(--charcoal-mid);
    max-width: 680px;
}

/* ── Related Articles / Insights ────────────── */
.insights {
    padding: var(--section-pad) var(--gutter);
    background: var(--beige);
}

.insights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-top: clamp(40px, 5vw, 72px);
}

.insight-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.insight-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream);
    position: relative;
}

.insight-card__img-inner {
    width: 100%;
    height: 100%;
    transition: transform 0.7s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.insight-card:hover .insight-card__img-inner {
    transform: scale(1.05);
}

.insight-card__tag {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-dark);
}

.insight-card__title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 400;
    line-height: 1.25;
    transition: color 0.3s;
}

.insight-card:hover .insight-card__title {
    color: var(--sage-dark);
}

.insight-card__date {
    font-size: 12px;
    color: rgba(47, 62, 70, 0.4);
    margin-top: auto;
    letter-spacing: 0.08em;
}

/* ── Contact Map / Info panel extras ────────── */
.contact-extra-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.contact-extra-info__divider {
    width: 100%;
    height: 1px;
    background: rgba(244, 241, 234, 0.08);
}

/* ── Page Section Transition Fade ────────────── */
.page-section-transition {
    position: relative;
    overflow: hidden;
}

.page-section-transition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* ── Responsive for new sections ────────────── */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item:nth-child(2n) {
        border-right: none;
    }

    .service-item:nth-child(3n) {
        border-right: 1px solid var(--beige);
    }

    .insights__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach__timeline::before {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .timeline-item__dot {
        display: none;
    }
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        border-right: none;
    }

    .insights__grid {
        grid-template-columns: 1fr;
    }

    .awards__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .awards__divider {
        width: 100%;
        height: 1px;
    }

    .clients__row {
        gap: 24px;
    }
}

/* ============================================
   ADDITIONAL FILL-CONTENT STYLES
   ============================================ */

/* ── Full-bleed italic pull-quote strip ─────── */
.pull-quote-strip {
    padding: clamp(60px, 8vw, 120px) var(--gutter);
    background: var(--beige);
    border-top: 1px solid rgba(47, 62, 70, 0.1);
    border-bottom: 1px solid rgba(47, 62, 70, 0.1);
}

.pull-quote-strip__text {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 72px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    max-width: 1100px;
}

.pull-quote-strip__text em {
    color: var(--sage-dark);
    font-style: normal;
}

.pull-quote-strip__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.pull-quote-strip__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
}

.pull-quote-strip__name {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-dark);
}


/* ── Testimonial redesign — two columns ──────── */
.testimonial__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
    margin-top: clamp(48px, 6vw, 80px);
}

.testimonial__left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.testimonial__quote-mark {
    font-family: var(--font-display);
    font-size: 120px;
    line-height: 0.6;
    color: var(--sage);
    opacity: 0.25;
    user-select: none;
}

.testimonial__quote {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 34px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
    color: var(--cream);
}

.testimonial__author {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial__author::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--sage);
    flex-shrink: 0;
}

.testimonial__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial__card {
    padding: 28px 32px;
    border: 1px solid rgba(244, 241, 234, 0.07);
    background: rgba(244, 241, 234, 0.03);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.3s, border-color 0.3s;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.testimonial__card:hover {
    background: rgba(244, 241, 234, 0.07);
    border-color: rgba(163, 177, 138, 0.2);
}

.testimonial__card-quote {
    font-family: var(--font-display);
    font-size: clamp(15px, 1.5vw, 20px);
    font-weight: 300;
    font-style: italic;
    color: rgba(244, 241, 234, 0.6);
    line-height: 1.55;
}

.testimonial__card-author {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
}

/* ── Studio numbers dark bar ─────────────────── */
.numbers-bar {
    background: var(--charcoal);
    padding: clamp(40px, 5vw, 72px) var(--gutter);
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    border-top: 1px solid rgba(163, 177, 138, 0.1);
}

.numbers-bar__item {
    flex: 1 1 0;
    min-width: 140px;
    padding: 0 clamp(20px, 3vw, 48px);
    border-left: 1px solid rgba(244, 241, 234, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.numbers-bar__item:first-child {
    border-left: none;
    padding-left: 0;
}

.numbers-bar__num {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: -0.03em;
    line-height: 1;
}

.numbers-bar__label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 241, 234, 0.3);
}

/* ── Overrides for modernity: Remove BG from cards ── */
.insight-card,
.testimonial__card,
.faq-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* ── Home Services Grid ── */
.home-services {
    padding: var(--section-pad) var(--gutter);
}

.home-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(32px, 5vw, 64px);
}

.service-teaser {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-teaser__img {
    aspect-ratio: 16/11;
    overflow: hidden;
    border-radius: 4px;
    background: var(--beige);
}

.service-teaser__img img {
    transition: transform 1.5s var(--ease-out-expo);
}

.service-teaser:hover .service-teaser__img img {
    transform: scale(1.08);
}

.service-teaser__content h3 {
    margin-bottom: 16px;
    font-size: clamp(28px, 3.5vw, 40px);
    font-family: var(--font-display);
}

.service-teaser__content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal-mid);
    margin-bottom: 24px;
}

.btn-text {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold-soft);
    padding-bottom: 4px;
    display: inline-block;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-text:hover {
    color: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .home-services__grid {
        grid-template-columns: 1fr;
    }
}

/* ── About story — alternating image + text ─── */
.about-story {
    padding: var(--section-pad) var(--gutter);
    background: var(--cream);
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 8vw, 120px);
}

.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}

.story-block--reversed {
    direction: rtl;
}

.story-block--reversed>* {
    direction: ltr;
}

.story-block__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-block__img img {
    transition: transform 0.8s var(--ease-out-expo);
}

.story-block:hover .story-block__img img {
    transform: scale(1.04);
}

.story-block__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-block__year {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--sage);
    text-transform: uppercase;
}

.story-block__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.story-block__desc {
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.85;
    color: var(--charcoal-mid);
}

/* ── Hero bottom info bar ─────────────────────  */
.hero__info-bar {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 40px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(163, 177, 138, 0.18);
    flex-wrap: wrap;
}

.hero__info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__info-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(163, 177, 138, 0.55);
}

.hero__info-value {
    font-size: 13px;
    color: rgba(244, 241, 234, 0.75);
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .story-block {
        grid-template-columns: 1fr;
    }

    .story-block--reversed {
        direction: ltr;
    }

    .testimonial__grid {
        grid-template-columns: 1fr;
    }

    .numbers-bar {
        flex-direction: column;
        gap: 32px;
    }

    .numbers-bar__item {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(244, 241, 234, 0.06);
        padding-top: 32px;
    }

    .numbers-bar__item:first-child {
        border-top: none;
        padding-top: 0;
    }

    .pull-quote-strip__text {
        font-size: clamp(22px, 5vw, 44px);
    }

    .hero__info-bar {
        gap: 24px;
    }
}

/* ── Service Cards Layout ──────────────────── */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px 48px;
    margin-top: 80px;
}

.service-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover {
    transform: translateY(-15px);
}

.service-card__img {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background: var(--beige);
    border-radius: 2px;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.service-card:hover .service-card__img img {
    transform: scale(1.1);
}

.service-card__duration {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: rgba(255, 255, 240, 0.9);
    color: var(--warm-brown);
    padding: 10px 20px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.service-card__content {
    padding: 40px 0;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.service-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal-mid);
    margin-bottom: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--gold);
    transition: gap 0.3s;
}

.btn-text:hover {
    gap: 20px;
}

.btn-text svg {
    width: 18px;
    height: 18px;
}

/* ── Wellness Quote & Dividers ─────────────── */
.wellness-quote {
    overflow: hidden;
}

.gold-divider {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    transition: width 1.5s var(--ease-out-expo);
}

.reveal-up.scroll-triggered .gold-divider {
    width: 120px;
}

/* ── Service Detail Page ───────────────────── */
.service-hero {
    min-height: 60svh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--charcoal);
}

.service-hero__bg {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.service-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cream);
    padding: 0 var(--gutter);
}

.service-detail {
    padding: var(--section-pad) var(--gutter);
    background: var(--cream);
}

.service-detail__container {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail__meta {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(44, 24, 16, 0.1);
    padding-bottom: 32px;
}

.service-detail__meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-detail__meta-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
}

.service-detail__meta-value {
    font-size: 18px;
    font-family: var(--font-display);
}

.service-detail__info {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.service-detail__description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal-mid);
}

.service-detail__benefits {
    background: var(--beige);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-detail__benefits-title {
    font-family: var(--font-display);
    font-size: 22px;
}

.service-detail__benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-detail__benefit {
    display: flex;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.service-detail__benefit::before {
    content: '→';
    color: var(--sage);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-detail__info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Manifesto Section ─────────────────────── */
.manifesto {
    padding: var(--section-pad) var(--gutter);
    background: var(--cream);
    overflow: hidden;
}

.manifesto__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
}

.manifesto__img {
    aspect-ratio: 4/5;
    background: var(--beige);
    overflow: hidden;
    position: relative;
}

.manifesto__img img {
    transition: transform 1.2s var(--ease-out-expo);
}

.manifesto__img:hover img {
    transform: scale(1.05);
}

.manifesto__content {
    display: flex;
    flex-direction: column;
}

.manifesto__text {
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.8;
    color: var(--charcoal-mid);
    margin-top: 32px;
}

.manifesto__text strong {
    color: var(--charcoal);
    font-weight: 500;
}

.manifesto__divider {
    width: 60px;
    height: 1px;
    background: var(--sage);
    margin: 40px 0;
}

@media (max-width: 1024px) {
    .manifesto__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .manifesto__img {
        aspect-ratio: 16/9;
        order: 2;
    }
}

/* ── Sticky WhatsApp Button ────────────────── */
.sticky-whatsapp {
    position: fixed;
    bottom: clamp(20px, 4vw, 40px);
    right: clamp(20px, 4vw, 40px);
    z-index: 1000;
    width: clamp(50px, 6vw, 64px);
    height: clamp(50px, 6vw, 64px);
    background: var(--gold);
    color: var(--charcoal);
    /* Contrast color for the icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s var(--ease-out-expo), background 0.4s, opacity 0.6s, visibility 0.6s;
    opacity: 0;
    visibility: hidden;
    transform: scale(0) rotate(-45deg);
}

.sticky-whatsapp.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0deg);
}

.sticky-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--gold-soft);
    color: var(--charcoal);
}

.sticky-whatsapp svg {
    width: 45%;
    height: 45%;
    fill: currentColor;
}