/* ═══════════════════════════════════════════════════════════
   VANGUARD GROWTH PARTNERS - Global Styles
   ═══════════════════════════════════════════════════════════ */

:root {
    --gold: #E8A838;
    --gold-light: #F5C563;
    --gold-dim: rgba(232, 168, 56, 0.5);
    --gold-glow: rgba(232, 168, 56, 0.15);
    --navy: #1B365D;
    --navy-deep: #0f2240;
    --navy-mid: #162d4e;
    --navy-light: #2a4a7a;
    --black: #000000;
    --slate: #4A5568;
    --slate-light: #718096;
    --cream: #f8f6f2;
    --white: #ffffff;
    --off-white: #fafaf8;
    --warm-gray: #f0ede7;
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'DM Sans', Helvetica, Arial, sans-serif;
    --font-mono: 'Space Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--gold); color: var(--navy-deep); }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    font-size: 1.2rem;
    background: var(--off-white);
    color: var(--navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* Grain overlay */
body::after {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none; z-index: 9999;
    opacity: 0.022;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,168,56,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ── REVEALS ── */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }  .d6 { transition-delay: 0.48s; }

/* ── SHARED COMPONENTS ── */
.section-label {
    display: inline-flex; align-items: center; gap: 0.8rem;
    font-size: 0.84rem; font-weight: 600;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.8rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400; line-height: 1.05; letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }
.container { max-width: 1300px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block; padding: 1.2rem 3rem;
    background: var(--navy); color: var(--white);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.4s; position: relative; overflow: hidden;
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232,168,56,0.15), transparent);
    transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(27,54,93,0.2); }

.btn-outline {
    display: inline-block; padding: 1.2rem 2.5rem;
    background: transparent; color: var(--navy);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; border: 1.5px solid rgba(27,54,93,0.2);
    transition: all 0.35s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-gold {
    display: inline-block; padding: 1.3rem 3.5rem;
    background: var(--gold); color: var(--navy-deep);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; border: none; cursor: pointer;
    transition: all 0.4s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(232,168,56,0.25); }

.btn-outline-light {
    display: inline-block; padding: 1.3rem 2.5rem;
    background: transparent; color: rgba(255,255,255,0.7);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; border: 1.5px solid rgba(255,255,255,0.15);
    transition: all 0.35s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ══════════════════════════════ NAV ══════════════════════════════ */
nav {
    position: fixed; top: 0; left: 0;
    width: 100%; z-index: 1000;
    padding: 1.6rem 4rem;
    display: flex; justify-content: flex-end; align-items: center;
    transition: all 0.45s ease;
}
nav.scrolled {
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 0.9rem 4rem;
    box-shadow: 0 1px 0 rgba(27,54,93,0.06);
}
/* Dark nav variant for dark-bg pages */
nav.nav-dark a { color: var(--white); }
nav.nav-dark .nav-toggle span { background: var(--white); }
nav.nav-dark.scrolled { background: rgba(15,34,64,0.95); }
nav.nav-dark.scrolled a { color: var(--white); }

.nav-links { display: flex; gap: 2.2rem; align-items: center; list-style: none; }
.nav-links a {
    font-size: 0.84rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--navy); text-decoration: none;
    position: relative; transition: color 0.3s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--gold);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta-btn {
    padding: 0.7rem 2rem !important;
    background: var(--navy) !important; color: var(--white) !important;
    letter-spacing: 0.12em !important;
    border: none; cursor: pointer; transition: all 0.35s !important;
}
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { background: var(--navy-light) !important; transform: translateY(-1px); }
nav.nav-dark .nav-cta-btn { background: var(--gold) !important; color: var(--navy-deep) !important; }
nav.nav-dark .nav-cta-btn:hover { background: var(--gold-light) !important; }

.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; }

/* Mobile nav */
.mobile-menu {
    display: none; position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--navy-deep); z-index: 999;
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: var(--font-display); font-size: 2rem;
    color: var(--white); text-decoration: none;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ══════════════════════════════ PAGE HERO (reusable) ══════════════════════════════ */
.page-hero {
    min-height: 70vh;
    display: flex; align-items: flex-end;
    padding: 0 4rem 8vh;
    position: relative; overflow: hidden;
    background: var(--navy-deep);
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.3;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--navy-deep) 0%, rgba(15,34,64,0.6) 50%, rgba(15,34,64,0.8) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-label {
    font-size: 0.84rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400; line-height: 1; letter-spacing: -0.03em;
    color: var(--white); margin-bottom: 1.5rem;
    opacity: 0; transform: translateY(40px);
    animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.45s forwards;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-sub {
    font-size: 1.32rem; font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,0.6); max-width: 520px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.65s forwards;
}

