/* ============================================================
   Bark & Co. — Founding Members Landing
   Paleta: brand guidelines (negro humo / dorado arena / crema)
   ============================================================ */

@font-face {
  font-family: 'Something Good';
  src: url('/fonts/SomethingGood.otf') format('opentype');
  font-display: swap;
}

:root {
  --ink: #2E2C2D;
  --gold: #9C845E;
  --gold-soft: #B9A685;
  --cream: #F2EBE5;
  --cream-deep: #E9DFD4;
  --paper: #FCFAF7;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --accent: 'Something Good', var(--sans);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); margin-bottom: 1.5rem; }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; font-weight: 400; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.eyebrow--gold { color: var(--gold-soft); }

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--ink); color: var(--cream); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }
.container--narrow { max-width: 720px; }
.container--form { max-width: 640px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3rem); }

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 1.05rem 2.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: #8a7350; }
.btn--ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--dark { background: var(--ink); color: var(--cream); border: none; width: 100%; }
.btn--dark:hover:not(:disabled) { background: #181617; }
.btn--dark:disabled { opacity: 0.6; cursor: wait; }
.btn--nav { padding: 0.7rem 1.4rem; font-size: 0.68rem; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav--solid {
  background: rgba(252, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(46, 44, 45, 0.07);
  padding: 0.6rem 0;
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 44px; width: auto; }
.nav:not(.nav--solid) .nav__logo img { filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,0.35)); }

/* ---------- 1 · Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}
.hero__media, .hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(46,44,45,0.5) 0%, rgba(46,44,45,0.22) 42%, rgba(46,44,45,0) 65%),
    linear-gradient(200deg, rgba(46,44,45,0) 30%, rgba(46,44,45,0.5) 72%, rgba(46,44,45,0.8) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 760px;
  padding: 0 clamp(1.25rem, 5vw, 4rem) clamp(3rem, 7vw, 5.5rem);
}
.hero__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.9rem;
}
.hero__badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.5rem 1.1rem;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
  background: rgba(46,44,45,0.25);
}
.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  margin-bottom: 1rem;
  text-wrap: balance;
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  margin-bottom: 1.25rem;
}
.hero__text {
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 2.25rem;
  color: rgba(255,255,255,0.88);
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- 2 · Visión ---------- */
.vision__outcomes {
  list-style: none;
  margin: 2.25rem 0;
  border-top: 1px solid var(--cream-deep);
}
.vision__outcomes li {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 500;
  padding: 0.95rem 0 0.95rem 2.1rem;
  border-bottom: 1px solid var(--cream-deep);
  position: relative;
}
.vision__outcomes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.vision__close {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
}

/* ---------- 3 · Diferencia ---------- */
.difference__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.difference__item { border-top: 1px solid var(--gold); padding-top: 1.5rem; }
.difference__num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.75rem;
}
.difference__item h3 { font-size: 1.45rem; margin-bottom: 0.75rem; text-wrap: balance; }
.difference__item p { font-size: 0.92rem; }

/* ---------- 4 · Servicios ---------- */
.services__grid {
  list-style: none;
  margin-top: 3rem;
  border-top: 1px solid var(--cream-deep);
}
.services__grid li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.6rem 0.25rem;
  border-bottom: 1px solid var(--cream-deep);
  transition: background 0.3s ease, padding 0.3s ease;
}
.services__grid li:hover { background: var(--cream); padding-left: 1rem; }
.services__grid span {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 500;
  white-space: nowrap;
}
.services__grid em {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(46,44,45,0.65);
  text-align: right;
}

/* ---------- Banda visual ---------- */
.band img { width: 100%; height: clamp(320px, 55vh, 560px); object-fit: cover; object-position: center 65%; }

/* ---------- 5 · Club ---------- */
.club__compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.club__col { background: var(--paper); padding: 2.5rem; }
.club__col--member { background: var(--ink); color: var(--cream); }
.club__col h3 {
  font-size: 0.8rem;
  font-family: var(--sans);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.club__col ul { list-style: none; }
.club__col li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(46,44,45,0.08);
  font-size: 0.95rem;
}
.club__col--member li { border-color: rgba(242,235,229,0.12); }
.club__col li:last-child { border-bottom: none; }
.club__note {
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  text-align: center;
}

