@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:       #0F0E0C;
  --ink-2:     #1C1A17;
  --ink-3:     #2B2720;
  --mid:       #6B6255;
  --ash:       #9E9080;
  --border:    #2B2720;
  --vellum:    #F2EDE5;
  --off-white: #FAFAF8;
  --gold:      #C9A96E;
  --gold-dk:   #8B6914;
  --sans:      'Space Grotesk', sans-serif;
  --serif:     'Cormorant Garamond', serif;
  --body:      'DM Sans', sans-serif;
  --nav-h:     calc(72px + env(safe-area-inset-top, 0px));
  --col:       clamp(24px, 5vw, 80px);
  --max:       1160px;
  --prose:     680px;
}

/* ── BASE ───────────────────────────────────────────────── */
body {
  background: var(--ink);
  color: var(--vellum);
  font-family: var(--body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.t-display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--vellum);
}

.t-heading {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(22px, 2.8vw, 36px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--vellum);
}

.t-subhead {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.35;
  color: var(--vellum);
}

.t-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.t-body {
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.78;
  color: var(--ash);
}

.t-body p + p { margin-top: 1.2em; }

.t-editorial {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  color: var(--vellum);
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--col);
}

.wrap--prose {
  max-width: var(--prose);
}

.section {
  padding: clamp(64px, 8vw, 120px) 0;
}

.section--sm { padding: clamp(40px, 5vw, 72px) 0; }

.section--ore  { background: var(--ink-2); }
.section--dark { background: var(--ink); }
.section--vellum {
  background: var(--vellum);
  color: var(--ink);
}
.section--vellum .t-heading { color: var(--ink); }
.section--vellum .t-body { color: #706C65; }
.section--vellum .t-label { color: var(--gold-dk); }
.section--vellum .t-display { color: var(--ink); }
.section--vellum .t-editorial { color: var(--ink); }

/* ── GOLD RULE ───────────────────────────────────────────── */
.rule {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.rule--light { background: var(--gold-dk); }

/* ── GRID ───────────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}

.grid-2--60-40 { grid-template-columns: 3fr 2fr; }
.grid-2--40-60 { grid-template-columns: 2fr 3fr; }
.grid-2--align { align-items: center; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(15,14,12,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.nav__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s;
}
.nav__mark span {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.nav__mark:hover { background: rgba(201,169,110,0.1); }

.nav__links {
  display: flex;
  list-style: none;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav__links > li { position: relative; }

.nav__links > li > a {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ash);
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links > li > a:hover,
.nav__links > li > a.active { color: var(--vellum); }

.nav__links .has-dd > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.5;
  transition: transform 0.2s;
}
.nav__links .has-dd:hover > a::after { transform: rotate(225deg) translateY(-2px); }

.nav__dd {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 240px;
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 300;
}
.nav__links .has-dd:hover .nav__dd {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.nav__dd a {
  display: flex; flex-direction: column; gap: 1px;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.nav__dd a:last-child { border-bottom: none; }
.nav__dd a:hover { background: var(--ink-3); }
.nav__dd .dd-t { font-family: var(--sans); font-size: 12px; font-weight: 500; color: var(--vellum); }
.nav__dd .dd-d { font-family: var(--body); font-size: 11px; color: var(--mid); font-weight: 300; }

.nav__right {
  display: flex; align-items: center; gap: 14px; flex-shrink: 0;
}

.nav__portal {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav__portal:hover { color: var(--ash); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--ash); transition: all 0.2s; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: opacity 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border: none;
}
.btn--gold  { background: var(--gold); color: var(--ink); padding: 13px 28px; }
.btn--gold:hover { opacity: 0.88; }
.btn--outline { border: 1px solid var(--gold); color: var(--gold); padding: 12px 28px; background: none; }
.btn--outline:hover { background: var(--gold); color: var(--ink); }
.btn--ghost { border: 1px solid var(--border); color: var(--ash); padding: 12px 28px; background: none; }
.btn--ghost:hover { border-color: var(--ash); color: var(--vellum); }
.btn--text { color: var(--gold); padding: 0; font-size: 11px; background: none; }
.btn--text:hover { opacity: 0.75; }
.btn--dark { border: 1px solid rgba(0,0,0,0.2); color: var(--ink); padding: 12px 28px; background: none; }
.btn--dark:hover { background: rgba(0,0,0,0.06); }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + clamp(48px, 7vw, 96px));
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--border);
}

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-header { margin-bottom: clamp(36px, 4vw, 56px); }
.section-header--center { text-align: center; }
.section-header--center .rule { margin: 0 auto 28px; }

/* ── PULL QUOTE ──────────────────────────────────────────── */
.blockquote {
  padding-left: 28px;
  border-left: 2px solid var(--gold);
}
.blockquote--light { border-left-color: var(--gold-dk); }

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider {
  width: 100%; height: 1px;
  background: var(--border);
  margin: clamp(40px, 5vw, 64px) 0;
}
.divider--gold { background: var(--gold); height: 2px; }
.divider--light { background: rgba(139,105,20,0.25); }

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none;
  transition: border-color 0.2s;
}
.card:hover { border-color: rgba(201,169,110,0.35); }
.card--top  { border-top: 2px solid var(--gold); }
.card--left { border-left: 2px solid var(--gold); }

.card__label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.card__title { font-family: var(--sans); font-weight: 500; font-size: clamp(15px, 1.4vw, 18px); color: var(--vellum); line-height: 1.3; }
.card__body  { font-family: var(--body); font-weight: 300; font-size: 14px; color: var(--ash); line-height: 1.7; flex: 1; }
.card__cta   { font-family: var(--sans); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); transition: letter-spacing 0.2s; }
.card:hover .card__cta { letter-spacing: 0.2em; }

