:root {
    --bg: #ffffff;
    --bg-alt: #f7f7f8;
    --text: #0d0d0e;
    --text-dim: rgba(13, 13, 14, .6);
    --accent: #d4ff3f;
    --accent-text: #627c12;
    --border: rgba(13, 13, 14, .12);
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Light-section palette (used by .is-light sections to break up the dark theme) */
    --bg-light: #f3ede0;
    --text-light: #17170f;
    --text-dim-light: rgba(23, 23, 15, .62);
    --accent-light: #6a7a14;
    --border-light: rgba(23, 23, 15, .14);
}

.is-light {
    --bg: var(--bg-light);
    --bg-alt: var(--bg-light);
    --text: var(--text-light);
    --text-dim: var(--text-dim-light);
    --accent: var(--accent-light);
    --accent-text: var(--accent-light);
    --border: var(--border-light);
    background: var(--bg-light);
    color: var(--text-light);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
}

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #0a0a0b; }

/* ===================== Custom cursor ===================== */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
}

.cursor-ring {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(13, 13, 14, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width .35s cubic-bezier(.16,1,.3,1), height .35s cubic-bezier(.16,1,.3,1),
                background .35s ease, border-color .35s ease;
}

.cursor-ring #cursorLabel {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #0a0a0b;
    opacity: 0;
    transition: opacity .25s ease;
}

.cursor-ring.is-hover {
    width: 20px;
    height: 20px;
    border-color: var(--accent);
}

.cursor-ring.is-video {
    width: 110px;
    height: 110px;
    background: var(--accent);
    border-color: var(--accent);
}

.cursor-ring.is-video #cursorLabel { opacity: 1; }

@media (hover: none), (max-width: 991px) {
    .cursor-dot, .cursor-ring { display: none; }
    body { cursor: auto; }
}

/* ===================== Top Utility Header ===================== */
.site-top-bar {
    background: #0d0d0e;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 8px 5vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-sep {
    opacity: 0.3;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left a,
.top-bar-right a {
    color: inherit;
    transition: color 0.3s ease;
}

.top-bar-left a:hover,
.top-bar-right a:hover {
    color: #ffffff;
}

/* ===================== Main Navigation Header ===================== */
.site-nav {
    position: fixed;
    top: 33px; /* Sits exactly below the top bar */
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 5vw;
    background: #ffffff;
    border-bottom: 1px solid rgba(13, 13, 14, 0.08);
    transition: top 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.nav-scrolled {
    top: 0;
    padding: 8px 5vw;
    background: #ffffff;
    border-bottom: 1px solid rgba(13, 13, 14, 0.12);
    box-shadow: 0 10px 30px rgba(13, 13, 14, 0.04);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-only {
    height: 75px; /* Fixed logo height */
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease;
}

.site-nav.nav-scrolled .nav-logo-only {
    height: 58px; /* Slightly more compact on scroll */
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links-desktop a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #0d0d0e;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links-desktop a:hover {
    opacity: 1;
    color: #6a7a14;
}

/* Contact CTA inside header */
.nav-links-desktop a.nav-cta {
    background: #0d0d0e;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 999px;
    opacity: 1;
    transition: all 0.3s ease;
}

.nav-links-desktop a.nav-cta:hover {
    background: #6a7a14;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(106, 122, 20, 0.15);
}

/* Hamburger button (Mobile only) */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: none;
    border: none;
    padding: 0;
    z-index: 105;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0d0d0e;
    border-radius: 99px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay Drawer */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: #0a0a0b;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    width: 100%;
    height: 100%;
    padding: 32px 6vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 38px;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent);
    transform: translateX(8px);
}

.mobile-menu-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-contact-info span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.mobile-contact-info a {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.mobile-socials {
    display: flex;
    gap: 20px;
}

.mobile-socials a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

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

@media (max-width: 991px) {
    .site-top-bar {
        display: none;
    }
    .site-nav {
        top: 0;
        padding: 14px 6vw;
    }
    .nav-links-desktop {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .nav-logo-only {
        height: 36px;
    }
}

/* ===================== Hero ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 5vw 60px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Reveal section: sits below the hero (not overlapping it) — the video fades/scales/slides
   into view as this section scrolls into the viewport. */
.hero-reveal-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8vh 5vw;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .35;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.hero-orb-a {
    width: 480px;
    height: 480px;
    top: -10%;
    right: -8%;
    background: radial-gradient(circle, rgba(255, 152, 92, .55), transparent 70%);
    animation: orbFloatA 14s ease-in-out infinite;
}

.hero-orb-b {
    width: 380px;
    height: 380px;
    bottom: -15%;
    left: -6%;
    background: radial-gradient(circle, rgba(120, 190, 255, .45), transparent 70%);
    opacity: .5;
    animation: orbFloatB 18s ease-in-out infinite;
}

@keyframes orbFloatA {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 40px) scale(1.1); }
}

@keyframes orbFloatB {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.08); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-dim);
    margin-bottom: clamp(16px, 3vh, 28px);
    overflow: hidden;
}

