/* ==========================================================
   RIZZO DEVELOPMENT — Navy / Gold Executive Glass System
   ========================================================== */

:root {
    /* Navy foundation */
    --navy-900: #031025;
    --navy-800: #051537;
    --navy-700: #05234A;
    --navy-600: #0A3060;
    --navy-500: #12406E;

    /* Gold accents */
    --gold-900: #5A4518;
    --gold-700: #816628;
    --gold-500: #CAA750;
    --gold-400: #D4B96A;
    --gold-300: #E6D08A;
    --gold-200: #F6E89B;
    --gold-glow: rgba(202, 167, 80, 0.25);

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --warm-gray: #E8E4DC;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #8A8A8A;

    /* Glass tokens */
    --glass-bg: rgba(5, 21, 55, 0.50);
    --glass-bg-strong: rgba(5, 21, 55, 0.65);
    --glass-bg-light: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(202, 167, 80, 0.15);
    --glass-border-strong: rgba(202, 167, 80, 0.25);
    --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    --glass-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.35);
    --glass-blur: blur(20px);
    --glass-blur-strong: blur(32px);
    --glass-sat: saturate(150%);

    /* Light glass (for light sections) */
    --lglass-bg: rgba(5, 21, 55, 0.03);
    --lglass-border: rgba(5, 21, 55, 0.08);
    --lglass-shadow: 0 4px 24px rgba(5, 21, 55, 0.06);
    --lglass-shadow-hover: 0 12px 40px rgba(5, 21, 55, 0.10);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --h1: clamp(2.5rem, 5vw, 3.75rem);
    --h2: clamp(1.75rem, 3.5vw, 2.5rem);
    --h3: clamp(1.05rem, 1vw + 0.8rem, 1.25rem);

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 120px);

    /* Radius */
    --r-sm: 10px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 24px;

    /* Motion */
    --ease: cubic-bezier(.2,.8,.2,1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 640px) {
    :root { --glass-blur: blur(12px); --glass-blur-strong: blur(16px); }
}

/* ─── Skip Link ─── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    background: var(--gold-500);
    color: var(--navy-900);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
    outline: 2px solid var(--gold-400);
    outline-offset: 2px;
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--off-white);
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    width: min(100% - 48px, 1200px);
    margin-inline: auto;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ===================================================================
   GLASS SURFACE (unified primitive)
   =================================================================== */

/* Dark context (hero, projects, contact) */
.section-dark .glass-surface,
.hero .glass-surface {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    box-shadow: var(--glass-shadow);
    -webkit-backdrop-filter: var(--glass-blur) var(--glass-sat);
    backdrop-filter: var(--glass-blur) var(--glass-sat);
}

.section-dark .glass-surface::after,
.hero .glass-surface::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: var(--glass-inset);
}

/* Light context (about, services) */
.section:not(.section-dark) .glass-surface {
    position: relative;
    background: var(--white);
    border: 1px solid var(--lglass-border);
    border-radius: var(--r-lg);
    box-shadow: var(--lglass-shadow);
}

.section:not(.section-dark) .glass-surface::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

/* Hover for all glass */
.glass-surface { transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }

.service-card:hover,
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lglass-shadow-hover);
}

.section-dark .project-card:hover,
.section-dark .project-featured:hover {
    border-color: var(--glass-border-strong);
    box-shadow: var(--glass-shadow-hover);
}

.about-capabilities:hover { transform: translateY(-2px); }

/* Fallback */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .section-dark .glass-surface, .hero .glass-surface {
        background: rgba(5, 21, 55, 0.92) !important;
    }
}

/* ===================================================================
   GOLD TEXT
   =================================================================== */
.gold-text {
    background: linear-gradient(
        105deg,
        var(--gold-500) 0%,
        var(--gold-200) 25%,
        var(--gold-500) 50%,
        var(--gold-200) 75%,
        var(--gold-500) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 6s ease-in-out infinite;
}

@keyframes gold-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Hero entrance stagger */
@keyframes hero-enter {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow { animation: hero-enter 0.7s var(--ease) 0.1s both; }
.hero-content h1 { animation: hero-enter 0.7s var(--ease) 0.25s both; }
.hero-sub { animation: hero-enter 0.7s var(--ease) 0.4s both; }
.hero-metrics { animation: hero-enter 0.7s var(--ease) 0.55s both; }
.hero-actions { animation: hero-enter 0.7s var(--ease) 0.7s both; }

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--r-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: -0.01em;
}

.btn:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    box-shadow: 0 2px 12px var(--gold-glow);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; right: 0; bottom: 0;
    width: 200%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    transition: left 0.5s ease;
}

