/* SGE · Synergy Global Ecosystems · style.css · v2.0 · May 2026 */

/* ─── PROPERTIES ─── */
:root {
  --ink:     #0A0A0A;
  --field:   #FFFFFF;
  --bone:    #F6F2EA;
  --gold:    #C9A227;
  --gold-dim: rgba(201,162,39,.12);
  --grey:    #2B2B2B;
  --mid:     #6B6B6B;
  --teal:    #0E5C61;
  --crimson: #8B1E2C;
  --font-d: 'Fraunces', Georgia, serif;
  --font-b: 'Cormorant Garamond', Georgia, serif;
  --font-s: 'Inter', system-ui, sans-serif;
  --font-m: 'JetBrains Mono', monospace;
  --h1: clamp(2.75rem, 8vw, 5rem);
  --h2: clamp(2rem, 5vw, 3rem);
  --h3: clamp(1.25rem, 3vw, 1.625rem);
  --lg: clamp(1.0625rem, 2.5vw, 1.25rem);
  --base: clamp(.9375rem, 2vw, 1.0625rem);
  --sm:  .875rem;
  --xs:  .75rem;
  --cap: 1200px;
  --gap: clamp(1.25rem, 5vw, 3.5rem);
  --sec: clamp(5rem, 10vw, 9rem);
  --t: 180ms ease-out;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-s);
  font-size: var(--base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--field);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: 0; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── ACCESS ─── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 0; }