/* ══════════════════════════════ HOME HERO ══════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 0 4rem;
    position: relative; overflow: hidden;
    background: linear-gradient(160deg, var(--off-white) 0%, var(--warm-gray) 50%, #ebe7df 100%);
}
.hero-bg-image {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.08;
    /* SWAP: Replace gradient with your image - background-image: url('/images/hero.jpg'); */
    background-image: linear-gradient(135deg, #ddd 0%, #bbb 100%);
}
.hero-grid-pattern {
    position: absolute; inset: 0; opacity: 0.025;
    background-image:
        linear-gradient(var(--navy) 1px, transparent 1px),
        linear-gradient(90deg, var(--navy) 1px, transparent 1px);
    background-size: 80px 80px;
}
.hero-orb-1 {
    position: absolute; top: 10%; right: 5%;
    width: 50vw; height: 50vw; max-width: 650px; max-height: 650px;
    background: radial-gradient(ellipse, rgba(232,168,56,0.08) 0%, transparent 60%);
    border-radius: 50%;
}
.hero-orb-2 {
    position: absolute; bottom: -10%; left: -5%;
    width: 40vw; height: 40vw;
    background: radial-gradient(ellipse, rgba(27,54,93,0.04) 0%, transparent 60%);
    border-radius: 50%;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 850px; padding: 10rem 0 8rem;
}
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 1rem;
    font-size: 0.84rem; font-weight: 600;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2.5rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 7.5vw, 8rem);
    font-weight: 400; line-height: 0.95; letter-spacing: -0.04em;
    color: var(--navy); margin-bottom: 2.5rem;
    opacity: 0; transform: translateY(50px);
    animation: fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.55s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-desc {
    font-size: 1.32rem; font-weight: 300; line-height: 1.8;
    color: var(--slate); max-width: 560px; margin-bottom: 3.5rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
}
.hero-actions {
    display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 1s forwards;
}
.hero-meta {
    position: absolute; bottom: 4rem; right: 4rem;
    display: flex; gap: 3rem;
    opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.2s forwards;
    z-index: 2;
}
.hero-meta-item .number { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); }
.hero-meta-item .label { font-size: 0.84rem; color: var(--slate); margin-top: 0.2rem; }
.hero-scroll {
    position: absolute; bottom: 3rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 1.4s forwards;
    z-index: 2;
}
.hero-scroll span { font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--slate-light); }
.scroll-bar { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: pulse 2.5s ease-in-out infinite; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 0.2; } 50% { opacity: 1; } }

/* ══════════════════════════════ INTRO / ABOUT ══════════════════════════════ */
.intro { padding: 20vh 4rem; position: relative; }
.intro-inner {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 8rem; align-items: center;
}
.intro-text { font-size: 1.2rem; font-weight: 300; line-height: 1.85; color: var(--slate); margin-bottom: 1.5rem; }
.intro-highlight {
    margin-top: 3rem; padding: 2.5rem;
    background: rgba(232,168,56,0.05); border-left: 3px solid var(--gold);
}
.intro-highlight p { font-family: var(--font-display); font-size: 1.44rem; font-style: italic; line-height: 1.6; color: var(--navy); }
.intro-visual { position: relative; }
.intro-img-1 {
    width: 100%; aspect-ratio: 4/5;
    background-size: cover; background-position: center;
    /* SWAP: background-image: url('/images/about-1.jpg'); */
    background-color: var(--navy-deep);
    position: relative; overflow: hidden;
}
.intro-img-1::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 25% 35%, rgba(232,168,56,0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(232,168,56,0.06) 0%, transparent 40%);
}
.intro-img-1-text {
    position: absolute; bottom: 2.5rem; left: 2.5rem;
    font-size: 0.72rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: rgba(232,168,56,0.4);
}
.intro-img-2 {
    position: absolute; bottom: -3rem; right: -3rem;
    width: 55%; aspect-ratio: 1;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.intro-img-2-content { text-align: center; color: var(--navy-deep); }
.intro-img-2-content .big { font-family: var(--font-display); font-size: 3.6rem; line-height: 1; }
.intro-img-2-content .sub { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; margin-top: 0.3rem; }
.intro-frame {
    position: absolute; top: -2rem; left: -2rem; right: 2rem; bottom: 2rem;
    border: 1px solid rgba(232,168,56,0.15); pointer-events: none;
}

/* ══════════════════════════════ SERVICES ══════════════════════════════ */
.services { padding: 18vh 4rem; background: var(--white); }
.services-header {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 4rem; margin-bottom: 10vh; align-items: end;
}
.services-desc { font-size: 1.2rem; font-weight: 300; line-height: 1.8; color: var(--slate); align-self: end; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.service-card {
    padding: 3.5rem; background: var(--off-white);
    border: 1px solid rgba(27,54,93,0.05);
    position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 25px 70px rgba(27,54,93,0.08); border-color: rgba(232,168,56,0.2); }
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 48px; height: 48px; background: var(--navy-deep);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-number { position: absolute; top: 1.5rem; right: 1.5rem; font-family: var(--font-mono); font-size: 0.84rem; color: rgba(27,54,93,0.1); }
.service-card h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--navy); margin-bottom: 1.2rem; }
.service-card > p, .service-card > div > p { font-size: 1.08rem; font-weight: 300; line-height: 1.8; color: var(--slate); margin-bottom: 2rem; }
.service-list { list-style: none; padding-top: 1.5rem; border-top: 1px solid rgba(27,54,93,0.06); }
.service-list li { font-size: 1.02rem; font-weight: 400; color: var(--navy); padding: 0.55rem 0; display: flex; align-items: center; gap: 0.8rem; }
.service-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 1px; transform: rotate(45deg); flex-shrink: 0; }

