*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0a0e1a; --navy-mid: #0d1020; --gold: #c9a84c;
    --gold-light: #e8c97a; --gold-dim: #7a6130; --cream: #f5f0e8;
    --cream-dim: #b8ae9a; --white: #ffffff;
  }
  html { scroll-behavior: smooth; background: #0a0e1a !important; color-scheme: dark; }
  body { background: #0a0e1a !important; color: var(--cream); font-family: 'EB Garamond', Georgia, serif; font-size: 18px; line-height: 1.7; overflow-x: hidden; }
  body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 9999; opacity: 0.4; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    padding: 20px 40px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    background: rgba(10,14,26,0.95);
    backdrop-filter: blur(12px); z-index: 200;
  }
  .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; letter-spacing: 0.3em; color: var(--cream); text-transform: lowercase; text-decoration: none; }
  .nav-logo-mail { color: var(--gold); font-style: italic; }
  .nav-links { display: flex; gap: 32px; list-style: none; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cream-dim); align-items: center; }
  .nav-links a { color: inherit; text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold); }

  /* Instruments dropdown */
  .nav-dropdown { position: relative; }
  .nav-dropdown-trigger {
    background: none; border: none; cursor: pointer;
    font-family: 'EB Garamond', serif; font-size: 0.7rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--cream-dim); display: flex; align-items: center; gap: 7px;
    transition: color 0.3s; padding: 0;
  }
  .nav-dropdown-trigger:hover { color: var(--gold); }
  .nav-dropdown-trigger.active { color: var(--gold); }
  .nav-dropdown-trigger .chevron {
    width: 8px; height: 5px; position: relative; flex-shrink: 0;
    transition: transform 0.3s;
  }
  .nav-dropdown-trigger .chevron::before,
  .nav-dropdown-trigger .chevron::after {
    content: '';
    position: absolute; background: currentColor;
    height: 1px; width: 5px; top: 2px;
  }
  .nav-dropdown-trigger .chevron::before { left: 0; transform: rotate(35deg); transform-origin: left; }
  .nav-dropdown-trigger .chevron::after  { right: 0; transform: rotate(-35deg); transform-origin: right; }
  .nav-dropdown-trigger.active .chevron { transform: rotate(180deg); }

  .dropdown-menu {
    position: absolute; top: calc(100% + 20px); right: 0;
    width: 320px;
    background: rgba(10,14,26,0.98);
    border: 1px solid rgba(201,168,76,0.2);
    backdrop-filter: blur(16px);
    opacity: 0; transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .dropdown-menu.open {
    opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .dropdown-header {
    padding: 18px 24px 12px;
    border-bottom: 1px solid rgba(201,168,76,0.1);
  }
  .dropdown-header-label {
    font-size: 0.52rem; letter-spacing: 0.45em; text-transform: uppercase;
    color: var(--gold-dim);
  }
  .dropdown-header-sub {
    font-size: 0.75rem; font-style: italic; color: rgba(184,174,154,0.45);
    margin-top: 2px;
  }
  .dropdown-item {
    display: block; text-decoration: none;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(201,168,76,0.07);
    transition: background 0.2s;
    position: relative;
  }
  .dropdown-item:last-child { border-bottom: none; }
  .dropdown-item:hover { background: rgba(201,168,76,0.05); }
  .dropdown-item:hover .dropdown-item-arrow { opacity: 1; transform: translateX(0); }
  .dropdown-item-num {
    font-size: 0.5rem; letter-spacing: 0.35em; text-transform: uppercase;
    color: var(--gold-dim); margin-bottom: 3px;
  }
  .dropdown-item-title {
    font-family: 'Cormorant Garamond', serif; font-weight: 300;
    font-size: 1.05rem; color: var(--cream); line-height: 1.2;
  }
  .dropdown-item-title em { color: var(--gold-light); font-style: italic; }
  .dropdown-item-desc {
    font-size: 0.72rem; font-style: italic;
    color: rgba(184,174,154,0.5); margin-top: 3px; line-height: 1.4;
  }
  .dropdown-item-arrow {
    position: absolute; right: 20px; top: 50%;
    transform: translateX(-4px) translateY(-50%);
    opacity: 0; transition: all 0.2s;
    font-size: 0.65rem; color: var(--gold-dim);
  }

  @media (max-width: 640px) {
    nav { padding: 16px 20px; }
    .nav-links { gap: 16px; font-size: 0.6rem; letter-spacing: 0.15em; }
    .nav-links .hide-mobile { display: none; }
    .dropdown-menu { width: 280px; right: -20px; }
  }

  /* ── HERO ── */
  .hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 80px; position: relative; overflow: hidden; }
  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 70%); }
  .crest { width: 100px; height: 100px; margin-bottom: 36px; animation: fadeUp 1.2s ease both; }
  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; animation: fadeUp 1.2s 0.15s ease both; }
  h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(3rem, 14vw, 6.5rem); line-height: 1.0; letter-spacing: 0.03em; color: var(--white); margin-bottom: 20px; animation: fadeUp 1.2s 0.25s ease both; }
  .h1-mail { color: var(--gold-light); font-style: italic; }
  .hero-tagline { font-size: clamp(0.95rem, 2.5vw, 1.1rem); font-style: italic; color: var(--cream-dim); max-width: 520px; margin: 0 auto 44px; animation: fadeUp 1.2s 0.35s ease both; }
  .hero-divider { display: flex; align-items: center; gap: 16px; margin-bottom: 44px; animation: fadeUp 1.2s 0.45s ease both; }
  .hero-divider span { width: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--gold-dim)); }
  .hero-divider span:last-child { background: linear-gradient(to left, transparent, var(--gold-dim)); }
  .hero-divider-diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
  .hero-stats { display: flex; gap: 0; align-items: stretch; animation: fadeUp 1.2s 0.55s ease both; border: 1px solid rgba(201,168,76,0.15); }
  .stat { text-align: center; padding: 24px 36px; border-right: 1px solid rgba(201,168,76,0.15); }
  .stat:last-child { border-right: none; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 300; color: var(--gold-light); display: block; margin-bottom: 8px; line-height: 1; }
  .stat-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-dim); line-height: 1.8; }
  @media (max-width: 600px) { .stat { padding: 18px 20px; } .stat-num { font-size: 1.9rem; } .stat-label { font-size: 0.52rem; letter-spacing: 0.18em; } }

  /* ── SECTIONS ── */
  section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
  @media (max-width: 700px) { section { padding: 60px 20px; } }
  .section-eyebrow { font-size: 0.62rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
  h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(1.9rem, 5vw, 3.2rem); color: var(--white); margin-bottom: 28px; line-height: 1.1; }
  .gold-rule { width: 50px; height: 1px; background: var(--gold); margin-bottom: 36px; }
  .full-divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent); }

  /* ── INSTRUMENTS SECTION ── */
  .instruments-section { background: rgba(201,168,76,0.02); width: 100%; max-width: none; padding: 80px 40px; border-top: 1px solid rgba(201,168,76,0.1); border-bottom: 1px solid rgba(201,168,76,0.1); }
  .instruments-inner { max-width: 1100px; margin: 0 auto; }
  .instruments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 52px; }
  @media (max-width: 700px) { .instruments-grid { grid-template-columns: 1fr; } }
  .instrument-card {
    border: 1px solid rgba(201,168,76,0.12);
    padding: 36px 32px;
    text-decoration: none;
    display: block;
    transition: background 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
    background: var(--navy);
  }
  .instrument-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 0% 100%, rgba(201,168,76,0.04) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s;
  }
  .instrument-card:hover { background: rgba(201,168,76,0.04); border-color: rgba(201,168,76,0.25); }
  .instrument-card:hover::before { opacity: 1; }
  .instrument-card:hover .instrument-arrow { opacity: 1; transform: translateX(0); }
  .instrument-num { font-size: 0.52rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 12px; }
  .instrument-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 1.5rem; color: var(--white); line-height: 1.2; margin-bottom: 10px; }
  .instrument-title em { color: var(--gold-light); font-style: italic; }
  .instrument-desc { font-size: 0.85rem; font-style: italic; color: var(--cream-dim); line-height: 1.6; }
  .instrument-arrow { position: absolute; bottom: 28px; right: 28px; font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-dim); opacity: 0; transform: translateX(-6px); transition: all 0.25s; }

  /* ── PROVENANCE ── */
  .provenance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  @media (max-width: 800px) { .provenance-grid { grid-template-columns: 1fr; gap: 40px; } }
  .provenance-text p { color: var(--cream-dim); margin-bottom: 18px; font-size: 1.02rem; }
  .provenance-text p strong { color: var(--cream); font-weight: 500; }
  .provenance-aside { border: 1px solid rgba(201,168,76,0.2); padding: 36px; position: relative; background: rgba(201,168,76,0.025); }
  .provenance-aside::before { content: '\201C'; font-family: 'Cormorant Garamond', serif; font-size: 7rem; line-height: 1; color: rgba(201,168,76,0.12); position: absolute; top: -8px; left: 18px; }
  .provenance-aside blockquote { font-style: italic; font-size: 1.08rem; color: var(--cream); margin-bottom: 18px; position: relative; z-index: 1; }
  .provenance-aside cite { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dim); }
  .milestone-row { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(201,168,76,0.1); font-size: 0.86rem; align-items: baseline; }
  .milestone-row:first-child { border-top: 1px solid rgba(201,168,76,0.1); }
  .milestone-row:last-child { border-bottom: none; }
  .milestone-year { color: var(--gold-light); font-weight: 500; flex-shrink: 0; min-width: 36px; }
  .milestone-text { color: var(--cream-dim); }

  /* ── CHARTS ── */
  .charts-section { background: linear-gradient(180deg, rgba(201,168,76,0.02) 0%, rgba(201,168,76,0.03) 50%, rgba(201,168,76,0.02) 100%), var(--navy-mid); width: 100%; max-width: none; padding: 80px 40px; }
  @media (max-width: 700px) { .charts-section { padding: 60px 20px; } }
  .charts-inner { max-width: 1100px; margin: 0 auto; }
  .charts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 52px; }
  @media (max-width: 800px) { .charts-grid { grid-template-columns: 1fr; } }
  .chart-card { background: var(--navy); border: 1px solid rgba(201,168,76,0.15); padding: 32px; }
  @media (max-width: 700px) { .chart-card { padding: 24px; } }
  .chart-title { font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
  .chart-subtitle { font-style: italic; font-size: 0.82rem; font-weight: 300; color: rgba(184,174,154,0.6); margin-bottom: 24px; line-height: 1.5; letter-spacing: 0.01em; }
  .wealth-tiers { display: flex; flex-direction: column; gap: 18px; }
  .tier-row { display: flex; flex-direction: column; gap: 5px; }
  .tier-label-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
  .tier-name { font-size: 0.76rem; color: var(--cream-dim); }
  .tier-pct { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--gold-light); flex-shrink: 0; }
  .tier-track { height: 9px; background: rgba(255,255,255,0.04); }
  .tier-fill { height: 100%; width: 0; transition: width 1.8s cubic-bezier(0.16,1,0.3,1); }
  .tier-note { font-size: 0.68rem; font-style: italic; color: rgba(184,174,154,0.45); }
  .asset-row { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
  .asset-label-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
  .asset-name { font-size: 0.76rem; color: var(--cream-dim); }
  .asset-pct { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--gold); flex-shrink: 0; }
  .asset-track { height: 6px; background: rgba(255,255,255,0.04); }
  .asset-fill { height: 100%; width: 0; transition: width 1.8s cubic-bezier(0.16,1,0.3,1); }
  .bar-chart { display: flex; flex-direction: column; gap: 14px; }
  .bar-row { display: flex; align-items: center; gap: 12px; }
  .bar-label { width: 36px; font-size: 0.73rem; color: var(--cream-dim); text-align: right; flex-shrink: 0; }
  .bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.04); overflow: hidden; }
  .bar-fill { height: 100%; background: linear-gradient(to right, var(--gold-dim), var(--gold)); width: 0; transition: width 1.5s cubic-bezier(0.16,1,0.3,1); }
  .bar-val { width: 24px; font-size: 0.73rem; color: var(--gold); text-align: right; flex-shrink: 0; }
  .gen-chart { display: flex; flex-direction: column; }
  .gen-row { display: flex; align-items: center; gap: 20px; padding: 15px 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
  .gen-row:first-child { border-top: 1px solid rgba(201,168,76,0.08); }
  .gen-marker { width: 3px; height: 36px; background: linear-gradient(to bottom, var(--gold-dim), transparent); flex-shrink: 0; }
  .gen-info { flex: 1; }
  .gen-title { font-size: 0.8rem; color: var(--cream); margin-bottom: 2px; }
  .gen-sub { font-size: 0.7rem; color: var(--cream-dim); font-style: italic; }
  .gen-val { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--gold-light); flex-shrink: 0; min-width: 44px; text-align: right; line-height: 1; }

  /* ── CRITERIA ── */
  .criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  @media (max-width: 700px) { .criteria-grid { grid-template-columns: 1fr; } }
  .criteria-item { padding: 26px 28px; border: 1px solid rgba(201,168,76,0.1); margin: -1px 0 0 -1px; display: flex; gap: 18px; align-items: flex-start; transition: background 0.3s; }
  .criteria-item:hover { background: rgba(201,168,76,0.04); }
  .criteria-num { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 300; color: rgba(201,168,76,0.22); line-height: 1; flex-shrink: 0; width: 28px; }
  .criteria-text { font-size: 0.92rem; color: var(--cream-dim); line-height: 1.6; }
  .criteria-text strong { color: var(--cream); display: block; margin-bottom: 4px; font-weight: 500; }

  /* ── CLOSED ── */
  .waitlist-section { text-align: center; padding: 100px 24px; position: relative; overflow: hidden; }
  .waitlist-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%); }
  .applications-closed-badge { display: inline-block; border: 1px solid rgba(201,168,76,0.3); padding: 8px 22px; font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; background: rgba(201,168,76,0.05); }
  .closed-reasons { display: flex; flex-direction: column; gap: 12px; max-width: 560px; margin: 0 auto 44px; text-align: left; }
  .closed-reason { display: flex; gap: 16px; align-items: baseline; padding: 16px 20px; border: 1px solid rgba(201,168,76,0.08); font-size: 0.88rem; color: var(--cream-dim); }
  .closed-reason-num { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: rgba(201,168,76,0.28); flex-shrink: 0; }
  .contact-note { font-size: 0.78rem; color: var(--cream-dim); font-style: italic; max-width: 400px; margin: 0 auto; line-height: 1.8; }
  .struck { text-decoration: line-through; color: rgba(184,174,154,0.4); font-style: normal; letter-spacing: 0.05em; }

  footer { border-top: 1px solid rgba(201,168,76,0.12); padding: 32px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(184,174,154,0.28); gap: 16px; flex-wrap: wrap; }
  @media (max-width: 600px) { footer { flex-direction: column; text-align: center; padding: 28px 20px; gap: 8px; } }

  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.visible { opacity: 1; transform: none; }