.hero-kicker .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex: none;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: .5; }
}

.hero-heading {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.02em;
    font-size: clamp(2.6rem, 7.5vw, 7.5rem);
    margin: 0;
}

@media (max-height: 680px) {
    .hero-heading { font-size: clamp(2.2rem, 6.5vw, 5.4rem); }
    .hero-kicker { margin-bottom: 12px; }
    .hero-sub { margin-top: 12px; }
    .hero-cta-row { margin-top: 18px; }
}

.hero-heading .line {
    overflow: hidden;
    display: block;
}

.hero-heading .line span {
    display: inline-block;
    will-change: transform;
}

.hero-heading .hero-word {
    position: relative;
    display: inline-block;
    cursor: none;
}

.hero-heading .hero-word.is-trigger {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text);
}

/* Small square video sitting inline right after "People." — flies down into the
   full-bleed reveal section below as the hero scrolls out of view (see hero.js). */
.hero-inline-video {
    position: relative;
    display: inline-block;
    width: 2.2em;
    height: 1.25em;
    vertical-align: middle;
    margin-left: .12em;
    border-radius: 999px; /* Pill shape matching upsunday.co */
    overflow: hidden;
    box-shadow: 0 .08em .3em rgba(0, 0, 0, .4);
    transform-origin: center center;
}

.hero-inline-video video,
.hero-inline-video .fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-inline-video .fallback {
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 255, 63, .3), transparent 55%),
        var(--bg-alt);
}

/* Fixed-position clone used only during the scroll-driven flight animation, so the
   original inline square can stay in the text flow (invisible) without reflowing it. */
.hero-inline-video-ghost {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    border-radius: 999px; /* Pill shape matching upsunday.co */
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .5);
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity, border-radius;
}

.hero-inline-video-ghost video,
.hero-inline-video-ghost .fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-inline-video-ghost .fallback {
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 255, 63, .3), transparent 55%),
        var(--bg-alt);
}

.hero-sub {
    max-width: 480px;
    margin-top: clamp(16px, 3vh, 32px);
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dim);
    overflow: hidden;
}

.hero-sub p { transform: translateY(110%); margin: 0; }

.hero-cta-row {
    margin-top: clamp(22px, 4vh, 44px);
    display: flex;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    flex-wrap: wrap;
}

.hero-cta-row > * { transform: translateY(120%); }

.btn-accent {
    background: var(--accent);
    color: #0a0a0b;
    font-weight: 600;
    font-size: 14px;
    padding: 16px 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}

