/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
    --navy:       #0d1b2e;
    --navy-mid:   #152346;
    --gold:       #c9a84c;
    --gold-light: #e1c47a;
    --white:      #ffffff;
    --offwhite:   #f6f4f0;
    --stone:      #e8e4dc;
    --text-dark:  #0d1b2e;
    --text-mid:   #4a5568;
    --text-light: #8a9ab0;
}
/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { transition: color 0.2s; }
.sr-only { position: absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.font-display { font-family: 'Cormorant Garamond', serif; }
/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }
/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.1; font-weight: 500; }
.eyebrow {
    display: inline-block;
    font-size: 10px; font-weight: 600; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.divider-gold { display: block; width: 48px; height: 1px; background: var(--gold); margin-top: 1.5rem; }
/* LAYOUT */
.container {
    width: 100%; max-width: 1400px;
    margin-left: auto; margin-right: auto;
    padding-left: clamp(1rem, 5vw, 5rem);
    padding-right: clamp(1rem, 5vw, 5rem);
}
.section-pad {
    padding-top: clamp(2rem, 3.5vw, 3.8rem);
    padding-bottom: clamp(2rem, 3.5vw, 3.8rem);
}
/* BUTTONS */
.btn-gold {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--navy); background: var(--gold);
    padding: 0.7rem 1.6rem; text-decoration: none;
    transition: background 0.25s, transform 0.25s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px; text-decoration: none;
    transition: color 0.25s, border-color 0.25s;
}
.btn-ghost:hover { color: var(--gold); border-bottom-color: var(--gold); }
/* ============================================================
   HEADER
============================================================ */
#main-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.5rem clamp(1rem, 5vw, 5rem);
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    background: transparent;
}
#main-header.scrolled {
    padding-top: 0.8rem; padding-bottom: 0.8rem;
    background: rgba(13, 27, 46, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.logo-wrap { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 5px;
}
.logo-img { width: 100%; height: 100%; object-fit: contain; opacity: 0.95; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: 'Inter', sans-serif; font-weight: 800;
    font-size: 0.95rem; letter-spacing: 0.05em;
    color: var(--white); text-transform: uppercase; line-height: 1.1;
}
.logo-tagline {
    font-family: 'Inter', sans-serif; font-weight: 700;
    font-size: 6px; letter-spacing: 0.06em;
    color: var(--gold); text-transform: uppercase; margin-top: 2px;
}
.desktop-nav { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .desktop-nav { display: flex; } }
.nav-link {
    font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.25s; position: relative;
}
.nav-link::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
/* ============================================================
   MOBILE DRAWER
============================================================ */
.drawer-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer-panel {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: min(340px, 85vw); background: var(--navy); padding: 2rem;
    display: flex; flex-direction: column; gap: 2rem;
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    border-left: 1px solid rgba(201,168,76,0.12);
}
.drawer-overlay.open .drawer-panel { transform: translateX(0); }
.drawer-nav { display: flex; flex-direction: column; }
.mob-link {
    font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.72); text-decoration: none;
    padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}
