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

  :root {
    --navy:     #0A0F1E;
    --navy-mid: #1E2A40;
    --gold:     #C9A84C;
    --gold-lt:  #E2C97E;
    --cream:    #F0EDE6;
    --grey:     #8B9099;
    --white:    #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 60px;
    background: rgba(10, 15, 30, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    transition: padding 0.3s;
  }
  .nav-logo {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--cream);
    text-decoration: none;
    text-transform: uppercase;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 9px 22px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .nav-cta:hover { background: var(--gold); color: var(--navy); }

  /* ── HERO ── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 40px 80px;
    overflow: hidden;
  }
  #hero-canvas {
    position: absolute;
    inset: 0;
    opacity: 0.35;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    position: relative;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 16px;
    opacity: 0.6;
  }
  .hero-headline {
    font-family: 'Cormorant Garant', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--cream);
    position: relative;
    max-width: 900px;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    margin-top: 28px;
    max-width: 520px;
    font-size: 0.95rem;
    color: var(--grey);
    font-weight: 300;
    line-height: 1.75;
    position: relative;
  }
  .hero-actions {
    margin-top: 52px;
    display: flex;
    gap: 20px;
    position: relative;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 36px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
  .btn-ghost {
    border: 1px solid rgba(240, 237, 230, 0.3);
    color: var(--cream);
    padding: 14px 36px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--grey);
  }
  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollpulse 1.8s ease-in-out infinite;
  }
  @keyframes scrollpulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
  }

  /* ── STATS STRIP ── */
  .stats-strip {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 40px 60px;
    display: flex;
    justify-content: center;
    gap: clamp(40px, 6vw, 100px);
    flex-wrap: wrap;
  }
  .stat-item { text-align: center; }
  .stat-value {
    font-family: 'Cormorant Garant', serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
  }
  .stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 8px;
  }

  /* ── SECTION BASE ── */
  section { padding: 100px 60px; }
  .section-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Cormorant Garant', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--cream);
    max-width: 600px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 0.92rem;
    color: var(--grey);
    font-weight: 300;
    line-height: 1.85;
    max-width: 520px;
    margin-top: 20px;
  }
  .divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 32px 0;
    opacity: 0.5;
  }

  /* ── ABOUT ── */
  #about {
    max-width: 760px;
    margin: 0 auto;
    padding: 100px 60px;
  }
  .inc-row span:last-child { color: var(--cream); }

  /* ── VERTICALS ── */
  #verticals {
    background: var(--navy-mid);
    padding: 100px 60px;
  }
  .verticals-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
  }
  .verticals-header .section-title { max-width: 100%; }
  .verticals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .vertical-card {
    background: var(--navy);
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }
  .vertical-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .vertical-card:hover { background: #111827; }
  .vertical-card:hover::after { transform: scaleX(1); }
  .vertical-num {
    font-family: 'Cormorant Garant', serif;
    font-size: 4rem;
    font-weight: 300;
    color: rgba(201,168,76,0.1);
    line-height: 1;
    position: absolute;
    top: 24px; right: 36px;
    letter-spacing: -0.04em;
    transition: color 0.3s;
  }
  .vertical-card:hover .vertical-num { color: rgba(201,168,76,0.2); }
  .vertical-icon {
    width: 44px; height: 44px;
    margin-bottom: 28px;
    opacity: 0.85;
  }
  .vertical-icon svg { width: 100%; height: 100%; }
  .vertical-name {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .vertical-desc {
    font-size: 0.88rem;
    color: var(--grey);
    font-weight: 300;
    line-height: 1.8;
    max-width: 380px;
  }
  .vertical-tags {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .vtag {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 4px 10px;
  }

  /* ── PHILOSOPHY ── */
  #philosophy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
  }
  .phil-principles { display: flex; flex-direction: column; gap: 40px; margin-top: 8px; }
  .phil-item { display: flex; gap: 24px; }
  .phil-bar {
    width: 2px;
    flex-shrink: 0;
    background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
    align-self: stretch;
    min-height: 60px;
  }
  .phil-item-title {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 8px;
  }
  .phil-item-body {
    font-size: 0.85rem;
    color: var(--grey);
    font-weight: 300;
    line-height: 1.75;
  }

  /* ── CONTACT ── */
  #contact {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201,168,76,0.12);
    padding: 100px 60px;
    text-align: center;
  }
  #contact .section-title {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  #contact .section-body {
    text-align: center;
    margin: 20px auto 0;
  }
  .contact-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    flex-wrap: wrap;
  }
  .contact-item-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  .contact-item-value {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.02em;
  }
  .contact-action {
    margin-top: 56px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-brand {
    font-family: 'Cormorant Garant', serif;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--grey);
  }
  .footer-brand span { color: var(--gold); }
  .footer-note {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: rgba(139,144,153,0.5);
    text-align: right;
  }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    #about { padding: 60px 24px; }
    #verticals { padding: 60px 24px; }
    .verticals-grid { grid-template-columns: 1fr; }
    section, #philosophy { padding: 60px 24px; }
    #philosophy { grid-template-columns: 1fr; }
    .stats-strip { padding: 32px 24px; gap: 32px; }
    footer { padding: 24px; flex-direction: column; }
    .footer-note { text-align: left; }
    #contact { padding: 60px 24px; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, .reveal { transition: none !important; animation: none !important; }
  }