.btn-gold:hover::before { left: 100%; }

.btn-gold:hover {
    box-shadow: 0 8px 32px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.section:not(.section-dark) .btn-ghost {
    color: var(--text-primary);
    border-color: rgba(0,0,0,0.12);
}

.btn-ghost:hover {
    border-color: var(--gold-500);
    color: var(--gold-500);
    background: rgba(202, 167, 80, 0.06);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ===================================================================
   NAV
   =================================================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 16, 37, 0.80);
    -webkit-backdrop-filter: var(--glass-blur-strong) var(--glass-sat);
    backdrop-filter: var(--glass-blur-strong) var(--glass-sat);
    border-bottom: 1px solid rgba(202, 167, 80, 0.10);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
    background: rgba(3, 16, 37, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(202, 167, 80, 0.18);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-icon {
    height: 36px;
    width: auto;
    transition: transform 0.3s var(--ease);
}

.nav-brand:hover .nav-icon { transform: scale(1.05); }

.nav-wordmark {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold-400); }

.nav-cta {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-700)) !important;
    color: var(--navy-900) !important;
    border: none;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 0.06em;
    transition: all var(--transition) !important;
    box-shadow: 0 2px 8px rgba(202, 167, 80, 0.20);
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500)) !important;
    color: var(--navy-900) !important;
    box-shadow: 0 4px 16px rgba(202, 167, 80, 0.35);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    padding: 12px;
    margin: -12px;
    border-radius: 8px;
    padding: 8px;
    -webkit-tap-highlight-color: transparent;
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(800px 500px at 20% 40%, rgba(202, 167, 80, 0.06), transparent),
        radial-gradient(600px 400px at 75% 30%, rgba(5, 35, 74, 0.15), transparent),
        linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: var(--white);
}

.hero-2col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-500);
    margin-bottom: 20px;
}

.hero-eyebrow::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--gold-500);
}

.hero h1 {
    font-size: var(--h1);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
    color: var(--white);
}

.hero h1 .gold-text {
    font-weight: 800;
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-metric { text-align: center; flex: 1; }

.hero-metric-num {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-metric-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    font-weight: 500;
}

.hero-metric-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.1);
}

.hero-actions { display: flex; gap: 12px; }

/* Hero Logo Frame */
.hero-logo-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(202, 167, 80, 0.18) 0%, rgba(202, 167, 80, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-logo-glass {
    padding: 56px 64px 32px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: linear-gradient(
        165deg,
        rgba(160, 180, 210, 0.50) 0%,
        rgba(175, 195, 220, 0.38) 40%,
        rgba(190, 205, 228, 0.28) 100%
    ) !important;
    border-color: rgba(202, 167, 80, 0.35) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

.hero-logo-img {
    height: 260px;
    width: auto;
    margin: 0 auto 28px;
    filter: drop-shadow(0 4px 24px rgba(202, 167, 80, 0.40)) brightness(1.45);
}

.hero-logo-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    padding-top: 20px;
    border-top: 1px solid rgba(202, 167, 80, 0.12);
}

.status-dot {
    width: 7px;
    height: 7px;
    background: #22C55E;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* ===================================================================
   SECTIONS
   =================================================================== */
.section { padding: var(--section-pad) 0; }

.section-dark {
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: var(--white);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-500);
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--gold-500);
}

.section h2 {
    font-size: var(--h2);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-dark h2 {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.7;
}

.section-dark .section-desc { color: rgba(255,255,255,0.6); }

.section-header { margin-bottom: 52px; }

/* ===================================================================
   ABOUT
   =================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.about-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 60ch;
}

.about-text .lead {
    font-size: 18px;
    color: var(--navy-800);
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.about-capabilities {
    padding: 32px;
    position: relative;
}

.cap-header {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-700);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(5, 21, 55, 0.06);
}

.cap-list {
    list-style: none;
}

.cap-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(5, 21, 55, 0.05);
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cap-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.cap-list li:last-child { border-bottom: none; }

/* ===================================================================
   PROJECTS (Dark Section)
   =================================================================== */

/* Featured */
.project-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    margin-bottom: 20px;
}

.project-featured:hover {
    border-color: var(--glass-border-strong);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-3px);
}

.pf-image {
    position: relative;
    min-height: 380px;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.pf-image-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pf-pattern { width: 100%; height: 100%; }

.pf-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 6px;
    z-index: 2;
}

.pf-info { padding: 40px; }

.pf-type {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-500);
    margin-bottom: 10px;
}

