/* ============================================================
   APAFRESH — recogida de cítricos
   Tokens
   ============================================================ */
:root {
  /* Color — base neutra fría-verdosa, verde hoja profundo y un solo acento naranja */
  --bg: oklch(97.5% 0.004 130);
  --surface: oklch(99.2% 0.002 130);
  --ink: oklch(23% 0.028 155);
  --ink-soft: oklch(40% 0.022 155);
  --line: oklch(88% 0.012 140);

  --green: oklch(32% 0.068 155);
  --green-deep: oklch(25% 0.052 158);
  --green-ink-on: oklch(96% 0.012 120);      /* texto sobre verde */
  --green-soft-on: oklch(84% 0.03 130);      /* texto secundario sobre verde */

  /* Acento amarillo limón: brillante sobre fondos oscuros, citrón legible sobre claros */
  --lemon: oklch(89% 0.155 102);          /* limón brillante — acentos sobre fondo oscuro y relleno de botón */
  --lemon-deep: oklch(82% 0.16 98);       /* hover de botón: un limón más maduro */
  --lemon-ink: oklch(52% 0.125 101);      /* citrón legible — acentos, texto e iconos sobre fondo claro */
  --lemon-btn-text: oklch(27% 0.05 108);  /* texto oscuro sobre botón limón */

  --font: "Cabinet Grotesk", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, monospace;

  --container: 1200px;
  --radius: 14px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Escala z semántica */
  --z-header: 10;
  --z-fab: 40;
  --z-cookie: 60;
}

/* ============================================================
   Reset breve
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { padding: 0; }

h1, h2, h3 { line-height: 1.05; text-wrap: balance; font-weight: 800; }
p { text-wrap: pretty; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   Botones
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: background-color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out),
              transform 0.15s var(--ease-out);
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--lemon);
  color: var(--lemon-btn-text);
}
.btn-primary:hover { background: var(--lemon-deep); }

.btn-ghost {
  border-color: oklch(60% 0.03 140);
  color: var(--green-ink-on);
}
.btn-ghost:hover { border-color: var(--green-ink-on); background: oklch(100% 0 0 / 0.06); }

.btn-header {
  background: var(--ink);
  color: var(--bg);
  padding: 0.55rem 1.1rem;
  font-size: 0.9375rem;
}
.btn-header:hover { background: var(--green); }

.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out);
}
.site-header.is-scrolled { border-bottom-color: var(--line); }

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
}
.brand-dot {
  width: 0.42em; height: 0.42em;
  border-radius: 50%;
  background: var(--lemon-ink);
  margin-left: 0.14em;
  align-self: center;
  translate: 0 0.18em;
}

.site-nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease-out);
}
.site-nav a:hover { color: var(--ink); }

@media (max-width: 820px) {
  .site-nav { display: none; }
  .header-inner { justify-content: space-between; }
}

/* ============================================================
   Hero — bloque verde profundo, split asimétrico
   ============================================================ */
.hero {
  background: var(--green-deep);
  color: var(--green-ink-on);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(4rem, 8vw, 6.5rem);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-tag {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--lemon);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 5.25rem);
  letter-spacing: -0.03em;
  max-width: 12ch;
}
.hero-lead {
  margin-top: 1.5rem;
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  color: var(--green-soft-on);
  max-width: 52ch;
}
.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}
.hero-note {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--green-soft-on);
}

.hero-art { justify-self: end; width: min(100%, 460px); }
.slice { width: 100%; height: auto; }
.slice-peel { fill: none; stroke: var(--lemon); stroke-width: 3; }
.slice-pith { fill: none; stroke: var(--lemon); stroke-width: 1.25; opacity: 0.55; }
.slice-wedges path {
  fill: oklch(89% 0.155 102 / 0.18);
  stroke: var(--lemon);
  stroke-width: 1.5;
}
@media (prefers-reduced-motion: no-preference) {
  .slice-wedges {
    animation: slice-turn 90s linear infinite;
    transform-origin: 300px 300px;
  }
}
@keyframes slice-turn { to { transform: rotate(360deg); } }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { justify-self: center; width: min(72vw, 340px); order: -1; }
}

/* ============================================================
   Nosotros
   ============================================================ */
