/* VIA BIM 2026 — v2
   Marca: azul marino y verde del logotipo. Tipos: Bricolage Grotesque (display),
   Instrument Sans (cuerpo), IBM Plex Mono (horas, fechas, etiquetas). */

:root {
  --navy: #1b2a6b;
  --navy-deep: #121d4f;
  --navy-ink: #0c1439;
  --green: #6baa2e;
  --green-deep: #4f8a1d;
  --green-soft: #e9f3dd;
  --paper: #f6f7f9;
  --white: #ffffff;
  --ink: #161a2b;
  --slate: #5b6478;
  --line: #dde2ec;
  --line-strong: #c3cad9;

  --display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;
  --sans: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --wrap: 1160px;
  --header: 72px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(12, 20, 57, .10);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.6;
  font-feature-settings: "ss01";
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + 48px); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: calc(820px + 48px); }

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

/* ---------- tipografía ---------- */
.eyebrow {
  font-family: var(--mono); font-size: 12.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-deep);
}
.on-dark .eyebrow { color: #9fd35f; }
.display { font-family: var(--display); font-weight: 700; letter-spacing: -.025em; line-height: 1.02; }
h1.display { font-size: clamp(44px, 6.2vw, 84px); font-weight: 800; }
h2.display { font-size: clamp(32px, 4vw, 50px); font-weight: 700; line-height: 1.06; }
h3.display { font-size: clamp(22px, 2.2vw, 26px); font-weight: 600; letter-spacing: -.015em; line-height: 1.2; }
.lead { font-size: clamp(18px, 1.5vw, 21px); line-height: 1.55; color: var(--slate); }
.on-dark .lead { color: rgba(255,255,255,.78); }
.mono { font-family: var(--mono); }
.muted { color: var(--slate); }
.accent { color: var(--green); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head .lead { margin-top: 18px; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; max-width: none; }
.section-head--row > div { max-width: 760px; }

/* ---------- botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 13px 22px; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 15.5px; line-height: 1; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer; transition: background .2s, border-color .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--outline { border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--sm { padding: 10px 16px; font-size: 14px; }

.link { font-weight: 600; color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.link svg { width: 16px; height: 16px; transition: transform .2s; }
.link:hover svg { transform: translateX(3px); }
.link:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- cabecera ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header);
  background: rgba(246,247,249,.86); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 6px 24px rgba(12,20,57,.06); }
.site-header .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 28px; width: auto; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav__list { display: flex; gap: 30px; }
.nav__link {
  position: relative; text-decoration: none; font-size: 15px; font-weight: 500; color: var(--slate);
  padding: 8px 0; transition: color .2s;
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active { color: var(--navy); font-weight: 600; }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--green); border-radius: 2px;
}
.menu-btn {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; color: var(--ink);
  border-radius: 10px; cursor: pointer; padding: 10px;
}
.menu-btn svg { width: 24px; height: 24px; display: block; }
.menu-btn:hover { background: rgba(27,42,107,.08); }

.mobile-nav {
  display: none; position: fixed; top: var(--header); left: 0; right: 0; z-index: 99;
  background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 8px 24px 20px;
}
.mobile-nav a { display: block; padding: 14px 4px; text-decoration: none; font-weight: 600; font-size: 17px; border-bottom: 1px solid var(--line); }
.mobile-nav a.is-active { color: var(--navy); }
.mobile-nav .btn { margin-top: 18px; display: inline-flex; border-bottom: 0; }
body.menu-open .mobile-nav { display: block; }

/* ---------- hero de portada ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--navy-ink); color: #fff;
  padding: calc(var(--header) + 72px) 0 0; min-height: 92vh; display: flex; flex-direction: column;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero__bg img {
  position: absolute; right: 0; top: 0; height: 100%; width: 54%; object-fit: cover; object-position: 100% 50%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 40%), linear-gradient(to bottom, transparent 0%, #000 28%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 40%), linear-gradient(to bottom, transparent 0%, #000 28%, #000 80%, transparent 100%);
  -webkit-mask-composite: source-in; mask-composite: intersect;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(1200px 600px at 18% 30%, rgba(27,42,107,.9), transparent 60%),
              linear-gradient(90deg, var(--navy-ink) 0%, rgba(12,20,57,.9) 42%, rgba(12,20,57,.35) 68%, rgba(12,20,57,.15) 100%);
}
.hero .wrap { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; }
.hero__content { max-width: 720px; }
.hero__content .eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.hero__content .eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--green); border-radius: 2px; }
.hero__content h1 { margin-bottom: 26px; text-wrap: balance; }
.hero__content .lead { max-width: 560px; margin-bottom: 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__board {
  margin-top: auto; padding: 28px 0 34px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 14px 48px; font-family: var(--mono); font-size: 13.5px; letter-spacing: .04em;
  color: rgba(255,255,255,.72);
}
.hero__board b { color: #fff; font-weight: 600; }
.hero__board span { display: inline-flex; align-items: center; gap: 10px; }
.hero__board span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(107,170,46,.18); }

/* ---------- cabeceras de página interior ---------- */
.page-hero {
  position: relative; background: var(--navy-ink); color: #fff; overflow: hidden;
  padding: calc(var(--header) + 64px) 0 64px;
}
.page-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .6;
}
.page-hero--img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,20,57,.35), rgba(12,20,57,.8));
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { display: block; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(40px, 5.2vw, 68px); font-weight: 800; text-wrap: balance; max-width: 900px; }
.page-hero .lead { margin-top: 20px; max-width: 640px; }
.page-hero__meta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 32px; font-family: var(--mono); font-size: 13.5px; color: rgba(255,255,255,.75); }
.page-hero__meta b { color: #fff; font-weight: 600; }

/* ---------- secciones ---------- */
.section { padding: 104px 0; }
.section--paper { background: var(--paper); }
.section--tight { padding: 72px 0; }
.section + .section--paper, .section--paper + .section { border-top: 1px solid var(--line); }

/* Presentación */
.intro { display: grid; grid-template-columns: 5fr 6fr; gap: 64px; align-items: start; }
.intro h2 { text-wrap: balance; }
.intro__text p + p { margin-top: 20px; }
.intro__text p { font-size: 19px; line-height: 1.6; }
.intro__text p:first-child { color: var(--ink); }
.intro__text p + p { color: var(--slate); }

.reasons { margin-top: 72px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 36px; border-top: 1px solid var(--line-strong); }
.reasons li { padding: 30px 0 8px; border-top: 3px solid transparent; margin-top: -1px; position: relative; }
.reasons li::before { content: ""; position: absolute; top: -1px; left: 0; width: 40px; height: 3px; background: var(--green); }
.reasons h3 { font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -.015em; line-height: 1.2; margin-bottom: 10px; }
.reasons p { color: var(--slate); font-size: 16px; line-height: 1.55; }

/* Línea (agenda) */
.line { position: relative; padding-left: 60px; }
.line::before {
  content: ""; position: absolute; left: 15px; top: 10px; bottom: 10px; width: 4px; border-radius: 4px;
  background: var(--navy);
}
.stop { position: relative; padding-bottom: 40px; display: grid; grid-template-columns: 132px 1fr; gap: 6px 28px; align-items: baseline; }
.stop:last-child { padding-bottom: 0; }
.stop::before {
  content: ""; position: absolute; left: -53px; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 4px solid var(--navy); box-shadow: 0 0 0 4px var(--white);
}
.section--paper .stop::before { box-shadow: 0 0 0 4px var(--paper); }
.stop__time { font-family: var(--mono); font-size: 14px; font-weight: 500; color: var(--navy); letter-spacing: .02em; padding-top: 2px; }
.stop__body h3 { font-family: var(--display); font-weight: 600; font-size: 22px; letter-spacing: -.015em; line-height: 1.22; }
.stop__body p { margin-top: 8px; color: var(--slate); font-size: 16px; line-height: 1.55; max-width: 600px; }
.stop__body .who { color: var(--ink); font-weight: 600; display: flex; gap: 10px; align-items: baseline; }
.stop__body .who::before { content: ""; flex: none; width: 10px; height: 2px; background: var(--green); transform: translateY(-4px); }
.stop__body .who span { font-weight: 400; color: var(--slate); }

.stop--block { align-items: center; padding-bottom: 28px; }
.stop--block::before { border-radius: 4px; background: var(--navy); border-color: var(--navy); width: 18px; height: 18px; top: 2px; }
.stop--block .stop__body { font-family: var(--mono); font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); }
.stop--block .stop__time { color: var(--slate); font-weight: 400; }