.pf-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.025em;
}

.pf-location {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    font-weight: 500;
}

.pf-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(0,0,0,0.15);
    border-radius: var(--r-md);
    border: 1px solid rgba(202, 167, 80, 0.08);
}

.pf-stat-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-300);
    letter-spacing: -0.01em;
}

.pf-stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.pf-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 16px;
}

.pf-role {
    font-size: 12px;
    color: var(--gold-400);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Project Grid (secondary) */
.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-card { padding: 32px; }

.project-card:hover {
    border-color: var(--glass-border-strong);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover);
}

.pc-type {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-500);
    margin-bottom: 10px;
}

.pc-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.015em;
}

.pc-location {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

.pc-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.pc-stats span {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    padding: 4px 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.06);
}

.pc-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pc-role {
    font-size: 12px;
    color: var(--gold-400);
    font-weight: 600;
}

/* ===================================================================
   SERVICES (Light Section)
   =================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    padding: 32px 28px;
}

.service-card:hover {
    border-color: rgba(202, 167, 80, 0.2);
    box-shadow: var(--lglass-shadow-hover);
    transform: translateY(-3px);
}

.sv-num {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(202, 167, 80, 0.15), rgba(202, 167, 80, 0.06));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.04em;
}

.service-card h3 {
    font-size: var(--h3);
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===================================================================
   CONTACT (Dark)
   =================================================================== */
.section-contact {
    background:
        radial-gradient(600px 400px at 30% 60%, rgba(202, 167, 80, 0.04), transparent),
        linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: start;
}

.contact-left h2 { margin-bottom: 32px; }

.contact-card { padding: 28px; }

.cc-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.cc-title {
    font-size: 14px;
    color: var(--gold-400);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

.cc-divider {
    height: 1px;
    background: rgba(202, 167, 80, 0.1);
    margin-bottom: 16px;
}

.cc-line {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 8px;
    display: block;
}

.cc-email { color: var(--gold-400); padding: 6px 0; }
.cc-email:hover { color: var(--gold-200); }

.cc-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(202, 167, 80, 0.1);
}

.cc-trust span {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-400);
    padding: 5px 12px;
    background: rgba(202, 167, 80, 0.08);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
}

.contact-form-glass { padding: 32px; }

.cf-header {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-400);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(202, 167, 80, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    transition: all var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.25); }

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(202, 167, 80, 0.12), 0 0 20px rgba(202, 167, 80, 0.06);
}

.contact-form textarea { min-height: 110px; resize: vertical; }

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
    background: var(--navy-900);
    border-top: 1px solid rgba(202, 167, 80, 0.08);
    padding: 40px 0 28px;
    color: var(--white);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-icon {
    height: 32px;
    width: auto;
}

.footer-name {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}

.footer-tagline {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    transition: color var(--transition);
    padding: 12px 4px;
    display: inline-block;
}

.footer-links a:hover { color: var(--gold-400); }

.footer-bottom {
    padding-top: 16px;
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    text-align: center;
}

/* ===================================================================
   AUDIENCE PATHWAYS (Dark Section)
   =================================================================== */
.pathways-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.pathway-card {
    display: flex;
    flex-direction: column;
    padding: 28px 22px;
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
}

.pathway-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-strong);
    box-shadow: var(--glass-shadow-hover);
}

.pathway-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.pathway-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.pathway-cta {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-400);
    letter-spacing: 0.01em;
    transition: color var(--transition);
}

.pathway-card:hover .pathway-cta { color: var(--gold-200); }

/* ===================================================================
   INNER PAGE — shared layout
   =================================================================== */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: var(--white);
}

.page-hero .section-eyebrow { margin-bottom: 16px; }

.page-hero h1 {
    font-size: var(--h1);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero .page-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 600px;
}

.page-breadcrumb {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 24px;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}

.page-breadcrumb a:hover { color: var(--gold-400); }

/* Inner page content blocks */
.page-section { padding: 80px 0; }

.page-section + .page-section { border-top: 1px solid rgba(5, 21, 55, 0.06); }

.page-section.dark {
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: var(--white);
    border: none;
}

.page-section.dark + .page-section.dark { border-top: 1px solid rgba(202, 167, 80, 0.08); }

.page-content { max-width: 720px; }

.page-content h2 {
    font-size: var(--h2);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.page-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-content .lead {
    font-size: 18px;
    color: var(--navy-800);
    font-weight: 600;
    line-height: 1.7;
}

.dark .page-content p { color: rgba(255, 255, 255, 0.6); }
.dark .page-content .lead { color: var(--white); }
.dark .page-content h2, .dark .page-content h3 { color: var(--white); }

/* Case study stats row */
.case-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 28px 0;
    margin: 28px 0;
    border-top: 1px solid rgba(5, 21, 55, 0.06);
    border-bottom: 1px solid rgba(5, 21, 55, 0.06);
}