/* ── STAT STRIP ──────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__val {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--gold); margin-bottom: 8px; line-height: 1.3;
}
.stat-item__label {
  font-family: var(--body); font-weight: 300;
  font-size: 13px; color: var(--ash); line-height: 1.5;
}

/* ── FORM ────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.form-label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.form-input,
.form-textarea,
.form-select {
  background: var(--ink-2);
  border: 1px solid var(--border);
  color: var(--vellum);
  font-family: var(--body); font-size: 15px; font-weight: 300;
  padding: 13px 16px; width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--mid); }
.form-textarea { resize: vertical; min-height: 140px; }

/* Light form (on vellum bg) */
.form--light .form-input,
.form--light .form-textarea,
.form--light .form-select {
  background: white;
  border-color: rgba(0,0,0,0.12);
  color: var(--ink);
}
.form--light .form-input:focus,
.form--light .form-textarea:focus { border-color: var(--gold-dk); }
.form--light .form-label { color: var(--gold-dk); }
.form--light .form-input::placeholder,
.form--light .form-textarea::placeholder { color: #aaa; }

/* ── CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ── THINKING / ARTICLE ──────────────────────────────────── */
.article-index { display: flex; flex-direction: column; gap: 0; }
.article-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: clamp(20px, 2.5vw, 32px) 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}
.article-row:first-child { border-top: 1px solid var(--border); }
.article-row:hover .article-title { color: var(--gold); }
.article-title { font-family: var(--sans); font-weight: 500; font-size: clamp(15px, 1.4vw, 18px); color: var(--vellum); margin-bottom: 6px; transition: color 0.2s; }
.article-standfirst { font-family: var(--body); font-weight: 300; font-size: 14px; color: var(--ash); line-height: 1.6; }
.article-meta { font-family: var(--sans); font-size: 11px; color: var(--mid); letter-spacing: 0.06em; white-space: nowrap; }

/* Prose article body */
.prose { max-width: var(--prose); }
.prose h2 { font-family: var(--sans); font-weight: 600; font-size: clamp(18px, 1.8vw, 22px); text-transform: uppercase; letter-spacing: 0.02em; color: var(--vellum); margin: 2.4em 0 0.8em; }
.prose p { font-family: var(--body); font-weight: 300; font-size: clamp(15px, 1.1vw, 17px); line-height: 1.78; color: var(--ash); margin-bottom: 1.2em; }
.prose p:first-child { font-size: clamp(17px, 1.4vw, 20px); color: var(--vellum); font-weight: 300; }
.prose blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2vw, 24px); line-height: 1.45; color: var(--vellum); padding-left: 24px; border-left: 2px solid var(--gold); margin: 2em 0; }

/* ── DIAGNOSTIC DIMENSIONS ───────────────────────────────── */
.dim-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; }
.dim-card {
  padding: clamp(24px, 2.5vw, 36px) clamp(20px, 2vw, 28px);
  background: var(--ink-2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  display: flex; flex-direction: column; gap: 12px;
}
.dim-num { font-family: var(--sans); font-size: 32px; font-weight: 300; color: rgba(201,169,110,0.2); line-height: 1; }
.dim-title { font-family: var(--sans); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--vellum); }
.dim-body { font-family: var(--body); font-weight: 300; font-size: 13px; color: var(--ash); line-height: 1.65; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--ink-2);
  border-top: 1px solid var(--border);
  padding: clamp(56px, 7vw, 96px) 0 calc(clamp(32px, 4vw, 48px) + env(safe-area-inset-bottom, 0px));
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.footer__wm { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.footer__wm .l1 { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--vellum); line-height: 1; }
.footer__wm .hr { width: 100%; height: 1px; background: var(--gold); margin: 3px 0; }
.footer__wm .l2 { font-family: var(--sans); font-weight: 300; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ash); line-height: 1; }
.footer__wm .tag { font-family: var(--body); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 6px; opacity: 0.8; }
.footer__desc { font-family: var(--body); font-weight: 300; font-size: 13px; color: var(--mid); line-height: 1.7; max-width: 280px; }
.footer__col-title { font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-family: var(--body); font-weight: 300; font-size: 13px; color: var(--ash); transition: color 0.2s; }
.footer__links a:hover { color: var(--vellum); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer__legal { font-family: var(--body); font-size: 11px; color: var(--mid); line-height: 1.7; }
.footer__legal a { color: var(--gold); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-2--60-40, .grid-2--40-60 { grid-template-columns: 1fr 1fr; }
  .dim-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --nav-h: calc(64px + env(safe-area-inset-top, 0px)); }
  .nav__links { display: none; }
  .nav__portal { display: none; }
  .nav__burger { display: flex; }
  .grid-2, .grid-2--60-40, .grid-2--40-60 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2n) { }
  .stat-item:last-child { border-bottom: none; }
  .dim-grid { grid-template-columns: 1fr 1fr; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--border);
    padding: 0 var(--col) 24px; gap: 0;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto; z-index: 199;
  }
  .nav__links.open > li > a { padding: 15px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
  .nav__dd { position: static; opacity: 1; pointer-events: all; transform: none; border: none; border-top: none; background: transparent; padding-left: 14px; min-width: unset; }
  .nav__dd a { padding: 9px 0; border-bottom: none; }
  .nav__dd .dd-d { display: none; }
  .cta-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .dim-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 10px; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .btn { justify-content: center; }
  .article-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 400px) {
  :root { --nav-h: calc(60px + env(safe-area-inset-top, 0px)); }
  .nav__mark { width: 36px; height: 36px; }
  .stat-strip { grid-template-columns: 1fr; }
}

