/* Kintsugi Tanatología · identidad "kintsugi cálido/neutral"
   Tokens de color con contraste verificado (AA):
   oro #A89968 = SOLO decorativo · texto oro claro #7A6A45 (4.69:1 en marfil)
   oro sobre fondos oscuros #C4B183 (5.65:1 en #3C3630) */

@font-face {
  font-family: 'Newsreader';
  src: url('/assets/fonts/newsreader-var.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('/assets/fonts/newsreader-italic.woff2') format('woff2');
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F5F1E8;
  --bg2: #EFEADC;
  --ink: #3C3630;
  --body: #5C4D3F;
  --taupe: #8B7355;      /* solo texto grande (3.98:1) */
  --gold: #A89968;       /* solo decorativo */
  --gold-text: #7A6A45;  /* texto pequeño dorado en claro */
  --gold-dark: #C4B183;  /* texto dorado en fondos oscuros */
  --dark: #3C3630;
  --darker: #2E2925;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --r-ctl: 2px;   /* botones e inputs */
  --r-img: 3px;   /* imágenes */
  --r-card: 6px;  /* pop-up y tarjetas */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: rgba(168, 153, 104, 0.25); }
img { max-width: 100%; height: auto; }
a { color: inherit; }

.wrap { max-width: 1080px; margin: 0 auto; padding-left: clamp(1.25rem, 5vw, 3rem); padding-right: clamp(1.25rem, 5vw, 3rem); }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding-left: clamp(1.25rem, 5vw, 3rem); padding-right: clamp(1.25rem, 5vw, 3rem); }
.wrap-post { max-width: 680px; margin: 0 auto; padding-left: clamp(1.25rem, 5vw, 2.5rem); padding-right: clamp(1.25rem, 5vw, 2.5rem); }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.12; margin: 0; }
main { position: relative; z-index: 1; }

/* ---------- vena kintsugi (se dibuja con el scroll, CSS puro) ---------- */
.vein {
  position: fixed; left: 0; top: 0;
  width: 18px; height: 100vh;
  z-index: 0; pointer-events: none; overflow: visible;
  filter: drop-shadow(0 0 3px rgba(168, 153, 104, 0.45));
}
.vein path { fill: none; stroke-linecap: round; vector-effect: non-scaling-stroke; }
.vein-ghost { stroke: rgba(168, 153, 104, 0.16); stroke-width: 2.5; }
.vein-tick { stroke: var(--gold); stroke-width: 1.4; opacity: 0.45; }
.vein-draw {
  stroke: var(--gold); stroke-width: 2.2;
  stroke-dasharray: 1 1; stroke-dashoffset: 0.55; /* fallback: parcialmente dibujada */
}
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .vein-draw {
      animation: vein-draw linear both;
      animation-timeline: scroll(root);
    }
  }
}
@keyframes vein-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  background: rgba(245, 241, 232, 0.85);
  border-bottom: 1px solid rgba(168, 153, 104, 0.22);
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.8rem; padding-bottom: 0.8rem; }
.brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.brand img { flex-shrink: 0; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--ink); letter-spacing: 0.01em; }
.brand-sub { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-text); margin-top: 2px; }
.nav { display: flex; gap: 1.3rem; }
.nav a { font-size: 0.9rem; color: var(--body); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
.nav a:hover { color: var(--gold-text); }
.nav a[aria-current="page"] { border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ---------- botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 0.9rem 1.7rem; border-radius: var(--r-ctl);
  text-decoration: none; cursor: pointer; border: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.12s;
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--body); color: var(--bg); }
.btn-solid:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: var(--body); border: 1px solid rgba(92, 77, 63, 0.4); }
.btn-ghost:hover { border-color: var(--gold-text); color: var(--gold-text); }
.btn-light { background: var(--bg); color: var(--ink); }
.btn-light:hover { background: var(--gold-dark); color: var(--darker); }
.btn-ghost-light { background: transparent; color: var(--bg); border: 1px solid rgba(245, 241, 232, 0.5); }
.btn-ghost-light:hover { border-color: var(--gold-dark); color: var(--gold-dark); }

.kicker { font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-text); margin: 0 0 1.4rem; }
.gold-line { display: block; margin: 1.4rem 0 0; }

/* ---------- hero ---------- */
.hero {
  display: flex; flex-wrap: wrap-reverse; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.hero-text { flex: 1 1 340px; min-width: 300px; }
.hero h1 { font-size: clamp(2.3rem, 6vw, 3.6rem); letter-spacing: -0.01em; }
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.12rem); color: var(--body); max-width: 30rem; margin: 1.6rem 0 2.2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.cta-center { justify-content: center; }
.hero-photo { flex: 1 1 340px; min-width: 280px; max-width: 430px; margin: 0 auto; }
.hero-photo img { display: block; width: 100%; height: auto; border-radius: var(--r-img); }

