
  :root {
    --ink: #0a0a08;
    --cream: #f5f0e8;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --gold-pale: #f7f0dc;
    --rust: #8b3a2a;
    --slate: #2c3340;
    --slate-mid: #4a5568;
    --slate-light: #8a96a8;
    --white: #fefefe;
    --grain: 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");
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--ink);
    color: var(--cream);
    overflow-x: hidden;
    cursor: default;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.4rem 4rem;
    background: rgba(10,10,8,0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    text-decoration: none;
  }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }

  .nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-light);
    text-decoration: none;
    transition: color 0.25s;
  }

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

  .nav-cta {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 0.55rem 1.5rem;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: background 0.25s, color 0.25s;
  }

  .nav-cta:hover { background: transparent; color: var(--gold); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
    gap: 4rem;
  }

  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 60% 60% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 20% 80%, rgba(139,58,42,0.06) 0%, transparent 60%),
      var(--ink);
  }

  .hero-grid-lines {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-content {
    position: relative; z-index: 2;
    padding-top: 5rem;
  }

  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex; align-items: center; gap: 0.8rem;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }

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

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 1.8rem;
    opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
  }

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

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.22rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--slate-light);
    max-width: 480px;
    margin-bottom: 3rem;
    opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
  }

  .hero-actions {
    display: flex; gap: 1.2rem; align-items: center;
    opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
  }

  .btn-primary {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold);
    padding: 1rem 2.2rem;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: all 0.3s;
    display: inline-block;
  }

  .btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-1px);
  }

  .btn-ghost {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-light);
    text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem;
    transition: color 0.25s;
  }

  .btn-ghost:hover { color: var(--cream); }
  .btn-ghost::after { content: '→'; transition: transform 0.25s; }
  .btn-ghost:hover::after { transform: translateX(4px); }

  /* HERO MAP VISUAL */
  .hero-visual {
    position: relative; z-index: 2;
    padding-top: 5rem;
    display: flex; justify-content: center;
    opacity: 0; animation: fadeIn 1.2s 0.6s forwards;
  }

  .world-card {
    width: 100%;
    max-width: 520px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
  }

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

  .world-card-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(201,168,76,0.1);
    margin-bottom: 1.5rem;
  }

  .market-item {
    background: rgba(10,10,8,0.9);
    padding: 1.2rem;
    position: relative;
  }

  .market-region {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 0.4rem;
  }

  .market-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
  }

  .market-change {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    color: #6fcf97;
    margin-top: 0.2rem;
  }

  .market-change.neg { color: #eb5757; }

  .market-bar {
    height: 2px;
    background: var(--gold);
    margin-top: 0.6rem;
    transform-origin: left;
    animation: growBar 1.5s 1s ease-out forwards;
    transform: scaleX(0);
  }

  .market-item:nth-child(1) .market-bar { width: 75%; }
  .market-item:nth-child(2) .market-bar { width: 45%; background: #6fcf97; }
  .market-item:nth-child(3) .market-bar { width: 88%; }
  .market-item:nth-child(4) .market-bar { width: 60%; background: #e8d5a3; }

  .world-card-footer {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--slate-light);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding-top: 1rem;
    display: flex; justify-content: space-between;
  }

  .pulse-dot {
    display: inline-block; width: 6px; height: 6px;
    border-radius: 50%; background: #6fcf97;
    margin-right: 0.4rem;
    animation: pulse 2s infinite;
  }

  /* ── TICKER ── */
  .ticker-strip {
    background: rgba(201,168,76,0.08);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 0.7rem 0;
    overflow: hidden;
    position: relative;
  }

  .ticker-inner {
    display: flex; gap: 4rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }

  .ticker-item {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-light);
    display: flex; align-items: center; gap: 0.5rem;
    flex-shrink: 0;
  }

  .ticker-item span { color: var(--gold); }
  .ticker-item .up { color: #6fcf97; }
  .ticker-item .down { color: #eb5757; }

  /* ── SECTIONS ── */
  section {
    padding: 7rem 4rem;
  }

  .section-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: flex; align-items: center; gap: 0.8rem;
  }

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

  .section-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
  }

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

  .section-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--slate-light);
    max-width: 560px;
  }

  /* ── OPPORTUNITY ── */
  #opportunity {
    background: rgba(201,168,76,0.03);
    border-top: 1px solid rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }

  .opportunity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }

  .opportunity-left {}

  .stat-stack {
    display: flex; flex-direction: column; gap: 1px;
  }

  .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,168,76,0.1);
    padding: 1.5rem 1.8rem;
    position: relative;
    transition: border-color 0.3s;
  }

  .stat-row:hover { border-color: rgba(201,168,76,0.35); }

  .stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-light);
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--cream);
  }

  .stat-number sup {
    font-size: 1rem;
    color: var(--gold);
    vertical-align: super;
  }

  .stat-note {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-top: 0.2rem;
  }

  /* ── PILLARS ── */
  #pillars { max-width: 1200px; margin: 0 auto; }

  .pillars-header { text-align: center; margin-bottom: 4rem; }
  .pillars-header .section-eyebrow { justify-content: center; }
  .pillars-header .section-eyebrow::before { display: none; }
  .pillars-header .section-body { max-width: 540px; margin: 0 auto; text-align: center; }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
  }

  .pillar {
    background: var(--ink);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .pillar:hover { background: rgba(201,168,76,0.04); }

  .pillar::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }

  .pillar:hover::after { transform: scaleX(1); }

  .pillar-num {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .pillar-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
  }

  .pillar-title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
  }

  .pillar-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--slate-light);
  }

  /* ── TRUST DEFICIT ── */
  #trust {
    background: var(--slate);
    position: relative;
    overflow: hidden;
  }

  #trust::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .trust-testimonials {
    display: flex; flex-direction: column; gap: 1.5rem;
  }

  .testimonial {
    background: rgba(10,10,8,0.5);
    border: 1px solid rgba(201,168,76,0.12);
    border-left: 3px solid var(--gold);
    padding: 1.8rem 2rem;
    position: relative;
  }

  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    color: var(--cream);
    margin-bottom: 1rem;
  }

  .testimonial-attr {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-light);
  }

  .testimonial-attr strong {
    color: var(--gold);
    font-weight: 500;
  }

  /* ── CASE STUDIES ── */
  #cases {
    max-width: 1200px; margin: 0 auto;
    padding: 7rem 4rem;
  }

  .cases-header { margin-bottom: 3.5rem; }

  .cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(201,168,76,0.1);
  }

  .case-card {
    background: var(--ink);
    padding: 2.5rem;
    position: relative;
    transition: background 0.3s;
  }

  .case-card:hover { background: rgba(201,168,76,0.03); }

  .case-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rust);
    background: rgba(139,58,42,0.15);
    border: 1px solid rgba(139,58,42,0.3);
    display: inline-block;
    padding: 0.25rem 0.7rem;
    margin-bottom: 1.2rem;
  }

  .case-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 0.8rem;
    line-height: 1.25;
  }

  .case-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--slate-light);
    margin-bottom: 1.5rem;
  }

  .case-metric {
    display: flex; gap: 2rem;
  }

  .metric-item {}

  .metric-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }

  .metric-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-top: 0.2rem;
  }

  .case-note {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.06em;
    color: rgba(138,150,168,0.6);
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201,168,76,0.08);
  }

  /* ── HOW IT WORKS ── */
  #how {
    background: rgba(201,168,76,0.025);
    border-top: 1px solid rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.08);
  }

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

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold), var(--gold), transparent);
    opacity: 0.25;
    z-index: 0;
  }

  .step {
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
  }

  .step-num {
    width: 56px; height: 56px;
    border: 1px solid rgba(201,168,76,0.3);
    background: var(--ink);
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.7rem;
  }

  .step-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--slate-light);
  }

  /* ── CTA BAND ── */
  #cta-mid {
    background: var(--gold);
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  #cta-mid::before {
    content: 'KEIRATED';
    position: absolute;
    font-family: 'Syne', sans-serif;
    font-size: 18vw;
    font-weight: 800;
    color: rgba(0,0,0,0.06);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.02em;
  }

  #cta-mid .headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 0.8rem;
    position: relative; z-index: 1;
  }

  #cta-mid .sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(10,10,8,0.6);
    margin-bottom: 2.5rem;
    position: relative; z-index: 1;
  }

  .btn-dark {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--ink);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 1px solid var(--ink);
    display: inline-block;
    transition: all 0.3s;
    position: relative; z-index: 1;
  }

  .btn-dark:hover {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }

  /* ── FAQ ── */
  #faq { max-width: 800px; margin: 0 auto; padding: 7rem 4rem; }

  .faq-list { margin-top: 3rem; }

  .faq-item {
    border-bottom: 1px solid rgba(201,168,76,0.12);
  }

  .faq-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--cream);
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    user-select: none;
    transition: color 0.25s;
  }

  .faq-q:hover { color: var(--gold); }

  .faq-q::after {
    content: '+';
    font-family: 'DM Mono', monospace;
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
  }

  .faq-item.open .faq-q::after { transform: rotate(45deg); }

  .faq-a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--slate-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }

  .faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 1.5rem;
  }

  /* ── FINAL CTA ── */
  #cta-final {
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  #cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  }

  #cta-final .headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1.5rem;
    position: relative;
  }

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

  #cta-final .sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--slate-light);
    max-width: 480px;
    margin: 0 auto 3rem;
    position: relative;
  }

  .cta-actions {
    display: flex; gap: 1.2rem; justify-content: center; align-items: center;
    position: relative;
  }

  /* ── CONTACT FORM ── */
  #contact {
    padding: 7rem 4rem;
    position: relative;
    overflow: hidden;
  }

  #contact::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 55% 70% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
      var(--ink);
    pointer-events: none;
  }

  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
    position: relative; z-index: 1;
  }

  .contact-left {}

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-detail-icon {
    width: 36px; height: 36px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .contact-detail-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--slate-light);
  }

  .contact-detail-text strong {
    display: block;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 0.25rem;
  }

  /* Form card */
  .contact-form-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(201,168,76,0.18);
    padding: 2rem 2rem 1.5rem;
    position: relative;
  }

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

  /* ── FOOTER ── */
  footer {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 4rem 4rem 2.5rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--slate-light);
    margin-bottom: 1.5rem;
  }

  .footer-contact {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--slate-light);
    line-height: 1.8;
  }

  .footer-contact a { color: var(--gold); text-decoration: none; }

  .footer-col-title {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }

  .footer-links { list-style: none; }

  .footer-links li {
    margin-bottom: 0.6rem;
  }

  .footer-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--slate-light);
    text-decoration: none;
    transition: color 0.25s;
  }

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

  .footer-bottom {
    border-top: 1px solid rgba(201,168,76,0.08);
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
  }

  .footer-legal {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    color: rgba(138,150,168,0.5);
    line-height: 1.6;
  }

  .footer-legal a { color: inherit; text-decoration: underline; }

  .disclaimer {
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.06em;
    color: rgba(138,150,168,0.4);
    max-width: 480px;
    text-align: right;
    line-height: 1.6;
  }

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

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

  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
  }

  @keyframes growBar {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── ABOUT / TEAM grid classes ── */
  .about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: start;
  }

  .about-four-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .about-split-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .team-four-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .team-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }

    #hero { grid-template-columns: 1fr; padding: 0 1.5rem; padding-top: 5rem; }
    .hero-visual { display: none; }

    section { padding: 4rem 1.5rem; }

    .opportunity-grid,
    .trust-inner,
    .cases-grid { grid-template-columns: 1fr; }

    .cases-grid { grid-template-columns: 1fr !important; }

    .pillars-grid,
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }

    #cta-mid, #cases { padding: 4rem 1.5rem; }
    #faq { padding: 4rem 1.5rem; }
    #cta-final { padding: 5rem 1.5rem; }

    /* ── Footer ── */
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    footer { padding: 3rem 1.5rem 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .disclaimer { text-align: center; max-width: 100%; }

    /* ── Contact / Get In Touch ── */
    #contact { padding: 4rem 1.5rem; }
    .contact-inner {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
    .contact-form-card { padding: 1.5rem 1rem 1rem; }
    .iframe-wrapper iframe { height: 740px; }

    /* ── About Us ── */
    #about { padding: 4rem 1.5rem; }
    .about-two-col {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-bottom: 3rem;
    }
    .about-four-col {
      grid-template-columns: 1fr 1fr;
    }
    .about-split-col {
      grid-template-columns: 1fr;
    }

    /* ── Our Team ── */
    #team { padding: 4rem 1.5rem; }
    .team-four-col {
      grid-template-columns: 1fr;
    }
    .team-two-col {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
  }

  @media (max-width: 500px) {
    .about-four-col { grid-template-columns: 1fr; }
    .hero-headline { font-size: 2.8rem; }
    .section-headline { font-size: 2rem; }
    nav { padding: 1rem 1.2rem; }
    .nav-logo { font-size: 1.1rem; }
    .nav-cta { padding: 0.45rem 1rem; font-size: 0.65rem; }
  }
