/* ==========================================================================
   TONE5 by LA ROSE COSMETICS — one-page cinematic site
   Design tokens sourced from Manual_Identidad_LA_ROSE_TONE5_v1.0.pdf
   ========================================================================== */

:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-rose: #B8605B;
  --c-rose-soft: #D98C80;
  --c-rose-dark: #743E3D;
  --c-pearl: #F7F5F3;
  --c-warm-grey: #E9E5E2;
  --c-graphite: #242424;
  --c-soft-black: #111111;

  /* Representative tone accents — approximated from product photography, not extracted from master art */
  --t-rojo: #A5192B;
  --t-blanco: #E8E2D8;
  --t-castano: #4A2E23;
  --t-chocolate: #6B4226;
  --t-cobre: #B5502A;
  --t-negro: #1A1310;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --fs-hero: clamp(38px, 6vw, 80px);
  --fs-h1: clamp(34px, 4.6vw, 64px);
  --fs-h2: clamp(28px, 3.4vw, 48px);
  --fs-h3: clamp(20px, 2vw, 28px);
  --fs-body: clamp(16px, 1.1vw, 18px);
  --fs-small: 14px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.tone5-page, .tone5-page * { box-sizing: border-box; }

.tone5-page {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--c-soft-black);
  background: var(--c-white);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Scoped to plain, unclassed tags only — a p/h* carrying its own class (every
   component paragraph on this site does) sets its own margin via that class,
   and a same-specificity ".tone5-page p{margin:0}" would silently win ties
   and override it. :not([class]) keeps the reset from ever fighting a
   component rule while still zeroing default browser spacing on bare tags. */
.tone5-page h1:not([class]), .tone5-page h2:not([class]), .tone5-page h3:not([class]), .tone5-page p:not([class]) { margin: 0; }

.tone5-page img, .tone5-page video { max-width: 100%; display: block; }

.t5-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.t5-eyebrow {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.72;
}

.t5-h1 { font-size: var(--fs-h1); font-weight: 700; letter-spacing: -0.01em; line-height: 1.05; }
.t5-h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: -0.01em; line-height: 1.08; }
.t5-h3 { font-size: var(--fs-h3); font-weight: 600; }
.t5-body { font-size: var(--fs-body); font-weight: 400; line-height: 1.6; }
.t5-small { font-size: var(--fs-small); }

/* ---- Buttons (max 2 principal styles + tone CTA, per manual) ---- */
.t5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.t5-btn:hover { transform: translateY(-2px); }

.t5-btn--primary { background: var(--c-white); color: var(--c-black); }
.t5-btn--primary:hover { background: var(--c-pearl); }

.t5-btn--dark { background: var(--c-black); color: var(--c-white); }
.t5-btn--dark:hover { background: var(--c-soft-black); }

.t5-btn--outline { background: transparent; color: currentColor; border-color: currentColor; }
.t5-btn--outline:hover { background: rgba(255,255,255,0.1); }

.t5-btn--tone { color: var(--c-white); }

/* ---- Nav: LA ROSE (marca madre, protagonista de esta página) + TONE5 (línea de producto) ----
   Fondo sólido + blur permanente (no depende de mix-blend-mode) — contraste garantizado
   contra cualquier imagen/color detrás, incluidos fondos claros como el tono Blanco Polar. */
