/* =====================================================================
   ADHŌC · MOBILE STYLESHEET (≤768px)
   ---------------------------------------------------------------------
   Hoja independiente que REHACE la versión móvil sección por sección,
   tomando la desktop como referencia visual. Se carga SIEMPRE (después de
   styles.css) y filtra por @media interno → vence en cascada sin tocar el
   desktop. Orden = orden visual de la página.
   ===================================================================== */

@media (max-width: 768px) {

/* ─────────────────────────────────────────────────────────────────────
   0 · BASE / RESET ANTI-OVERFLOW
   ───────────────────────────────────────────────────────────────────── */
html, body {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
:root {
  --margin: 1.25rem;
}
/* Nada puede ser más ancho que la pantalla */
.hero, .about, .showcase, .marquee, .approach, .bg-ink-zone,
.pitch-block, .process, .footer {
  max-width: 100vw;
  overflow-x: clip;
}

/* ─────────────────────────────────────────────────────────────────────
   1 · NAV (barra superior — pill flotante)
   ───────────────────────────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top)) max(var(--margin), env(safe-area-inset-right)) 0.75rem max(var(--margin), env(safe-area-inset-left));
  background: transparent;
  /* difference a nivel de NAV: así el contenido (logo + Menú) se invierte
     contra la página de detrás. Si lo pusiéramos solo en el logo no
     funcionaría: el nav es position:fixed y crea su propio contexto de
     apilado, dejando al logo sin "fondo" real contra el que mezclarse. */
  mix-blend-mode: difference;
}
.nav-left, .nav-center, .nav-right { display: none; }
/* Oculta la línea-timeline del nav de escritorio (track + fill activo) */
.nav::before, .nav::after { display: none !important; }

/* Barra transparente: logo a la IZQUIERDA, acciones (Menú/Contacto) a la
   DERECHA, cada una su propia pastilla suave. Sin contenedor único. */
.nav-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: calc(100vw - var(--margin) * 2);
  background: none;
  border: 0;
  padding: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.nav-mobile-bar canvas { display: none; }
.nav-mobile-logo {
  display: inline-flex;
  align-items: center;
  height: 42px;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-logo img {
  /* Wordmark "adhōc" (Union.svg, ratio ~2.5:1) — escalamos por alto.
     La inversión la aplica el .nav (mix-blend-mode), no aquí. */
  height: 19px;
  width: auto;
  display: block;
}
.nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* Menú como texto plano (sin pastilla): así la inversión del nav se ve
   limpia. El fondo/blur de una pastilla rompería el mix-blend. */
.nav-mobile-link {
  font-family: 'Suisse Intl', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  min-height: 42px;
  padding: 0.6rem 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-link:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; }

/* ─────────────────────────────────────────────────────────────────────
   2 · HERO
   ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
}
.hero-video-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(26px);
  transform: scale(1.2);
  will-change: auto;
}
.hero-video .hero-video-inset {
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(74vw, 460px);
  aspect-ratio: 16/9;
  height: auto;
  object-fit: cover;
  box-shadow: 0 30px 70px -25px rgb(0 0 0 / 0.5);
}
/* Etiquetas en las esquinas con safe-area */
.hero-video-label {
  position: absolute;
  font-family: 'Suisse Intl', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  z-index: 3;
}
.hero-video-tl { top: max(0.9rem, env(safe-area-inset-top)); left: max(0.9rem, env(safe-area-inset-left)); right: auto; bottom: auto; }
.hero-video-bl { bottom: max(0.9rem, env(safe-area-inset-bottom)); left: max(0.9rem, env(safe-area-inset-left)); top: auto; right: auto; }
.hero-video-br { bottom: max(0.9rem, env(safe-area-inset-bottom)); right: max(0.9rem, env(safe-area-inset-right)); top: auto; left: auto; }

/* Marca gigante anclada abajo */
.hero-brand {
  position: relative;
  z-index: 1;
  pointer-events: none;
  height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--margin) max(2rem, env(safe-area-inset-bottom));
}
.hero-svg {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  color: var(--cream);
}

/* ─────────────────────────────────────────────────────────────────────
   3 · ABOUT
   ───────────────────────────────────────────────────────────────────── */
.about {
  padding: 5rem var(--margin);
  background: var(--cream-soft);
}
.about-statement { display: none; }
.about-divider { display: none; }

.about-detail {
  display: block;
  padding: 0;
  scroll-margin-top: 5rem;
}
.about-detail-left { display: none; }
.about-detail-right { display: block; }
.about-detail-right p:first-child {
  font-family: 'Neue Faktum', sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 7vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.5rem;
}
.about-detail-right p {
  font-family: 'SuisseIntl', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgb(var(--ink-rgb) / 0.72);
  margin: 0 0 1.1rem;
  text-align: left;
}
.about-detail .pitch-link {
  margin-top: 0.5rem;
  font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────────────
   4 · SHOWCASE  (webs / a medida envolviendo un vídeo)
   ───────────────────────────────────────────────────────────────────── */
/* Más aire entre el bloque About (…HABLEMOS DE TU PROYECTO) y el showcase */
.showcase { background: var(--cream-soft); padding: 3.5rem 0 2rem; }
.showcase-top-text,
.showcase-bottom-text {
  font-family: 'PP Editorial New', serif;
  font-weight: 200;
  font-size: clamp(3.25rem, 15vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding-inline: var(--margin);
  overflow: hidden;
  /* En mobile NO seguimos el borde del vídeo: el texto va estático */
  transform: none !important;
}
.showcase-top-text { text-align: left; margin-bottom: 0.5rem; }
.showcase-bottom-text { text-align: right; margin-top: 0.5rem; }
.showcase-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16/10;
  /* El efecto "crece con scroll" (clip-path) se desactiva en mobile: vídeo entero */
  clip-path: none !important;
}
.showcase-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.showcase-subtitle {
  font-family: 'SuisseIntl', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgb(var(--ink-rgb) / 0.5);
  padding: 1.5rem var(--margin) 2rem;
}

/* ─────────────────────────────────────────────────────────────────────
   5 · MARQUEE
   ───────────────────────────────────────────────────────────────────── */
.marquee { padding: 1.25rem 0; }
.marquee-track span {
  font-size: clamp(0.72rem, 3vw, 0.95rem);
  letter-spacing: 0.04em;
}
.marquee-track .mq-pill { padding: 0.3em 0.7em; }
.marquee-track .mq-dot { margin: 0 0.45em; }

/* ─────────────────────────────────────────────────────────────────────
   6 · APPROACH  (Cuestionamos lo de siempre)
   ───────────────────────────────────────────────────────────────────── */
.approach {
  padding: 5rem var(--margin);
  background: var(--cream-soft);
  min-height: 0;
  display: block;
}
.approach-header {
  display: block;
  margin-bottom: 2.5rem;
}
.approach-title {
  display: block;
  font-size: clamp(2.1rem, 9.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.approach-subtitle {
  display: block;
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: clamp(0.85rem, 3.6vw, 1rem);
  line-height: 1.35;
  text-transform: uppercase;
  color: rgb(var(--ink-rgb) / 0.55);
}
.approach-list-clean { margin: 0; }
.approach-list-clean li {
  grid-template-columns: 2.4ch 1fr auto;
  column-gap: 0.7rem;
  padding: 1rem 0;
  align-items: baseline;
}
.al-num { font-size: 0.95rem; }
.al-text {
  font-size: clamp(1rem, 4.6vw, 1.3rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.al-toggle {
  font-size: 1.3rem;
  align-self: start;
}
.al-detail {
  font-size: 0.88rem;
  line-height: 1.55;
}
/* En mobile no hay hover: TODO el feedback visual va por .is-open (tap). */
.approach-list-clean li.is-open {
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.approach-list-clean li.is-open .al-detail {
  max-height: 34rem;
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.6rem;
}
.approach-list-clean li.is-open .al-text {
  background-size: 100% 0.05em; /* tachado */
}
.approach-list-clean li.is-open .al-num { color: var(--ink); }
.approach-list-clean li.is-open .al-toggle {
  transform: rotate(45deg);
  color: var(--ink);
}
/* Anula el estado hover heredado (en táctil el hover "se queda pegado" tras
   un tap): solo manda .is-open. */
.approach-list-clean li:hover .al-detail { max-height: 0; }
.approach-list-clean li.is-open:hover .al-detail { max-height: 34rem; }
.approach-list-clean li:hover .al-text { background-size: 0% 0.05em; }
.approach-list-clean li.is-open:hover .al-text { background-size: 100% 0.05em; }

/* ─────────────────────────────────────────────────────────────────────
   7 · FULL IMAGE / canvas físico  →  oculto en mobile
   ───────────────────────────────────────────────────────────────────── */
.bg-ink-zone .fullimage { display: none; }

/* ─────────────────────────────────────────────────────────────────────
   8 · PITCH × 3  (Para quién)  + FLOWER (mockups decorativos)
   ───────────────────────────────────────────────────────────────────── */
.pitch-block {
  height: auto;
  display: block;
  margin-bottom: 0;
  background: var(--cream-soft);
}
.pitch {
  position: relative;
  padding: 4rem var(--margin) 2rem;
  min-height: 0;
  display: block;
  overflow: visible;
}
/* Número como kicker en flujo (NO absolute) → cero solapes */
.pitch-num {
  position: static;
  display: block;
  text-align: left;
  font-family: 'PP Editorial New', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgb(var(--ink-rgb) / 0.45);
  margin: 0 0 0.75rem;
}
.pitch-title {
  font-family: 'Neue Faktum', sans-serif;
  font-weight: 300;
  /* Tamaño que permite que cada línea (p.ej. "PARA QUIENES VAN") entre
     entera, sin orfanatos ni partir palabras. */
  font-size: clamp(1.85rem, 8.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0 0 1.5rem;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}
/* Cada <span> es una línea; que su contenido no se parta a media frase. */
.pitch-title-line { display: block; white-space: nowrap; }
.pitch-copy {
  display: block;
  margin: 0 0 1.5rem;
}
.pitch-lead {
  font-family: 'Neue Faktum', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 1.25rem;
}
.pitch-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-width: 100%;
  list-style: none;
  padding: 0; margin: 0;
}
.pitch-tags li {
  font-size: 0.7rem;
  padding: 0.45rem 0.85rem;
  letter-spacing: 0.06em;
  border: 1px solid rgb(var(--ink-rgb) / 0.3);
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pitch-link { font-size: 1rem; }

/* Flower: banda decorativa contenida, con los mockups apoyados abajo-dcha.
   IMPORTANTE: conservamos los aspect-ratio por-bloque del desktop (832/1248,
   16/9, etc.) — solo escalamos el tamaño. No forzamos un ratio único. */
.flower {
  position: relative;
  height: auto;
  aspect-ratio: 16/10;
  padding: 0;
  margin: 0;
  flex: none;
  overflow: hidden;
}
.flower-svg { width: 100%; height: 100%; }
.flower-svg path { stroke-width: 0.9; }
.flower-images {
  position: absolute;
  bottom: 0.75rem;
  right: var(--margin);
  left: auto;
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  z-index: 2;
}
/* img--1 (mockup vertical): escala por ANCHO, conserva el ratio del bloque */
.pitch-block .flower .flower-img--1 {
  width: clamp(92px, 28vw, 150px);
  height: auto;
}
/* img--2 (vídeo horizontal): escala por ALTO, conserva el ratio del bloque.
   Igualamos especificidad con las reglas desktop para vencer en cascada. */
.pitch-block:first-of-type .flower .flower-img--2,
.flower:not(.flower--alt):not(.flower--offset) .flower-img--2,
.flower--alt .flower-img--2,
.flower--offset .flower-img--2 {
  height: clamp(78px, 22vw, 124px);
  width: auto;
}
/* Sombra sutil; NO tocamos posición ni media interno (el desktop ya los
   pone en static con object-fit cover para estos slots). */
.flower-img {
  border-radius: 7px;
  box-shadow: 0 14px 30px -12px rgb(var(--ink-rgb) / 0.25);
}

/* ─────────────────────────────────────────────────────────────────────
   9 · PROCESS  (Cómo funciona)
   ───────────────────────────────────────────────────────────────────── */
.process {
  height: auto;
  padding: 5rem var(--margin) 4rem;
  background: var(--ink);
  color: var(--cream);
}
.process-sticky {
  position: static;
  height: auto;
  overflow: visible;
  padding: 0;
  display: block;
}
.process-header { margin-bottom: 2.5rem; }
.process-title {
  font-family: 'Neue Faktum', sans-serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 10vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0;
}
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
}
/* Tarjeta: kicker + nombre + descripción a la izquierda, ilustración 56px dcha,
   detalle expandible abajo a ancho completo */
.process-step {
  display: grid;
  grid-template-columns: 1fr 56px;
  grid-template-areas:
    "num   logo"
    "name  logo"
    "desc  logo"
    "arrow arrow"
    "detail detail";
  column-gap: 0.85rem;
  width: auto;
  padding: 1.25rem 1.1rem;
  background: rgb(var(--cream-rgb) / 0.04);
  border: 1px solid rgb(var(--cream-rgb) / 0.1);
  border-radius: 16px;
  min-height: 0;
  cursor: pointer;
  overflow: hidden;
}
.process-num {
  grid-area: num;
  font-family: 'Suisse Intl', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgb(var(--cream-rgb) / 0.45);
  margin: 0 0 0.4rem;
  display: block;
}
.process-name {
  grid-area: name;
  font-family: 'PP Editorial New', serif;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.05;
  color: var(--cream);
  margin: 0;
  display: block;
}
.process-desc {
  grid-area: desc;
  display: block;
  margin: 0.55rem 0 0;
  font-family: 'SuisseIntl', sans-serif;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgb(var(--cream-rgb) / 0.6);
  max-width: none;
  padding: 0;
}
.process-logo {
  grid-area: logo;
  position: static;
  transform: none;
  width: 56px; height: 56px;
  object-fit: contain;
  object-position: top center;
  align-self: start;
  margin-top: 0.3rem;
  opacity: 0.9;
  filter: none;
}
.process-arrow {
  grid-area: arrow;
  position: static;
  display: inline-block;
  justify-self: start;
  margin: 0.75rem 0 0;
  font-size: 1.1rem;
  line-height: 1;
  color: rgb(var(--cream-rgb) / 0.4);
  transition: transform 0.35s ease, color 0.35s ease;
}
.process-step.is-open .process-arrow { transform: rotate(45deg); color: var(--red); }
.process-detail {
  grid-area: detail;
  grid-column: auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25,0.1,0.25,1), opacity 0.3s ease;
}
.process-step.is-open .process-detail { max-height: 360px; opacity: 1; margin-top: 0.7rem; }
.process-detail p {
  padding: 0;
  margin: 0;
  max-width: none;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgb(var(--cream-rgb) / 0.75);
}

/* ─────────────────────────────────────────────────────────────────────
   10 · FOOTER
   ───────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink-deep);
  color: var(--cream);
  padding: 4rem var(--margin) max(2rem, env(safe-area-inset-bottom));
  overflow: hidden;
}
.footer-image-text {
  max-width: 28rem;
  margin: 0 auto 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.45;
}
.footer-image {
  width: 100%;
  height: 52vh;
  margin: 0 auto 2.5rem;
  border-radius: 12px;
}
.footer-image video,
.footer-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.footer-cta { margin-bottom: 2.5rem; }
.footer-cta-pill {
  width: 100%;
  padding: 2rem 1.5rem;
  border-radius: 28px;
  text-align: center;
  white-space: normal;
  font-size: clamp(0.95rem, 4vw, 1.3rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
}
.footer-hero {
  text-align: center;
  font-size: clamp(2.6rem, 12vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  white-space: normal;
  margin-bottom: 2.5rem;
}
.footer-bottom {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.72rem;
}
.footer-bottom-brand { font-size: 0.72rem; }
.footer-legal-pills { gap: 0.5rem; }
.footer-legal-pill { font-size: 0.7rem; padding: 0.5rem 0.9rem; }

/* ─────────────────────────────────────────────────────────────────────
   11 · CONTACT FAB
   ───────────────────────────────────────────────────────────────────── */
.contact-fab {
  right: max(var(--margin), env(safe-area-inset-right));
  bottom: max(1.25rem, calc(env(safe-area-inset-bottom) + 0.75rem));
  width: 56px; height: 56px;
}
.contact-fab-svg { width: 32px; }
/* El bocadillo solo aparece cuando el JS añade .is-visible (no depende de hover) */
.contact-fab-bubble { font-size: 0.8rem; }

/* ─────────────────────────────────────────────────────────────────────
   12 · FORM OVERLAY
   ───────────────────────────────────────────────────────────────────── */
.form-overlay {
  height: 100svh;
  border-radius: 0;
  overscroll-behavior: contain;
}
.form-container {
  width: 100%;
  max-width: none;
  max-height: calc(100svh - 4rem);
  padding: 0 var(--margin);
  -webkit-overflow-scrolling: touch;
}
.form-close {
  top: max(1rem, env(safe-area-inset-top));
  right: max(var(--margin), env(safe-area-inset-right));
  padding: 0.5rem;
  margin: -0.5rem;
  font-size: 2rem;
}
.form-step-header { margin-bottom: 1.75rem; }
.form-step-num { font-size: 0.7rem; }
.form-question {
  font-size: clamp(1.5rem, 7vw, 2.2rem);
  line-height: 1.05;
}
.form-hint { display: block; margin-top: 0.5rem; font-size: 0.85rem; }
.form-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.form-option-box { min-height: 128px; padding: 0.85rem; }
.form-option-name { font-size: 1.2rem; }
.form-option-desc { font-size: 0.74rem; line-height: 1.35; }
.form-tags { gap: 0.4rem; }
.form-tag span { font-size: 0.8rem; padding: 0.55rem 0.95rem; }
.form-input { font-size: 1rem; padding: 1.1rem 0; }
.form-phone-prefix-input { font-size: 1rem; }
.form-textarea { font-size: 1rem; min-height: 120px; margin-bottom: 1.5rem; }
.form-terms { margin-top: 1rem; margin-bottom: 1.25rem; }
/* Navegación pegada abajo: el teclado virtual no la tapa */
.form-step .form-nav {
  position: sticky;
  bottom: 0;
  background: var(--red);
  padding-block: 0.85rem;
  margin-top: 1rem;
  z-index: 2;
}

/* ─────────────────────────────────────────────────────────────────────
   13 · SECTOR PAGES (profile-*)
   ───────────────────────────────────────────────────────────────────── */
.profile-nav {
  padding: max(0.9rem, env(safe-area-inset-top)) max(var(--margin), env(safe-area-inset-right)) 0.9rem max(var(--margin), env(safe-area-inset-left));
  mix-blend-mode: normal;
}
.profile-nav .profile-nav-logo img { height: 22px; }
.profile-nav .profile-nav-back,
.profile-nav .profile-nav-cta {
  font-size: 0.78rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.profile-hero {
  padding: 7rem var(--margin) 4rem;
  min-height: auto;
}
.profile-title { font-size: clamp(1.85rem, 7.5vw, 2.8rem); line-height: 1.1; }
.profile-section { padding: 4.5rem var(--margin); }
.profile-section-title { font-size: clamp(1.6rem, 6.5vw, 2.4rem); }
.profile-concerns-grid { grid-template-columns: 1fr; }
.profile-concern { min-height: 0; padding: 1.6rem 1.4rem; }
.profile-method-step { grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.6rem 0; }
.profile-method-name { font-size: 1.2rem; }
.profile-method-desc { font-size: 0.92rem; line-height: 1.55; }
.profile-contact { padding: 4rem var(--margin) 6rem; }

/* ─────────────────────────────────────────────────────────────────────
   14 · LEGAL PAGES
   ───────────────────────────────────────────────────────────────────── */
.legal { font-size: 0.95rem; padding-top: clamp(3rem, 8vh, 5rem); }
.legal-back { margin-bottom: 2rem; padding: 0.5rem 0; }

} /* fin @media (max-width: 768px) */
