/* ============================================
   PANAL — SITE STYLES
   Mobile-first, brand book aligned
   ============================================ */

:root {
  /* Brand palette from the book */
  --black: #0E0C09;
  --black-2: #181410;
  --black-3: #221C13;
  --line: #2C2418;
  --line-bright: #3A2F1E;
  --gold: #B8862E;
  --gold-deep: #8E6520;
  --gold-bright: #D49E32;
  --honey: #E5B95A;
  --honey-bright: #F0CC73;
  --honey-soft: #F5DBA0;
  --ivory: #F4EEDF;
  --ivory-2: #E9E0CB;
  --ivory-3: #C8B98F;
  --ivory-mute: #8E8472;
  --ivory-faint: #DDD0B6;
  --rust: #9A4528;
  --moss: #7A8A52;
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--ivory);
  color: var(--black);
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

.mono { font-family: 'JetBrains Mono', monospace; }

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ============================================
   LANG VISIBILITY
   ============================================ */
[data-lang] { display: none; }
[data-lang="es"] { display: inline; }
html[lang="en"] [data-lang="es"] { display: none; }
html[lang="en"] [data-lang="en"] { display: inline; }

/* Block-level lang elements */
.lang-block[data-lang] { display: none; }
.lang-block[data-lang="es"] { display: block; }
html[lang="en"] .lang-block[data-lang="es"] { display: none; }
html[lang="en"] .lang-block[data-lang="en"] { display: block; }

/* ============================================
   NAVIGATION
   ============================================ */
nav.top {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 238, 223, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ivory-faint);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .04em;
  color: var(--black);
  text-transform: uppercase;
}

.wordmark .hex {
  width: 14px; height: 16px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.nav-spacer { flex: 1; }

.lang-toggle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ivory-mute);
  background: transparent;
  border: 1px solid var(--ivory-faint);
  padding: 7px 10px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all .15s;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--black); }
.lang-toggle .active { color: var(--gold); font-weight: 600; }

.nav-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--ivory);
  padding: 9px 14px;
  border: 1px solid var(--black);
  font-weight: 600;
  transition: all .15s;
}
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* Hide desktop nav links on mobile, show them above 720px */
.nav-links { display: none; }
@media (min-width: 720px) {
  .nav-links {
    display: flex;
    gap: 22px;
    margin-left: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ivory-mute);
  }
  .nav-links a:hover { color: var(--gold); }
}

/* ============================================
   HERO — homepage split path
   ============================================ */
section.hero {
  padding: 56px 18px 72px;
  background-image:
    linear-gradient(rgba(184, 134, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 134, 46, 0.04) 1px, transparent 1px),
    radial-gradient(700px 400px at 50% 110%, rgba(184, 134, 46, 0.10), transparent 65%);
  background-size: 50px 50px, 50px 50px, auto;
}
@media (min-width: 720px) {
  section.hero { padding: 88px 24px 100px; }
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.hero-pre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  background: var(--ivory-2);
  border: 1px solid var(--ivory-faint);
  padding: 7px 11px;
  margin-bottom: 28px;
}
.hero-pre::before {
  content: '';
  width: 6px; height: 7px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

h1.hero-h {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 9vw, 80px);
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--black);
  margin-bottom: 24px;
  max-width: 16ch;
}
h1.hero-h em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 1.7vw, 18px);
  color: #2A2218;
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 36px;
}
.hero-sub strong { font-weight: 700; color: var(--black); }