.mob-link:hover { color: var(--gold); }
/* ============================================================
   HERO
============================================================ */
#hero {
    position: relative; width: 100%; height: 100svh; min-height: 520px;
    display: flex; flex-direction: column; justify-content: space-between; align-items: center;
    overflow: hidden; max-width: 100vw; background: var(--navy);
    padding: 4rem 1.5rem; text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0.95;
    transition: transform 1s ease-in-out;
}
#hero:hover .hero-bg img { transform: scale(1.03); }
@media (min-width: 768px) {
    .hero-bg img {
        object-fit: cover;
    }
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(13,27,46,0.6) 0%, transparent 50%, rgba(13,27,46,0.5) 100%);
}
.hero-top-spacer { height: 2.5rem; position: relative; z-index: 2; }
.hero-emblem-wrap {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    margin-top: 3rem; margin-bottom: auto;
    animation: pulseEmblem 2s infinite ease-in-out;
}
@keyframes pulseEmblem {
    0%, 100% { opacity: 0.8; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}
.hero-emblem {
    width: 48px; height: 48px; object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
@media (min-width: 640px) { .hero-emblem { width: 64px; height: 64px; } }
@media (min-width: 768px) { .hero-emblem { width: 80px; height: 80px; } }
@media (min-width: 1024px) { .hero-emblem { width: 96px; height: 96px; } }

.hero-content {
    position: relative; z-index: 2;
    color: var(--white);
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    width: 100%; margin-bottom: clamp(1.5rem, 4svh, 4rem);
}
.hero-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(1rem, 2.2vw, 1.4rem);
    letter-spacing: 0.25em;
    color: var(--white);
    display: block;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    text-transform: uppercase;
}
.hero-year {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(0.85rem, 1.8vw, 1.2rem);
    letter-spacing: 0.15em;
    color: var(--gold);
    display: block;
    margin-bottom: clamp(1rem, 3svh, 2.5rem);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    text-transform: uppercase;
}
.hero-scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
}
.hero-scroll-btn svg {
    color: var(--gold);
    animation: bounceScroll 2s ease infinite;
}
@keyframes bounceScroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}
/* ============================================================
   VISION & MISSION
============================================================ */
#vision-mission { background: var(--white); }
.vm-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
@media (min-width: 768px) {
    .vm-grid { grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
}
.vm-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(2rem,5vw,4rem); line-height: 1.08; color: var(--navy); }
.vm-body p { font-size: 0.9rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1rem; }
@media (max-width: 767px) {
    .vm-body p { margin-bottom: 0.65rem; }
}
.vm-body p:last-child { margin-bottom: 0; }
.stats-strip { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 3rem; border-top: 1px solid var(--stone); }
@media (min-width: 640px) { .stats-strip { grid-template-columns: repeat(4,1fr); } }
.stat-item {
    padding: 1.8rem 1rem;
    border-right: 1px solid var(--stone);
    border-bottom: 1px solid var(--stone);
}
@media (min-width: 640px) {
    .stat-item {
        border-bottom: none;
        padding: 1.8rem 1.5rem;
    }
    .stat-item:first-child { padding-left: 0; }
    .stat-item:last-child { border-right: none; padding-right: 0; }
}
@media (max-width: 639px) {
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
}
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,4vw,3.2rem); font-weight: 400; color: var(--navy); line-height: 1; display: block; }
.stat-number sup { font-size: 0.45em; vertical-align: super; color: var(--gold); }
.stat-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 0.4rem; display: block; }
/* ============================================================
   WHY CHOOSE US
============================================================ */
#why-us { background: var(--offwhite); }
.why-header { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .why-header { grid-template-columns: 5fr 7fr; gap: 3rem; align-items: center; margin-bottom: 3.5rem; } }
.why-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(2rem,4vw,3.5rem); color: var(--navy); line-height: 1.1; }
.why-intro { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }
.why-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .why-list { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (min-width: 1024px) { .why-list { grid-template-columns: repeat(4,1fr); gap: 3rem; } }
.why-item { padding: 2rem 0; border-top: 1px solid rgba(201,168,76,0.2); }
@media (max-width: 639px) { .why-item { padding: 1.5rem 0; } }
.why-num { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: var(--gold); display: block; margin-bottom: 0.9rem; line-height: 1; }
.why-item h3 { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 0.5rem; }
.why-item p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.65; }
/* ============================================================
   FOUNDERS & PRINCIPLES
============================================================ */
#founders { background: var(--white); }
.founders-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .founders-grid { grid-template-columns: 5fr 7fr; gap: 6rem; } }
.founders-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}
@media (min-width: 640px) { .founders-photo { aspect-ratio: 4/3; } }
@media (min-width: 900px) { .founders-photo { aspect-ratio: 3/4; } }
.founders-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.8s ease;
}
.founders-photo:hover img { transform: scale(1.04); }
.founders-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem; background: linear-gradient(to top, rgba(13,27,46,0.85), transparent); }
.founders-caption p { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.founders-content h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(1.8rem,3.5vw,3rem); color: var(--navy); margin-bottom: 1.2rem; line-height: 1.12; }
.founders-content p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 0.9rem; }
/* Principles — MOBILE: simple numbered list, DESKTOP: 4-column strip */
.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2.5rem;
    border-top: 1px solid var(--stone);
    gap: 2rem;
}
@media (min-width: 640px) { .principles-grid { grid-template-columns: repeat(4,1fr); gap: 3rem; } }
.principle-item {
    padding: 1.8rem 0;
}
@media (max-width: 639px) {
    .principles-grid {
        grid-template-columns: 1fr;
        border-top: 1px solid var(--stone);
        gap: 0;
    }
    .principle-item {
        padding: 1.4rem 0;
        border-bottom: 1px solid var(--stone);
    }
    .principle-item:last-child { border-bottom: none; }
}
.principle-item h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.principle-item p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; }
/* ============================================================
   SERVICES
============================================================ */
#services { background: var(--navy); }
.services-header { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.services-header-title { grid-column: 1 / -1; }
.services-intro { grid-column: 1 / -1; font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.75; }
@media (min-width: 640px) {
    .services-header { grid-template-columns: 50px 180px 1fr; gap: 2rem; align-items: end; margin-bottom: 3rem; }
    .services-header-title { grid-column: span 2; }
    .services-intro { grid-column: span 1; }
}
@media (min-width: 768px) {
    .services-header { grid-template-columns: 60px 220px 1fr; gap: 3rem; }
}
.services-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(2rem,4vw,3.5rem); color: var(--white); line-height: 1.1; }
.service-row { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 1rem; padding: 1.4rem 0; border-top: 1px solid rgba(255,255,255,0.08); transition: background 0.2s; }
@media (min-width: 640px) { .service-row { grid-template-columns: 50px 180px 1fr; gap: 2rem; } }
@media (min-width: 768px) { .service-row { grid-template-columns: 60px 220px 1fr auto; align-items: center; gap: 3rem; } }
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.service-row:hover { background: rgba(255,255,255,0.02); }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: var(--gold); line-height: 1; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--white); line-height: 1.2; }
@media (min-width: 768px) { .svc-name { font-size: 1.4rem; } }
.svc-desc { display: none; font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
@media (min-width: 640px) { .svc-desc { display: block; } }
.svc-arrow { color: var(--gold); opacity: 0; transition: opacity 0.2s, transform 0.2s; flex-shrink: 0; display: none; }
@media (min-width: 768px) { .svc-arrow { display: block; } }
.service-row:hover .svc-arrow { opacity: 1; transform: translateX(4px); }
/* ============================================================
   MARKET ANALYSIS - SPLIT SCREEN
============================================================ */
#analyses { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { #analyses { grid-template-columns: 1fr 1fr; min-height: 600px; } }
.analyses-text { background: var(--offwhite); padding: clamp(2rem,3.5vw,3.8rem) clamp(1.5rem,5vw,5rem); display: flex; flex-direction: column; justify-content: center; }
.analyses-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(1.8rem,3.5vw,3.2rem); color: var(--navy); line-height: 1.1; margin-bottom: 1.2rem; }
.analyses-body { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.2rem; }
.analyses-photo {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}
@media (min-width: 768px) { .analyses-photo { min-height: 100%; } }
.analyses-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.analyses-photo:hover img { transform: scale(1.04); }
.analyses-photo-label { position: absolute; bottom: 20px; left: 20px; background: var(--navy); color: var(--gold); font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; padding: 0.5rem 1rem; }
/* ============================================================
   CLIENT APPROACH
============================================================ */
#approche-client { background: var(--white); }
.approach-header { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) {
    .approach-header { grid-template-columns: 5fr 7fr; gap: 3rem; align-items: center; margin-bottom: 3.5rem; }
}
.approach-statement { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(1.8rem,4.5vw,3.8rem); color: var(--navy); line-height: 1.15; max-width: 760px; margin-bottom: 1.2rem; }
.approach-statement em { font-style: italic; color: var(--gold); }
.approach-sub { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; max-width: 560px; margin-bottom: 0; }
/* Timeline — MOBILE: clean vertical list, TABLET+: 5-column strip */
.timeline {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--stone);
    gap: 1.5rem;
    padding-top: 2rem;
}
@media (min-width: 640px) {
    .timeline {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .timeline {
        gap: 3rem;
    }
}
.timeline-step {
    padding: 0;
    position: relative;
}
@media (max-width: 639px) {
    .timeline {
        gap: 0;
        padding-top: 0;
    }
    .timeline-step {
        padding: 1.4rem 0;
        border-bottom: 1px solid var(--stone);
    }
    .timeline-step:last-child { border-bottom: none; }
}
.step-num { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.step-title { font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.step-desc { font-size: 0.78rem; color: var(--text-mid); line-height: 1.6; }
/* ============================================================
   EXPERIENCE
============================================================ */
#experience { position: relative; overflow: hidden; }
.experience-bg { position: absolute; inset: 0; z-index: 0; }
.experience-bg img { width: 100%; height: 100%; object-fit: cover; }
.experience-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,46,0.95) 0%, rgba(13,27,46,0.82) 60%, rgba(13,27,46,0.65) 100%); z-index: 1; }
.experience-content { position: relative; z-index: 2; }
.exp-heading { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(1.8rem,4vw,3.2rem); color: var(--white); max-width: 600px; line-height: 1.12; margin-bottom: 3rem; }
.exp-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 2rem;
}
@media (min-width: 768px) {
    .exp-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}