.stop--pause::before { width: 12px; height: 12px; left: -50px; top: 7px; background: var(--green); border-color: var(--green); }
.stop--pause .stop__body { font-family: var(--mono); font-size: 14px; color: var(--slate); }
.stop--pause .stop__body b { color: var(--green-deep); font-weight: 600; }
.stop--pause .stop__body p { margin-top: 6px; font-family: var(--sans); font-size: 15px; }

.agenda-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 72px; align-items: start; }
.aside-card {
  position: sticky; top: calc(var(--header) + 24px); background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 26px 28px; box-shadow: var(--shadow);
}
.aside-card dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 18px; margin: 0 0 22px; font-size: 15px; }
.aside-card dt { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); padding-top: 3px; }
.aside-card dd { margin: 0; font-weight: 500; }
.aside-card .btn { width: 100%; justify-content: center; }
.aside-card__title { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.015em; margin-bottom: 18px; }

/* Ponentes (portada) */
.speakers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 28px; }
.speaker-card { text-decoration: none; display: block; color: inherit; }
.speaker-card__media { position: relative; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; background: var(--paper); }
.speaker-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.speaker-card:hover .speaker-card__media img { transform: scale(1.04); }
.speaker-card__media--ph {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); display: grid; place-items: center;
  color: rgba(255,255,255,.55); font-family: var(--display); font-weight: 700; font-size: 44px; letter-spacing: -.02em;
}
.speaker-card__name { margin-top: 16px; font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -.015em; line-height: 1.2; }
.speaker-card__role { margin-top: 5px; color: var(--slate); font-size: 14.5px; line-height: 1.45; }
.speaker-card__tag { display: inline-block; margin-top: 10px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--green-deep); background: var(--green-soft); padding: 4px 8px; border-radius: 6px; }

