/* ============================================================
   ONCO ORAL · Tema "LIGHT BEIGE" (v2 — pedido del cliente)
   Fondo beige cálido on-brand (ref. Instagram @onco.oral + Pastel #FFF4C9).
   Migrado desde el Dark Glass conservando layout, glass y animaciones;
   solo cambian valores de color y superficies (oscuro → claro).
   Stack: HTML estático + Tailwind CDN + GSAP. CSS propio.
   ============================================================ */

:root {
  /* Beige/claro. Se conservan los NOMBRES de token (para no romper las
     utilidades Tailwind mapeadas en cada HTML); cambian los VALORES. */
  --base900: #ECE3D1;   /* fondo de página (beige cálido) */
  --base800: #F5EFE2;   /* crema — cards/header/superficies claras */
  --base700: #E1D6BF;   /* beige profundo — bandas/contraste */
  --marino:  #25335C;   /* marca (navy profundo) */
  --abeto:   #2E4055;   /* marca */
  --jeans:   #28618B;   /* marca — acento/links */
  --jeansup: #1F5C86;   /* azul profundo: accesible como link/kicker sobre claro */
  --pastel:  #FFF4C9;   /* marca — glow cálido (washes) */
  --acero:   #647089;   /* texto muted, oscurecido para AA sobre beige */
  --ink:     #22304E;   /* texto principal navy sobre beige (antes era claro) */

  --glass-bg:    linear-gradient(155deg, rgba(255,255,255,.72), rgba(255,252,244,.5));
  --glass-brd:   rgba(37,51,92,.14);
  --glass-shadow:0 24px 60px -34px rgba(37,51,92,.30);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; background: var(--base900); position: relative; color: var(--ink); }
::selection { background: var(--jeans); color: #fff; }

h1, h2, h3 { font-family: "Bricolage Grotesque", system-ui, sans-serif; }

/* ============================================================
   FONDO · campo de glow cálido + capas
   ============================================================ */
.bg-field { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-field::before {            /* degradado base beige (profundidad cálida) */
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(255,244,201,.5), transparent 60%),
    linear-gradient(180deg, var(--base800) 0%, var(--base900) 45%, #E6DAC4 100%);
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .55;
  will-change: transform;
}
.blob--1 { width: 46vw; height: 46vw; left: -10vw; top: 2vh;
  background: radial-gradient(circle, rgba(255,244,201,.7), transparent 70%);
  animation: drift1 22s ease-in-out infinite; }
.blob--2 { width: 40vw; height: 40vw; right: -8vw; top: 30vh;
  background: radial-gradient(circle, rgba(40,97,139,.18), transparent 70%);
  animation: drift2 28s ease-in-out infinite; }
.blob--3 { width: 30vw; height: 30vw; left: 30vw; bottom: -6vh;
  background: radial-gradient(circle, rgba(255,244,201,.55), transparent 70%);
  animation: drift1 26s ease-in-out infinite reverse; }
/* red de partículas: capa fija sobre el glow (z-1) y bajo el contenido (z-2);
   el backdrop-filter de los cards la difumina. No intercepta el cursor. */
#particles-bg { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

.grid-veil {
  position: absolute; inset: 0; opacity: .6;
  background-image:
    linear-gradient(rgba(37,51,92,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,51,92,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 80%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 80%);
}
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4vw,3vh) scale(1.08); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-3vw,-3vh) scale(1.1); } }

/* todo el contenido por encima del campo de glow.
   Incluye body > main: en páginas que envuelven las secciones en <main> (clínicas,
   equipo), sin esto el contenido queda al nivel del fondo fijo y la GPU lo compone
   detrás → el hero se volvía invisible. */
body > header, body > section, body > footer, body > main, body > .wa-float { position: relative; z-index: 2; }

/* ============================================================
   VIDRIO (glass) — glassmorphism claro
   ============================================================ */