.btn-accent:hover { transform: scale(1.05); color: #0a0a0b; }

.hero-scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 5vw;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.hero-scroll-cue .line-anim {
    width: 1px;
    height: 40px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.hero-scroll-cue .line-anim::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollcue 2s ease-in-out infinite;
}

@keyframes scrollcue {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* Cursor-follow video panel */
.hero-video-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 150px;
    border-radius: 16px;
    overflow: hidden;
    pointer-events: none;
    z-index: 60;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.4);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.hero-video-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-panel .fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), #7ad1ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: #0a0a0b;
    font-size: 13px;
    text-align: center;
    padding: 12px;
}

/* Scroll-driven premium video reveal section matching Awwwards standards.
   Optimized with composited layer rendering, hardware-accelerated transforms, and will-change hints. */
.hero-reveal-media {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    border-radius: 24px; /* exact 24px requested */
    overflow: hidden; /* clips the video's scale/parallax and floating animations */
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.08), 0 15px 35px rgba(0, 0, 0, 0.04); /* soft shadow */
    opacity: 0;
    transform: translate3d(0, 120px, 0) scale(0.82); /* starts at scale: 0.82, translateY: 120px */
    filter: blur(8px); /* starts at filter: blur(8px) */
    will-change: transform, opacity, filter;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

/* Floating wrapper: isolates structural scroll animations from gentle floating behaviors */
.hero-reveal-float {
    width: 100%;
    height: 100%;
    position: relative;
    will-change: transform;
    transform-style: preserve-3d;
}

.hero-reveal-video,
.hero-reveal-float .fallback {
    position: absolute;
    top: -20%; /* oversized height for parallax buffer */
    left: 0;
    width: 100%;
    height: 140%;
    object-fit: cover;
    will-change: transform;
    transform: translate3d(0, 0, 0); /* GPU acceleration */
}

.hero-reveal-float .fallback {
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 255, 63, .22), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(122, 209, 255, .16), transparent 55%),
        var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 20px;
}

@media (prefers-reduced-motion: reduce) {
    .hero-reveal-media {
        opacity: 1;
        transform: none;
    }
}

/* ===================== Process ===================== */
.process-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-top: 1px solid var(--border);
    overflow: hidden;
    box-sizing: border-box;
}

.process-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(13, 13, 14, .018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 13, 14, .018) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.process-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .2;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.process-orb-a {
    width: 350px;
    height: 350px;
    top: 10%;
    right: 5%;
    background: radial-gradient(circle, rgba(255, 152, 92, .55), transparent 70%);
    animation: orbFloatA 15s ease-in-out infinite;
}

.process-orb-b {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 5%;
    background: radial-gradient(circle, rgba(120, 190, 255, .45), transparent 70%);
    animation: orbFloatB 20s ease-in-out infinite;
}

.serif-italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.process-container {
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 64px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}

.process-left {
    position: relative;
}

.process-sticky-content {
    position: sticky;
    top: 150px;
    padding-right: 24px;
}

.process-giant-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(4rem, 8vw, 8.5rem);
    font-weight: 400;
    line-height: 0.9;
    color: var(--text);
    margin-bottom: 24px;
}

.process-giant-num .of-total {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-dim);
    opacity: 0.45;
    vertical-align: super;
    margin-left: 12px;
}

.process-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-text);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.process-main-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.15;
    margin: 0 0 24px 0;
    color: var(--text);
}

.process-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dim);
    max-width: 380px;
    margin: 0;
}

.process-right {
    position: relative;
    display: flex;
    gap: 64px;
    padding-left: 48px;
    height: 600px; /* viewport height window for scrolling the list */
    overflow: hidden; /* hides overflowing scroll steps */
}

.process-vertical-track {
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px; /* Aligns to height of parent container bounds */
    width: 4px;
}

.process-vertical-line {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 14, 0.06);
    width: 2px;
    left: 1px;
    border-radius: 99px;
}

.process-vertical-progress {
    position: absolute;
    top: 0;
    left: 1px;
    width: 2px;
    height: 0%;
    background: var(--accent-text);
    box-shadow: 0 0 10px rgba(98, 124, 18, 0.3);
    border-radius: 99px;
    will-change: height;
}