.exp-stat {
    padding: 0;
}
.exp-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,5vw,4rem); font-weight: 300; color: var(--white); line-height: 1; display: block; margin-bottom: 0.4rem; }
.exp-num sup { font-size: 0.45em; vertical-align: super; color: var(--gold); }
.exp-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
/* Cornelius Career Timeline */
.cornelius-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 2rem;
}
@media (max-width: 767px) {
    .cornelius-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .cornelius-timeline {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
.corn-item {
    padding: 0;
}
.corn-era {
    display: block;
    font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.7rem;
}
.corn-detail {
    font-size: 0.78rem; color: rgba(255,255,255,0.55);
    line-height: 1.65;
}
/* ============================================================
   CONTACT
============================================================ */
#contact { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 5fr 7fr; gap: 7rem; align-items: start; } }
.contact-headline { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(2rem,4.5vw,4rem); color: var(--white); line-height: 1.08; margin-bottom: 1.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.ci-label { display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.contact-info a { font-size: 0.9rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.contact-info a:hover { color: var(--gold); }
.ci-value { font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.contact-form { display: flex; flex-direction: column; gap: 2rem; }
.form-field { display: flex; flex-direction: column; }
.form-label { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.form-input, .form-textarea {
    background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
    color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 300;
    padding: 0.5rem 0 0.7rem; width: 100%; outline: none; transition: border-color 0.25s;
}
.form-textarea { resize: none; height: 90px; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.22); font-weight: 300; }
.form-input:focus, .form-textarea:focus { border-bottom-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; padding-top: 0.8rem; }
.btn-submit {
    background: var(--gold); color: var(--navy); border: none;
    font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase; padding: 0.9rem 2.2rem;
    cursor: pointer; transition: background 0.25s, transform 0.2s;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-wa {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.55); text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.btn-wa:hover { color: #25d366; border-bottom-color: #25d366; }
#contact-success { display: none; font-size: 0.875rem; color: var(--gold-light); padding: 1.2rem 0; border-top: 1px solid rgba(201,168,76,0.3); margin-bottom: 1rem; }
/* ============================================================
   FOOTER
============================================================ */
footer {
    background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 2.5rem clamp(1.5rem,5vw,5rem);
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-tagline { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.28); letter-spacing: 0.08em; }
.footer-instagram, .footer-tiktok {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); text-decoration: none;
    transition: color 0.2s;
}
.footer-instagram:hover, .footer-tiktok:hover { color: var(--gold); }
.footer-instagram svg, .footer-tiktok svg { color: inherit; }
/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.wa-float {
    position: fixed; bottom: 2rem; right: 2rem; width: 52px; height: 52px;
    background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    z-index: 90; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: transform 0.3s, box-shadow 0.3s; animation: waPulse 2.5s ease infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
@keyframes waPulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.35),0 0 0 0 rgba(37,211,102,0.25)} 60%{box-shadow:0 4px 20px rgba(37,211,102,0.35),0 0 0 14px rgba(37,211,102,0)} }
/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.28s; }
.reveal-d4 { transition-delay: 0.38s; }
/* HIDE HEADER CTA ON MOBILE & TABLET PORTRAITS */
@media (max-width: 1023px) {
    #header-cta { display: none !important; }
}
/* ============================================================
   RESPONSIVE — PHONES (≤ 479px)
============================================================ */
@media (max-width: 479px) {
    /* Prevent any horizontal overflow */
    section, header, footer, div { max-width: 100vw; }
    .logo-tagline { display: block; font-size: 5px; letter-spacing: 0.05em; }
    .hero-scroll { display: none; }
    .hero-eyebrow { letter-spacing: 0.15em; }
    .btn-ghost { display: none; }
    .hero-actions { gap: 0.8rem; }
    .divider-gold { margin-top: 0.8rem; }
    /* Vision */
    .vm-grid { gap: 1.2rem; }
    .vm-title { font-size: 1.9rem; }
    /* Why */
    .why-list { grid-template-columns: 1fr; }
    .why-item { padding-right: 0; border-right: none !important; }
    /* Founders */
    .founders-photo { aspect-ratio: 16/9; }
    /* Services */
    .service-row { grid-template-columns: 36px 1fr; gap: 0.8rem; padding: 1.2rem 0; }
    .svc-desc { display: none; }
    /* Market analysis */
    .analyses-photo { min-height: 220px; }
    /* Experience */
    .exp-stats { grid-template-columns: 1fr 1fr; }
    .exp-stat { padding: 1.2rem 0.8rem 1.2rem 0; }
    .exp-stat:nth-child(2n) { padding-left: 0.8rem; }
    /* Contact */
    .contact-grid { gap: 2rem; }
    /* WhatsApp */
    .wa-float { width: 44px; height: 44px; bottom: 1rem; right: 1rem; }
}
/* ALL MOBILES AND SMALL TABLETS */
@media (max-width: 767px) {
    .why-header { gap: 0.8rem; margin-bottom: 1.5rem; }
    .divider-gold { margin-top: 0.8rem; }
    .why-list { gap: 1rem; }
    .why-item { padding-top: 0.6rem; padding-bottom: 0.6rem; }
    .why-num { margin-bottom: 0.2rem; }
    .why-item h3 { margin-bottom: 0.2rem; }
}
/* TABLETS (768px – 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .why-list { grid-template-columns: 1fr 1fr; }
    .why-item:nth-child(2n) { padding-right: 0; border-right: none; }
    .service-row { grid-template-columns: 60px 1fr 1fr; gap: 2rem; }
    .svc-arrow { display: none !important; }
}
/* LARGE MOBILE / SMALL TABLET (480px – 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .stat-item { padding: 1.4rem 1rem; }
    .founders-photo { aspect-ratio: 4/3; }
}

/* ============================================================
   INLINE STYLES MOVED TO CSS
============================================================ */

/* Line 697: header CTA container */
#main-header > div:last-child {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Line 698: header CTA button */
#header-cta {
    display: none;
}

/* Line 700: menu trigger hamburger short line */
#menu-trigger span:last-child {
    width: 14px;
}

/* Line 708: mobile drawer header panel container */
.drawer-panel > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Line 718: mobile drawer close button */
#menu-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 4px;
}

/* Line 766: Our Purpose eyebrow top margin reset */
#vision-mission .eyebrow {
    margin-top: 0;
}