/* ---------- 6 · Founders ---------- */
.founders { padding: clamp(5.5rem, 11vw, 9.5rem) 0; }
.founders h2 { color: var(--white); }
.founders__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}
.founders__intro p { color: rgba(242,235,229,0.85); }
.founders__price {
  margin: 2.5rem 0 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(156,132,94,0.5);
  border-bottom: 1px solid rgba(156,132,94,0.5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
}
.founders__amount {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1;
}
.founders__amount small { font-size: 0.35em; letter-spacing: 0.15em; color: var(--gold-soft); }
.founders__terms { font-size: 0.85rem; color: rgba(242,235,229,0.75); line-height: 1.8; }
.founders__freeze {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-soft);
}
.founders__benefits h3 {
  font-size: 0.8rem;
  font-family: var(--sans);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.founders__benefits {
  background: rgba(242,235,229,0.04);
  border: 1px solid rgba(156,132,94,0.35);
  padding: clamp(1.75rem, 3vw, 2.75rem);
}
.founders__benefits ul { list-style: none; margin-bottom: 2rem; }
.founders__benefits li {
  padding: 0.65rem 0 0.65rem 1.9rem;
  position: relative;
  font-size: 0.93rem;
  color: rgba(242,235,229,0.92);
  border-bottom: 1px solid rgba(242,235,229,0.07);
}
.founders__benefits li:last-child { border-bottom: none; }
.founders__benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.founders__never {
  font-family: var(--accent);
  font-size: 1.05rem;
  color: var(--gold-soft);
  text-align: center;
  margin-bottom: 0.5rem;
}
.founders__legacy {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(242,235,229,0.85);
  text-align: center;
  margin-bottom: 1.75rem;
}
.founders__benefits .btn { width: 100%; }
.founders__counter {
  max-width: 480px;
  margin: 3.5rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(156,132,94,0.3);
  text-align: center;
}
.founders__counter .counter__bar { background: rgba(242,235,229,0.15); max-width: 100%; }
.founders__counter .counter__note { color: rgba(242,235,229,0.6); }

/* ---------- 7 · Ubicación ---------- */
.location__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.location__address {
  margin-top: 2rem;
  font-family: var(--serif);
  font-size: 1.3rem;
}
.location__address span {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.location__maplink {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.06em;
}
.location__maplink:hover { text-decoration: underline; }
.location__map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(1) sepia(0.18) contrast(0.95);
}

/* ---------- 8 · Experiencia ---------- */
.experience__date {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--gold);
}
.experience__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 3.5rem auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.experience__gallery figure { position: relative; overflow: hidden; }
.experience__gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.experience__gallery figure:hover img { transform: scale(1.04); }
.experience__gallery figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.25rem;
  background: linear-gradient(transparent, rgba(46,44,45,0.65));
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
}

/* ---------- 9 · Contador ---------- */
.counter { text-align: center; }
.counter__display {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 1;
  margin-bottom: 2rem;
}
.counter__display #counter-available { color: var(--gold); }
.counter__of { font-size: 0.35em; font-style: italic; }
.counter__bar {
  height: 2px;
  background: var(--cream-deep);
  max-width: 420px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}
.counter__fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.counter__note { font-size: 0.85rem; color: rgba(46,44,45,0.6); }