.process-vertical-handle {
    position: absolute;
    left: -6px;
    top: 0%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--accent-text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 0 10px rgba(98, 124, 18, 0.3);
    transform: translateY(-50%);
    will-change: top;
    z-index: 2;
}

.process-vertical-handle::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--accent-text);
}

.process-marker {
    position: absolute;
    left: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(13, 13, 14, 0.12);
    transform: translate(-50%, -50%);
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    z-index: 1;
}

.process-marker.active {
    border-color: var(--accent-text);
    background: var(--accent-text);
    box-shadow: 0 0 8px rgba(98, 124, 18, 0.5);
}

.process-scroll-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 220px;
    padding: 60px 0 300px 0;
}

.process-scroll-step {
    display: grid;
    grid-template-columns: 90px 1.4fr 1.1fr;
    gap: 32px;
    align-items: start;
    opacity: 0.25;
    transition: opacity 0.5s ease;
}

.process-scroll-step.active-step {
    opacity: 1;
}

.step-num-col {
    position: relative;
}

.step-serif-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
    color: rgba(13, 13, 14, 0.12);
    line-height: 0.95;
    transition: color 0.4s ease;
}

.step-serif-num.active {
    color: var(--accent-text);
}

.step-content-col h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0 0 16px 0;
    color: var(--text);
}

.step-content-col p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.step-meta-col {
    display: flex;
    flex-direction: column;
}

.step-week-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-text);
    margin-bottom: 12px;
}

.step-deliverables {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
}

.step-deliverables .dot-sep {
    color: var(--accent-text);
    margin: 0 8px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .process-sticky-content {
        position: static;
        padding-right: 0;
    }
    .process-right {
        padding-left: 28px;
        gap: 32px;
        height: auto;
        overflow: visible;
    }
    .process-vertical-track {
        bottom: 120px;
    }
    .process-scroll-list {
        gap: 80px;
        padding-bottom: 80px;
    }
    .process-scroll-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        opacity: 0.8;
    }
    .process-scroll-step.active-step {
        opacity: 1;
    }
    .step-meta-col {
        grid-column: 2;
        margin-top: 12px;
    }
}

.process-step-anim {
    overflow: hidden;
}

.reveal-el { opacity: 0; transform: translateY(40px); }

/* ===================== Marquee (moving services) ===================== */
.marquee-section {
    background: #0a0a0b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-row {
    display: flex;
    white-space: nowrap;
    width: max-content;
}

.marquee-row .marquee-track {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    animation: marquee-left 70s linear infinite;
}

.marquee-row.reverse .marquee-track {
    animation-name: marquee-right;
    animation-duration: 80s;
}

.marquee-row:nth-child(3) .marquee-track {
    animation-duration: 62s;
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span.item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1rem, 1.9vw, 1.5rem);
    padding: 0 18px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
    transition: color .3s ease, -webkit-text-stroke .3s ease;
}

.marquee-track span.item:hover {
    color: var(--accent);
    -webkit-text-stroke: 1px var(--accent);
}

.marquee-track span.sep {
    color: var(--accent);
    font-size: .9rem;
    padding: 0 3px;
}

@keyframes marquee-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marquee-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.marquee-row + .marquee-row { margin-top: 2px; }

/* ===================== Background video / manifesto ===================== */
.video-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.video-section .bg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-section video,
.video-section .bg-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    will-change: transform;
}

.video-section .bg-fallback {
    background:
        radial-gradient(circle at 30% 20%, rgba(212,255,63,.18), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(122,209,255,.12), transparent 55%),
        var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dim);
    font-size: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 20px;
}

.video-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.72) 60%, rgba(0,0,0,.85) 100%);
    z-index: 2;
}

.video-section .content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 6vw;
}

.video-section .kicker {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--accent);
    margin-bottom: 26px;
    display: inline-block;
}

.video-section h2 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.01em;
    font-size: clamp(2rem, 5.6vw, 4.6rem);
    max-width: 980px;
    margin: 0 auto;
}