.glass {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  border: 1px solid var(--glass-brd);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,.65);
  border-radius: 1.25rem;
}
/* filo luminoso superior (jeans -> pastel) */
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(40,97,139,.35), rgba(37,51,92,.04) 40%, rgba(255,244,201,.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: .8;
}

/* ============================================================
   TIPOGRAFÍA / utilidades
   ============================================================ */
.eyebrow, .kicker {
  display: inline-block; font-weight: 600; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--jeansup);
}
.kicker { font-family: "JetBrains Mono", monospace; letter-spacing: .12em; font-weight: 500; }
.eyebrow { padding-left: 2.2rem; position: relative; }
.eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 1.6rem; height: 2px;
  transform: translateY(-50%); background: var(--jeansup); opacity: .8; }
.kicker--center { display: block; text-align: center; }

.hero-title { color: var(--ink); }
.glow-word { position: relative; color: var(--jeans); }
.glow-word::after {       /* único toque Pastel: subrayado-luz cálido */
  content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .5em;
  background: radial-gradient(60% 100% at 50% 50%, rgba(255,222,100,.5), transparent 70%);
  z-index: -1; filter: blur(2px);
}

.h2 { color: var(--ink); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.14; }
.h2--center { text-align: center; }

/* ============================================================
   BOTONES / LINKS
   ============================================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background: linear-gradient(135deg, var(--jeans), #1d4e74);
  color: #fff; font-weight: 600; font-size: .95rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1px solid rgba(29,78,116,.5);
  box-shadow: 0 10px 30px -10px rgba(40,97,139,.5), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .3s var(--spring), box-shadow .3s ease, filter .3s ease;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.08);
  box-shadow: 0 18px 40px -12px rgba(40,97,139,.5), inset 0 1px 0 rgba(255,255,255,.25); }
.btn-primary--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* botón secundario "derivar" (contorno navy sobre beige) */
.btn-derivar {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.45); color: var(--marino);
  font-weight: 600; font-size: .95rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid rgba(37,51,92,.25);
  transition: transform .3s var(--spring), border-color .3s ease, background .3s ease;
  cursor: pointer;
}
.btn-derivar:hover { transform: translateY(-3px); border-color: rgba(40,97,139,.5); background: rgba(255,255,255,.75); }
.btn-derivar svg { color: #128C7E; }

/* botón WhatsApp (verde de marca) — tarjetas de "momento" */
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
  font-weight: 600; font-size: .92rem;
  padding: .7rem 1.2rem; border-radius: 999px; border: 1px solid rgba(18,140,126,.5);
  box-shadow: 0 10px 24px -12px rgba(18,140,126,.6);
  transition: transform .3s var(--spring), filter .3s ease;
  cursor: pointer;
}
.btn-wa:hover { transform: translateY(-2px); filter: brightness(1.06); }

/* tarjetas de "¿En qué momento estás?" */
.momento-card { display: flex; flex-direction: column; gap: .8rem; padding: 1.6rem 1.6rem; }
.momento-card h3 { color: var(--ink); font-weight: 700; font-size: 1.15rem; line-height: 1.25; }
.momento-card p { color: var(--ink); opacity: .82; line-height: 1.55; font-size: .95rem; flex: 1; }
.momento-card .btn-wa { margin-top: .4rem; }
.audiencia { display: inline-flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.audiencia__pill { font-family: "JetBrains Mono", monospace; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--jeansup); border: 1px solid rgba(40,97,139,.3);
  border-radius: 999px; padding: .3rem .7rem; background: rgba(255,255,255,.4); }

.link-quiet { display: inline-flex; align-items: center; gap: .4rem; color: var(--jeans);
  font-weight: 600; font-size: .95rem; transition: gap .25s var(--spring), color .25s ease; }
.link-quiet:hover { gap: .75rem; color: var(--marino); }

.nav-link { position: relative; transition: color .25s ease; color: var(--acero); }
.nav-link:hover { color: var(--ink); }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--jeans); transition: width .3s var(--spring); }
.nav-link:hover::after { width: 100%; }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after { width: 100%; }