/* Ponentes (página) */
.speaker-row { display: grid; grid-template-columns: 260px 1fr; gap: 48px; padding: 56px 0; border-top: 1px solid var(--line); align-items: start; }
.speaker-row:first-of-type { border-top: 0; padding-top: 0; }
.speaker-row .speaker-card__media { aspect-ratio: 4 / 5; }
.speaker-row h2 { font-family: var(--display); font-weight: 700; font-size: 30px; letter-spacing: -.02em; line-height: 1.1; }
.speaker-row .role { margin-top: 8px; color: var(--slate); font-size: 16px; }
.speaker-row .bio { margin-top: 22px; max-width: 680px; }
.speaker-row .bio p + p { margin-top: 14px; }
.speaker-row .bio p { color: var(--ink); font-size: 16.5px; line-height: 1.6; }
.speaker-row .bio .pending { color: var(--slate); font-style: italic; }
.speaker-row__label { display: inline-block; margin-bottom: 12px; }

/* Sede */
.venue { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.venue__media { position: relative; }
.venue__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover; }
.venue__media .venue__sub {
  position: absolute; right: -24px; bottom: -32px; width: 46%; border-radius: 12px; border: 6px solid var(--white);
  box-shadow: var(--shadow); aspect-ratio: 4 / 3; object-fit: cover;
}
.venue .eyebrow { display: block; margin-bottom: 14px; }
.venue__addr { margin-top: 18px; font-family: var(--mono); font-size: 14px; color: var(--navy); display: flex; gap: 10px; align-items: center; }
.venue__addr svg { width: 16px; height: 16px; flex: none; }
.venue__text { margin-top: 18px; color: var(--slate); }
.venue__actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

.transport { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.transport li { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 24px 26px; }
.section--paper .transport li { background: var(--white); }
.transport__k { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--green-deep); display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.transport__k svg { width: 18px; height: 18px; color: var(--navy); }
.transport p { font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.transport p b { font-weight: 600; }

.map-wrap { margin-top: 40px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 440px; border: 0; background: var(--paper); }

.gallery-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gallery-2 img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; }

/* CTA */
.cta { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: 96px 0; text-align: center; }
.cta::before { content: ""; position: absolute; inset: -40% -10% auto; height: 140%; background: radial-gradient(600px 300px at 80% 50%, rgba(107,170,46,.35), transparent 70%); pointer-events: none; }
.cta .wrap { position: relative; }
.cta h2 { text-wrap: balance; max-width: 760px; margin: 0 auto 16px; }
.cta p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 32px; font-size: 18px; }