/* The dual path picker — the heart of the homepage */
.paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}
@media (min-width: 720px) {
  .paths { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.path {
  background: var(--ivory);
  border: 1px solid var(--ivory-faint);
  padding: 28px 24px 26px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.path::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--gold);
  transition: width .25s ease;
}
.path:hover::before { width: 100%; }
.path:hover {
  background: #FBF6E6;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -16px rgba(184, 134, 46, 0.35);
}
.path .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.path .h {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.018em;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.18;
}
.path .h em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.path .p {
  font-size: 14px;
  color: #2A2218;
  line-height: 1.55;
  margin-bottom: 20px;
}
.path .arrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   STATS BAR
   ============================================ */
section.stats {
  background: var(--black);
  padding: 22px 18px;
  border-top: 1px solid var(--line-bright);
  border-bottom: 1px solid var(--line-bright);
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  color: var(--ivory);
}
@media (min-width: 720px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.stat-num {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -.02em;
  color: var(--honey);
  line-height: 1;
  flex-shrink: 0;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.4;
  opacity: .92;
}

/* ============================================
   STANDARD BLOCK
   ============================================ */
section.block {
  padding: 72px 18px 72px;
  border-bottom: 1px solid var(--ivory-faint);
}
@media (min-width: 720px) {
  section.block { padding: 96px 24px 96px; }
}
.block-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before { content: '⬢ '; margin-right: 4px; }
h2.block-h {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.08;
  letter-spacing: -.022em;
  color: var(--black);
  margin-bottom: 22px;
  max-width: 22ch;
}
h2.block-h em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.block-lede {
  font-size: clamp(15px, 1.55vw, 18px);
  color: #2A2218;
  line-height: 1.6;
  max-width: 60ch;
  margin-bottom: 36px;
}

/* ============================================
   MODULES GRID — used in both onboarding pages
   ============================================ */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--ivory-faint);
  border: 1px solid var(--ivory-faint);
  margin-top: 16px;
}
@media (min-width: 580px) {
  .modules-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .modules-grid { grid-template-columns: repeat(3, 1fr); }
}
.mod {
  background: var(--ivory);
  padding: 26px 22px 24px;
  transition: background .15s;
}
.mod:hover { background: #FBF6E6; }
.mod-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 10px;
}
.mod-name {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.012em;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.22;
}
.mod-desc {
  font-size: 13.5px;
  color: #2A2218;
  line-height: 1.55;
  margin-bottom: 12px;
}
.mod-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  padding-top: 10px;
  border-top: 1px solid var(--ivory-faint);
}

/* ============================================
   PAYMENT BAND — Yappy / Apple Pay / Google Pay
   ============================================ */
section.pay {
  background: linear-gradient(160deg, var(--black) 0%, var(--black-2) 100%);
  color: var(--ivory);
  padding: 72px 18px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) {
  section.pay { padding: 96px 24px; }
}
section.pay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(700px 400px at 90% 50%, rgba(229, 185, 90, 0.08), transparent 60%);
  pointer-events: none;
}
.pay-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pay-inner .eyebrow { color: var(--honey); }
.pay-inner h2.block-h { color: var(--ivory); }
.pay-inner h2.block-h em { color: var(--honey); }
.pay-inner .block-lede { color: var(--ivory-3); }

.pay-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 36px;
}
@media (min-width: 540px) {
  .pay-methods { grid-template-columns: repeat(3, 1fr); }
}
.pay-method {
  background: var(--black-2);
  border: 1px solid var(--line-bright);
  padding: 24px 20px;
  text-align: center;
  transition: all .2s;
}
.pay-method:hover {
  border-color: var(--honey);
  background: linear-gradient(160deg, rgba(229, 185, 90, 0.06), var(--black-2));
}
.pay-mark {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pay-mark .yappy-mark {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--honey);
  letter-spacing: -.01em;
}
.pay-mark .yappy-mark::after {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--honey);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
}
.pay-mark svg { height: 26px; width: auto; fill: var(--ivory); }
.pay-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory-3);
  margin-bottom: 6px;
}
.pay-desc {
  font-size: 12px;
  color: var(--ivory-mute);
  line-height: 1.5;
}

.pay-foot {
  margin-top: 32px;
  padding: 18px 22px;
  background: rgba(229, 185, 90, 0.06);
  border: 1px solid var(--gold-deep);
  border-left: 3px solid var(--honey);
  font-size: 13.5px;
  color: var(--ivory);
  line-height: 1.6;
}
.pay-foot strong { color: var(--honey); font-weight: 600; }

/* ============================================
   HEXA STRIP — sister brand mention
   ============================================ */
section.hexa-strip {
  background: var(--honey);
  color: var(--black);
  padding: 56px 18px;
  border-bottom: 1px solid var(--gold);
}
@media (min-width: 720px) {
  section.hexa-strip { padding: 72px 24px; }
}
.hexa-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 720px) {
  .hexa-strip-inner { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}
.hexa-strip-inner .eyebrow { color: var(--black); }
.hexa-strip h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 40px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--black);
  margin-bottom: 14px;
}
.hexa-strip h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
}
.hexa-strip p {
  font-size: 15px;
  color: #2A2218;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 50ch;
}
.hexa-strip .btn-black {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--ivory);
  padding: 13px 18px;
  font-weight: 600;
  border: 1px solid var(--black);
  transition: all .15s;
}
.hexa-strip .btn-black:hover {
  background: transparent;
  color: var(--black);
}
.hexa-strip .btn-black::after { content: '→'; font-family: 'Nunito Sans', sans-serif; }