.case-stat-val {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-700), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.case-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 6px;
    font-weight: 500;
}

.dark .case-stats { border-color: rgba(202, 167, 80, 0.1); }
.dark .case-stat-label { color: rgba(255, 255, 255, 0.4); }

/* Qualifications grid */
.quals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.qual-card {
    padding: 32px;
}

.qual-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 10px;
}

.qual-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.qual-card .qual-list {
    list-style: none;
    margin-top: 12px;
}

.qual-card .qual-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(5, 21, 55, 0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.qual-card .qual-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Page contact CTA banner */
.page-cta-banner {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    text-align: center;
    color: var(--white);
}

.page-cta-banner h2 {
    font-size: var(--h2);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.page-cta-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    max-width: 480px;
    margin-inline: auto;
    line-height: 1.7;
}

.page-cta-actions { display: flex; gap: 12px; justify-content: center; }

/* Insight cards (perspective page) */
.insight-card {
    padding: 32px;
    margin-bottom: 24px;
}

.insight-card .persp-type { margin-bottom: 8px; }

.insight-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.insight-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

.insight-card .persp-meta {
    font-size: 12px;
    color: var(--text-muted);
    padding-top: 14px;
    border-top: 1px solid rgba(5, 21, 55, 0.05);
}

/* Timeline for case study */
.case-timeline {
    position: relative;
    padding-left: 32px;
    margin: 28px 0;
}

.case-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-500), rgba(202, 167, 80, 0.1));
}

.case-phase {
    position: relative;
    padding-bottom: 24px;
}

.case-phase::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--gold-500);
    border-radius: 50%;
    border: 3px solid var(--off-white);
}

.case-phase h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 6px;
}

.case-phase p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================================================
   WHY RIZZO (Light Section)
   =================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 28px;
    text-align: left;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lglass-shadow-hover);
    border-color: rgba(202, 167, 80, 0.15);
}

.why-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(202, 167, 80, 0.08), rgba(202, 167, 80, 0.03));
    border: 1px solid rgba(202, 167, 80, 0.12);
    border-radius: var(--r-md);
    color: var(--gold-500);
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: var(--h3);
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===================================================================
   SECTORS (Dark Section)
   =================================================================== */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sector-card {
    padding: 32px 24px;
    text-align: left;
}

.sector-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-strong);
    box-shadow: var(--glass-shadow-hover);
}

.sector-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(202, 167, 80, 0.06);
    border: 1px solid rgba(202, 167, 80, 0.12);
    border-radius: var(--r-md);
    color: var(--gold-400);
    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: var(--h3);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.sector-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

/* ===================================================================
   APPROACH TIMELINE (Dark Section)
   =================================================================== */
.approach-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(90deg, rgba(202, 167, 80, 0.08), rgba(202, 167, 80, 0.25), rgba(202, 167, 80, 0.08));
}

.approach-step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.approach-num {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 18px;
    font-weight: 800;
    color: var(--gold-400);
    background: var(--navy-800);
    border: 2px solid rgba(202, 167, 80, 0.2);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.approach-step h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.approach-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
}

/* ===================================================================
   LEADERSHIP (Light Section)
   =================================================================== */
.leader-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 64px;
    align-items: start;
}

.leader-content .section-eyebrow { margin-bottom: 14px; }

.leader-name-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(5, 21, 55, 0.06);
}

.leader-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy-800);
    letter-spacing: -0.03em;
}

.leader-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-700);
    margin-top: 4px;
    letter-spacing: 0.01em;
}

.leader-bio p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
    max-width: 60ch;
}

.leader-bio .lead {
    font-size: 17px;
    color: var(--navy-800);
    font-weight: 600;
    line-height: 1.7;
}

.leader-creds {
    display: flex;
    gap: 32px;
    margin: 28px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(5, 21, 55, 0.06);
    border-bottom: 1px solid rgba(5, 21, 55, 0.06);
}

.leader-cred { text-align: center; flex: 1; }

.leader-cred-val {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-700), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1;
}

.leader-cred-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 6px;
    font-weight: 500;
}

.leader-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px;
}

.leader-photo-frame {
    padding: 48px 40px 32px;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.leader-photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.leader-crest {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    opacity: 0.8;
    filter: grayscale(0.2);
}

.leader-photo-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-800);
    letter-spacing: -0.01em;
}