/* ---------- divisor grieta ---------- */
.crack-divider {
  position: relative; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 153, 104, 0.5) 22%, rgba(168, 153, 104, 0.5) 78%, transparent);
}
.crack-divider span {
  position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px; background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ---------- sobre mí ---------- */
.about { display: flex; flex-wrap: wrap; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.about-figure { flex: 0 1 300px; min-width: 240px; max-width: 340px; margin: 0 auto; }
.logo-circle { position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; border-radius: 50%; }
.logo-circle-bg { position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(circle at 50% 45%, #EFEADC, #E8E1D0); border: 1px solid rgba(168, 153, 104, 0.3); }
.logo-sun {
  position: absolute; left: 60%; top: 34%; width: 42%; height: 42%;
  border-radius: 50%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(196, 170, 104, 0.55), rgba(196, 170, 104, 0) 68%);
  pointer-events: none;
}
.logo-layers { position: relative; width: 78%; height: 78%; }
.logo-layers img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.logo-head { transform-origin: 24.5% 47%; }
.logo-heart { transform-origin: 64% 27%; }
.logo-circle .gold-line { position: absolute; bottom: 11%; left: 50%; transform: translateX(-50%); margin: 0; }
@media (prefers-reduced-motion: no-preference) {
  .logo-sun { animation: sun-pulse 2.6s ease-in-out infinite; }
  .logo-head { animation: look-up 5s ease-in-out infinite; }
  .logo-heart { animation: heart-beat 1.7s ease-in-out infinite; }
}
@keyframes sun-pulse { 0%, 100% { opacity: 0.45; scale: 1; } 50% { opacity: 0.8; scale: 1.12; } }
@keyframes look-up { 0%, 100% { rotate: 0deg; } 50% { rotate: -12deg; } }
@keyframes heart-beat { 0%, 28%, 100% { scale: 1; } 10% { scale: 1.16; } 19% { scale: 1.05; } 24% { scale: 1.12; } }

.about-text { flex: 1 1 360px; min-width: 300px; }
.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1.3rem; }
.about-text p { color: var(--body); margin: 0 0 1.1rem; max-width: 34rem; }
.about-creds {
  font-size: 0.82rem; letter-spacing: 0.03em; color: var(--gold-text);
  border-top: 1px solid rgba(168, 153, 104, 0.3); padding-top: 1rem; margin-top: 1.6rem;
}
.about-creds a { color: var(--gold-text); }

/* ---------- cómo acompaño (escalonado wabi-sabi) ---------- */
.how { padding-top: clamp(1.5rem, 4vw, 3rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.how h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 2.5rem; }
.how-items { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.how-item-mid { margin-top: 2.2rem; }
.how-num { font-family: var(--serif); font-size: 1.05rem; color: var(--gold-text); display: block; margin-bottom: 0.7rem; }
.how-item h3 { font-weight: 500; font-size: 1.3rem; margin-bottom: 0.6rem; }
.how-item p { color: var(--body); font-size: 0.97rem; margin: 0; }
@media (max-width: 768px) {
  .how-items { grid-template-columns: 1fr; }
  .how-item-mid { margin-top: 0; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg2); padding: clamp(3rem, 7vw, 5rem) 0; }
.faq-in h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 2rem; }
.faq-list { max-width: 680px; }
.faq-list details { border-top: 1px solid rgba(168, 153, 104, 0.35); }
.faq-list details:last-child { border-bottom: 1px solid rgba(168, 153, 104, 0.35); }
.faq-list summary {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500;
  padding: 1.1rem 2rem 1.1rem 0; cursor: pointer; list-style: none; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; position: absolute; right: 0.2rem; top: 50%;
  transform: translateY(-50%); color: var(--gold); font-family: var(--sans); font-size: 1.3rem; font-weight: 300;
  transition: transform 0.25s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { color: var(--body); margin: 0 0 1.2rem; max-width: 56ch; }
.faq-list summary:hover { color: var(--gold-text); }

/* ---------- blog ---------- */
.blogprev { padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.blogprev-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.blogprev-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
.blogprev-head .kicker { margin-bottom: 0.8rem; }
.see-all { font-size: 0.85rem; letter-spacing: 0.03em; color: var(--gold-text); text-decoration: none; }
.see-all:hover { color: var(--ink); }

.post-list { display: flex; flex-direction: column; }
.post-row {
  display: flex; gap: 1.5rem; align-items: baseline;
  border-top: 1px solid rgba(168, 153, 104, 0.28);
  padding: 1.5rem 0; text-decoration: none; transition: opacity 0.2s;
}
.post-row:hover { opacity: 0.7; }
.post-date, .post-read { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.72rem; color: var(--gold-text); flex-shrink: 0; }
.post-row-main { flex: 1; display: block; }
.post-row-title { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.25; margin-bottom: 0.4rem; }
.post-row-excerpt { display: block; color: var(--body); font-size: 0.95rem; }
.post-row-big { flex-direction: column; gap: 0.5rem; padding: 1.8rem 0; }
.post-row-big .post-row-title { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
.post-meta { display: flex; gap: 0.9rem; align-items: center; }
.dot { width: 3px; height: 3px; background: #C9C5BA; border-radius: 50%; }

.blog-hero { padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.blog-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.blog-hero .kicker { margin-bottom: 1.2rem; }
.blog-hero-sub { color: var(--body); margin: 1.3rem 0 0; max-width: 34rem; }
.blog-list-wrap { padding-bottom: clamp(4rem, 9vw, 6rem); }

/* ---------- post ---------- */
.post { padding-top: clamp(2.5rem, 6vw, 4rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.post-back { display: inline-block; font-size: 0.85rem; color: var(--gold-text); text-decoration: none; letter-spacing: 0.02em; margin-bottom: 2.2rem; }
.post-back:hover { color: var(--ink); }
.post h1 { font-weight: 500; font-size: clamp(1.9rem, 4.5vw, 2.7rem); letter-spacing: -0.01em; margin-top: 1rem; }
.post .gold-line { margin: 1.6rem 0 2.2rem; }
.post-body p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.22rem); line-height: 1.75;
  color: var(--ink); margin: 0 0 1.5rem;
}
.post-cta {
  margin: 3rem 0; background: var(--bg2);
  border: 1px solid rgba(168, 153, 104, 0.28); border-radius: var(--r-card);
  padding: clamp(1.8rem, 4vw, 2.5rem); text-align: center;
}
.post-cta h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.post-cta p { color: var(--body); font-size: 0.95rem; margin: 0 0 1.4rem; }
.post-cta .kit-form { max-width: 26rem; margin: 0 auto; }

/* ---------- cierre humano ---------- */
.close-human { background: var(--dark); color: var(--bg); padding: clamp(4rem, 9vw, 7rem) clamp(1.25rem, 5vw, 3rem); }
.close-in { max-width: 620px; margin: 0 auto; text-align: center; }
.close-human h2 { font-weight: 300; font-size: clamp(2rem, 4.5vw, 3rem); color: var(--bg); }
.close-human .gold-line { margin: 1.8rem auto 0; }
.close-human > .close-in > p { color: rgba(245, 241, 232, 0.78); margin: 1.8rem 0 2.2rem; font-size: 1.05rem; }
.close-news { border-top: 1px solid rgba(245, 241, 232, 0.18); padding-top: 2.2rem; max-width: 26rem; margin: 2.8rem auto 0; }
.close-news-title { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(245, 241, 232, 0.65); margin: 0 0 0.9rem; }

/* ---------- forms (Kit) ---------- */
.kit-form .kit-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.kit-form input[type="email"] {
  flex: 1; min-width: 160px;
  background: #fff; border: 1px solid rgba(168, 153, 104, 0.45);
  color: var(--ink); font-family: var(--sans); font-size: 0.95rem;
  padding: 0.75rem 0.9rem; border-radius: var(--r-ctl); outline: none;
}
.kit-form input[type="email"]:focus { border-color: var(--gold-text); box-shadow: 0 0 0 2px rgba(122, 106, 69, 0.25); }
.kit-form button {
  background: var(--body); color: var(--bg); border: 0;
  font-family: var(--sans); font-weight: 500; font-size: 0.9rem;
  padding: 0.75rem 1.3rem; border-radius: var(--r-ctl); cursor: pointer;
  transition: background 0.2s, transform 0.12s;
}
.kit-form button:hover { background: var(--ink); }
.kit-form button:active { transform: translateY(1px); }
.kit-consent { font-size: 0.74rem; color: var(--body); margin: 0.7rem 0 0; }
.kit-consent a { color: var(--gold-text); }
.kit-msg { font-family: var(--serif); font-size: 1.05rem; margin: 0.8rem 0 0; min-height: 0; }
.kit-msg:empty { display: none; }

.kit-dark input[type="email"] { background: transparent; border-color: rgba(245, 241, 232, 0.35); color: var(--bg); }
.kit-dark input[type="email"]:focus { border-color: var(--gold-dark); box-shadow: 0 0 0 2px rgba(196, 177, 131, 0.3); }
.kit-dark input::placeholder { color: rgba(245, 241, 232, 0.6); }
.kit-dark button { background: var(--gold-dark); color: var(--darker); }
.kit-dark button:hover { background: var(--bg); }
.kit-dark .kit-consent { color: rgba(245, 241, 232, 0.6); }
.kit-dark .kit-consent a { color: var(--gold-dark); }
.kit-dark .kit-msg { color: var(--gold-dark); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--darker); color: rgba(245, 241, 232, 0.85); padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: clamp(2rem, 5vw, 4rem); justify-content: space-between; }
.footer-brand { flex: 1 1 240px; min-width: 220px; }
.footer-brand-row { margin-bottom: 1rem; }
.footer-brand .brand-name { color: var(--bg); font-size: 1.3rem; }
.footer-brand .brand-sub { color: var(--gold-dark); }
.logo-invert { opacity: 0.9; filter: brightness(1.6); }
.footer-brand p { font-size: 0.9rem; color: rgba(245, 241, 232, 0.6); max-width: 22rem; margin: 0 0 1.4rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-nav a { color: rgba(245, 241, 232, 0.7); font-size: 0.85rem; text-decoration: none; }
.footer-nav a:hover { color: var(--gold-dark); }
.footer-news { flex: 1 1 260px; min-width: 240px; }
.footer-news-title { font-family: var(--serif); font-size: 1.15rem; color: var(--bg); margin: 0 0 0.9rem; }
.footer-legal { border-top: 1px solid rgba(245, 241, 232, 0.12); margin-top: 2.5rem; padding-top: 1.5rem; font-size: 0.75rem; color: rgba(245, 241, 232, 0.45); }

/* ---------- páginas simples ---------- */
.simple-page { padding-top: clamp(3.5rem, 9vw, 6rem); padding-bottom: clamp(4rem, 10vw, 7rem); }
.simple-page h1 { font-size: clamp(2rem, 5vw, 3rem); }
.simple-page p { color: var(--body); max-width: 34rem; margin: 1.5rem 0; }
.legal p { font-size: 0.95rem; }
.legal a { color: var(--gold-text); }
.legal-date { font-size: 0.8rem; color: var(--gold-text); }

/* ---------- pop-up ---------- */
.popup { position: fixed; right: 1rem; bottom: 1rem; z-index: 60; width: calc(100% - 2rem); max-width: 340px; }
.popup-card {
  position: relative; background: var(--bg);
  border: 1px solid rgba(168, 153, 104, 0.4); border-radius: var(--r-card);
  box-shadow: 0 18px 50px -12px rgba(60, 54, 48, 0.4);
  padding: 1.6rem 1.5rem 1.7rem; overflow: hidden;
}
.popup-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}
.popup-card h3 { font-weight: 500; font-size: 1.3rem; line-height: 1.2; margin: 0.3rem 0 0.5rem; }
.popup-card > p { font-size: 0.9rem; color: var(--body); margin: 0 0 1.2rem; }
.popup-card .kit-row { flex-direction: column; }
.popup-x {
  position: absolute; top: 0.6rem; right: 0.7rem;
  background: none; border: 0; cursor: pointer;
  color: var(--gold-text); font-size: 1.2rem; line-height: 1; padding: 0.2rem;
}
.popup-x:hover { color: var(--ink); }
@media (prefers-reduced-motion: no-preference) {
  .popup:not([hidden]) { animation: popup-in 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
}
@keyframes popup-in { from { transform: translateY(130%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 55;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--body); color: var(--bg);
  box-shadow: 0 10px 28px -8px rgba(60, 54, 48, 0.5);
  transition: background 0.2s, transform 0.15s;
}
.wa-float:hover { background: var(--ink); transform: translateY(-2px); }
body.popup-open .wa-float { display: none; }
@media (min-width: 900px) { .wa-float { display: none; } } /* solo móvil/tablet */
@media (prefers-reduced-motion: no-preference) {
  .wa-float:not([hidden]) { animation: wa-in 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
}
@keyframes wa-in { from { transform: translateY(80px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ---------- reveal on scroll (JS agrega .in; sin JS todo visible) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
  html.js .reveal.in { opacity: 1; transform: none; }
}

/* ---------- reduced motion: quieto todo ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

#popup-sentinel { height: 1px; }