/* ---------- Botón hamburguesa ---------- */
.nav-toggle { position: relative; width: 44px; height: 44px; display: inline-grid; place-items: center;
  border: 1px solid var(--glass-brd); border-radius: .7rem; background: rgba(255,255,255,.5);
  cursor: pointer; transition: background .25s ease, border-color .25s ease; }
.nav-toggle:hover { background: rgba(255,255,255,.8); border-color: rgba(40,97,139,.4); }
.nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .3s var(--spring), opacity .25s ease; }
.nav-toggle span + span { margin-top: 5px; }
.drawer-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.drawer-open .nav-toggle span:nth-child(2) { opacity: 0; }
.drawer-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Drawer móvil ---------- */
.mobile-drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; pointer-events: none; }
.mobile-drawer.is-open { visibility: visible; pointer-events: auto; }
.mobile-drawer__backdrop { position: absolute; inset: 0; background: rgba(37,51,92,.28);
  opacity: 0; transition: opacity .35s ease; backdrop-filter: blur(2px); }
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px);
  background: linear-gradient(180deg, rgba(245,239,226,.98), rgba(236,227,209,.99));
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-left: 1px solid var(--glass-brd); box-shadow: -30px 0 80px -30px rgba(37,51,92,.35);
  padding: 5.5rem 1.6rem 2rem; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--spring); }
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__close { position: absolute; top: 1.1rem; right: 1.1rem; width: 44px; height: 44px;
  display: grid; place-items: center; border-radius: .7rem; color: var(--ink);
  border: 1px solid var(--glass-brd); background: rgba(255,255,255,.5); cursor: pointer; }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-link { padding: .95rem .25rem; font-size: 1.1rem; font-weight: 600; color: var(--acero);
  border-bottom: 1px solid rgba(37,51,92,.12); transition: color .2s ease, padding-left .25s var(--spring); }
.mobile-link:hover { color: var(--ink); padding-left: .6rem; }
.mobile-link.is-active { color: var(--jeans); }
body.drawer-open { overflow: hidden; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header.scrolled {
  background: rgba(245,239,226,.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37,51,92,.12);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-photo { overflow: hidden; border-radius: 1.6rem; max-width: 480px; margin-inline: auto; }
.hero-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block;
  filter: brightness(1) contrast(1) saturate(1); }
.hero-photo__scrim { position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(200deg, rgba(37,51,92,.02), rgba(37,51,92,.28));
  pointer-events: none; }
.hero-chip {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem; font-size: .85rem; color: #fff; font-weight: 500;
  border-radius: .9rem;
  background: linear-gradient(180deg, rgba(37,51,92,0), rgba(37,51,92,.55));
}
.hero-chip__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pastel);
  box-shadow: 0 0 0 4px rgba(255,244,201,.3); animation: pulse 2.6s ease-in-out infinite; }
.photo-ref {
  position: absolute; top: .7rem; right: .7rem; z-index: 2;
  font-family: "JetBrains Mono", monospace; font-size: .62rem; letter-spacing: .08em;
  text-transform: uppercase; color: #fff;
  background: rgba(37,51,92,.55); border: 1px solid rgba(255,255,255,.25);
  padding: .25rem .55rem; border-radius: .5rem; backdrop-filter: blur(4px);
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.25); opacity: 1; } }