.t5-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding: var(--space-3) var(--space-4);
  pointer-events: none;
  background: rgba(10, 8, 8, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.t5-nav__row {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.t5-nav__brand { pointer-events: auto; line-height: 0; }
.t5-nav__brand img { height: 122px; width: auto; filter: invert(1); }
.t5-nav__product { height: 54px; width: auto; filter: invert(1); pointer-events: auto; opacity: 0.95; }
.t5-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  pointer-events: auto;
}
.t5-nav__links a {
  color: var(--c-white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  transition: opacity 0.25s ease;
}
.t5-nav__links a:hover { opacity: 1; }
.t5-nav__pro {
  background: var(--c-rose);
  padding: 6px 14px !important;
  border-radius: 999px;
  opacity: 1 !important;
}
.t5-nav__pro:hover { background: var(--c-rose-dark); }
@media (max-width: 780px) {
  .t5-nav__links { display: none; }
  .t5-nav__brand img { height: 94px; }
  .t5-nav__product { height: 42px; }
}

/* ---- Mobile hamburger + slide-down panel — shared by .t5-nav (home) and
   .t5-shopbar (shop/product/cart/checkout/account/contacto), which is why
   this lives in tone5.css rather than tone5-shop.css: both templates load
   this file, only one of the two navs is ever on screen at once. Real gap
   fixed 2026-08-26 — the nav links were simply hidden below 780px with no
   replacement at all before this, mobile visitors had no way to navigate. */
.t5-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  flex-shrink: 0;
}
.t5-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.t5-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.t5-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.t5-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.t5-mobile-panel {
  display: none;
  grid-template-rows: 0fr;
  max-width: 1280px;
  margin: 0 auto;
  pointer-events: none;
  transition: grid-template-rows 0.3s ease;
}
.t5-mobile-panel.is-open { grid-template-rows: 1fr; pointer-events: auto; }
.t5-mobile-panel__inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.t5-mobile-panel a {
  color: var(--c-white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-3) 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

@media (max-width: 780px) {
  .t5-mobile-toggle { display: flex; }
  .t5-mobile-panel { display: grid; }
}

/* In-page anchor targets: offset for the fixed .t5-nav bar so the section
   heading isn't scrolled to a position hidden behind it (native hash jumps
   and the JS smooth-scroll in tone5.js both honor scroll-margin-top). */
#tonos, #tecnologia {
  scroll-margin-top: 170px;
}
@media (max-width: 780px) {
  #tonos, #tecnologia { scroll-margin-top: 140px; }
}

/* ==========================================================================
   01 — HERO
   ========================================================================== */
.t5-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-black);
}
.t5-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t5-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.05) 42%, rgba(0,0,0,0.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 12%);
}
.t5-hero__content {
  position: relative;
  z-index: 2;
  color: var(--c-white);
  padding: var(--space-7) var(--space-4) var(--space-6);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.t5-hero__headline {
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.02;
  max-width: 15ch;
  margin-bottom: var(--space-5);
}
.t5-hero__body {
  max-width: 46ch;
  font-size: var(--fs-body);
  opacity: 0.92;
  margin-bottom: var(--space-4);
}
.t5-hero__tagline {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: var(--space-4);
}
.t5-hero__ctas { display: flex; gap: var(--space-2); flex-wrap: wrap; }
.t5-hero__scroll {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-4);
  z-index: 2;
  color: var(--c-white);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  writing-mode: vertical-rl;
}

/* ==========================================================================
   02 — UNIVERSO DE TONOS
   ========================================================================== */
.t5-section { padding: var(--space-7) 0; }
.t5-section--pearl { background: var(--c-pearl); }
.t5-section--dark { background: var(--c-soft-black); color: var(--c-white); }

.t5-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-6);
}
.t5-section__head .t5-h2 { margin-top: var(--space-2); }
.t5-section__head .t5-body { margin-top: var(--space-2); opacity: 0.72; }

.t5-tonos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-2);
}
.t5-tone-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  color: var(--c-white);
  isolation: isolate;
}
.t5-tone-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.t5-tone-card:hover img { transform: scale(1.06); }
.t5-tone-card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0) 55%);
  z-index: 1;
}
.t5-tone-card__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: var(--space-3) var(--space-2);
}
.t5-tone-card__en {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}
.t5-tone-card__name { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.t5-tone-card__desc { font-size: 12px; opacity: 0.85; margin-bottom: var(--space-2); line-height: 1.4; }
.t5-tone-card__cta {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--c-white);
  text-decoration: none;
}

/* ==========================================================================
   03 — EL PODER DEL 5
   ========================================================================== */
.t5-power5 {
  position: relative;
  background: var(--c-soft-black);
  color: var(--c-white);
  padding: var(--space-7) 0;
  overflow: hidden;
  text-align: center;
}
.t5-power5__giant {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-size: min(64vw, 900px);
  font-weight: 800;
  color: var(--c-white);
  opacity: 0.05;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.t5-power5__content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; padding: 0 var(--space-4); }
