/* ============================================================
   Cantina Extremavivas — estilos
   Landing rústica/pizarra con fondo aurora y animaciones
   ============================================================ */

:root {
  --bg:        #14100c;
  --bg-soft:   #1f1812;
  --panel:     #271d14;
  --wood:      #3a2a1a;
  --green:     #5d6b3a;
  --green-lt:  #8aa056;
  --gold:      #e6c485;
  --gold-deep: #c39f5e;
  --amber:     #d98b3a;
  --cream:     #f3ead7;
  --muted:     #b3a78f;
  --line:      rgba(230,196,133,.22);
  --shadow:    0 18px 40px rgba(0,0,0,.55);
  --radius:    16px;
  --ease:      cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   FONDO DECORATIVO (aurora animada + grano)
   ============================================================ */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(1100px 600px at 50% -12%, rgba(93,107,58,.30), transparent 70%),
    var(--bg);
}
.bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
  will-change: transform;
}
.bg__blob--1 {
  width: 60vw; height: 60vw;
  top: -14vw; left: -18vw;
  background: radial-gradient(circle, rgba(138,160,86,.55), transparent 65%);
  animation: drift1 22s ease-in-out infinite;
}
.bg__blob--2 {
  width: 52vw; height: 52vw;
  bottom: -16vw; right: -16vw;
  background: radial-gradient(circle, rgba(217,139,58,.42), transparent 65%);
  animation: drift2 27s ease-in-out infinite;
}
.bg__blob--3 {
  width: 40vw; height: 40vw;
  top: 42%; left: 38%;
  background: radial-gradient(circle, rgba(230,196,133,.30), transparent 65%);
  animation: drift3 31s ease-in-out infinite;
}
.bg__pattern {
  position: absolute;
  inset: 0;
  background-image: url("../img/pattern.svg");
  background-size: 250px 250px;
  background-repeat: repeat;
  opacity: .055;
}
.bg__grain {
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .05;
  mix-blend-mode: overlay;
}

@keyframes drift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(8vw,6vw) scale(1.12); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-7vw,-5vw) scale(1.15); }
}
@keyframes drift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-6vw,7vw) scale(.9); }
}

/* ============================================================
   BARRA DE PROGRESO DE SCROLL
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 60;
  background: linear-gradient(90deg, var(--green-lt), var(--gold), var(--amber));
  box-shadow: 0 0 12px rgba(230,196,133,.6);
  transition: width .1s linear;
}

/* ============================================================
   CABECERA
   ============================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  padding-top: max(14px, env(safe-area-inset-top));
  background: rgba(20,16,12,.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: padding .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.topbar.is-scrolled {
  padding-top: max(9px, env(safe-area-inset-top));
  padding-bottom: 9px;
  background: rgba(20,16,12,.92);
  border-bottom-color: var(--line);
}
.topbar__logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.topbar__logo strong { color: var(--gold); font-weight: 600; }
.topbar__link {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease);
}
.topbar__link:active { transform: scale(.95); }
@media (hover: hover) {
  .topbar__link:hover { box-shadow: 0 0 18px rgba(230,196,133,.55); }
}
.topbar__actions { display: flex; align-items: center; gap: 10px; }
.topbar__share {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(230,196,133,.10);
  color: var(--gold);
  cursor: pointer;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.topbar__share:active { transform: scale(.88); }
@media (hover: hover) {
  .topbar__share:hover { background: var(--gold); color: var(--bg); }
}

section { padding: 0 18px; }

/* ============================================================
   HERO / PORTADA
   ============================================================ */