/* Pie */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding: 40px 0; font-size: 14px; color: var(--slate); }
.site-footer .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px; }
.site-footer img { height: 22px; width: auto; }
.site-footer nav { display: flex; gap: 22px; }
.site-footer nav a { text-decoration: none; font-weight: 500; }
.site-footer nav a:hover { color: var(--navy); }
.site-footer .mono { font-size: 12.5px; letter-spacing: .04em; }

/* Reveal al hacer scroll (solo con JS y sin reduced-motion) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .speaker-card__media img, .btn, .link svg { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .speakers { grid-template-columns: repeat(3, 1fr); }
  .reasons { grid-template-columns: repeat(2, 1fr); gap: 8px 36px; }
  .agenda-layout { grid-template-columns: 1fr; gap: 40px; }
  .aside-card { position: static; }
}
@media (max-width: 860px) {
  :root { --header: 64px; }
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .section { padding: 72px 0; }
  .hero { min-height: 0; padding-top: calc(var(--header) + 48px); }
  .hero__bg img { width: 100%; right: 0; opacity: .45; object-position: 60% 50%; -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 60%); mask-image: linear-gradient(to top, transparent 0%, #000 60%); }
  .hero__board { margin-top: 56px; gap: 10px 28px; }
  .intro { grid-template-columns: 1fr; gap: 28px; }
  .venue { grid-template-columns: 1fr; gap: 56px; }
  .venue__media .venue__sub { right: 0; bottom: -28px; }
  .transport { grid-template-columns: 1fr; }
  .speakers { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .speaker-row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .speaker-row .speaker-card__media { max-width: 260px; }
  .stop { grid-template-columns: 1fr; gap: 4px; }
  .line { padding-left: 44px; }
  .stop::before { left: -37px; }
  .stop--pause::before { left: -34px; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 18px; }
  .map-wrap iframe { height: 340px; }
  .gallery-2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .speakers { grid-template-columns: 1fr 1fr; gap: 22px 14px; }
  .speaker-card__name { font-size: 17px; }
  .reasons { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ---------- consentimiento de cookies ---------- */
.cookie-banner {
  position: fixed; z-index: 120; left: 20px; right: 20px; bottom: 20px; margin: 0 auto; max-width: 720px;
  background: var(--white); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(12,20,57,.22); padding: 22px 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 16px 28px; align-items: center;
}
.cookie-banner h2 { font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: -.015em; margin-bottom: 6px; }
.cookie-banner p { font-size: 14.5px; line-height: 1.5; color: var(--slate); }
.cookie-banner p a { color: var(--navy); font-weight: 600; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: 11px 18px; font-size: 14.5px; }
.btn--secondary { background: var(--paper); color: var(--ink); border-color: var(--line-strong); }
.btn--secondary:hover { border-color: var(--navy); color: var(--navy); }

.map-gate { position: relative; min-height: 440px; background: var(--paper); display: grid; place-items: center; text-align: center; padding: 32px; }
.map-gate--loaded { display: block; padding: 0; min-height: 0; }
.map-gate__inner { max-width: 460px; }
.map-gate__inner svg { width: 40px; height: 40px; color: var(--navy); margin: 0 auto 14px; }
.map-gate__inner h3 { font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -.015em; margin-bottom: 8px; }
.map-gate__inner p { font-size: 14.5px; color: var(--slate); line-height: 1.5; margin-bottom: 18px; }
.map-gate__inner p a { color: var(--navy); font-weight: 600; }
.map-gate__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.legal h2 { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -.02em; margin: 40px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--ink); font-size: 16.5px; line-height: 1.65; }
.legal p + p { margin-top: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin-top: 10px; }
.legal li + li { margin-top: 6px; }
.legal table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: 15px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal th { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--slate); }
.legal .state { margin-top: 24px; padding: 18px 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.legal .state p { margin: 0; font-weight: 500; }

@media (max-width: 640px) {
  .cookie-banner { grid-template-columns: 1fr; left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
  .map-gate { min-height: 340px; }
}