/* ── MOBILE POLISH (per-pattern overrides) ───────────────── */
@media (max-width: 900px) {
  /* about.html — 5-up principles grid collapses to 2-up at tablet, 1-up at phone */
  .principles-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* thinking.html — article rows drop the trailing read-meta column on mobile;
     "Read →" hint becomes part of the title link instead. */
  .article-list > a {
    grid-template-columns: 36px 1fr !important;
    gap: 14px !important;
    padding: 22px 0 !important;
  }
  .article-list > a > div:last-child { display: none !important; }

  /* bootcamp.html — schedule rows stack: time as a label, description, duration as small caption */
  .schedule > div {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    padding: 16px 0 !important;
    align-items: start !important;
  }
  .schedule > div > div:first-child {
    color: var(--gold) !important;
    letter-spacing: 0.14em !important;
  }
  .schedule > div > div:last-child {
    text-align: left !important;
    color: var(--mid) !important;
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
  }

  /* index.html — diagnostic numerals on 5-dimension cards stay tame on mobile */
  .dim-grid > div > div:first-child { font-size: 22px !important; }

  /* diagnostic.html — five-dimension cards: shrink the giant 01–05 numeral */
  .section--dark .grid-2--40-60 > div:first-child > div:first-child {
    font-size: 38px !important;
    margin-bottom: 6px !important;
  }
}

@media (max-width: 520px) {
  .principles-grid { grid-template-columns: 1fr !important; }
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease forwards; }
.d1 { animation-delay: 0.05s; opacity: 0; }
.d2 { animation-delay: 0.15s; opacity: 0; }
.d3 { animation-delay: 0.28s; opacity: 0; }
.d4 { animation-delay: 0.42s; opacity: 0; }

/* ── LEGAL PAGES (privacy / cookies / terms) ─────────────── */
.legal-prose { max-width: 780px; margin: 0 auto; }
.legal-prose > section { margin-top: 56px; }
.legal-prose > section:first-child { margin-top: 0; }

.legal-num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: rgba(201,169,110,0.22);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.legal-prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  color: var(--vellum);
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}
.legal-prose h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--vellum);
  margin-top: 28px;
  margin-bottom: 14px;
}
.legal-prose p,
.legal-prose ul,
.legal-prose ol {
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ash);
  margin-bottom: 16px;
}
.legal-prose ul, .legal-prose ol { padding-left: 0; list-style: none; }
.legal-prose ul li,
.legal-prose ol li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.legal-prose ul li::before {
  content: ""; position: absolute; left: 2px; top: 13px;
  width: 10px; height: 1px; background: var(--gold);
}
.legal-prose strong { color: var(--vellum); font-weight: 500; }
.legal-prose em { color: var(--vellum); font-style: italic; }
.legal-prose a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,169,110,0.3); }
.legal-prose a:hover { border-bottom-color: var(--gold); }
.legal-prose blockquote {
  border-left: 2px solid var(--gold);
  background: rgba(201,169,110,0.05);
  padding: 20px 24px;
  margin: 24px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: var(--vellum);
}

table.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 24px;
  font-family: var(--body);
  font-weight: 300;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ash);
}
table.legal-table th,
table.legal-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.legal-table th {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 12px;
}
table.legal-table td:first-child {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  color: var(--vellum);
  width: 38%;
}

.legal-meta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 24px;
}
.legal-meta span { color: var(--gold); }

.legal-footer-card {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-family: var(--body);
  font-weight: 300;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--mid);
}
.legal-footer-card strong { color: var(--ash); font-weight: 500; display: block; margin-bottom: 6px; }
.legal-footer-card a { color: var(--gold); border-bottom: 1px solid rgba(201,169,110,0.3); text-decoration: none; }

@media (max-width: 640px) {
  table.legal-table { font-size: 12.5px; }
  table.legal-table th, table.legal-table td { padding: 12px 10px; }
  table.legal-table td:first-child { width: 42%; }
  .legal-prose > section { margin-top: 44px; }
}