.t5-power5__num {
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 800;
  line-height: 1;
  color: var(--c-rose-soft);
}
.t5-power5__body { font-size: var(--fs-body); opacity: 0.85; margin: var(--space-3) 0 var(--space-4); }
.t5-power5__tagline {
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* ==========================================================================
   04 — TECNOLOGÍA
   ========================================================================== */
.t5-tech { background: var(--c-black); color: var(--c-white); padding: var(--space-7) 0; }
.t5-tech__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  border-radius: 8px;
  overflow: hidden;
}
.t5-tech__media video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; }
.t5-tech__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.t5-tech__item .t5-h3 { color: var(--c-rose-soft); margin-bottom: var(--space-1); }
.t5-tech__item .t5-body { opacity: 0.75; }

/* ==========================================================================
   05 — RESULTADO
   ========================================================================== */
.t5-resultado {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-graphite);
}
.t5-resultado__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.t5-resultado__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.82) 30%, rgba(0,0,0,0.15) 100%); }
.t5-resultado__content { position: relative; z-index: 1; color: var(--c-white); max-width: 560px; }
.t5-resultado__list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3) var(--space-4); margin-top: var(--space-4); }
.t5-resultado__list dt { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.t5-resultado__list dd { margin: 0; font-size: 13px; opacity: 0.72; line-height: 1.5; }

/* ==========================================================================
   06 — BENEFICIOS
   ========================================================================== */
.t5-beneficios__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2) var(--space-6);
  text-align: center;
}
.t5-beneficio { max-width: 200px; }
.t5-beneficio__icon { width: 64px; height: 64px; margin: 0 auto var(--space-2); display: block; }
.t5-beneficio__label { font-weight: 700; font-size: 14px; letter-spacing: 0.02em; margin-bottom: 4px; }
.t5-beneficio__desc { font-size: 12px; opacity: 0.65; line-height: 1.4; }

/* ==========================================================================
   07 — CÓMO USAR
   ========================================================================== */
.t5-comousar {
  border-top: 1px solid var(--c-warm-grey);
  border-bottom: 1px solid var(--c-warm-grey);
  padding: var(--space-7) 0;
  text-align: center;
  background: var(--c-pearl);
}
.t5-comousar__steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1180px;
  margin: var(--space-6) auto 0;
  padding: 0 var(--space-2);
}
.t5-comousar__line {
  position: absolute;
  top: 36px;
  left: var(--space-4);
  right: var(--space-4);
  height: 1px;
  background: var(--c-warm-grey);
  z-index: 0;
}
.t5-comousar__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}
.t5-comousar__circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-pearl);
  border: 1.5px solid var(--c-rose);
  display: flex;
  align-items: center;
  justify-content: center;
}
.t5-comousar__circle svg { width: 32px; height: 32px; }
.t5-comousar__number {
  margin-top: var(--space-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-rose);
}
.t5-comousar__title {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-soft-black);
}
@media (max-width: 900px) {
  .t5-comousar__steps { flex-wrap: wrap; gap: var(--space-4) var(--space-2); justify-content: center; }
  .t5-comousar__line { display: none; }
  .t5-comousar__step { width: 42%; }
}

/* ==========================================================================
   08 — SHOP TEASER
   ========================================================================== */
.t5-shop { background: var(--c-black); color: var(--c-white); padding: var(--space-7) 0; text-align: center; }
.t5-shop__swatches { display: flex; justify-content: center; gap: var(--space-2); margin: var(--space-5) 0; flex-wrap: wrap; }
.t5-shop__swatch {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: inline-block;
}

/* ==========================================================================
   09 — FAQ
   ========================================================================== */