/* Line 767: Our Vision & Mission title margin resets */
#vision-mission .vm-title {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

/* Line 768: Our Vision & Mission divider bottom margin reset */
#vision-mission .divider-gold {
    margin-bottom: 0;
}

/* Line 771: Our Purpose subtitle paragraph */
.vm-body p:first-of-type {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
}

/* Line 838: Founders section background color */
#founders {
    background: var(--white);
}

/* Line 852: Founders section divider margin adjustment */
.founders-content .divider-gold {
    margin-bottom: 2rem;
}

/* Line 854: Founders content em tag color and style */
.founders-content h2 em {
    color: var(--gold);
    font-style: italic;
}

/* Line 858: Founders principles section header container reveal */
#founders .container > div.reveal:not(.principles-grid) {
    margin-top: 2.5rem;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    #founders .container > div.reveal:not(.principles-grid) {
        margin-top: 4.5rem;
    }
}

/* Line 859: Founders principles section eyebrow margin */
#founders .container > div.reveal:not(.principles-grid) > .eyebrow {
    margin-bottom: 0.5rem;
}

/* Line 860: Founders principles title style */
#founders .container > div.reveal:not(.principles-grid) > h3 {
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    color: var(--navy);
}

/* Line 861: Founders principles divider margins */
#founders .container > div.reveal:not(.principles-grid) > .divider-gold {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Line 865, 870, 875, 880: Principles item eyebrow margin */
.principles-grid .principle-item .eyebrow {
    margin-bottom: 0.6rem;
}

/* Line 941: Request Market Brief button alignment */
.analyses-text .btn-gold {
    align-self: flex-start;
}

/* Line 953: Client Approach section background color */
#approche-client {
    background: var(--offwhite);
}

/* Line 1052: Contact section quote styling */
#contact .reveal p:first-of-type {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Line 1053: Contact section subtext styling */
#contact .reveal p:nth-of-type(2) {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 2rem;
}

/* Line 1116: Footer flex layout container */
footer > div {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Line 1118, 1122: Footer instagram and tiktok svg styles */
.footer-instagram svg,
.footer-tiktok svg {
    vertical-align: middle;
    margin-right: 0.2rem;
}
