/* ============================================================================
   Sorteo TRI — Ferrolan × Greincat · Landing
   Mobile-first. Marca: color #c40731 + tipografía Montserrat (ferrolan.es).
   Resto del sistema visual: libre. Tono "del gremio", sólido, sin estética
   de "anuncio de máster".
   ============================================================================ */

:root {
  /* Marca */
  --primary: #c40731;
  --primary-dark: #9c0527;
  --primary-darker: #780320;
  --primary-soft: #fbe7eb;

  /* Tinta y neutros */
  --ink: #16151a;
  --ink-2: #38353f;
  --muted: #6c6873;
  --line: #e8e4df;
  --bg: #ffffff;
  --bg-alt: #f6f3ee;     /* secciones alternas, cálido */
  --bg-dark: #16151a;    /* hero */

  /* Acentos funcionales */
  --ok: #1f8a4c;
  --ok-soft: #e9f6ee;
  --warn-ink: #8a5a00;
  --warn-bg: #fff5e0;
  --warn-line: #f0d28a;
  --err: #c40731;

  /* Forma */
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(22, 21, 26, .06);
  --shadow: 0 14px 40px rgba(22, 21, 26, .12);
  --shadow-primary: 0 10px 26px rgba(196, 7, 49, .28);

  /* Layout */
  --maxw: 1120px;
  --maxw-narrow: 720px;
  --gutter: 20px;

  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ----------------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--primary-dark); }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.02em; margin: 0; font-weight: 800; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font-family: inherit; }
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

