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

  :root {
    --navy:       #0A1628;
    --navy-mid:   #0F2040;
    --navy-light: #1A3358;
    --gold:       #C9A84C;
    --gold-light: #E2C97E;
    --gold-pale:  #F5EDD4;
    --slate:      #8899AA;
    --off-white:  #F4F1EC;
    --white:      #FFFFFF;
    --text-dim:   #6B7F94;
    --border:     rgba(201,168,76,0.18);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-sans);
    background: var(--navy);
    color: var(--off-white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 0; opacity: 0.4;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 5%;
    background: rgba(10,22,40,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
  }

  .nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.04em;
    text-decoration: none;
  }

  .nav-logo span { color: var(--gold); }

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

  .nav-links a {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .nav-cta {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }

  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ─── SECTIONS ─── */
  section { position: relative; z-index: 1; }

  .container { max-width: 1140px; margin: 0 auto; padding: 0 5%; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: linear-gradient(160deg, #0A1628 0%, #0D1E38 50%, #091422 100%);
  }

  .hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px 6% 80px 7%;
    position: relative; z-index: 2;
  }

  .hero-content::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 100% 80% at 0% 50%, rgba(26,51,88,0.45) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-image-panel {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
  }

  .hero-image-panel img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.72) saturate(0.85);
  }

  .hero-image-panel::before {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, #0A1628 0%, transparent 25%),
                linear-gradient(180deg, rgba(10,22,40,0.35) 0%, transparent 40%, rgba(10,22,40,0.55) 100%);
  }

  .hero-image-panel::after {
    content: '';
    position: absolute; left: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201,168,76,0.35), transparent);
    z-index: 2;
  }

  /* placeholder when no image is set */
  .hero-image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0F2040 0%, #1A3358 50%, #0D1E38 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px;
    position: relative;
  }

  .hero-image-placeholder::before {
    content: '';
    position: absolute; inset: 20px;
    border: 1px solid rgba(201,168,76,0.12);
  }

  .placeholder-initials {
    font-family: var(--font-serif);
    font-size: 9rem;
    font-weight: 300;
    color: rgba(201,168,76,0.13);
    line-height: 1;
    letter-spacing: -0.04em;
    position: relative; z-index: 1;
  }

  .placeholder-hint {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.3);
    position: relative; z-index: 1;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
  }

  .hero-eyebrow::before {
    content: '';
    display: block; width: 32px; height: 1px;
    background: var(--gold);
  }

  .hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    max-width: 680px;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
  }

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

  .hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--slate);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    margin-bottom: 72px;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 16px 36px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(201,168,76,0.25);
  }

  .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  }

  .btn-primary svg { transition: transform 0.2s; }
  .btn-primary:hover svg { transform: translateX(3px); }

  .btn-ghost {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--off-white);
    text-decoration: none;
    border-bottom: 1px solid rgba(244,241,236,0.25);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

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

  .hero-stats {
    display: flex; gap: 0; border-top: 1px solid var(--border);
    padding-top: 40px; max-width: 560px;
  }

  .hero-stat {
    flex: 1;
    padding-right: 32px;
  }

  .hero-stat + .hero-stat {
    padding-left: 32px; padding-right: 32px;
    border-left: 1px solid var(--border);
  }

  .hero-stat:last-child { padding-right: 0; }

  .stat-number {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-number span { color: var(--gold); }

  .stat-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
  }

  /* ─── SECTION HEADER ─── */
  .section-tag {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
  }

  .section-tag::before {
    content: '';
    display: block; width: 24px; height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 20px;
  }

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

  .section-body {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.8;
    max-width: 540px;
  }

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

  /* ─── ABOUT ─── */
  #about {
    padding: 120px 5%;
    background: var(--navy-mid);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1140px;
    margin: 0 auto;
  }

  .about-portrait {
    position: relative;
  }

  .portrait-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--navy-light) 0%, #0D2240 100%);
    position: relative;
    overflow: hidden;
  }

  .portrait-frame::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.8) 100%);
  }

  .portrait-initials {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-size: 8rem;
    font-weight: 300;
    color: rgba(201,168,76,0.15);
    letter-spacing: -0.05em;
    z-index: 1;
  }

  .portrait-accent {
    position: absolute;
    top: -16px; right: -16px;
    width: 120px; height: 120px;
    border: 1px solid var(--border);
    pointer-events: none;
  }

  .portrait-credential {
    position: absolute;
    bottom: -1px; left: -1px; right: 0;
    background: var(--gold);
    padding: 16px 20px;
    z-index: 2;
  }

  .credential-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 2px;
  }

  .credential-title {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(10,22,40,0.65);
  }

  .about-content { padding-top: 8px; }

  .about-philosophy {
    margin-top: 36px;
    padding: 28px 28px 28px 24px;
    border-left: 2px solid var(--gold);
    background: rgba(201,168,76,0.04);
  }

  .about-philosophy p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.6;
  }

  .credential-badges {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 32px;
  }

  .badge {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 14px;
  }

  /* ─── STRATEGY ─── */
  #strategy {
    padding: 120px 5%;
    background: var(--navy);
  }

  .strategy-intro {
    max-width: 1140px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
    margin-bottom: 80px;
  }

  .strategy-cards {
    max-width: 1140px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .strategy-card {
    background: var(--navy);
    padding: 36px 32px;
    transition: background 0.2s;
  }

  .strategy-card:hover { background: rgba(26,51,88,0.5); }

  .card-icon {
    width: 40px; height: 40px;
    margin-bottom: 20px;
    color: var(--gold);
  }

  .card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
  }

  .card-body {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.75;
  }

  /* CHART AREA */
  .chart-wrapper {
    margin-top: 72px;
    max-width: 1140px; margin: 72px auto 0;
    border: 1px solid var(--border);
    padding: 40px;
    background: rgba(15,32,64,0.6);
    position: relative;
  }

  .chart-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 6px;
  }

  .chart-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 28px;
  }

  .chart-disclaimer {
    margin-top: 16px;
    font-size: 0.72rem;
    color: var(--text-dim);
    font-style: italic;
  }

  /* ─── SOCIAL PROOF ─── */
  #proof {
    padding: 120px 5%;
    background: var(--navy-mid);
  }

  .proof-header {
    max-width: 1140px; margin: 0 auto 64px;
    display: flex; justify-content: space-between; align-items: end;
    flex-wrap: wrap; gap: 24px;
  }

  .trust-row {
    max-width: 1140px; margin: 0 auto 64px;
    display: flex; gap: 0;
    border: 1px solid var(--border);
  }

  .trust-item {
    flex: 1;
    padding: 28px 32px;
    border-right: 1px solid var(--border);
    text-align: center;
  }

  .trust-item:last-child { border-right: none; }

  .trust-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
  }

  .trust-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
  }

  .testimonials {
    max-width: 1140px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .testimonial {
    background: rgba(10,22,40,0.8);
    border: 1px solid var(--border);
    padding: 36px 32px;
    transition: border-color 0.2s, transform 0.2s;
  }

  .testimonial:hover {
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-3px);
  }

  .testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 300;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .testimonial-quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--gold);
    line-height: 0;
    vertical-align: -1rem;
    margin-right: 4px;
  }

  .testimonial-author {
    display: flex; align-items: center; gap: 14px;
  }

  .author-avatar {
    width: 42px; height: 42px;
    background: var(--navy-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 500;
    flex-shrink: 0;
  }

  .author-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 3px;
  }

  .author-role {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    text-transform: uppercase;
  }

  .stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }

  /* ─── PROCESS ─── */
  #process {
    padding: 120px 5%;
    background: var(--navy);
  }

  .process-header {
    max-width: 1140px; margin: 0 auto 72px;
    text-align: center;
  }

  .process-steps {
    max-width: 900px; margin: 0 auto;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    left: 28px; top: 48px; bottom: 48px;
    width: 1px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(201,168,76,0.1) 100%);
  }

  .step {
    display: flex; gap: 40px; align-items: flex-start;
    padding: 0 0 52px 0;
    position: relative;
  }

  .step:last-child { padding-bottom: 0; }

  .step-number {
    width: 56px; height: 56px;
    flex-shrink: 0;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gold);
    background: var(--navy);
    position: relative; z-index: 1;
  }

  .step-content { padding-top: 8px; }

  .step-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
  }

  .step-body {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.75;
    max-width: 560px;
  }

  /* ─── EXCLUSIVITY ─── */
  #exclusivity {
    padding: 120px 5%;
    background: var(--navy-mid);
  }

  .exclusivity-inner {
    max-width: 1140px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }

  .exclusivity-visual {
    position: relative;
    padding: 48px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 60%);
  }

  .minimum-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .minimum-amount {
    font-family: var(--font-serif);
    font-size: 3.6rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
  }

  .minimum-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.7;
  }

  .capacity-bar {
    margin-top: 36px;
  }

  .capacity-label {
    display: flex; justify-content: space-between;
    font-size: 0.75rem; color: var(--slate);
    margin-bottom: 8px; letter-spacing: 0.08em; text-transform: uppercase;
  }

  .capacity-track {
    height: 4px;
    background: rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
  }

  .capacity-fill {
    position: absolute; top: 0; left: 0; bottom: 0;
    width: 73%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: fillBar 1.4s ease-out forwards;
    transform-origin: left;
  }

  @keyframes fillBar {
    from { width: 0; }
    to { width: 73%; }
  }

  .ideal-list {
    list-style: none;
    margin-top: 32px;
    display: flex; flex-direction: column; gap: 12px;
  }

  .ideal-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.6;
  }

  .ideal-list li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 7px;
  }

  /* ─── CTA ─── */
  #cta {
    padding: 140px 5%;
    background:
      radial-gradient(ellipse 80% 80% at 50% 110%, rgba(201,168,76,0.08) 0%, transparent 70%),
      var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  #cta::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .cta-inner { max-width: 720px; margin: 0 auto; }

  .cta-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 6px 16px;
    margin-bottom: 32px;
  }

  .cta-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

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

  .cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
  }

  .cta-headline em { font-style: italic; color: var(--gold-light); }

  .cta-body {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 48px;
  }

  .cta-actions {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
  }

  .cta-note {
    font-size: 0.78rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
  }

  /* ─── FOOTER ─── */
  footer {
    padding: 48px 5%;
    background: #060E1A;
    border-top: 1px solid var(--border);
  }

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

  .footer-logo {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--white);
  }

  .footer-logo span { color: var(--gold); }

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

  .footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  .footer-legal {
    font-size: 0.7rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 1140px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  /* ─── MEDIA BADGE ─── */
  .media-row {
    max-width: 1140px; margin: 64px auto 0;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  }

  .media-label {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    flex-shrink: 0;
  }

  .media-badges {
    display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
  }

  .media-badge {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(244,241,236,0.25);
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }

  .media-badge:hover { color: rgba(244,241,236,0.55); }

  /* ─── SCROLL ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

  /* ─── MODAL ─── */
  @keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 999;
    background: rgba(4,10,20,0.85);
    backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
    padding: 20px;
  }

  .modal-overlay.open { display: flex; }

  body.modal-open { overflow: hidden; }

  .modal-box {
    background: var(--navy-mid);
    border: 1px solid rgba(201,168,76,0.25);
    max-width: 560px; width: 100%;
    position: relative;
    padding: 52px 48px 48px;
    animation: modalIn 0.35s cubic-bezier(0.22,1,0.36,1) both;
  }

  .modal-close {
    position: absolute; top: 18px; right: 20px;
    background: none; border: none; cursor: pointer;
    color: rgba(136,153,170,0.7);
    font-size: 1.4rem; line-height: 1;
    transition: color 0.2s;
  }

  .modal-close:hover { color: var(--gold); }

  .modal-eyebrow {
    font-size: 0.68rem; font-weight: 400;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 8px;
  }

  .modal-eyebrow::before {
    content: '';
    display: inline-block; width: 20px; height: 1px;
    background: var(--gold); flex-shrink: 0;
  }

  .modal-header { margin-bottom: 32px; }

  .modal-title {
    font-family: var(--font-serif);
    font-size: 1.9rem; font-weight: 300;
    color: var(--white); line-height: 1.15;
    margin-bottom: 10px;
  }

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

  .modal-subtitle {
    font-size: 0.85rem; font-weight: 300;
    color: var(--text-dim); line-height: 1.65;
  }

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

  .modal-field { display: flex; flex-direction: column; }

  .modal-field.full { margin-bottom: 24px; }

  .modal-label {
    display: block;
    font-size: 0.68rem; font-weight: 400;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-dim); margin-bottom: 6px;
  }

  .modal-input,
  .modal-select,
  .modal-textarea {
    width: 100%;
    background: rgba(10,22,40,0.8);
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--off-white);
    font-family: var(--font-sans);
    font-size: 0.9rem; font-weight: 300;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.2s;
  }

  .modal-input:focus,
  .modal-select:focus,
  .modal-textarea:focus { border-color: rgba(201,168,76,0.6); }

  .modal-select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2212%22 height=%228%22 viewBox=%220 0 12 8%22><path d=%22M1 1l5 5 5-5%22 stroke=%22%238899AA%22 stroke-width=%221.5%22 fill=%22none%22 stroke-linecap=%22round%22/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-color: rgba(10,22,40,0.8);
    cursor: pointer;
  }

  .modal-textarea { resize: vertical; min-height: 96px; }

  .modal-error {
    display: none;
    font-size: 0.78rem;
    color: #E2977E;
    margin-bottom: 14px;
  }

  .modal-submit {
    width: 100%;
    background: var(--gold); border: none; cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--navy);
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: background 0.2s, transform 0.15s;
  }

  .modal-submit:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  .modal-privacy {
    margin-top: 14px;
    font-size: 0.72rem;
    color: var(--text-dim);
    text-align: center; line-height: 1.6;
  }

  .modal-success {
    display: none;
    text-align: center; padding: 24px 0;
  }

  .modal-success-icon {
    width: 56px; height: 56px;
    border: 1px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
  }

  .modal-success-title {
    font-family: var(--font-serif);
    font-size: 1.6rem; font-weight: 300;
    color: var(--white); margin-bottom: 12px;
  }

  .modal-success-body {
    font-size: 0.88rem; font-weight: 300;
    color: var(--slate); line-height: 1.7;
    max-width: 340px; margin: 0 auto 28px;
  }

  .modal-close-btn {
    background: none;
    border: 1px solid rgba(201,168,76,0.3);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.75rem; font-weight: 400;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold);
    padding: 10px 28px;
    transition: border-color 0.2s;
  }

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

  /* loading state */
  .modal-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
  }

  .modal-submit .submit-label { display: flex; align-items: center; gap: 10px; }
  .modal-submit .submit-spinner { display: none; align-items: center; gap: 10px; }

  .modal-submit.loading .submit-label  { display: none; }
  .modal-submit.loading .submit-spinner { display: flex; }

  @keyframes spin { to { transform: rotate(360deg); } }

  .spinner-ring {
    width: 15px; height: 15px;
    border: 2px solid rgba(10,22,40,0.2);
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
  }

  /* network / server error banner */
  .modal-server-error {
    display: none;
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(226,151,126,0.4);
    background: rgba(226,151,126,0.07);
  }

  .modal-server-error.visible { display: block; }

  .modal-server-error-title {
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #E2977E; margin-bottom: 5px;
  }

  .modal-server-error-body {
    font-size: 0.8rem; font-weight: 300;
    color: var(--slate); line-height: 1.65;
  }

  .modal-server-error-body a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  @media (max-width: 600px) {
    .modal-box { padding: 36px 24px 28px; }
    .modal-row { grid-template-columns: 1fr; }
  }

  /* ─── HAMBURGER ─── */
  .hamburger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: 1px solid rgba(201,168,76,0.25); cursor: pointer;
    padding: 4px;
    z-index: 200;
    transition: border-color 0.25s;
    flex-shrink: 0;
  }

  .hamburger:hover { border-color: rgba(201,168,76,0.6); }

  .hamburger span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--off-white);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                opacity   0.25s ease,
                width     0.25s ease;
    transform-origin: center;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--gold); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--gold); }

  /* ─── MOBILE MENU DRAWER ─── */
  .mobile-menu {
    display: flex;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 199;
    background: var(--navy);
    flex-direction: column; align-items: center; justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px) scale(0.98);
    transition: opacity    0.35s cubic-bezier(0.22,1,0.36,1),
                transform  0.35s cubic-bezier(0.22,1,0.36,1),
                visibility 0s linear 0.35s;
    pointer-events: none;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
    transition: opacity    0.35s cubic-bezier(0.22,1,0.36,1),
                transform  0.35s cubic-bezier(0.22,1,0.36,1),
                visibility 0s linear 0s;
  }

  .mobile-menu::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .mobile-menu-close {
    position: absolute; top: 18px; right: 5%;
    width: 40px; height: 40px;
    background: none; border: 1px solid rgba(201,168,76,0.25); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--slate);
    font-size: 1.3rem; line-height: 1;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
  }

  .mobile-menu-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
  }

  .mobile-menu-links {
    list-style: none;
    display: flex; flex-direction: column; align-items: center;
    width: 100%;
    margin-bottom: 40px;
  }

  .mobile-menu-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .mobile-menu-links li:first-child { border-top: 1px solid var(--border); }

  .mobile-menu.open .mobile-menu-links li:nth-child(1) { opacity:1; transform:translateY(0); transition-delay:0.08s; }
  .mobile-menu.open .mobile-menu-links li:nth-child(2) { opacity:1; transform:translateY(0); transition-delay:0.13s; }
  .mobile-menu.open .mobile-menu-links li:nth-child(3) { opacity:1; transform:translateY(0); transition-delay:0.18s; }
  .mobile-menu.open .mobile-menu-links li:nth-child(4) { opacity:1; transform:translateY(0); transition-delay:0.23s; }
  .mobile-menu.open .mobile-menu-links li:nth-child(5) { opacity:1; transform:translateY(0); transition-delay:0.28s; }

  .mobile-menu-links a {
    display: block;
    padding: 20px 5%;
    font-size: 1.2rem;
    font-family: var(--font-serif);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--off-white);
    text-decoration: none;
    text-align: center;
    transition: color 0.2s, padding-left 0.2s;
  }

  .mobile-menu-links a:hover { color: var(--gold); padding-left: 8%; }

  .mobile-menu-cta {
    font-family: var(--font-sans);
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    border: none; cursor: pointer;
    padding: 16px 40px;
    box-shadow: 0 4px 20px rgba(201,168,76,0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.33s, transform 0.3s ease 0.33s,
                background 0.2s, box-shadow 0.2s;
  }

  .mobile-menu.open .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.3);
  }

  /* ─── CANVAS CHART ─── */
  canvas { display: block; width: 100% !important; }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav { padding: 18px 5%; }
    .nav-links { display: none; }
    .nav-cta   { display: none; }
    .hamburger { display: flex; }

    #hero { grid-template-columns: 1fr; }
    .hero-image-panel { min-height: 360px; order: -1; }
    .hero-content { padding: 40px 5% 60px; }

    .hero-stats { flex-direction: column; gap: 24px; }
    .hero-stat + .hero-stat { padding-left: 0; border-left: none; border-top: 1px solid var(--border); padding-top: 24px; }

    .about-grid,
    .strategy-intro,
    .exclusivity-inner { grid-template-columns: 1fr; gap: 48px; }

    .strategy-cards { grid-template-columns: 1fr; }
    .testimonials { grid-template-columns: 1fr; }

    .trust-row { flex-direction: column; }
    .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
    .trust-item:last-child { border-bottom: none; }

    #hero::after { display: none; }

    .proof-header { flex-direction: column; }
  }

  @media (max-width: 600px) {
    .hero-headline { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .btn-primary { width: 100%; justify-content: center; }
    .chart-wrapper { padding: 24px; }
    .testimonial { padding: 24px; }
    .about-philosophy p { font-size: 1rem; }
    .process-steps::before { display: none; }

    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }

    .footer-links {
      flex-wrap: wrap;
      gap: 12px 20px;
    }

    footer { overflow: hidden; }
  }