.service-card.featured {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    background: var(--navy-deep); border-color: rgba(232,168,56,0.1);
}
.service-card.featured:hover { border-color: rgba(232,168,56,0.3); }
.service-card.featured .service-icon { background: rgba(232,168,56,0.1); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured > div > p { color: rgba(255,255,255,0.55); }
.service-card.featured .service-number { color: rgba(232,168,56,0.15); }
.service-card.featured .service-list { border-color: rgba(255,255,255,0.08); }
.service-card.featured .service-list li { color: rgba(255,255,255,0.7); }
.featured-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.featured-visual-inner {
    width: 100%; aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(232,168,56,0.05), rgba(232,168,56,0.02));
    border: 1px solid rgba(232,168,56,0.1);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.ai-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(232,168,56,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(232,168,56,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}
.ai-pulse {
    width: 80px; height: 80px;
    background: rgba(232,168,56,0.1); border: 1px solid rgba(232,168,56,0.2);
    border-radius: 50%; animation: aiPulse 3s ease-in-out infinite;
    position: relative; z-index: 1;
}
.ai-pulse::before { content: ''; position: absolute; inset: -20px; border: 1px solid rgba(232,168,56,0.08); border-radius: 50%; animation: aiPulse 3s ease-in-out infinite 0.5s; }
.ai-pulse::after { content: ''; position: absolute; inset: -45px; border: 1px solid rgba(232,168,56,0.04); border-radius: 50%; animation: aiPulse 3s ease-in-out infinite 1s; }
@keyframes aiPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.1); opacity: 0.7; } }

/* ══════════════════════════════ PROCESS ══════════════════════════════ */
.process { padding: 20vh 4rem; background: var(--cream); }
.process-header { text-align: center; max-width: 650px; margin: 0 auto 12vh; }
.process-header .section-label { justify-content: center; }
.process-header .section-desc { font-size: 1.2rem; font-weight: 300; line-height: 1.8; color: var(--slate); margin-top: 1.5rem; }
.process-timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.process-timeline.cols-4 { grid-template-columns: repeat(4, 1fr); }
.process-timeline::before {
    content: ''; position: absolute; top: 3.5rem; left: 10%; right: 10%;
    height: 1px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
    z-index: 1;
}
.process-step { padding: 0 1.5rem; text-align: center; position: relative; }
.step-dot {
    width: 14px; height: 14px; background: var(--gold); border-radius: 50%;
    margin: 2.8rem auto 2.5rem; position: relative; z-index: 2;
    box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px rgba(232,168,56,0.3);
}
.step-num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; }
.process-step h3 { font-family: var(--font-display); font-size: 1.56rem; font-weight: 400; color: var(--navy); margin-bottom: 1rem; }
.process-step p { font-size: 1.02rem; font-weight: 300; line-height: 1.75; color: var(--slate); }