/* --------------------------------- Layout ------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }
.section__title { font-size: clamp(1.7rem, 6vw, 2.6rem); font-weight: 800; margin-bottom: .5em; }
.section__lead { font-size: 1.06rem; color: var(--ink-2); max-width: 60ch; margin-bottom: 1.6em; }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--primary); margin: 0 0 .8em;
}
.eyebrow--dark { color: var(--primary-dark); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }

.hl { color: var(--primary); }
.ico { fill: currentColor; vertical-align: -.18em; }

/* --------------------------------- Buttons ----------------------------------- */
.btn {
  --btn-bg: var(--primary);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn--primary:hover { background: var(--primary-dark); }
.btn--primary:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn--ghost:hover { border-color: var(--ink-2); }
.btn--lg { padding: 17px 30px; font-size: 1.08rem; }
.btn--sm { padding: 10px 16px; font-size: .92rem; }
.btn--block { width: 100%; }

/* --------------------------------- Header ------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__logo { height: 32px; width: auto; }
.brand__tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-soft); padding: 4px 9px; border-radius: 999px;
}

/* ---------------------------------- Hero ------------------------------------- */
.hero { background: #f4f5f7; color: var(--ink); padding: 40px 0 52px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(196, 7, 49, .05), transparent 55%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; gap: 32px; }
.hero .eyebrow { color: var(--primary-dark); }
.hero .eyebrow__dot { background: #c40731; box-shadow: 0 0 0 4px rgba(196, 7, 49, .25); }
.hero__title { font-size: clamp(2rem, 8.5vw, 3.6rem); font-weight: 900; letter-spacing: -.03em; margin-bottom: .45em; }
.hero__title .hl { color: #c40731; }
.hero__subtitle { font-size: 1.1rem; color: var(--ink-2); max-width: 52ch; margin-bottom: 1.6em; }
.hero__subtitle strong { color: var(--ink); }

.hero__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 1.4em; }
.price-badge { display: inline-flex; flex-direction: column; line-height: 1.05; }
.price-badge__strike { text-decoration: line-through; color: var(--muted); font-weight: 600; font-size: .9rem; }
.price-badge__free { color: var(--ink); font-weight: 800; font-size: 1.05rem; }

.hero__filter {
  display: flex; align-items: flex-start; gap: 8px; margin: 0;
  font-size: .92rem; font-weight: 600; color: var(--ink-2);
}
.hero__filter .ico { fill: #c40731; flex: none; margin-top: 2px; }

.hero__urgency { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 1.1em; font-size: .92rem; font-weight: 700; color: var(--ink); }
.hero__urgency .ico { fill: #c40731; flex: none; }
.hero__urgency strong { color: #c40731; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0 0; padding-top: 18px; border-top: 1px solid var(--line); }
.trust-strip li { position: relative; padding-left: 22px; font-size: .85rem; font-weight: 600; color: var(--ink-2); }
.trust-strip li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 16px; height: 16px; border-radius: 50%;
  background: rgba(196, 7, 49, .14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c40731'%3E%3Cpath d='m9 16.2-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* Marco de vídeo 9:16 */
.hero__media { display: flex; justify-content: center; }
.video-frame {
  position: relative; width: min(260px, 70%); aspect-ratio: 9 / 16; overflow: hidden;
  border-radius: var(--r-lg); border: 1px solid var(--line);
  background: linear-gradient(160deg, #2a2730, #1b1a20);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  box-shadow: var(--shadow);
}
.video-frame__yt { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-frame__play {
  width: 64px; height: 64px; border-radius: 50%; background: var(--primary);
  display: grid; place-items: center; box-shadow: var(--shadow-primary);
}
.video-frame__play svg { fill: #fff; }
.video-frame__label { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .5); font-weight: 600; }

/* ----------------------------- Reconocimiento -------------------------------- */
.benefits { display: grid; gap: 18px; margin-top: 28px; }
.benefit { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); }
.benefit__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--primary-soft); display: grid; place-items: center; margin-bottom: 14px; }
.benefit__icon svg { width: 26px; height: 26px; fill: var(--primary); }
.benefit__title { font-size: 1.18rem; margin-bottom: .4em; }
.benefit p { margin: 0; color: var(--ink-2); font-size: .98rem; }

/* --------------------------------- Premio ------------------------------------ */
.prize { display: grid; gap: 20px; margin-top: 8px; }
.prize__card {
  background: var(--bg); border: 2px solid var(--primary); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow); position: relative;
}
.prize__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; margin-bottom: 16px; }
.prize__head h3 { font-size: 1.5rem; }
.prize__value { font-weight: 800; color: var(--primary); background: var(--primary-soft); padding: 4px 12px; border-radius: 999px; font-size: .9rem; }
.prize__note { margin: 10px 0 0; font-size: .85rem; color: var(--muted); }
.prize__list { display: grid; gap: 12px; margin-bottom: 18px; }
.prize__list li { position: relative; padding-left: 30px; color: var(--ink-2); }
.prize__list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--ok-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231f8a4c'%3E%3Cpath d='m9 16.2-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.prize__payer { display: flex; align-items: flex-start; gap: 8px; margin: 0; padding-top: 14px; border-top: 1px solid var(--line); font-weight: 600; }
.prize__payer .ico { fill: var(--ok); flex: none; margin-top: 3px; }

.prize__content-title { font-size: 1.05rem; margin-bottom: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
.chips { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.chips li { background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px; font-size: .9rem; font-weight: 600; color: var(--ink-2); }
.section--alt .benefit, .section--alt .chips li, .section--alt .prize__card { background: #fff; }

/* Nota informativa */
.note {
  display: flex; align-items: flex-start; gap: 12px; margin-top: 24px;
  background: var(--primary-soft); border: 1px solid #f3cdd5; border-radius: var(--r);
  padding: 16px 18px;
}
.note .ico { fill: var(--primary); flex: none; margin-top: 2px; }
.note p { margin: 0; font-size: .96rem; }
.note--quiet { background: var(--bg); border-color: var(--line); }
.note--quiet .ico { fill: var(--muted); }

.callout { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-top: 24px; background: var(--ink); color: #fff; border-radius: var(--r); padding: 20px 22px; }
.callout__tag { font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--primary); padding: 5px 11px; border-radius: 999px; }
.callout p { margin: 0; color: rgba(255, 255, 255, .9); }
.callout strong { color: #fff; }

/* ------------------------------- Requisitos ---------------------------------- */
.reqs { display: grid; gap: 16px; margin: 8px 0 24px; }
.req { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; box-shadow: var(--shadow-sm); }
.req__num { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; }
.req h3 { font-size: 1.18rem; margin-bottom: .35em; }
.req p { margin: 0; color: var(--ink-2); font-size: .97rem; }

.exclude { background: var(--warn-bg); border: 1px solid var(--warn-line); border-radius: var(--r); padding: 18px 20px; }
.exclude h4 { font-size: 1.02rem; margin-bottom: .4em; color: var(--warn-ink); }
.exclude h4 span { text-transform: uppercase; }
.exclude p { margin: 0; color: var(--warn-ink); font-size: .95rem; }
.exclude p + p { margin-top: .6em; }
.micro-note { margin-top: 14px; font-size: .9rem; color: var(--muted); }

/* ----------------------------- Cómo funciona --------------------------------- */
.steps { display: grid; gap: 16px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 22px 22px 24px; box-shadow: var(--shadow-sm); position: relative; }
.step__num { width: 34px; height: 34px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: 12px; }
.step h3 { font-size: 1.12rem; margin-bottom: .3em; }
.step p { margin: 0; color: var(--ink-2); font-size: .97rem; }

/* -------------------------------- Formulario --------------------------------- */
.form-section { scroll-margin-top: 72px; }
.deadline {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 22px;
  font-size: .92rem; font-weight: 700; color: var(--primary-dark);
  background: var(--primary-soft); border: 1px solid #f3cdd5; border-radius: 999px; padding: 8px 16px;
}
.value-note { background: var(--ok-soft); border: 1px solid #bfe6cd; border-radius: var(--r); padding: 14px 16px; margin-bottom: 18px; font-size: .95rem; color: var(--ink-2); }
.value-note strong { color: var(--ink); }

.lead-form { display: grid; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow); }

.field__opt { font-weight: 600; color: var(--muted); font-size: .85rem; }
.field__hint { margin: 0; font-size: .82rem; color: var(--muted); }
.form-assurances { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 14px 0 0; }
.form-assurances li { position: relative; padding-left: 20px; font-size: .85rem; font-weight: 700; color: var(--ok); }
.form-assurances li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231f8a4c'%3E%3Cpath d='m9 16.2-3.5-3.5L4 14.2 9 19l11-11-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.field { display: grid; gap: 6px; }
.field-row { display: grid; gap: 18px; }
.field label { font-weight: 700; font-size: .95rem; }
.req-star { color: var(--primary); }
.field input, .field select {
  font: inherit; font-size: 1rem; padding: 13px 14px; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: #fff; color: var(--ink); width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--err); }
.field__error { margin: 0; min-height: 0; color: var(--err); font-size: .85rem; font-weight: 600; }
.field__error:empty { display: none; }
.field__warn {
  margin: 4px 0 0; background: var(--warn-bg); border: 1px solid var(--warn-line); color: var(--warn-ink);
  padding: 10px 12px; border-radius: var(--r-sm); font-size: .88rem; font-weight: 600;
}

.consents { border: 0; padding: 0; margin: 0; display: grid; gap: 14px; }
.check { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; font-size: .95rem; color: var(--ink-2); cursor: pointer; }
.check input { width: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--primary); flex: none; }
.check span { line-height: 1.45; }
.check a { font-weight: 600; }

.form-foot { display: flex; align-items: flex-start; gap: 8px; margin: 4px 0 0; font-size: .85rem; color: var(--muted); }
.form-foot .ico { fill: var(--muted); flex: none; margin-top: 2px; }
.form-error { margin: 14px 0 0; padding: 12px 14px; border-radius: var(--r-sm); background: var(--primary-soft); color: var(--primary-dark); font-weight: 600; font-size: .95rem; }

.form-success { background: var(--ok-soft); border: 1px solid #bfe6cd; border-radius: var(--r-lg); padding: 32px 26px; text-align: center; }
.form-success__icon { width: 60px; height: 60px; border-radius: 50%; background: var(--ok); display: grid; place-items: center; margin: 0 auto 16px; }
.form-success__icon svg { width: 32px; height: 32px; fill: #fff; }
.form-success h3 { font-size: 1.4rem; margin-bottom: .4em; }
.form-success p { margin: 0; color: var(--ink-2); }

/* --------------------------------- Orgs -------------------------------------- */
.orgs { display: grid; gap: 18px; margin-top: 10px; }
.org { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); }
.org__logo { height: 42px; width: auto; margin-bottom: 16px; }
.org__logo--greincat { height: 92px; }
.org__logo-link { display: inline-block; margin-bottom: 16px; }
.org__logo-link .org__logo { margin-bottom: 0; }
.org p { margin: 0; color: var(--ink-2); }
.org__link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: .9rem; color: var(--primary-dark); text-decoration: none; }
.org__link:hover { text-decoration: underline; }

/* ---------------------------------- FAQ -------------------------------------- */
.faq { display: grid; gap: 12px; margin-top: 8px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 48px 18px 20px; font-weight: 700; position: relative;
  font-size: 1.02rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 18px; top: 50%; width: 14px; height: 14px;
  transform: translateY(-50%); transition: transform .2s ease;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c40731'%3E%3Cpath d='M12 15.4 6 9.4 7.4 8 12 12.6 16.6 8 18 9.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq__body { padding: 0 20px 18px; }
.faq__body p { margin: 0; color: var(--ink-2); }

/* -------------------------------- Footer ------------------------------------- */
.site-footer { background: var(--bg-dark); color: rgba(255, 255, 255, .8); padding: 44px 0 96px; }
.site-footer__inner { display: grid; gap: 22px; }
.site-footer__logo { display: inline-block; height: 40px; margin-bottom: 14px; }
.site-footer__brand p { margin: 0; font-size: .92rem; }
.site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a { color: rgba(255, 255, 255, .85); text-decoration: none; font-weight: 600; font-size: .95rem; }
.site-footer__links a:hover { color: #fff; text-decoration: underline; }
.site-footer__legal { margin: 0; font-size: .82rem; color: rgba(255, 255, 255, .5); }

/* ------------------------------ Sticky CTA (móvil) --------------------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: #fff; border-top: 1px solid var(--line); padding: 12px var(--gutter);
  box-shadow: 0 -8px 24px rgba(22, 21, 26, .1);
  transform: translateY(110%); transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__text { display: flex; flex-direction: column; line-height: 1.15; }
.sticky-cta__text strong { font-size: .98rem; }
.sticky-cta__text span { font-size: .82rem; color: var(--muted); }
.sticky-cta .btn { padding: 12px 22px; }

/* ------------------------------ Cookie banner -------------------------------- */
.cookie-banner {
  position: fixed; left: var(--gutter); right: var(--gutter); bottom: var(--gutter); z-index: 70;
  background: var(--ink); color: #fff; border-radius: var(--r); padding: 18px 20px;
  box-shadow: var(--shadow); display: grid; gap: 14px;
}
.cookie-banner[hidden] { display: none; }

/* ===================== Gate de pre-lanzamiento ===================== */
.gate { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--bg-dark); }
html.gate-ok .gate { display: none; }
.gate__box { width: 100%; max-width: 380px; background: #fff; border-radius: var(--r-lg); padding: 32px 26px; box-shadow: var(--shadow); display: grid; gap: 14px; text-align: center; }
.gate__logo { height: 32px; width: auto; margin: 0 auto 4px; }
.gate__title { font-size: 1.4rem; }
.gate__text { color: var(--ink-2); font-size: .95rem; margin: 0 0 4px; }
.gate__label { text-align: left; font-weight: 700; font-size: .9rem; }
.gate__input { font: inherit; font-size: 1rem; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); width: 100%; }
.gate__input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.gate__error { color: var(--err); font-weight: 600; font-size: .88rem; margin: 0; }
.gate__error[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: .9rem; color: rgba(255, 255, 255, .85); }
.cookie-banner a { color: #fff; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner__actions .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .3); }
.cookie-banner__actions .btn { flex: 1; }

/* ============================ Tablet / Desktop ============================== */
@media (min-width: 768px) {
  body { font-size: 18px; }
  .section { padding: 84px 0; }

  .hero { padding: 64px 0 80px; }
  .hero__inner { grid-template-columns: 1.15fr .85fr; align-items: center; gap: 48px; }
  .hero__media { justify-content: flex-end; }
  .video-frame { width: min(300px, 100%); }

  .benefits { grid-template-columns: repeat(3, 1fr); }
  .reqs { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .prize { grid-template-columns: 1.1fr .9fr; align-items: start; }
  .orgs { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr 1fr; }

  .lead-form { padding: 34px; }

  .site-footer { padding: 56px 0; }
  .site-footer__inner { grid-template-columns: 1.3fr 1fr; grid-template-areas: "brand links" "legal legal"; align-items: start; }
  .site-footer__brand { grid-area: brand; }
  .site-footer__links { grid-area: links; }
  .site-footer__legal { grid-area: legal; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }

  /* En desktop el CTA del header siempre visible; ocultamos el sticky inferior */
  .sticky-cta { display: none !important; }

  .cookie-banner { left: auto; right: var(--gutter); max-width: 420px; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 3.4rem; }
}

/* Header CTA: en móvil se ve; el sticky inferior cubre el resto del scroll */
@media (max-width: 767px) {
  .header-cta { display: none; }
}

/* Accesibilidad: respeta reduce-motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ============================ Páginas legales (stubs) ====================== */
.legal-page { padding: 48px 0 80px; }
.legal-page .container { max-width: var(--maxw-narrow); }
.legal-page h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); margin-bottom: .5em; }
.legal-page h2 { font-size: 1.25rem; margin: 1.8em 0 .5em; }
.legal-page p, .legal-page li { color: var(--ink-2); }
.legal-page ul { margin: 0 0 1rem; }
.legal-page ul li { list-style: disc; margin-left: 1.2em; padding-left: .2em; }
.legal-back { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px; font-weight: 700; text-decoration: none; }
.draft-notice {
  background: var(--warn-bg); border: 1px solid var(--warn-line); color: var(--warn-ink);
  border-radius: var(--r); padding: 16px 18px; margin-bottom: 28px; font-weight: 600; font-size: .95rem;
}
.placeholder-text { color: var(--muted); font-style: italic; }