/* ---------- 10 · Formulario ---------- */
.form-section h2 { text-align: left; }
.lead-form { margin-top: 2.5rem; }
.field { margin-bottom: 1.75rem; border: none; }
.field label, .field legend {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: rgba(46,44,45,0.8);
}
.field label em { text-transform: none; letter-spacing: 0; font-style: italic; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(46,44,45,0.18);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.phone-row { display: flex; gap: 0.6rem; }
.phone-row select {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  padding: 0.85rem 0.6rem;
  border: 1px solid rgba(46,44,45,0.18);
  background: var(--paper);
  color: var(--ink);
  flex: 0 0 auto;
}
.phone-row select:focus { outline: none; border-color: var(--gold); }
.phone-row input { flex: 1; min-width: 0; }
.field-error { margin-top: 0.5rem; font-size: 0.82rem; color: #8a3030; }
.choices { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.choices label { display: inline-block; margin: 0; cursor: pointer; }
.choices input { position: absolute; opacity: 0; pointer-events: none; }
.choices span {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(46,44,45,0.22);
  font-size: 0.88rem;
  font-weight: 400;
  background: var(--paper);
  transition: all 0.25s ease;
  user-select: none;
}
.choices input:checked + span { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.choices input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; }
.form-error { margin-top: 1.25rem; font-size: 0.9rem; color: #8a3030; }
.form-error a { color: inherit; }
.form-success {
  margin-top: 2.5rem;
  background: var(--paper);
  border: 1px solid var(--gold);
  padding: 3rem;
  text-align: center;
}
.form-success h3 { font-size: 1.9rem; margin-bottom: 1rem; }

/* ---------- 11 · Cierre ---------- */
.closing {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.closing__media, .closing__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.closing__overlay { position: absolute; inset: 0; background: rgba(46,44,45,0.6); }
.closing__content { position: relative; z-index: 1; color: var(--white); max-width: 680px; padding: 5rem 1.5rem; }
.closing__content h2 { color: var(--white); text-wrap: balance; }
.closing__content p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 2.25rem;
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(242,235,229,0.7); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
  padding: 4rem clamp(1.25rem, 5vw, 3rem);
}
.footer__logo { height: 72px; width: auto; margin-bottom: 1.25rem; }
.footer__desc { font-size: 0.92rem; line-height: 1.8; color: rgba(242,235,229,0.65); max-width: 380px; }
.footer__social { display: flex; gap: 1.1rem; margin-top: 1.5rem; }
.footer__social a { color: rgba(242,235,229,0.55); transition: color 0.2s; }
.footer__social a:hover { color: var(--gold); }
.footer__social svg { width: 22px; height: 22px; }
.footer__contact-card {
  background: rgba(242,235,229,0.05);
  border: 1px solid rgba(156,132,94,0.3);
  border-radius: 12px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.footer__contact-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--white);
  margin-bottom: 0.6rem;
}
.footer__contact-card p { font-size: 0.9rem; color: rgba(242,235,229,0.65); margin-bottom: 1.5rem; }
.footer__contact-link {
  display: flex; align-items: center; gap: 0.65rem;
  color: rgba(242,235,229,0.8); text-decoration: none;
  font-size: 0.92rem; padding: 0.65rem 0;
  border-bottom: 1px solid rgba(242,235,229,0.08);
  transition: color 0.2s;
}
.footer__contact-link:last-child { border-bottom: none; }
.footer__contact-link:hover { color: var(--gold); }
.footer__contact-link svg { width: 17px; height: 17px; flex-shrink: 0; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 5vw, 3rem);
  border-top: 1px solid rgba(242,235,229,0.08);
}
.footer__legal { font-size: 0.72rem; color: rgba(242,235,229,0.4); }
.footer__legal-links { display: flex; align-items: center; gap: 0.75rem; font-size: 0.72rem; color: rgba(242,235,229,0.4); }
.footer__legal-links a { color: rgba(242,235,229,0.4); text-decoration: none; }
.footer__legal-links a:hover { color: rgba(242,235,229,0.7); }

/* ---------- Botón flotante WhatsApp ---------- */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 40;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.32); }
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 560px) {
  .wa-float { width: 40px; height: 40px; bottom: 1.25rem; right: 1.25rem; }
  .wa-float svg { width: 22px; height: 22px; }
}

/* ---------- Nav actions ---------- */
.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.btn--share {
  display: flex; align-items: center; gap: 0.45rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.btn--share:hover { background: #181617; }
.btn--share svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Save contact ---------- */
.save-contact__prompt { margin-top: 1.25rem; font-size: 0.9rem; color: var(--charcoal); opacity: 0.75; }
.save-contact__btn { margin-top: 0.75rem; display: inline-block; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .founders__layout, .location__layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .location__map iframe { height: 320px; }
  .services__grid li { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .services__grid em { text-align: left; }
}
@media (max-width: 560px) {
  .hero { align-items: flex-start; }
  .hero__content { padding-top: 108px; }
  .hero__text { font-size: 0.88rem; }
  .hero__ctas .btn { width: 100%; }
  .club__col { padding: 1.75rem; }
  .form-success { padding: 2rem 1.5rem; }
  .btn--nav { font-size: 0.6rem; padding: 0.6rem 1rem; }
  .btn--share .btn__label { display: none; }
  .btn--share { padding: 0.6rem; }
  .nav__logo img { height: 36px; }
}

/* ---------- Páginas legales ---------- */
.legal { padding-top: clamp(7rem, 12vw, 9rem); }
.legal__updated { font-size: 0.85rem; color: var(--gold); margin-bottom: 2.5rem; }
.legal__body h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 { font-size: 1.15rem; margin-top: 1.75rem; margin-bottom: 0.75rem; }
.legal__body p, .legal__body li { font-size: 0.98rem; }
.legal__body ul, .legal__body ol { margin: 0 0 1.1em 1.4em; }
.legal__body li { margin-bottom: 0.4em; }
.legal__body strong { font-weight: 600; }
.legal__body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  font-size: 0.92rem;
}
.legal__body th, .legal__body td {
  text-align: left;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--cream-deep);
}
.legal__body th { color: var(--gold); font-weight: 600; }
.legal__back {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
}
.legal__back:hover { text-decoration: underline; }
}