.video-section h2 .dim { color: rgba(245,245,242,.4); }

.video-stats {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    gap: clamp(28px, 6vw, 90px);
    flex-wrap: wrap;
}

.video-stats .stat { text-align: center; }

.video-stats .stat .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent);
    line-height: 1;
}

.video-stats .stat .label {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ===================== Services ===================== */
.services-section {
    padding: 110px 5vw;
    background: #f3ede0;
    color: #17170f;
}

.services-section .process-header .kicker {
    color: #6a7a14;
}

.services-highlight {
    color: #6a7a14;
    font-weight: 700;
}

.services-explorer {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    margin-top: 64px;
    align-items: start;
}

/* -- Category nav (left) -- */
.services-nav {
    position: relative;
    position: sticky;
    top: 120px;
    border-top: 1px solid rgba(23, 23, 15, 0.12);
}

.services-nav-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #17170f;
    will-change: transform, height;
    transform: translateY(0);
}

.service-nav-item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0 18px 22px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(23, 23, 15, 0.12);
    text-align: left;
    cursor: none;
}

.service-nav-item .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12px;
    color: rgba(23, 23, 15, 0.4);
    transition: color .3s ease;
}

.service-nav-item .title {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: rgba(23, 23, 15, 0.5);
    transition: color .3s ease, transform .3s ease;
}

.service-nav-item .count {
    font-size: 11px;
    color: rgba(23, 23, 15, 0.6);
    opacity: .7;
    border: 1px solid rgba(23, 23, 15, 0.12);
    border-radius: 999px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.service-nav-item.is-active .num,
.service-nav-item.is-active .title {
    color: #17170f;
}

.service-nav-item.is-active .title { transform: translateX(4px); }

.service-nav-item.is-active .count {
    border-color: #17170f;
    background: #17170f;
    color: #f3ede0;
    opacity: 1;
}

.service-nav-item:hover .title { color: #17170f; }

/* -- Panel (right) -- */
.services-panels { position: relative; min-height: 420px; }

.service-panel {
    display: none;
}

.service-panel.is-active { display: block; }

.service-panel .panel-head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(23, 23, 15, 0.12);
}

.service-panel .panel-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: #6a7a14;
}

.service-panel h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin: 0;
    color: #17170f;
}