.t5-faq { max-width: 760px; margin: 0 auto; }
.t5-faq-item { border-bottom: 1px solid var(--c-warm-grey); padding: var(--space-3) 0; }
.t5-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.t5-faq-item summary::-webkit-details-marker { display: none; }
.t5-faq-item summary::after { content: '+'; font-size: 20px; font-weight: 300; transition: transform 0.3s ease; }
.t5-faq-item[open] summary::after { transform: rotate(45deg); }
.t5-faq-item__body { margin-top: var(--space-2); max-width: 60ch; }
.t5-faq-p { font-size: 14px; line-height: 1.6; opacity: 0.72; margin: 0 0 var(--space-2); }
.t5-faq-p:last-child { margin-bottom: 0; }
.t5-faq-p strong { opacity: 1; font-weight: 700; }
.t5-faq-tagline { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--c-rose-dark); margin: 0 0 var(--space-2); }
.t5-faq-tagline:last-child { margin-bottom: 0; }
.t5-faq-meta { font-size: 13px; line-height: 1.6; opacity: 0.72; margin: 0 0 var(--space-2); }
.t5-faq-sub { margin: 0 0 var(--space-2); }
.t5-faq-sub__title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-rose); margin: 0 0 4px; }
.t5-faq-sub__body { font-size: 14px; line-height: 1.6; opacity: 0.72; margin: 0; }
.t5-faq-sub__body strong { opacity: 1; font-weight: 700; }
.t5-faq-list, .t5-faq-steps { margin: 0 0 var(--space-2); padding-left: 18px; }
.t5-faq-list li, .t5-faq-steps li { font-size: 14px; line-height: 1.7; opacity: 0.8; margin-bottom: 4px; }
.t5-faq-list li strong, .t5-faq-steps li strong { opacity: 1; }
.t5-faq-formula { font-size: 14px; line-height: 1.6; opacity: 0.72; margin: 0 0 var(--space-1); }
.t5-faq-formula strong { opacity: 1; font-weight: 700; }

/* ==========================================================================
   CIERRE
   ========================================================================== */
.t5-cierre {
  background: var(--c-black);
  color: var(--c-white);
  text-align: center;
  padding: var(--space-7) 0;
}
.t5-cierre__logo { height: 122px; width: auto; filter: invert(1); margin-bottom: var(--space-4); }
@media (max-width: 780px) {
  .t5-cierre__logo { height: 94px; }
}
.t5-cierre .t5-h2 { margin-bottom: var(--space-2); }
.t5-cierre__body { opacity: 0.65; max-width: 460px; margin: 0 auto var(--space-4); text-align: center; }
.t5-cierre__tagline { font-size: var(--fs-small); letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.5; }
.t5-footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}
.t5-footer-links a {
  color: var(--c-white);
  opacity: 0.6;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}
.t5-footer-links a:hover { opacity: 1; }
.t5-footer-legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  font-size: 11px;
  opacity: 0.55;
  line-height: 1.7;
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- scroll reveal ---- */
.t5-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.t5-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Staggered children: each item carries its own transition-delay (set in JS)
   so a grid/row cascades in item-by-item instead of arriving as one flat block. */
.t5-reveal-item {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.t5-reveal-item.is-visible { opacity: 1; transform: translateY(0) scale(1); }

/* Hero: fluid entrance on load — headline, body and CTAs cascade in. */
.t5-hero__content > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.t5-hero__content.is-in > *:nth-child(1) { transition-delay: 0.15s; }
.t5-hero__content.is-in > *:nth-child(2) { transition-delay: 0.28s; }
.t5-hero__content.is-in > *:nth-child(3) { transition-delay: 0.42s; }
.t5-hero__content.is-in > *:nth-child(4) { transition-delay: 0.56s; }
.t5-hero__content.is-in > * { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .t5-tonos-grid { grid-template-columns: repeat(2, 1fr); }
  .t5-tech__media { grid-template-columns: 1fr; }
  .t5-tech__grid { grid-template-columns: 1fr 1fr; }
  .t5-resultado__list { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .t5-container { padding: 0 var(--space-3); }
  .t5-tech__grid { grid-template-columns: 1fr; }
  .t5-hero__ctas { flex-direction: column; align-items: stretch; }
  .t5-hero__ctas .t5-btn { text-align: center; }
  .t5-beneficios__row { gap: var(--space-4); }
}

/* ==========================================================================
   ACCESIBILIDAD — prefers-reduced-motion
   El contenido llega igual (opacidad y posición final), solo sin la animación
   de entrada — nunca se oculta información para quien pide menos movimiento.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .t5-reveal,
  .t5-reveal-item,
  .t5-hero__content > * {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .t5-tone-card img { transition: none; }
  .t5-hero__media,
  .t5-tech__media video {
    animation: none;
  }
}