.about { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.statement {
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 26ch;
}
.statement em {
  font-style: normal;
  color: var(--lemon-ink);
}
.statement-sub {
  margin-top: 1.75rem;
  color: var(--ink-soft);
  max-width: 58ch;
}
.about-stats {
  list-style: none;
  border-top: 1px solid var(--line);
}
.about-stats li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.about-stats strong {
  font-family: var(--mono);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.about-stats span {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  text-align: right;
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Servicios — lista dividida, sin cards
   ============================================================ */
.services {
  background: var(--surface);
  border-block: 1px solid var(--line);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.services-head { max-width: 56ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.services-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: -0.025em;
  max-width: 22ch;
}
.services-head p { margin-top: 1rem; color: var(--ink-soft); }

.services-list { list-style: none; }
.service {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  border-top: 1px solid var(--line);
}
.service:last-child { border-bottom: 1px solid var(--line); }

.service-title {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.service-title svg {
  width: 26px; height: 26px;
  color: var(--lemon-ink);
  flex: none;
  margin-top: 0.35rem;
}
.service-title h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  letter-spacing: -0.02em;
}
.service-body p { color: var(--ink-soft); max-width: 58ch; }
.service-body ul {
  list-style: none;
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.service-body ul li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 700;
}
.service-body ul li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lemon-ink);
  flex: none;
  translate: 0 -0.1em;
}

@media (max-width: 820px) {
  .service { grid-template-columns: 1fr; gap: 0.9rem; }
}

/* ============================================================
   Cómo trabajamos — secuencia real numerada
   ============================================================ */
.process { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.process-intro { position: sticky; top: 6rem; }
.process-intro h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: -0.025em;
}
.process-intro p { margin-top: 1rem; color: var(--ink-soft); max-width: 40ch; }

.process-steps { list-style: none; }
.process-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: 1.9rem 0;
  border-top: 1px solid var(--line);
}
.process-steps li:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lemon-ink);
  padding-top: 0.4rem;
  min-width: 2.2rem;
}
.process-steps h3 { font-size: 1.3rem; letter-spacing: -0.015em; }
.process-steps p {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

@media (max-width: 820px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-intro { position: static; }
}

/* ============================================================
   Temporada — tabla calendario
   ============================================================ */
.season {
  background: var(--green);
  color: var(--green-ink-on);
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.season-head { max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.season-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: -0.025em;
}
.season-head p { margin-top: 1rem; color: var(--green-soft-on); }

.season-table-wrap { overflow-x: auto; }
.season-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
}
.season-table th, .season-table td {
  border-bottom: 1px solid oklch(100% 0 0 / 0.14);
  padding: 0.85rem 0.5rem;
  text-align: left;
}
.season-table thead th {
  font-family: var(--mono);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-soft-on);
  border-bottom-color: oklch(100% 0 0 / 0.3);
}
.season-table tbody th {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  padding-right: 1.5rem;
}
.season-table td { min-width: 44px; }
.season-table td.on {
  position: relative;
}
.season-table td.on::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0.5rem;
  translate: 0 -50%;
  width: calc(100% - 0.75rem);
  height: 10px;
  border-radius: 999px;
  background: var(--lemon);
}
.season-note {
  margin-top: 1.75rem;
  font-size: 0.9375rem;
  color: var(--green-soft-on);
  max-width: 60ch;
}

/* ============================================================
   Contacto
   ============================================================ */
.contact { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.025em;
  max-width: 14ch;
}
.contact-copy > p {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.contact-data {
  list-style: none;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.contact-data li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 1rem;
  align-items: baseline;
}
.contact-data span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.contact-data a {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--lemon-ink);
  width: fit-content;
  transition: color 0.2s var(--ease-out);
}
.contact-data a:hover { color: var(--lemon-ink); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-weight: 700; font-size: 0.9375rem; }
.field input, .field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  transition: border-color 0.2s var(--ease-out);
}
.field input:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--lemon-ink);
  outline-offset: 1px;
  border-color: var(--lemon-ink);
}
.field textarea { resize: vertical; }
.field ::placeholder { color: oklch(45% 0.02 150); opacity: 1; }
.field-hint { font-size: 0.8125rem; color: var(--ink-soft); }
.field-error { font-size: 0.8125rem; font-weight: 700; color: oklch(50% 0.19 28); }
.field.has-error input { border-color: oklch(50% 0.19 28); }
.form-status { font-size: 0.9375rem; font-weight: 700; color: var(--green); }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  color: var(--green-soft-on);
  padding: clamp(3rem, 6vw, 5rem) 0 2.5rem;
}
.footer-inner { display: flex; flex-direction: column; gap: 2.25rem; }
.footer-brand {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--green-ink-on);
  display: flex;
  align-items: baseline;
}
.footer-brand .brand-dot {
  width: 0.16em; height: 0.16em;
  margin-left: 0.06em;
  align-self: flex-end;
  translate: 0 -0.1em;
  background: var(--lemon);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem 2.5rem;
  border-top: 1px solid oklch(100% 0 0 / 0.14);
  padding-top: 1.75rem;
  font-size: 0.9375rem;
}
.footer-nav nav { display: flex; flex-wrap: wrap; gap: 0.9rem 1.5rem; }
.footer-nav a, .footer-nav .link-btn {
  color: var(--green-ink-on);
  text-decoration: none;
  font-weight: 700;
}
.footer-nav a:hover, .footer-nav .link-btn:hover { color: var(--lemon); }
.link-btn {
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s var(--ease-out);
}
.footer-meta {
  font-size: 0.875rem;
  color: var(--green-soft-on);
}
.footer-meta p a { color: inherit; font-weight: 500; text-decoration: underline; }
.footer-meta p a:hover { color: var(--lemon); }