/* ══════════════════════════════ CASE STUDIES ══════════════════════════════ */
.cases { padding: 18vh 4rem; background: var(--off-white); }
.cases-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 8vh; }
.cases-grid { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: auto auto; gap: 2rem; }
.case-card { display: block; text-decoration: none; color: inherit; position: relative; overflow: hidden; background: var(--navy-deep); transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
.case-card:hover { transform: translateY(-4px); }
.case-card:first-child { grid-row: 1 / 3; }
.case-visual {
    width: 100%; height: 100%; min-height: 300px;
    position: relative; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 2.5rem;
}
.case-visual::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,34,64,0.95) 0%, rgba(15,34,64,0.3) 100%); z-index: 1; }
.case-bg { position: absolute; inset: 0; opacity: 0.15; }
.case-bg-image {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.25;
}
.case-tag { position: relative; z-index: 2; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.case-card h3 { position: relative; z-index: 2; font-family: var(--font-display); font-size: 1.68rem; font-weight: 400; color: var(--white); margin-bottom: 0.8rem; line-height: 1.2; }
.case-card:first-child h3 { font-size: 2.16rem; }
.case-result { position: relative; z-index: 2; font-size: 1.02rem; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.6; }
.case-arrow {
    position: absolute; top: 2rem; right: 2rem;
    width: 36px; height: 36px; border: 1px solid rgba(232,168,56,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.08rem; z-index: 2;
    transition: all 0.3s;
}
.case-card:hover .case-arrow { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }

/* More engagements list */
.engagement-list { display: grid; gap: 0; }
.engagement-row { padding: 2rem 0; border-bottom: 1px solid rgba(27,54,93,0.06); display: grid; grid-template-columns: 200px 1fr 200px; align-items: center; gap: 2rem; }
.engagement-row:last-child { border-bottom: none; }
.engagement-industry { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.engagement-desc { font-family: var(--font-display); font-size: 1.32rem; }
.engagement-metric { font-size: 0.96rem; color: var(--slate); text-align: right; }

/* ══════════════════════════════ RESULTS ══════════════════════════════ */
.results { padding: 16vh 4rem; background: var(--navy-deep); position: relative; overflow: hidden; }
.results::before { content: ''; position: absolute; top: -30%; right: -10%; width: 50vw; height: 80vh; background: radial-gradient(ellipse, rgba(232,168,56,0.05) 0%, transparent 60%); border-radius: 50%; }
.results-header { text-align: center; max-width: 600px; margin: 0 auto 10vh; }
.results-header p { font-size: 1.2rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.5); margin-top: 1.5rem; }
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid rgba(232,168,56,0.1); }
.result-card { padding: 4rem 2.5rem; text-align: center; border-right: 1px solid rgba(232,168,56,0.1); transition: background 0.4s; position: relative; }
.result-card:last-child { border-right: none; }
.result-card:hover { background: rgba(232,168,56,0.04); }
.result-num { font-family: var(--font-display); font-size: clamp(3rem, 5vw, 4.2rem); color: var(--gold); line-height: 1; }
.result-suffix { font-size: 0.6em; }
.result-label { font-size: 0.96rem; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.5; margin-top: 1rem; }
.result-bar { width: 30px; height: 2px; background: var(--gold-dim); margin: 1.2rem auto 0; }

/* ══════════════════════════════ TESTIMONIALS ══════════════════════════════ */
.testimonials { padding: 18vh 4rem; background: var(--white); }
.test-header { margin-bottom: 8vh; }
.test-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.test-card { padding: 3rem; background: var(--off-white); border: 1px solid rgba(27,54,93,0.05); transition: all 0.4s; }
.test-card:hover { transform: translateY(-4px); box-shadow: 0 15px 50px rgba(27,54,93,0.06); }
.test-stars { display: flex; gap: 3px; margin-bottom: 1.5rem; }
.test-stars span { color: var(--gold); font-size: 1.08rem; }
.test-quote { font-family: var(--font-display); font-size: 1.32rem; font-style: italic; line-height: 1.6; color: var(--navy); margin-bottom: 2rem; }
.test-author { display: flex; align-items: center; gap: 1rem; }
.test-avatar {
    width: 44px; height: 44px; background: var(--navy); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.08rem; color: var(--gold);
    /* SWAP: Replace with real photo - background-image: url(); background-size: cover; */
}
.test-info .name { font-size: 1.02rem; font-weight: 600; color: var(--navy); }
.test-info .role { font-size: 0.84rem; color: var(--slate-light); }

/* ══════════════════════════════ TEAM ══════════════════════════════ */
.team { padding: 18vh 4rem; background: var(--cream); }
.team-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 8vh; align-items: end; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { position: relative; overflow: hidden; transition: transform 0.4s; }
.team-card:hover { transform: translateY(-4px); }
.team-photo {
    width: 100%; aspect-ratio: 3/4;
    background-size: cover; background-position: center;
    /* SWAP: background-image: url('/images/team-roy.jpg'); */
    background-color: var(--navy-deep);
    position: relative; overflow: hidden;
}
.team-photo::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 40% 40%, rgba(232,168,56,0.08) 0%, transparent 60%); }
.team-photo-initial {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--font-display); font-size: 4.8rem; color: rgba(232,168,56,0.12);
}
.team-info { padding: 1.5rem 0; }
.team-info h3 { font-family: var(--font-display); font-size: 1.56rem; font-weight: 400; color: var(--navy); margin-bottom: 0.3rem; }
.team-info .title { font-size: 0.96rem; color: var(--gold); font-weight: 500; }
.team-info .bio { font-size: 1.02rem; font-weight: 300; color: var(--slate); line-height: 1.7; margin-top: 0.8rem; }