.panel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.panel-item {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 22px;
    border: 1px solid rgba(23, 23, 15, 0.08);
    background: #ffffff;
    color: #17170f;
    border-radius: 999px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.panel-item::after {
    content: '+';
    font-size: 12px;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.panel-item:hover {
    background: #17170f;
    color: #ffffff;
    border-color: #17170f;
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 20px rgba(23, 23, 15, 0.15);
}

.panel-item:hover::after {
    transform: rotate(90deg);
    color: var(--accent);
    opacity: 1;
}

@media (max-width: 991px) {
    .services-explorer { grid-template-columns: 1fr; gap: 32px; }
    .services-nav { position: static; display: flex; flex-wrap: wrap; gap: 0; border-top: none; }
    .services-nav-indicator { display: none; }
    .service-nav-item { width: auto; padding: 10px 16px; border: 1px solid rgba(23, 23, 15, 0.12); border-radius: 999px; margin: 0 8px 8px 0; }
    .service-nav-item.is-active { background: #17170f; border-color: #17170f; }
    .service-nav-item.is-active .num,
    .service-nav-item.is-active .title { color: #f3ede0; }
    .service-nav-item.is-active .count { border-color: #f3ede0; color: #f3ede0; }
    .service-nav-item .count { display: none; }
    .services-panels { min-height: 0; }
}

@media (max-width: 767px) {
    .process-list { grid-template-columns: 2px 1fr; gap: 0 24px; }
    .process-step { grid-template-columns: 60px 1fr; gap: 16px; }
    .process-step .num { font-size: 2rem; }
}

/* ===================== Approach (pinned image + side text) ===================== */
/* ===================== Gap Section (Monolog style) ===================== */
.gap-section {
    position: relative;
    height: 100vh;
    background: #0a0a0b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.gap-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, .007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .007) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.gap-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .08;
    pointer-events: none;
    z-index: 0;
}

.gap-orb-a {
    width: 400px;
    height: 400px;
    top: -10%;
    left: 10%;
    background: radial-gradient(circle, rgba(212, 255, 63, .3), transparent 70%);
}

.gap-orb-b {
    width: 350px;
    height: 350px;
    bottom: -10%;
    right: 10%;
    background: radial-gradient(circle, rgba(122, 209, 255, .25), transparent 70%);
}

.gap-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vh, 64px);
    z-index: 1;
    position: relative;
}

.gap-interactive-wrap {
    position: relative;
    width: 100%;
    height: clamp(300px, 45vh, 480px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 6.5vw, 8.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
    letter-spacing: -0.02em;
    color: #ffffff;
    will-change: transform, opacity;
}

.gap-text-left {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; /* on top of image */
    text-align: right;
    transform-origin: right center;
    padding-right: clamp(10px, 1.5vw, 30px);
}

.gap-text-right {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; /* on top of image */
    text-align: left;
    transform-origin: left center;
    padding-left: clamp(10px, 1.5vw, 30px);
}

.gap-image-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(120px, 13vw, 210px);
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
    background: #111;
    z-index: 1; /* behind text */
    will-change: transform, opacity;
}

.gap-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.gap-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.gap-slide.active {
    opacity: 1;
}

.gap-description-wrap {
    width: 100%;
    max-width: 720px;
    text-align: center;
    will-change: transform, opacity;
}

.gap-desc {
    font-size: clamp(14.5px, 1.2vw, 17px);
    line-height: 1.7;
    color: rgba(245, 245, 242, 0.7);
    margin: 0;
}

@media (max-width: 767px) {
    .gap-section {
        height: auto;
        padding: 100px 5vw;
    }
    .gap-flex-row {
        flex-direction: column;
        gap: 24px;
    }
    .gap-text {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
        text-align: center;
    }
    .gap-image-box {
        width: 160px;
        order: -1; /* puts the auto-slideshow image block on top of mobile text! */
    }
    .gap-description-wrap {
        margin-top: 20px;
    }
}

/* ===================== Hero Banner Section (Shared across subpages) ===================== */
.hero-banner-section {
    position: relative;
    padding: 160px 5vw 80px;
    background: var(--bg);
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 1px solid var(--border);
}

.hero-banner-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(13, 13, 14, .01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 13, 14, .01) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.hero-banner-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.site-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 13, 14, 0.03);
    border: 1px solid rgba(13, 13, 14, 0.06);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-text);
}

.breadcrumb-home-icon {
    font-size: 14px;
    line-height: 1;
    margin-top: -2.5px;
}

.breadcrumb-sep {
    color: var(--text-dim);
    opacity: 0.35;
    font-size: 13px;
    line-height: 1;
}

.breadcrumb-current-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-active-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-text);
    display: inline-block;
}

.breadcrumb-current {
    color: var(--text);
    font-weight: 700;
}

.hero-banner-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    line-height: 1.15;
    color: var(--text);
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.hero-banner-subtitle {
    font-size: clamp(16px, 1.25vw, 20px);
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 680px;
    margin: 0;
}

/* Dark banner override styles for custom background images */
.hero-banner-section.is-dark {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: none;
    padding: 160px 5vw 80px; /* Reduced padding for compact, balanced aesthetic */
}

.hero-banner-section.is-dark .hero-banner-title {
    color: #ffffff;
}