.scroll-cue { position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(37,51,92,.3); border-radius: 999px; z-index: 5; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px;
  background: var(--jeans); transform: translateX(-50%); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ============================================================
   SECCIONES · cuadrante glass marcado por sección
   ============================================================ */
:root {
  /* cuadrante: deliberadamente MÁS sobrio que .glass (info-card/bento)
     para enmarcar sin competir con las tarjetas internas */
  --cuad-bg:     linear-gradient(160deg, rgba(255,255,255,.55), rgba(255,250,240,.34));
  --cuad-brd:    rgba(37,51,92,.10);
  --cuad-shadow: 0 34px 90px -54px rgba(37,51,92,.22);
}

/* el aire entre cuadrantes lo da este padding (gap ~1.5–2rem) + el gutter lateral;
   el hero queda excluido porque no usa .section */
.section { padding: clamp(.7rem, 1.6vw, 1.1rem) clamp(1rem, 4vw, 2rem); }
.wrap { width: 100%; max-width: 1120px; margin-inline: auto; padding-inline: 1.25rem; }

/* cada sección de contenido = un cuadrante de vidrio translúcido (deja ver el glow detrás) */
.section > .wrap {
  padding: clamp(1.8rem, 4vw, 3.2rem);
  background: var(--cuad-bg);
  border: 1px solid var(--cuad-brd);
  border-radius: clamp(1.1rem, 2.2vw, 1.6rem);
  backdrop-filter: blur(8px) saturate(143%);
  -webkit-backdrop-filter: blur(8px) saturate(143%);
  box-shadow: var(--cuad-shadow), inset 0 1px 0 rgba(255,255,255,.55);
}

/* secciones que YA traen su propia isla (ciclos band, form-card): sin cuadrante,
   evita el doble-encaje vidrio-sobre-vidrio */
.section--plain > .wrap {
  padding-inline: 0; padding-block: 0;
  background: none; border: 0; border-radius: 0;
  backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none;
}

.info-card { padding: 1.5rem 1.6rem; color: var(--ink); opacity: 1; line-height: 1.6;
  transition: transform .35s var(--spring), box-shadow .35s ease; }
.info-card:hover { transform: translateY(-4px);
  box-shadow: 0 28px 60px -30px rgba(40,97,139,.35), inset 0 1px 0 rgba(255,255,255,.7); }
.info-card--accent { border-color: rgba(40,97,139,.4); }
.info-card--accent::before { opacity: 1;
  background: linear-gradient(135deg, rgba(40,97,139,.5), rgba(37,51,92,.06) 45%, rgba(255,244,201,.5)); }

/* remate sección 2 */
.remate-tile { padding: 1.2rem 1.4rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: baseline; gap: .5rem; }
.remate-tile__big { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700;
  font-size: 1.6rem; color: var(--jeans); }

/* marcos de foto */
.media-frame { overflow: hidden; border-radius: 1.4rem; }
.media-frame img { width: 100%; aspect-ratio: 16/11; object-fit: cover; display: block;
  filter: brightness(1) saturate(1); transition: transform .6s var(--spring); }
.media-frame:hover img { transform: scale(1.04); }

/* tilt suave en hover (potenciado por JS spring) */
.tilt { transition: transform .4s var(--spring); }

/* ============================================================
   SECCIÓN 5 · BENTO
   ============================================================ */
.bento { display: grid; gap: 1.1rem; grid-template-columns: 1.15fr 1fr 1fr; grid-auto-rows: 1fr; }
.bento-lead { grid-row: span 1; grid-column: 1; padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; flex-direction: column; justify-content: center; }
.bento-stage { padding: 1.7rem 1.6rem; display: flex; flex-direction: column; gap: .5rem;
  transition: transform .35s var(--spring), box-shadow .35s ease; }
.bento-stage:hover { transform: translateY(-6px);
  box-shadow: 0 30px 64px -28px rgba(40,97,139,.4), inset 0 1px 0 rgba(255,255,255,.7); }
.stage-num { color: var(--acero); font-size: .9rem; letter-spacing: .12em; }
.stage-title { font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.bento-stage p { color: var(--ink); opacity: .82; line-height: 1.55; }
/* "Durante" destacada con el toque Pastel cálido */
.bento-stage--feature { border-color: rgba(216,166,60,.5); }
.bento-stage--feature::before { opacity: 1;
  background: linear-gradient(135deg, rgba(255,222,100,.6), rgba(40,97,139,.12) 50%, rgba(255,244,201,.4)); }
.bento-stage--feature .stage-num,
.bento-stage--feature .stage-title { color: #B9822A; }

/* ============================================================
   SECCIÓN 7 · CICLOS
   ============================================================ */
.ciclos { padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; overflow: hidden; }
.ciclos__halo { position: absolute; left: 50%; top: -30%; transform: translateX(-50%);
  width: 70%; height: 80%; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,244,201,.6), transparent 70%); filter: blur(40px);
  pointer-events: none; }
.ciclos__logo { margin-top: 2.4rem; display: flex; justify-content: center; }
.ciclos__logo img { height: 60px; width: auto; }

/* ============================================================
   FORMULARIO
   ============================================================ */
.section--form { padding-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.form-card { margin: 2.6rem auto 0; max-width: 640px; padding: clamp(1.6rem, 4vw, 2.6rem); text-align: left; }
.form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-field__label { font-weight: 600; font-size: .85rem; color: var(--ink); }
.form-field input {
  width: 100%; padding: .85rem 1rem; border-radius: .8rem;
  border: 1px solid rgba(37,51,92,.22); background: rgba(255,255,255,.7);
  font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field input::placeholder { color: rgba(100,112,137,.9); }
.form-field input:focus { outline: none; border-color: var(--jeans); background: rgba(255,255,255,.95);
  box-shadow: 0 0 0 4px rgba(40,97,139,.16); }
.form-error { color: #C0392B; font-size: .85rem; margin-top: .9rem; font-weight: 500; }
.form-card button { margin-top: 1.4rem; justify-content: center; }
.form-hint { margin-top: 1rem; font-size: .82rem; color: var(--acero); }

/* ============================================================
   FOOTER — banda beige profundo, texto oscuro
   ============================================================ */
.site-footer { background: var(--base700); border-top: 1px solid rgba(37,51,92,.14);
  backdrop-filter: blur(6px); }
.footer-h { font-family: "Bricolage Grotesque", sans-serif; font-weight: 600; font-size: .95rem;
  margin-bottom: 1.1rem; color: var(--ink); }
.footer-list { display: flex; flex-direction: column; gap: .8rem; font-size: .92rem; color: var(--acero); }
.footer-list a { color: var(--acero); transition: color .2s ease; }
.footer-list a:hover { color: var(--jeans); }
.footer-base { border-top: 1px solid rgba(37,51,92,.12); }

.wa-float { position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
  display: grid; place-items: center; border: 1px solid rgba(18,140,126,.5);
  box-shadow: 0 14px 34px -10px rgba(18,140,126,.6);
  transition: transform .3s var(--spring), filter .3s ease; }
.wa-float:hover { transform: translateY(-4px) scale(1.06); filter: brightness(1.08); }

/* ============================================================
   REVEAL (gateado en .js → sin JS, todo visible)
   ============================================================ */
/* El contenido es VISIBLE SIEMPRE. Antes se ocultaba con opacity:0 y dependía del
   JS/IntersectionObserver para revelarlo; si eso no corría (cualquier motivo de
   entorno), el texto quedaba invisible. Ahora nunca puede desaparecer. */
html.js .reveal { opacity: 1 !important; transform: none !important; }
html.js .reveal.is-visible { opacity: 1 !important; transform: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento-lead { grid-column: 1; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-photo { max-width: 100%; }
  /* cuadrante más ajustado en móvil: menos radio, menos padding, gutter mínimo */
  .section { padding-inline: .85rem; }
  .section > .wrap { padding: clamp(1.3rem, 5vw, 1.7rem); border-radius: 1rem; }
}

/* ============================================================
   ACCESIBILIDAD · reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .hero-chip__dot, .scroll-cue span { animation: none !important; }
  .media-frame:hover img, .info-card:hover, .bento-stage:hover, .btn-primary:hover { transform: none; }
  html { scroll-behavior: auto; }
}