/* ============================================================
   WhatsApp
   ============================================================ */
.wa-link { display: inline-flex; align-items: center; gap: 0.5rem; }
.wa-link svg { width: 18px; height: 18px; color: oklch(58% 0.13 155); flex: none; }

/* Botón flotante */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: var(--z-fab);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: oklch(56% 0.14 152);
  color: oklch(99% 0.01 150);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 8px 24px -8px oklch(40% 0.08 155 / 0.55);
  transition: transform 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
}
.wa-float svg { width: 22px; height: 22px; fill: currentColor; flex: none; }
.wa-float:hover { background: oklch(52% 0.14 152); transform: translateY(-2px); }
.wa-float:active { transform: translateY(0) scale(0.98); }
.wa-float .wa-float-text { white-space: nowrap; }
@media (max-width: 540px) {
  .wa-float .wa-float-text { display: none; }
  .wa-float { padding: 0.85rem; }
}

/* ============================================================
   Banner de cookies
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: clamp(1rem, 3vw, 1.75rem);
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: var(--z-cookie);
  max-width: 460px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -24px oklch(25% 0.05 158 / 0.4);
  padding: 1.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  .cookie-banner { animation: cookie-in 0.45s var(--ease-out) both; }
}
@keyframes cookie-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.cookie-banner h2 { font-size: 1.15rem; letter-spacing: -0.01em; }
.cookie-banner p {
  margin-top: 0.6rem;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.cookie-banner p a { color: var(--lemon-ink); font-weight: 700; }
.cookie-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.cookie-actions .btn { padding: 0.65rem 1.2rem; font-size: 0.9375rem; }
.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: none;
}
.btn-outline:hover { border-color: var(--ink); }

/* Panel de configuración */
.cookie-options {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cookie-options[hidden] { display: none; }
.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title switch" "desc switch";
  column-gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}
.cookie-option:first-child { border-top: 0; }
.cookie-option h3 { grid-area: title; font-size: 0.9375rem; }
.cookie-option p { grid-area: desc; margin-top: 0.15rem; font-size: 0.8125rem; }
.cookie-option .switch { grid-area: switch; align-self: center; }

/* Interruptor accesible */
.switch { position: relative; display: inline-flex; }
.switch input {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0;
}
.switch span {
  width: 42px; height: 24px;
  border-radius: 999px;
  background: var(--line);
  transition: background-color 0.2s var(--ease-out);
  display: inline-block;
  position: relative;
}
.switch span::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 1px 2px oklch(0% 0 0 / 0.2);
  transition: transform 0.2s var(--ease-out);
}
.switch input:checked + span { background: oklch(52% 0.07 155); }
.switch input:checked + span::after { transform: translateX(18px); }
.switch input:disabled + span { opacity: 0.55; }
.switch input:focus-visible + span { outline: 2px solid var(--lemon-ink); outline-offset: 2px; }

/* ============================================================
   Páginas legales
   ============================================================ */
.legal-header {
  background: var(--green-deep);
  color: var(--green-ink-on);
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.legal-header .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--lemon);
  text-decoration: none;
}
.legal-header h1 {
  margin-top: 1.5rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.03em;
}
.legal-header .updated { margin-top: 0.75rem; color: var(--green-soft-on); font-size: 0.9375rem; }
.legal-body { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem); }
.legal-body .container { max-width: 760px; }
.legal-body h2 {
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  margin-top: 2.5rem;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.1rem; margin-top: 1.75rem; }
.legal-body p, .legal-body li { color: var(--ink-soft); max-width: 68ch; }
.legal-body p { margin-top: 1rem; }
.legal-body ul { margin-top: 1rem; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.legal-body li { list-style: disc; }
.legal-body a { color: var(--lemon-ink); font-weight: 700; }
.legal-body .lead { color: var(--ink); font-size: 1.125rem; }
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
}
.legal-body th, .legal-body td {
  text-align: left;
  padding: 0.7rem 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal-body thead th { font-family: var(--mono); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink-soft); }

/* ============================================================
   Reveal on scroll — solo con JS activo; sin JS todo es visible
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
  html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