.leader-photo-sub {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===================================================================
   PERSPECTIVE (Dark Section)
   =================================================================== */
.perspective-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.perspective-card {
    padding: 32px 28px;
}

.perspective-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-strong);
    box-shadow: var(--glass-shadow-hover);
}

.persp-type {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-500);
    margin-bottom: 12px;
}

.perspective-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.perspective-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 16px;
}

.persp-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    padding-top: 14px;
    border-top: 1px solid rgba(202, 167, 80, 0.08);
}

/* ===================================================================
   CONTACT ENHANCEMENTS
   =================================================================== */
.contact-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 44ch;
}

.contact-pathways {
    margin-top: 28px;
}

.pathway {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
}

.pathway:first-child {
    padding-top: 0;
}

.pathway:last-child {
    border-bottom: none;
}

.pathway strong {
    color: var(--gold-400);
    font-weight: 600;
}

.contact-select {
    width: 100%;
    min-width: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    transition: all var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.contact-select:focus {
    outline: none;
    border-color: var(--gold-500);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(202, 167, 80, 0.12), 0 0 20px rgba(202, 167, 80, 0.06);
}

.contact-select option {
    background: var(--navy-800);
    color: var(--white);
}

/* ===================================================================
   SECTION CTA & BTN ARROW
   =================================================================== */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ===================================================================
   FOOTER NAV GROUP
   =================================================================== */
.footer-nav-group {
    display: flex;
    gap: 48px;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 960px) {
    .hero-2col { grid-template-columns: 1fr; gap: 40px; }
    .hero-logo-frame { order: -1; }
    .hero-logo-img { height: 160px; }
    .hero-logo-glass { padding: 32px 28px 20px; }
    .about-grid { grid-template-columns: 1fr; }
    .project-featured { grid-template-columns: 1fr; }
    .pf-image { min-height: 220px; }
    .project-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pathways-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .quals-grid { grid-template-columns: 1fr; }
    .case-stats { grid-template-columns: repeat(2, 1fr); }
    .approach-timeline { grid-template-columns: 1fr; gap: 28px; }
    .approach-timeline::before { display: none; }
    .approach-step { text-align: left; display: grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 0; align-items: start; }
    .approach-num { margin: 0; }
    .approach-step h3 { margin-top: 4px; }
    .leader-layout { grid-template-columns: 1fr; }
    .leader-visual { justify-content: center; padding-top: 0; }
    .perspective-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 32px, 1200px); }

    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-inner { height: 56px; }
    .nav-icon { height: 28px; }
    .nav-wordmark { font-size: 14px; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(3, 16, 37, 0.96);
        -webkit-backdrop-filter: var(--glass-blur-strong) var(--glass-sat);
        backdrop-filter: var(--glass-blur-strong) var(--glass-sat);
        border-bottom: 1px solid rgba(202, 167, 80, 0.1);
        padding: 16px 24px;
        gap: 12px;
    }

    .nav-links.open a { font-size: 14px; padding: 6px 0; }
    .nav-links.open .nav-cta {
        text-align: center;
        padding: 12px;
        margin-top: 4px;
    }

    .hero { min-height: auto; padding: 80px 0 48px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-metrics { gap: 16px; }
    .hero-metric-num { font-size: 20px; }
    .hero-logo-img { height: 130px; }
    .hero-logo-glass { padding: 24px 20px 16px; }

    .services-grid { grid-template-columns: 1fr; }
    .pf-info { padding: 24px; }
    .pf-stats { grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
    .project-card { padding: 24px; }
    .pathways-grid { grid-template-columns: 1fr; }
    .sectors-grid { grid-template-columns: 1fr; }
    .case-stats { grid-template-columns: 1fr 1fr; }
    .page-cta-actions { flex-direction: column; align-items: stretch; }
    .leader-creds { gap: 16px; }
    .leader-cred-val { font-size: 20px; }
    .leader-photo-frame { max-width: 260px; padding: 32px 24px 24px; }
    .footer-nav-group { gap: 24px; }

    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .footer-nav-group { justify-content: center; }
}

@media (max-width: 380px) {
    .hero-metrics { flex-direction: column; gap: 12px; }
    .hero-metric-divider { width: 40px; height: 1px; }
    .pf-stats { grid-template-columns: 1fr; }
}

/* ===================================================================
   REDUCED MOTION
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
    .gold-text { -webkit-text-fill-color: var(--gold-500); }
}

body.menu-open { overflow: hidden; position: fixed; width: 100%; }