.hero {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
.hero__glow {
  position: absolute;
  top: 4%; left: 50%;
  width: 86%; height: 50%;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(230,196,133,.32), transparent 75%);
  filter: blur(30px);
  z-index: -1;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero__poster {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px var(--line);
  background: var(--panel);
  will-change: transform;
}
.hero__poster img {
  width: 100%;
  height: auto;
  animation: floatY 7s ease-in-out infinite;
}

.hero__cta { text-align: center; margin-top: 30px; }
.hero__kicker {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 7.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.1;
  background: linear-gradient(180deg, var(--cream) 30%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__text {
  color: var(--muted);
  max-width: 420px;
  margin: 12px auto 20px;
  font-size: .98rem;
}

/* Indicador de scroll (ratón animado) */
.scroll-cue {
  display: block;
  width: 26px;
  margin: 26px auto 0;
}
.scroll-cue__mouse {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(230,196,133,.55);
  border-radius: 14px;
  position: relative;
}
.scroll-cue__dot {
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollDot 1.6s ease-in-out infinite;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  position: relative;
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .9rem;
  padding: 15px 34px;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: transform .15s var(--ease), box-shadow .25s var(--ease);
}
.btn--primary {
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 10px 30px rgba(230,196,133,.34);
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.6s ease-in-out infinite;
}
.btn--primary:active { transform: scale(.96); }
@media (hover: hover) {
  .btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(230,196,133,.5);
  }
}

/* ============================================================
   ENCABEZADO DE SECCIÓN
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 54px 0 26px;
}
.section-head__kicker {
  font-family: 'Oswald', sans-serif;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gold);
}
.section-head__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  margin: 6px 0 4px;
}
.section-head__title::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green-lt), var(--gold));
}
.section-head__sub { color: var(--muted); font-size: .92rem; }

/* ============================================================
   GRID DE CARTAS
   ============================================================ */
.cartas { max-width: 760px; margin: 0 auto; }
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-bottom: 6px;
}
.card {
  flex: 0 0 calc(50% - 7px);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
  aspect-ratio: 5 / 7;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.card:active { transform: scale(.98); }
@media (hover: hover) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0,0,0,.62);
  }
  .card:hover .card__img { transform: scale(1.08); }
  .card:hover .card__shine { transform: translateX(220%) skewX(-20deg); }
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,.05) 38%, rgba(20,16,12,.93) 100%);
}
.card__shine {
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(0) skewX(-20deg);
  transition: transform .7s var(--ease);
  pointer-events: none;
}
.card__num {
  position: absolute;
  top: 10px; left: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--bg);
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,.5);
}
.card__label { position: absolute; left: 12px; right: 12px; bottom: 12px; }
.card__name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: clamp(1rem, 4.4vw, 1.25rem);
  line-height: 1.15;
}
.card__hint {
  display: inline-block;
  margin-top: 4px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   ENLACES DE INTERÉS
   ============================================================ */
.enlaces { max-width: 940px; margin: 0 auto; }
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding-bottom: 10px;
}
.link {
  flex: 0 0 100%;
  display: flex;
  align-items: stretch;
  min-height: 138px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--bg-soft));
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,.4);
  transition: transform .18s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.link:active { transform: scale(.98); }
@media (hover: hover) {
  .link:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 18px 34px rgba(0,0,0,.55);
  }
  .link:hover .link__thumb img { transform: scale(1.09); }
  .link:hover .link__arrow { transform: translateX(4px); }
}
.link__thumb {
  flex: 0 0 38%;
  max-width: 220px;
  overflow: hidden;
  position: relative;
  background: var(--wood);
}
.link__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 58%, rgba(31,24,18,.6));
}
.link__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.link__body {
  flex: 1;
  min-width: 0;
  padding: 16px 6px 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.link__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(1.1rem, 4.6vw, 1.3rem);
  line-height: 1.15;
}
.link__desc { color: var(--muted); font-size: .9rem; line-height: 1.4; }
.link__arrow {
  flex: 0 0 auto;
  align-self: center;
  padding: 0 18px;
  color: var(--gold);
  font-size: 1.9rem;
  font-family: 'Oswald', sans-serif;
  transition: transform .2s var(--ease);
}

/* ============================================================
   PIE
   ============================================================ */
.footer {
  text-align: center;
  margin-top: 46px;
  padding: 34px 18px calc(36px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(31,24,18,.6);
}
.footer__name {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cream);
}
.footer__dom { color: var(--gold); font-size: .9rem; margin: 4px 0; }
.footer__year { color: var(--muted); font-size: .78rem; }
.footer__acceso {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 20px;
  border-radius: 999px;
  transition: color .15s var(--ease), border-color .15s var(--ease);
}
@media (hover: hover) {
  .footer__acceso:hover { color: var(--gold); border-color: var(--gold); }
}
.footer__credit {
  display: inline-block;
  margin-top: 16px;
  width: 70%;
  max-width: 270px;
  opacity: .9;
  transition: opacity .2s var(--ease), transform .15s var(--ease);
}
.footer__credit img { width: 100%; height: auto; }
.footer__credit:active { transform: scale(.97); }
@media (hover: hover) {
  .footer__credit:hover { opacity: 1; transform: translateY(-2px); }
}

/* ============================================================
   AVISO EMERGENTE (TOAST)
   ============================================================ */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(26px + env(safe-area-inset-bottom));
  z-index: 120;
  transform: translate(-50%, 24px);
  max-width: 88vw;
  background: rgba(20,16,12,.97);
  color: var(--cream);
  border: 1px solid var(--line);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: .9rem;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   VISOR (LIGHTBOX)
   ============================================================ */
.viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: rgba(8,6,4,.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
}
.viewer.is-open { opacity: 1; visibility: visible; }
.viewer__stage {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
  padding: 6px 12px 14px;
}
.viewer__img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.7);
  cursor: zoom-in;
  user-select: none;
}
/* Hoja de alérgenos ampliada: zoom grande para leer bien la tabla */
.viewer.is-alergeno.is-zoomed .viewer__img { width: 320%; }
.viewer.is-zoomed .viewer__stage { align-items: flex-start; justify-content: flex-start; }
.viewer.is-zoomed .viewer__img {
  max-width: none; max-height: none;
  width: 175%;
  cursor: zoom-out;
  animation: none;
}
.viewer__btn {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(20,16,12,.85);
  color: var(--cream);
  cursor: pointer;
  border-radius: 999px;
  transition: transform .12s var(--ease), background .15s var(--ease);
}
.viewer__btn:active { transform: scale(.9); }
@media (hover: hover) {
  .viewer__btn:hover { background: var(--gold); color: var(--bg); }
}
/* Barra superior del visor: botón de alérgenos (encima de la carta) + cerrar */
.viewer__bar {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  padding-top: max(12px, env(safe-area-inset-top));
}
.viewer__alergenos {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 48px;
  padding: 0 26px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--bg);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .92rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(230,196,133,.4);
  transition: transform .12s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.viewer__alergenos:active { transform: scale(.95); }
.viewer__alergenos.is-active {
  background: transparent;
  color: var(--gold);
  box-shadow: none;
}
@media (hover: hover) {
  .viewer__alergenos:hover { box-shadow: 0 10px 28px rgba(230,196,133,.6); }
}
.viewer__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(20,16,12,.85);
  color: var(--cream);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .12s var(--ease), background .15s var(--ease);
}
.viewer__close:active { transform: translateY(-50%) scale(.9); }
@media (hover: hover) {
  .viewer__close:hover { background: var(--gold); color: var(--bg); }
}
.viewer__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  font-size: 1.8rem; line-height: 1;
}
.viewer__nav:active { transform: translateY(-50%) scale(.9); }
.viewer__prev { left: 12px; }
.viewer__next { right: 12px; }
.viewer.is-zoomed .viewer__nav { display: none; }
.viewer__caption {
  position: absolute;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .85rem;
  color: var(--cream);
  background: rgba(20,16,12,.88);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.viewer__caption b { color: var(--gold); font-weight: 600; }

/* ============================================================
   ANIMACIONES
   ============================================================ */
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@keyframes glowPulse {
  0%,100% { opacity: .7; }
  50%     { opacity: 1; }
}
@keyframes shimmer {
  0%        { left: -120%; }
  55%,100%  { left: 130%; }
}
@keyframes scrollDot {
  0%        { transform: translateY(0); opacity: 1; }
  75%,100%  { transform: translateY(12px); opacity: 0; }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(34px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

/* Entrada del hero (al cargar) */
.anim {
  opacity: 0;
  animation: fadeUp .9s var(--ease) both;
}
.anim--1 { animation-delay: .05s; }
.anim--2 { animation-delay: .22s; }
.anim--3 { animation-delay: .34s; }
.anim--4 { animation-delay: .46s; }
.anim--5 { animation-delay: .58s; }
.anim--6 { animation-delay: .80s; }

/* Aparición al hacer scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(.98);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Transición tarjeta ↔ visor (View Transitions API) */
::view-transition-group(carta-morph) {
  animation-duration: .42s;
  animation-timing-function: cubic-bezier(.2,.7,.2,1);
}
::view-transition-old(carta-morph),
::view-transition-new(carta-morph) {
  animation-duration: .42s;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .28s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 720px) {
  .grid { gap: 18px; }
  .card { flex-basis: calc(33.333% - 12px); }
  .link { flex-basis: calc(50% - 8px); min-height: 162px; }
  .hero { padding-top: 46px; }
}

@media (max-width: 380px) {
  section { padding: 0 13px; }
  .topbar { padding: 11px 13px; }
  .topbar__logo { font-size: .9rem; letter-spacing: .08em; }
  .topbar__link { font-size: .72rem; padding: 6px 11px; }
  .grid { gap: 11px; }
  .card { flex-basis: calc(50% - 5.5px); }
  .link__thumb { flex-basis: 40%; }
  .link__body { padding: 14px 4px 14px 14px; }
  .link__arrow { padding: 0 13px; }
  .topbar__share { width: 33px; height: 33px; }
}

/* Accesibilidad: respeta "reducir movimiento" */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .anim, .reveal { opacity: 1 !important; transform: none !important; }
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) { animation: none !important; }
}