.hexa-locker-mock {
  background: var(--black);
  border: 1px solid var(--gold-deep);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.hex-cell {
  aspect-ratio: 1;
  border: 1px solid var(--line-bright);
  background: var(--black-2);
  position: relative;
}
.hex-cell.lit { background: var(--honey); border-color: var(--honey); }
.hex-cell.lit-gold { background: var(--gold); border-color: var(--gold); }
.hex-cell.tall { grid-row: span 2; aspect-ratio: 1/2; }
.hex-cell.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* ============================================
   FORM — captures email
   ============================================ */
section.form-section {
  background: #F8F2DF;
  padding: 72px 18px 88px;
  border-bottom: 1px solid var(--ivory-faint);
}
@media (min-width: 720px) {
  section.form-section { padding: 96px 24px 112px; }
}
.form-inner {
  max-width: 640px;
  margin: 0 auto;
}
.form-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-faint);
  padding: 36px 26px 32px;
  margin-top: 28px;
}
@media (min-width: 720px) {
  .form-card { padding: 48px 44px 44px; }
}
.form-card h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.018em;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}
.form-card .form-lede {
  font-size: 14.5px;
  color: #2A2218;
  line-height: 1.55;
  margin-bottom: 26px;
}

.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--ivory-2);
  border: 1px solid var(--ivory-faint);
  color: var(--black);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: border-color .15s, background .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ivory);
}
.field input::placeholder { color: var(--ivory-mute); font-weight: 400; }
.field textarea { resize: vertical; min-height: 80px; font-family: 'Nunito Sans', sans-serif; }

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 540px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
.field-row .field { margin-bottom: 0; }

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 22px;
  font-size: 13px;
  color: #2A2218;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-row input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }

button.btn-submit {
  display: block;
  width: 100%;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--ivory);
  padding: 16px 22px;
  border: 1px solid var(--black);
  font-weight: 600;
  transition: all .15s;
  text-align: center;
}
button.btn-submit:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.form-foot {
  margin-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ivory-mute);
  text-transform: uppercase;
  text-align: center;
}

/* ============================================
   PROGRESS DOTS — for multi-step
   ============================================ */
.progress-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
}
.progress-dot {
  width: 9px; height: 10px;
  background: var(--ivory-faint);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.progress-dot.active { background: var(--gold); }
.progress-dot.done { background: var(--gold-deep); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  color: var(--ivory);
  padding: 56px 18px 24px;
}
@media (min-width: 720px) {
  footer { padding: 72px 24px 28px; }
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 44px;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 720px) {
  .footer-brand { grid-column: auto; }
}
.footer-wordmark {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--ivory);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-wordmark .hex {
  width: 14px; height: 16px;
  background: var(--honey);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.footer-tag {
  font-size: 13px;
  color: #B8AD97;
  line-height: 1.55;
  max-width: 32ch;
}
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 12px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--ivory);
  font-size: 13px;
  opacity: .85;
  transition: opacity .15s, color .15s;
}
.footer-col a:hover { opacity: 1; color: var(--honey); }
.footer-bottom {
  border-top: 1px solid var(--line-bright);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ivory-mute);
  text-transform: uppercase;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thanks-section {
  padding: 96px 18px 120px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-inner {
  max-width: 540px;
  margin: 0 auto;
}
.thanks-mark {
  width: 56px; height: 64px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-mark::after {
  content: '✓';
  color: var(--black);
  font-size: 26px;
  font-weight: 700;
}
.thanks-section h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--black);
  margin-bottom: 18px;
}
.thanks-section h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.thanks-section p {
  font-size: 16px;
  color: #2A2218;
  line-height: 1.6;
  max-width: 50ch;
  margin: 0 auto 28px;
}
.thanks-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.thanks-link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
  padding: 64px 18px 96px;
}
@media (min-width: 720px) {
  .legal-section { padding: 80px 24px 120px; }
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-inner h1 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.02em;
  margin-bottom: 18px;
  color: var(--black);
}
.legal-inner h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--black);
}
.legal-inner p {
  margin-bottom: 14px;
  color: #2A2218;
  line-height: 1.65;
  font-size: 15px;
}
.legal-inner .updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ivory-mute);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