@media(prefers-reduced-motion:reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ─── LAYOUT ─── */
.wrap { width: min(var(--cap), 100%); padding-inline: var(--gap); margin-inline: auto; }
.read { max-width: 700px; }
.grid-2 { display: grid; gap: 2rem; }
@media(min-width:768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* ─── TYPE ─── */
h1 {
  font-family: var(--font-d);
  font-size: var(--h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.025em;
}
h2 {
  font-family: var(--font-d);
  font-size: var(--h2);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
}
h3 {
  font-family: var(--font-s);
  font-size: var(--h3);
  font-weight: 600;
  line-height: 1.3;
}
h4 { font-family: var(--font-s); font-weight: 600; font-size: var(--base); }
p + p { margin-top: 1rem; }
.brand {
  font-family: var(--font-b);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-variant: small-caps;
  font-size: var(--sm);
}
.mono { font-family: var(--font-m); font-size: var(--xs); }

/* ─── EYEBROW (section labels) ─── */
.eye {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-s);
  font-size: var(--xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.eye::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  font-size: var(--sm);
  font-weight: 500;
  letter-spacing: .04em;
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: #b08c1a; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,.3);
  color: var(--field);
}
.btn-ghost:hover { border-color: var(--field); background: rgba(255,255,255,.06); }
.btn-teal {
  background: var(--teal);
  color: var(--field);
}
.btn-teal:hover { background: #094446; }
.btn-ink {
  background: var(--ink);
  color: var(--field);
}
.btn-ink:hover { background: var(--grey); }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,10,10,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand { display: flex; align-items: center; gap: .75rem; }
.nav-mark { width: 36px; height: 36px; flex-shrink: 0; }
.nav-links { display: none; gap: 2.25rem; align-items: center; }
.nav-links a {
  font-size: var(--sm);
  font-weight: 500;
  color: var(--grey);
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta { display: none; }
.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-nav { display: none; background: var(--field); border-top: 1px solid rgba(10,10,10,.05); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 1rem var(--gap); font-weight: 500; color: var(--grey); border-bottom: 1px solid rgba(10,10,10,.04); }
.mobile-nav .btn { margin: 1.25rem var(--gap) .5rem; }
@media(min-width:1024px) { .nav-links, .nav-cta { display: flex; } .nav-toggle { display: none; } }

/* ─── HERO ─── */
.hero {
  background: var(--ink);
  color: var(--field);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: var(--sec) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,162,39,.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.hero-text { max-width: 700px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .875rem;
  font-size: var(--xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--field);
  line-height: 1.07;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,.7);
}
.hero-lead {
  font-size: var(--lg);
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-top: 1.75rem;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
}
.hero-mark {
  display: none;
  opacity: .9;
}
@media(min-width:1024px) {
  .hero-inner { grid-template-columns: 1fr 340px; }
  .hero-mark { display: flex; justify-content: center; align-items: center; }
  .hero-mark svg { width: 320px; height: 320px; }
}

/* ─── TRUST STRIP ─── */
.strip {
  background: var(--bone);
  border-bottom: 1px solid rgba(10,10,10,.07);
  padding: 1rem 0;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1rem;
  align-items: center;
}
.strip-item {
  font-size: var(--xs);
  font-weight: 500;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.strip-sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SECTION BASE ─── */
.sec { padding: var(--sec) 0; }
.sec-bone { background: var(--bone); }
.sec-ink { background: var(--ink); color: var(--field); }
.sec h2 { margin-bottom: 1rem; }
.sec-lead {
  font-size: var(--lg);
  color: var(--mid);
  max-width: 600px;
  margin-top: -.25rem;
  margin-bottom: 3.5rem;
  line-height: 1.65;
}
.sec-ink .sec-lead { color: rgba(255,255,255,.55); }

/* ─── REGIME CARDS ─── */
.regime-grid { display: grid; gap: 1px; background: rgba(10,10,10,.08); }
.regime-card {
  background: var(--field);
  padding: 2rem 1.75rem;
  border-top: 2px solid var(--gold);
}
.sec-bone .regime-card { background: var(--field); }
.regime-label {
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .625rem;
}
.regime-date {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.regime-card p { font-size: var(--sm); color: var(--mid); line-height: 1.6; }
.risk-badge {
  display: inline-block;
  background: var(--crimson);
  color: var(--field);
  font-size: .65rem;
  font-weight: 700;
  padding: 2px .625rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 1rem;
}
@media(min-width:640px) { .regime-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px) { .regime-grid { grid-template-columns: repeat(4,1fr); } }

/* ─── APPROACH PILLARS ─── */
.pillars { display: grid; gap: 3.5rem; margin-top: 1rem; }
.pillar { border-top: 1px solid rgba(10,10,10,.08); padding-top: 2rem; }
.pillar-n {
  font-family: var(--font-m);
  font-size: var(--xs);
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.pillar h3 {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-bottom: .875rem;
}
.pillar p { color: var(--mid); font-size: var(--sm); }
@media(min-width:768px) { .pillars { grid-template-columns: repeat(3,1fr); } }

/* ─── SERVICE TILES ─── */
.tiles { display: grid; gap: 1.5rem; margin-top: .5rem; }
.tile {
  border-left: 2px solid var(--gold);
  padding: 1.75rem 1.5rem;
  background: var(--field);
  transition: background var(--t);
  position: relative;
}
.sec-bone .tile { background: rgba(255,255,255,.7); }
.tile:hover { background: rgba(201,162,39,.04); }
.tile-n {
  font-family: var(--font-m);
  font-size: var(--xs);
  color: var(--gold);
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.tile h3 { font-size: 1rem; line-height: 1.4; margin-bottom: .625rem; }
.tile p { font-size: var(--sm); color: var(--mid); line-height: 1.6; }
.tile-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: var(--sm);
  font-weight: 500;
  color: var(--teal);
  margin-top: 1.25rem;
  transition: gap var(--t);
}
.tile-link:hover { gap: .625rem; }
@media(min-width:640px) { .tiles { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1100px) { .tiles { grid-template-columns: repeat(5,1fr); } }

/* ─── PROOF STRIP ─── */
.proof {
  background: var(--ink);
  color: var(--field);
  padding: clamp(4rem,8vw,7rem) 0;
}
.proof-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2.5rem 1.5rem; }
.proof-item {}
.proof-num {
  font-family: var(--font-d);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  color: var(--field);
  line-height: 1;
}
.proof-num sup { font-size: 50%; vertical-align: top; margin-top: .4em; color: var(--gold); }
.proof-lbl {
  font-size: var(--xs);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-top: .5rem;
  line-height: 1.5;
}
@media(min-width:640px) { .proof-grid { grid-template-columns: repeat(4,1fr); } }
@media(min-width:1024px) { .proof-grid { grid-template-columns: repeat(8,1fr); } }

/* ─── INSIGHT CARD ─── */
.insight-card {
  background: var(--field);
  border-top: 2px solid var(--gold);
  padding: 2.5rem;
  max-width: 800px;
}
.insight-venue {
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.insight-card h3 { font-family: var(--font-d); font-size: clamp(1.25rem,3vw,1.75rem); font-weight: 600; line-height: 1.25; }
.insight-card p { font-size: var(--sm); color: var(--mid); margin-top: .625rem; }
.insight-read {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: var(--sm);
  font-weight: 500;
  color: var(--teal);
  margin-top: 1.5rem;
  transition: gap var(--t);
}
.insight-read:hover { gap: .625rem; }

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--ink);
  color: var(--field);
  padding: var(--sec) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,162,39,.06) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta h2 { color: var(--field); position: relative; }
.final-cta p {
  color: rgba(255,255,255,.55);
  font-size: var(--lg);
  max-width: 500px;
  margin: 1.25rem auto 2.75rem;
  position: relative;
}
.cta-sub {
  font-size: var(--xs);
  color: rgba(255,255,255,.3);
  margin-top: 1.25rem;
  letter-spacing: .04em;
  position: relative;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 5.5rem 0 3rem;
}
.footer-top {
  display: grid;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 2.5rem;
}
.footer-brand {}
.footer-brand .brand { color: rgba(255,255,255,.8); font-size: var(--sm); }
.footer-brand p { font-size: var(--xs); color: rgba(255,255,255,.35); max-width: 280px; line-height: 1.8; margin-top: .875rem; }
.footer-nav-group {}
.footer-nav-label {
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 1.125rem;
}
.footer-nav-group a {
  display: block;
  font-size: var(--sm);
  color: rgba(255,255,255,.5);
  padding: .25rem 0;
  transition: color var(--t);
}
.footer-nav-group a:hover { color: var(--field); }
.footer-tm { font-size: var(--xs); color: rgba(255,255,255,.25); line-height: 1.9; max-width: 640px; }
@media(min-width:768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--bone);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(10,10,10,.07);
}
.page-eyebrow {
  font-size: var(--xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.125rem;
}
.page-hero h1 { max-width: 780px; font-size: clamp(2rem, 5.5vw, 3.5rem); }
.page-hero .lead { font-size: var(--lg); color: var(--mid); max-width: 620px; margin-top: 1.25rem; }

/* ─── CREDENTIALS ─── */
.cred-block { margin-bottom: 3.5rem; }
.cred-block-label {
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(10,10,10,.09);
  padding-bottom: .875rem;
  margin-bottom: 1.75rem;
}
.cred-row {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(10,10,10,.05);
  display: grid;
  gap: .25rem;
}
.cred-title { font-weight: 600; font-size: var(--base); }
.cred-inst { font-size: var(--sm); color: var(--mid); }
.cred-note { font-size: var(--sm); color: var(--mid); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px .625rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: .5rem;
}
.badge::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.badge-ok { background: rgba(31,111,74,.1); color: #1A5C3A; }
.badge-pend { background: rgba(201,162,39,.14); color: #7A6010; }

/* ─── SERVICES (detail) ─── */
.svc-anchor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(10,10,10,.08);
  margin-bottom: 2rem;
  position: sticky;
  top: 68px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  z-index: 10;
}
.svc-anchor-strip a {
  font-size: var(--xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  padding: .375rem .75rem;
  border: 1px solid rgba(10,10,10,.12);
  transition: border-color var(--t), color var(--t);
}
.svc-anchor-strip a:hover { border-color: var(--gold); color: var(--ink); }
.svc-block {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(10,10,10,.07);
}
.svc-block:last-child { border-bottom: none; }
.svc-n { font-family: var(--font-m); font-size: var(--xs); color: var(--gold); letter-spacing: .06em; margin-bottom: .875rem; }
.svc-block h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
.svc-fear {
  background: var(--bone);
  border-left: 2px solid var(--gold);
  padding: 1.375rem 1.75rem;
  margin-bottom: 2.25rem;
  font-style: italic;
  color: var(--mid);
  font-size: var(--sm);
  line-height: 1.7;
}
.svc-body { display: grid; gap: 2rem; margin-top: 2rem; }
.svc-deliverables { background: var(--bone); padding: 1.75rem; }
.svc-deliverables h5 {
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.25rem;
}
.svc-deliverables li {
  display: flex;
  gap: .625rem;
  font-size: var(--sm);
  padding: .625rem 0;
  border-bottom: 1px solid rgba(10,10,10,.05);
  line-height: 1.55;
}
.svc-deliverables li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.svc-pricing { border: 1px solid rgba(10,10,10,.1); padding: 1.75rem; }
.svc-pricing h5 {
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .875rem;
}
.price { font-family: var(--font-d); font-size: 2rem; font-weight: 600; line-height: 1.1; }
.price-sub { font-size: var(--xs); color: var(--mid); margin-top: .5rem; line-height: 1.6; }
.svc-independence {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--gold);
  font-size: var(--sm);
  font-style: italic;
}
@media(min-width:768px) { .svc-body { grid-template-columns: 1fr 1fr; } }

/* ─── CONTACT ─── */
.contact-grid { display: grid; gap: 4rem; }
.contact-embed {
  background: var(--bone);
  border-top: 2px solid var(--gold);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3.5rem;
  text-align: center;
}
.contact-form { display: grid; gap: 1.25rem; }
.field { display: grid; gap: .375rem; }
.field label { font-size: var(--sm); font-weight: 500; color: var(--grey); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .875rem 1.125rem;
  border: 1px solid rgba(10,10,10,.15);
  background: var(--field);
  font-family: var(--font-s);
  font-size: var(--base);
  transition: border-color var(--t);
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; gap: 1.25rem; }
.promise { font-size: var(--xs); color: var(--mid); margin-top: .75rem; line-height: 1.6; }
.form-success {
  display: none;
  background: rgba(31,111,74,.08);
  border: 1px solid #1F6F4A;
  padding: 1.5rem;
  text-align: center;
}
.form-success.visible { display: block; }
.form-success p { color: #1A5C3A; font-size: var(--sm); font-weight: 500; }
@media(min-width:640px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

/* ─── INSIGHTS ─── */
.pub-list { display: grid; gap: 0; }
.pub-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(10,10,10,.07);
  align-items: start;
}
.pub-venue {
  font-size: var(--xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 3px;
  line-height: 1.5;
}
.pub-row h3 { font-size: var(--base); font-weight: 600; line-height: 1.4; }
.pub-row p { font-size: var(--sm); color: var(--mid); margin-top: .375rem; }
.pub-status { font-size: var(--xs); color: rgba(10,10,10,.38); margin-top: .5rem; }
.newsletter-panel {
  background: var(--ink);
  color: var(--field);
  border-top: 2px solid var(--gold);
  padding: 3.5rem;
  margin-top: 4rem;
}
.newsletter-panel h3 { font-family: var(--font-d); font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; margin-bottom: .625rem; }
.newsletter-panel p { font-size: var(--sm); color: rgba(255,255,255,.5); }
.newsletter-form { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.newsletter-form input {
  flex: 1;
  min-width: 260px;
  padding: .875rem 1.125rem;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  font-family: var(--font-s);
  font-size: var(--base);
  color: var(--field);
  border-radius: 0;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: var(--gold); outline: none; }

/* ─── LEGAL ─── */
.legal-body { max-width: 740px; }
.legal-body h2 {
  font-family: var(--font-d);
  font-size: 1.625rem;
  margin: 3.5rem 0 .875rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(10,10,10,.07);
}
.legal-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.legal-body h3 { font-size: var(--base); margin: 1.75rem 0 .5rem; }
.legal-body p, .legal-body li { font-size: var(--sm); color: var(--mid); margin-top: .5rem; line-height: 1.75; }
.legal-body ul { padding-left: 1.375rem; list-style: disc; margin-top: .75rem; }