/* ══════════════════════════════ BIG QUOTE ══════════════════════════════ */
.big-quote { padding: 20vh 4rem; background: var(--off-white); position: relative; }
.big-quote::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 10vh; background: linear-gradient(to bottom, transparent, var(--gold)); }
.big-quote-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.bq-mark { font-family: var(--font-display); font-size: 5rem; color: var(--gold); line-height: 1; margin-bottom: 1.5rem; }
.bq-text { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; font-style: italic; line-height: 1.45; color: var(--navy); margin-bottom: 2rem; }
.bq-attr { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate); }

/* ══════════════════════════════ INSIGHTS ══════════════════════════════ */
.insights { padding: 18vh 4rem; background: var(--white); }
.insights-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 6vh; }
.insights-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.insight-featured { display: grid; grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: center; }
.insight-card { display: block; border: 1px solid rgba(27,54,93,0.06); transition: all 0.4s; overflow: hidden; text-decoration: none; }
.insight-card:hover { transform: translateY(-4px); box-shadow: 0 15px 50px rgba(27,54,93,0.06); border-color: rgba(232,168,56,0.2); }
.insight-img { width: 100%; aspect-ratio: 16/10; position: relative; overflow: hidden; }
.insight-img-bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    /* SWAP: background-image: url('/images/insight-1.jpg'); */
}
.insight-img-bg.bg-1 { background-color: #1a3a5c; }
.insight-img-bg.bg-2 { background-color: #3d2c1e; }
.insight-img-bg.bg-3 { background-color: #1b3a2d; }
.insight-img-label { position: absolute; bottom: 1rem; left: 1.2rem; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.insight-body { padding: 2rem; }
.insight-meta { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.8rem; }
.insight-card h3 { font-family: var(--font-display); font-size: 1.44rem; font-weight: 400; color: var(--navy); line-height: 1.25; margin-bottom: 0.8rem; }
.insight-card p { font-size: 1.02rem; font-weight: 300; color: var(--slate); line-height: 1.7; }
.insight-readmore { display: inline-block; margin-top: 1.2rem; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); transition: color 0.3s; }
.insight-card:hover .insight-readmore { color: var(--navy); }

/* ══════════════════════════════ CTA ══════════════════════════════ */
.cta { padding: 20vh 4rem; background: var(--navy-deep); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; bottom: -30%; left: 10%; width: 60vw; height: 60vw; background: radial-gradient(ellipse, rgba(232,168,56,0.05) 0%, transparent 55%); border-radius: 50%; }
.cta-inner { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta h2 { font-family: var(--font-display); font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 400; line-height: 1.05; color: var(--white); margin-bottom: 1.8rem; }
.cta h2 em { font-style: italic; color: var(--gold); }
.cta-desc { font-size: 1.32rem; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 550px; margin: 0 auto 3.5rem; }
.cta-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.cta-trust { margin-top: 4rem; font-size: 0.84rem; color: rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.cta-trust span { display: flex; align-items: center; gap: 0.5rem; }
.cta-trust .check { color: var(--gold); }

/* ══════════════════════════════ CONTACT PAGE ══════════════════════════════ */
.contact-section { padding: 12vh 4rem; background: var(--off-white); }
.contact-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem;
}
.contact-info h2 { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-info p { font-size: 1.08rem; font-weight: 300; line-height: 1.8; color: var(--slate); margin-bottom: 2rem; }
.contact-details { list-style: none; }
.contact-details li { padding: 1.2rem 0; border-bottom: 1px solid rgba(27,54,93,0.06); display: flex; gap: 1rem; }
.contact-details .detail-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); min-width: 70px; }
.contact-details .detail-value { font-size: 1.08rem; color: var(--navy); font-weight: 400; }
.contact-details .detail-value a { text-decoration: none; transition: color 0.3s; }
.contact-details .detail-value a:hover { color: var(--gold); }
.contact-form { background: var(--white); padding: 3.5rem; border: 1px solid rgba(27,54,93,0.06); }
.contact-form h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 1rem 1.2rem;
    background: var(--off-white); border: 1px solid rgba(27,54,93,0.1);
    color: var(--navy); font-family: var(--font-body); font-size: 1.02rem;
    outline: none; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ══════════════════════════════ ARTICLE ══════════════════════════════ */
.article { padding: 12vh 4rem 16vh; background: var(--off-white); }
.article-inner { max-width: 760px; margin: 0 auto; }
.article-lead { font-size: 1.32rem; font-weight: 400; line-height: 1.75; color: var(--navy); margin-bottom: 2.5rem; }
.article-inner p { font-size: 1.14rem; font-weight: 300; line-height: 1.9; color: var(--slate); margin-bottom: 1.6rem; }
.article-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: var(--navy); line-height: 1.2; margin: 3.5rem 0 1.2rem; }
.article-inner h2 em { font-style: italic; color: var(--gold); }
.article-inner ul { list-style: none; margin: 0 0 1.8rem; }
.article-inner ul li { font-size: 1.14rem; font-weight: 300; line-height: 1.7; color: var(--slate); padding: 0.5rem 0 0.5rem 1.8rem; position: relative; }
.article-inner ul li::before { content: ''; position: absolute; left: 0; top: 1.15rem; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.article-inner blockquote { margin: 2.5rem 0; padding: 1.5rem 2rem; background: rgba(232,168,56,0.05); border-left: 3px solid var(--gold); font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.5; color: var(--navy); }
.article-back { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 4rem; font-size: 0.84rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; transition: gap 0.3s; }
.article-back:hover { gap: 1rem; color: var(--navy); }

/* ══════════════════════════════ RESPONSIVE ══════════════════════════════ */
@media (max-width: 1100px) {
    nav { padding: 1.2rem 2rem; }
    nav.scrolled { padding: 0.8rem 2rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero, .page-hero { padding-left: 2rem; padding-right: 2rem; }
    .hero-meta { display: none; }
    .intro, .services, .process, .cases, .results, .testimonials, .team, .big-quote, .insights, .cta, .contact-section, .article { padding-left: 2rem; padding-right: 2rem; }
    .intro-inner { grid-template-columns: 1fr; gap: 4rem; }
    .intro-visual { max-width: 450px; }
    .services-header, .team-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card.featured { grid-template-columns: 1fr; }
    .featured-visual { min-height: 250px; }
    .process-timeline, .process-timeline.cols-4 { grid-template-columns: 1fr; gap: 2rem; }
    .process-timeline::before { display: none; }
    .insight-featured { grid-template-columns: 1fr; gap: 2rem; }
    .engagement-row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.5rem 0; }
    .engagement-metric { text-align: left; color: var(--gold); }
    .step-dot { margin: 0 auto 1.5rem; }
    .cases-grid { grid-template-columns: 1fr; }
    .case-card:first-child { grid-row: auto; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
    .hero-actions, .cta-actions { flex-direction: column; align-items: flex-start; }
    .results-grid { grid-template-columns: 1fr; }
    .result-card { border-right: none !important; border-bottom: 1px solid rgba(232,168,56,0.1); }
    .result-card:last-child { border-bottom: none; }
    .team-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-trust { flex-direction: column; gap: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
    .hero-eyebrow, .hero h1, .hero-desc, .hero-actions, .hero-meta, .hero-scroll,
    .page-hero-label, .page-hero h1, .page-hero-sub { opacity: 1; transform: none; animation: none; }
    .scroll-bar, .ai-pulse, .ai-pulse::before, .ai-pulse::after { animation: none; }
}
