:root {
    --navy: #0A2342;
    --navy-deep: #071829;
    --navy-mid: #0d2d55;
    --gold: #b89a50;
    --gold-light: #d9bb82;
    --gold-pale: #f0e6cc;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --cream: #F5F1E8;
    --text-dark: #1a1a2e;
    --text-mid: #2e3a4a;
    --text-light: #4e5f72;
    --border: rgba(198,162,90,0.2);
    --border-light: rgba(10,35,66,0.08);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Open Sans', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 400;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 60px;
    height: 80px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.97);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  nav.scrolled {
    height: 68px;
    box-shadow: 0 4px 30px rgba(10,35,66,0.08);
  }

  .nav-logo {
    display: flex; flex-direction: column;
    text-decoration: none;
  }

  .nav-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .nav-logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 3px;
  }

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

  .nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 100%;
    height: 1px;
    background: var(--gold);
    transition: right 0.3s ease;
  }

  .nav-links a:hover { color: var(--navy); }
  .nav-links a:hover::after { right: 0; }

  .nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 22px;
    font-size: 11px !important;
    letter-spacing: 0.2em !important;
    transition: background 0.2s !important;
  }

  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #0e3060 100%);
  }

  /* Subtle geometric texture */
  .hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(198,162,90,0.025) 60px,
        rgba(198,162,90,0.025) 61px
      );
  }

  /* Gold accent line */
  .hero-bg::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 55%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(198,162,90,0.3) 30%, rgba(198,162,90,0.3) 70%, transparent);
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-left {}

  .hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.3s;
  }

  .hero-eyebrow-line {
    width: 40px; height: 1px;
    background: var(--gold);
  }

  .hero-eyebrow-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.5s;
  }

  .hero-title-accent {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-taglines {
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.65s;
  }

  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
  }

  .hero-tagline::before {
    content: '—';
    color: var(--gold);
    margin-right: 10px;
    font-style: normal;
  }

  .hero-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
  }

  .hero-buttons {
    display: flex; gap: 16px; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.95s;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 32px;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .btn-primary::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary:hover { color: var(--navy); }
  .btn-primary span { position: relative; z-index: 1; }

  .btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-right {
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.1s;
  }

  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(198,162,90,0.2);
    border: 1px solid rgba(198,162,90,0.2);
  }

  .hero-stat {
    background: rgba(10,35,66,0.6);
    padding: 36px 32px;
    backdrop-filter: blur(10px);
  }

  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
  }

  .hero-stat-label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    line-height: 1.5;
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
  }

  .hero-scroll-text {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
  }

  .hero-scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
  }

  /* ─── SECTION COMMON ─── */
  section { padding: 120px 60px; }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-eyebrow {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
  }

  .section-eyebrow-line {
    width: 32px; height: 1px;
    background: var(--gold);
  }

  .section-eyebrow-text {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .section-title em {
    font-style: italic;
    color: var(--gold);
  }

  .section-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 860px;
  }

  /* ─── INDUSTRIES ─── */
  .industries {
    background: var(--off-white);
  }

  .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: var(--border-light);
  }

  .industry-card {
    background: var(--white);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: default;
  }

  .industry-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .industry-card:hover::before { transform: scaleX(1); }

  .industry-card:hover {
    box-shadow: 0 24px 70px rgba(10,35,66,0.13);
    transform: translateY(-6px);
    background: #fafcff;
  }

  .industry-card:hover .industry-title {
    color: var(--gold);
  }

  .industry-card:hover .learn-more-btn {
    color: var(--gold);
    border-bottom-color: var(--gold);
    gap: 16px;
  }

  .industry-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 400;
    color: rgba(10,35,66,0.04);
    line-height: 1;
    position: absolute;
    top: 20px; right: 28px;
  }

  .industry-icon {
    width: 44px; height: 44px;
    margin-bottom: 28px;
    display: flex; align-items: center; justify-content: center;
  }

  .industry-icon svg {
    width: 36px; height: 36px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
  }

  .industry-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 16px;
    transition: color 0.3s ease;
  }

  .industry-desc {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.65;
  }

  /* ─── WHAT WE DO ─── */
  .what-we-do {
    background: var(--white);
  }

  .what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    margin-top: 0;
  }

  .what-left {}

  .what-body {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.75;
    margin-top: 32px;
    max-width: 860px;
  }

  .what-body p + p { margin-top: 20px; }

  .what-right {
    padding: 60px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  .what-right::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border: 1px solid rgba(198,162,90,0.15);
    border-radius: 50%;
  }

  .what-right::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 140px; height: 140px;
    border: 1px solid rgba(198,162,90,0.1);
    border-radius: 50%;
  }

  .philosophy-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 32px;
    position: relative; z-index: 1;
  }

  .philosophy-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    position: relative; z-index: 1;
  }

  .philosophy-text p + p { margin-top: 20px; }

  .philosophy-text strong {
    color: var(--gold-light);
    font-weight: 400;
  }

  .philosophy-signature {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(198,162,90,0.2);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    position: relative; z-index: 1;
  }

  /* ─── WHY MEG ─── */
  .why-meg {
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .why-meg::before {
    content: 'MEG';
    position: absolute;
    top: 50%; right: -20px;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 280px;
    font-weight: 700;
    color: rgba(10,35,66,0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .why-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 70px;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: rgba(10,35,66,0.06);
  }

  .why-card {
    background: var(--white);
    padding: 48px 44px;
    position: relative;
    transition: all 0.3s ease;
  }

  .why-card:hover {
    background: var(--navy);
  }

  .why-card:hover .why-card-title { color: var(--white); }
  .why-card:hover .why-card-desc { color: rgba(255,255,255,0.6); }
  .why-card:hover .why-card-num { color: rgba(255,255,255,0.06); }

  .why-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 400;
    color: rgba(10,35,66,0.04);
    line-height: 1;
    position: absolute;
    top: 16px; right: 24px;
    transition: color 0.3s;
  }

  .why-card-marker {
    width: 32px; height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
  }

  .why-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.3;
    transition: color 0.3s;
  }

  .why-card-desc {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
    transition: color 0.3s;
  }

  /* ─── ENGAGEMENTS ─── */
  .engagements {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  .engagements::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(198,162,90,0.03));
    pointer-events: none;
  }

  .engagements .section-title { color: var(--white); }
  .engagements .section-subtitle { color: rgba(255,255,255,0.5); }
  .engagements .section-eyebrow-text { }

  .engagements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 60px;
    background: rgba(198,162,90,0.15);
  }

  .engagement-card {
    background: rgba(255,255,255,0.03);
    padding: 44px 36px;
    transition: background 0.3s;
    position: relative;
  }

  .engagement-card:hover {
    background: rgba(255,255,255,0.06);
  }

  .engagement-category {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }

  .engagement-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 18px;
  }

  .engagement-desc {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
  }

  .engagement-rule {
    width: 24px; height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
    opacity: 0.6;
  }

  /* ─── FOUNDER ─── */
  .founder {
    background: var(--white);
  }

  .founder-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: center;
  }

  .founder-portrait {
    position: relative;
    width: 252px;
    flex-shrink: 0;
  }

  .founder-portrait-frame {
    width: 252px;
    height: 306px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .founder-portrait-placeholder {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
    background: linear-gradient(160deg, #e8e2d6 0%, #d4cfc5 100%);
  }

  .founder-initials {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 400;
    color: var(--navy);
    opacity: 0.15;
  }

  .founder-portrait-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.35;
    margin-top: 8px;
  }

  .founder-portrait-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    border: 2px solid var(--gold);
    opacity: 0.4;
  }

  .founder-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .founder-title-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 36px;
  }

  .founder-bio {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.75;
    max-width: 860px;
  }

  .founder-bio p + p { margin-top: 20px; }

  .founder-divider {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 36px 0;
  }

  /* ─── CAPABILITIES PAGE ─── */
  .capabilities {
    background: var(--off-white);
  }

  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 60px;
    background: var(--border-light);
  }

  .capability-card {
    background: var(--white);
    padding: 52px 48px;
    position: relative;
  }

  .capability-header {
    display: flex; align-items: flex-start; gap: 20px;
    margin-bottom: 28px;
  }

  .capability-icon-wrap {
    width: 48px; height: 48px; flex-shrink: 0;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
  }

  .capability-icon-wrap svg {
    width: 22px; height: 22px;
    stroke: var(--gold); fill: none; stroke-width: 1.5;
  }

  .capability-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.3;
    padding-top: 8px;
  }

  .capability-desc {
    font-size: 18px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 24px;
  }

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

  .capability-list li {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-mid);
    padding: 9px 0;
    border-bottom: 1px solid var(--border-light);
    display: flex; align-items: center; gap: 12px;
  }

  .capability-list li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--gold);
    flex-shrink: 0;
  }

  .capability-highlight {
    background: var(--navy);
    grid-column: span 2;
    padding: 60px 80px;
    display: flex; align-items: center; gap: 60px;
  }

  .capability-highlight-text {
    flex: 1;
  }

  .capability-highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
  }

  .capability-highlight-desc {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
  }

  /* ─── CONTACT ─── */
  .contact {
    background: var(--white);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    margin-top: 60px;
  }

  .contact-info {}

  .contact-info-item {
    margin-bottom: 36px;
  }

  .contact-info-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }

  .contact-info-value {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .contact-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.5;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
  }

  .contact-form {}

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .form-group {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 20px;
  }

  .form-group.full { grid-column: span 2; }

  .form-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-mid);
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 14px 18px;
    border: 1px solid rgba(10,35,66,0.12);
    background: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    transition: all 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-input:focus,
  .form-select:focus,
  .form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198,162,90,0.08);
  }

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

  .form-select-wrap {
    position: relative;
  }

  .form-select-wrap::after {
    content: '';
    position: absolute;
    right: 18px; top: 50%;
    transform: translateY(-50%);
    width: 8px; height: 8px;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
  }

  .form-submit {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 40px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--gold);
    color: var(--navy);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy-deep);
    padding: 60px;
  }

  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
  }

  .footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.08em;
  }

  .footer-tagline {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-top: 6px;
  }

  .footer-nav {
    display: flex; gap: 36px;
    list-style: none;
  }

  .footer-nav a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.1em;
  }

  .footer-social {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 14px;
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.45);
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184,154,80,0.08);
  }

  .footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
  }

  /* ─── PAGE SECTIONS ─── */
  .page-header {
    padding: 160px 60px 100px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }

  .page-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 60px; right: 60px;
    height: 1px;
    background: rgba(198,162,90,0.2);
  }

  .page-header-inner {
    max-width: 1200px; margin: 0 auto;
  }

  .page-header-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
  }

  .page-header-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .page-header-sub {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin-top: 16px;
    letter-spacing: 0.05em;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── PAGE NAVIGATION ─── */
  .site-pages {
    position: fixed;
    bottom: 30px; right: 30px;
    z-index: 200;
    display: flex; flex-direction: column; gap: 8px;
  }

  .page-dot {
    width: 8px; height: 8px;
    background: rgba(10,35,66,0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
  }

  .page-dot.active {
    background: var(--gold);
    transform: scale(1.3);
  }

  .page-dot:hover {
    background: var(--navy);
  }

  /* DIVIDER */
  .gold-divider {
    width: 60px; height: 1px;
    background: var(--gold);
    margin: 0 auto;
  }

  /* ─── LEARN MORE BUTTON ─── */
  .learn-more-btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px;
    padding: 10px 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--gold);
    color: var(--navy);
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  .learn-more-btn::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .learn-more-btn:hover {
    color: var(--gold);
    gap: 16px;
    letter-spacing: 0.25em;
  }
  .learn-more-btn:hover::after { transform: scaleX(1); }
  .learn-more-btn svg { transition: transform 0.3s ease; }
  .learn-more-btn:hover svg { transform: translateX(5px); }

  /* ─── MODAL OVERLAY ─── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 500;
    background: rgba(7,24,41,0.7);
    backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .modal-overlay.open {
    opacity: 1; pointer-events: all;
  }

  .modal-panel {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(780px, 100vw);
    background: var(--white);
    z-index: 501;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
  }
  .modal-panel.active {
    display: block;
  }
  .modal-panel.open {
    transform: translateX(0);
  }

  .modal-header {
    background: var(--navy);
    padding: 48px 60px 44px;
    position: sticky; top: 0; z-index: 10;
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 20px;
  }

  .modal-header-text {}

  .modal-eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }

  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
  }

  .modal-close {
    background: none; border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    width: 40px; height: 40px; flex-shrink: 0;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    margin-top: 4px;
  }
  .modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .modal-body {
    padding: 56px 60px;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 160px);
  }

  .modal-intro {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-light);
  }

  .modal-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 28px;
  }

  /* Process steps */
  .process-steps {
    display: flex; flex-direction: column; gap: 0;
    margin-bottom: 48px;
  }

  .process-step {
    display: flex; gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
  }

  .process-step:first-child { border-top: 1px solid var(--border-light); }

  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: rgba(10,35,66,0.1);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    padding-top: 2px;
  }

  .step-content {}

  .step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
  }

  .step-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* Bullet list */
  .modal-list {
    list-style: none;
    margin-bottom: 40px;
  }

  .modal-list li {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-mid);
  }

  .modal-list li::before {
    content: '';
    width: 5px; height: 5px;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* Focus areas */
  .focus-areas {
    display: flex; flex-direction: column; gap: 20px;
    margin-bottom: 40px;
  }

  .focus-area {
    padding: 24px 28px;
    background: var(--off-white);
    border-left: 3px solid var(--gold);
  }

  .focus-area-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .focus-area-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
  }

  .modal-closing {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.7;
    padding: 32px 0 40px;
    border-top: 1px solid var(--border-light);
    margin-top: 8px;
  }

  /* Modal form */
  .modal-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 28px;
    padding-top: 8px;
  }

  .modal-form .form-group { margin-bottom: 18px; }
  .modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
  .modal-form .form-submit { margin-top: 4px; }

  @media (max-width: 900px) {
    .modal-panel { width: 100vw; }
    .modal-header { padding: 36px 28px 32px; }
    .modal-body { padding: 40px 28px; }
    .modal-form .form-row { grid-template-columns: 1fr; }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    nav { padding: 0 30px; }
    .nav-links { display: none; }
    section { padding: 80px 30px; }
    .hero-content { grid-template-columns: 1fr; gap: 50px; padding: 0 30px; }
    .hero-right { display: none; }
    .industries-grid { grid-template-columns: 1fr; }
    [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr 1fr !important; }
    .what-grid { grid-template-columns: 1fr; gap: 50px; }
    .why-header { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .engagements-grid { grid-template-columns: 1fr; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .capability-highlight { grid-column: 1; flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .form-row { grid-template-columns: 1fr; }
    .founder-inner { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; gap: 30px; text-align: center; }
    .footer-nav { flex-wrap: wrap; justify-content: center; }
    .page-header { padding: 140px 30px 80px; }
  }

  .site-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  .site-logo-footer {
    height: 68px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 8px;
  }
  @media (max-width: 900px) {
    .site-logo { height: 44px; }
    .site-logo-footer { height: 52px; }
  }