.hero-banner-section.is-dark .hero-banner-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.hero-banner-section.is-dark .site-breadcrumbs {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-banner-section.is-dark .breadcrumb-link {
    color: rgba(255, 255, 255, 0.6);
}

.hero-banner-section.is-dark .breadcrumb-link:hover {
    color: var(--accent);
}

.hero-banner-section.is-dark .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

.hero-banner-section.is-dark .breadcrumb-active-dot {
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.hero-banner-section.is-dark .breadcrumb-current {
    color: #ffffff;
}

/* ===================== Work / Portfolio ===================== */
.work-section {
    padding: 0;
    background: var(--bg);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 0;
}

.work-card {
    display: block;
    color: inherit;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: none;
    aspect-ratio: 1 / 1;
    will-change: transform;
    transform-style: preserve-3d;
}

.work-thumb {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #141416;
    overflow: hidden;
    z-index: 1;
}

.work-thumb-1 { background: radial-gradient(circle at 30% 30%, rgba(212,255,63,.25), transparent 60%), #141416; }
.work-thumb-2 { background: radial-gradient(circle at 70% 30%, rgba(122,209,255,.22), transparent 60%), #141416; }
.work-thumb-3 { background: radial-gradient(circle at 30% 70%, rgba(212,255,63,.18), transparent 60%), radial-gradient(circle at 80% 20%, rgba(122,209,255,.15), transparent 55%), #141416; }
.work-thumb-4 { background: linear-gradient(135deg, rgba(212,255,63,.16), rgba(122,209,255,.12)), #141416; }
.work-thumb-5 { background: radial-gradient(circle at 60% 80%, rgba(122,209,255,.25), transparent 60%), #141416; }
.work-thumb-6 { background: conic-gradient(from 180deg at 50% 50%, rgba(212,255,63,.14), rgba(122,209,255,.14), rgba(212,255,63,.14)), #141416; }

.work-thumb-label {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(245, 245, 242, .45);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.work-card:hover .work-thumb-label {
    transform: scale(1.1);
}

.work-meta {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

/* Custom color block overlays */
.work-card:nth-child(1) .work-meta { background: rgba(98, 124, 18, 0.95); color: #ffffff; }
.work-card:nth-child(2) .work-meta { background: rgba(26, 115, 232, 0.94); color: #ffffff; }
.work-card:nth-child(3) .work-meta { background: rgba(13, 13, 14, 0.96); color: #ffffff; }
.work-card:nth-child(4) .work-meta { background: rgba(245, 124, 0, 0.95); color: #ffffff; }
.work-card:nth-child(5) .work-meta { background: rgba(106, 122, 20, 0.95); color: #ffffff; }
.work-card:nth-child(6) .work-meta { background: rgba(13, 13, 14, 0.97); color: #ffffff; }

.work-card:hover .work-meta {
    opacity: 1;
}

.work-meta > * {
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease;
}

.work-card:hover .work-meta > * {
    transform: translateY(0);
    opacity: 1;
}

.work-card:hover .work-meta .work-category { transition-delay: 0.04s; }
.work-card:hover .work-meta .work-title { transition-delay: 0.08s; }
.work-card:hover .work-meta .work-result { transition-delay: 0.12s; }
.work-card:hover .work-meta .work-action-link { transition-delay: 0.16s; }

.work-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: 0.7;
    margin-bottom: 8px;
    font-weight: 700;
}

.work-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    line-height: 1.1;
    margin: 0 0 8px 0;
}

.work-result {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 24px;
}

.work-action-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
    width: 100%;
}

.work-action-arrow {
    font-size: 15px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.work-card:hover .work-action-arrow {
    transform: translateX(6px);
}

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

@media (max-width: 640px) {
    .work-grid { grid-template-columns: 1fr; }
}

/* Spacer style for work page list block spacing override */
.work-section-sep { display: none; }

/* ===================== Contact ===================== */
.contact-section {
    padding: 120px 5vw;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.contact-inner {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-grid-main {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

.contact-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-kicker-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-text);
    background: rgba(106, 122, 20, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-main-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.15;
    color: var(--text);
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.contact-main-sub {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dim);
    margin: 0 0 40px 0;
    max-width: 500px;
}

.contact-reviews-panel {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 48px;
}

.review-badge-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.review-badge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.google-logo-text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: -0.03em;
}

.clutch-logo-text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 900;
    font-size: 17px;
    color: #0c0c0d;
    letter-spacing: -0.02em;
}

.stars-row {
    color: #fbbc05;
    font-size: 15px;
    letter-spacing: 1px;
}

.stars-row.red-stars {
    color: #da291c;
}

.review-badge-stats {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
}

.contact-trust-bar {
    display: flex;
    gap: 28px;
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
}

.trust-icon {
    font-size: 14px;
}

/* Right Side Form Card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(13, 13, 14, 0.04);
}

.form-card-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--text);
    margin: 0 0 8px 0;
}

.form-card-sub {
    font-size: 13.5px;
    color: var(--text-dim);
    margin: 0 0 28px 0;
}

.form-input-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    width: 100%;
}

.contact-action-form input,
.contact-action-form select,
.contact-action-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 18px;
    background: #f7f7f8;
    border: 1px solid rgba(13, 13, 14, 0.05);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-action-form input::placeholder,
.contact-action-form textarea::placeholder {
    color: rgba(13, 13, 14, 0.4);
}

.contact-action-form input:focus,
.contact-action-form select:focus,
.contact-action-form textarea:focus {
    border-color: var(--accent-text);
    background: #ffffff;
}

.contact-action-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(13,13,14,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 15px;
    padding-right: 40px;
    cursor: pointer;
}

.contact-action-form select:invalid {
    color: rgba(13, 13, 14, 0.4);
}

.contact-action-form select option {
    color: var(--text);
}

.contact-action-form textarea {
    resize: vertical;
    min-height: 100px;
    margin-bottom: 20px;
}

.form-consent-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f7f7f8;
    border: 1px solid rgba(13, 13, 14, 0.05);
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.consent-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.consent-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 1.5px solid rgba(13, 13, 14, 0.15);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.consent-checkbox-label input:checked ~ .checkbox-custom {
    background-color: var(--accent-text);
    border-color: var(--accent-text);
}

.checkbox-custom::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-checkbox-label input:checked ~ .checkbox-custom::after {
    display: block;
}

.captcha-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(13, 13, 14, 0.35);
    text-transform: uppercase;
}

.form-submit-btn {
    width: 100%;
    border: none;
    background: #0d0d0e;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(13, 13, 14, 0.15);
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.form-submit-btn:hover {
    background: var(--accent-text);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 122, 20, 0.2);
}

.form-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .contact-grid-main {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .contact-left-col {
        align-items: center;
        text-align: center;
    }
    .contact-main-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-reviews-panel {
        justify-content: center;
    }
    .contact-trust-bar {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .contact-reviews-panel {
        flex-direction: column;
        gap: 16px;
    }
    .contact-form-card {
        padding: 32px 20px;
    }
    .contact-trust-bar {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }
}

/* ===================== Footer ===================== */
.site-footer {
    padding: 80px 5vw 40px;
    background: #0a0a0b;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 64px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col-brand {
    padding-right: 32px;
}

.footer-logo-only {
    height: 48px; /* Bigger logo size, text removed */
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(245, 245, 242, 0.65);
    margin: 0;
    max-width: 320px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.footer-links-list,
.footer-info-list,
.footer-socials-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a,
.footer-info-list a,
.footer-socials-list a {
    font-size: 14.5px;
    color: rgba(245, 245, 242, 0.7);
    transition: color 0.3s ease;
}

.footer-links-list a:hover,
.footer-info-list a:hover,
.footer-socials-list a:hover {
    color: var(--accent);
}

.footer-location {
    font-size: 14.5px;
    color: rgba(245, 245, 242, 0.5);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    font-size: 12px;
    color: rgba(245, 245, 242, 0.4);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-links a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

.footer-bottom-sep {
    opacity: 0.3;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    .footer-col-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-col-brand {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
