/* =================================================================
   Florencia González — Contadora Pública
   Estilos · HTML/CSS/JS puro
   Paleta: verde azulado profundo + cobre terracota
   ================================================================= */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Color · verde azulado (teal/petróleo) */
  --teal-900: #0B2E2C;
  --teal-800: #103E3B;
  --teal-700: #134E4A;   /* primario */
  --teal-600: #1B5E59;
  --teal-500: #2A7A73;
  --teal-100: #DCEAE8;

  /* Color · cobre terracota (acento) */
  --copper-700: #A85730;
  --copper-600: #BE6A3C;  /* acento principal */
  --copper-500: #C97F50;
  --copper-100: #F3E2D6;

  /* Neutros cálidos */
  --cream: #FAF7F2;       /* fondo */
  --cream-200: #F1EBE1;   /* fondo alterno */
  --white: #FFFFFF;
  --ink: #16201F;         /* texto principal */
  --muted: #4D5C5A;       /* texto secundario */
  --line: #E4DDD2;        /* bordes */

  /* WhatsApp */
  --wa: #25D366;
  --wa-dark: #1EBE5A;

  /* Tipografía */
  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1140px;
  --container-narrow: 800px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(11, 46, 44, .06);
  --shadow-md: 0 10px 30px rgba(11, 46, 44, .10);
  --shadow-lg: 0 24px 60px rgba(11, 46, 44, .16);

  --header-h: 76px;

  /* z-index scale */
  --z-header: 50;
  --z-float: 40;
  --z-overlay: 30;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;          /* ~17px */
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.18;
  color: var(--teal-800);
  font-weight: 600;
  letter-spacing: -0.01em;
}

strong { font-weight: 700; color: var(--teal-800); }

ul { list-style: none; padding: 0; }

/* ----------------------------- A11y ----------------------------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 100;
  background: var(--teal-700);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--copper-600);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------------------------- Layout ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--alt { background: var(--cream-200); }
.section--dark { background: var(--teal-800); }

.section__head {
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section__eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-600);
  margin-bottom: 12px;
}
.section__eyebrow--light { color: var(--copper-500); }
.section__title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.section__title--light { color: var(--white); }
.section__lead {
  margin-top: 16px;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 62ch;
}
.section--dark .section__lead { color: var(--teal-100); }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 22px;
  min-height: 48px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease,
              border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--wa { background: var(--wa); color: #06321a; box-shadow: var(--shadow-sm); }
.btn--wa:hover { background: var(--wa-dark); color: #042a16; box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--teal-700); border-color: var(--teal-700); }
.btn--ghost:hover { background: var(--teal-700); color: var(--white); }

.btn--lg { padding: 16px 28px; min-height: 56px; font-size: 1.05rem; }
.btn--xl { padding: 20px 34px; min-height: 64px; font-size: 1.15rem; }

.btn .icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn--lg .icon, .btn--xl .icon { width: 22px; height: 22px; }

/* link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--copper-700);
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover { color: var(--copper-600); gap: 12px; }
.icon-arrow { width: 20px; height: 20px; }

/* check icon */
.icon-check {
  width: 20px; height: 20px;
  color: var(--copper-600);
  flex-shrink: 0;
}

/* ----------------------------- Header ----------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(250, 247, 242, .85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--teal-700);
  color: var(--cream);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-head); font-weight: 600; color: var(--teal-800); font-size: 1.02rem; }
.brand__role { font-size: .78rem; color: var(--muted); letter-spacing: .02em; }

.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--teal-800);
  transition: background-color .2s ease, color .2s ease;
}
.nav__link:hover { background: var(--teal-100); color: var(--teal-700); }
.nav__link.is-active { color: var(--copper-700); }

.header__cta { margin-left: 4px; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle__bar {
  width: 22px; height: 2px;
  background: var(--teal-800);
  margin-inline: auto;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------- Hero ----------------------------- */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 9vw, 104px);
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(190,106,60,.10), transparent 60%),
    radial-gradient(900px 500px at -5% 110%, rgba(19,78,74,.10), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper-700);
  margin-bottom: 18px;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--copper-600);
  vertical-align: middle;
  margin-right: 12px;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.35rem);
  letter-spacing: -0.02em;
}
.hero__subtitle {
  margin-top: 20px;
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 54ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 30px;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--teal-800);
}

.hero__media { position: relative; }
.hero__photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--teal-800);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--copper-600);
  text-align: left;
}
.hero__badge-num { display: block; font-family: var(--font-head); font-weight: 700; color: var(--teal-700); font-size: 1.25rem; }
.hero__badge-label { font-size: .82rem; color: var(--muted); letter-spacing: .02em; }

/* ----------------------------- Audiencia ----------------------------- */
.audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.audience__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.audience__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--copper-100); }
.audience__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--teal-100);
  color: var(--teal-700);
  margin-bottom: 20px;
}
.audience__icon svg { width: 30px; height: 30px; }
.audience__title { font-size: 1.45rem; margin-bottom: 10px; }
.audience__text { color: var(--muted); margin-bottom: 20px; }
.audience__list { display: grid; gap: 12px; margin-bottom: 26px; }
.audience__list li { display: flex; align-items: flex-start; gap: 11px; }

/* ----------------------------- Servicios ----------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--copper-100); }
.service__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--copper-100);
  color: var(--copper-700);
  margin-bottom: 18px;
}
.service__icon svg { width: 26px; height: 26px; }
.service__title { font-size: 1.2rem; margin-bottom: 10px; }
.service__text { color: var(--muted); font-size: .98rem; }
.service--cta {
  background: var(--teal-700);
  border-color: var(--teal-700);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service--cta .service__title { color: var(--white); }
.service--cta .service__text { color: var(--teal-100); margin-bottom: 18px; }
.service--cta .link-arrow { color: var(--copper-500); }
.service--cta .link-arrow:hover { color: var(--copper-100); }

/* ----------------------------- Pasos ----------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px 28px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-700);
  color: var(--cream);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.step__title { font-size: 1.15rem; margin-bottom: 8px; }
.step__text { color: var(--muted); font-size: .97rem; }

/* ----------------------------- Razones ----------------------------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reason {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.reason:hover { background: rgba(255,255,255,.09); border-color: rgba(201,127,80,.5); transform: translateY(-3px); }
.reason__icon { width: 34px; height: 34px; color: var(--copper-500); margin-bottom: 16px; }
.reason__title { color: var(--white); font-size: 1.18rem; margin-bottom: 8px; }
.reason__text { color: var(--teal-100); font-size: .98rem; }

/* ----------------------------- Sobre mí ----------------------------- */
.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.about__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  background: var(--cream-200);
}
.about__media img { width: 100%; height: 100%; object-fit: cover; }
.about__text { color: var(--muted); margin-top: 16px; }
.about__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__fact-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--copper-700);
}
.about__fact-label { font-size: .9rem; color: var(--muted); }

/* ----------------------------- FAQ ----------------------------- */
.faq { display: grid; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq__item[open] { border-color: var(--copper-100); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--teal-800);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__chevron {
  width: 22px; height: 22px;
  color: var(--copper-600);
  flex-shrink: 0;
  transition: transform .25s ease;
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__a {
  padding: 0 22px 22px;
  color: var(--muted);
}
.faq__a p { max-width: 70ch; }

/* ----------------------------- Contacto ----------------------------- */
.section--contact { background: var(--cream-200); }
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}
.contact__main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.contact__main .btn { width: 100%; }
.contact__note {
  margin-top: 14px;
  color: var(--muted);
  font-size: .98rem;
  text-align: center;
}
.contact__info {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.contact__info li { display: flex; align-items: flex-start; gap: 14px; }
.contact__icon {
  width: 26px; height: 26px;
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  min-height: 360px;
}
.contact__map iframe { width: 100%; height: 100%; min-height: 360px; }

/* ----------------------------- Footer ----------------------------- */
.footer {
  background: var(--teal-900);
  color: var(--teal-100);
  padding: 48px 0 36px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__name { font-family: var(--font-head); font-weight: 600; color: var(--white); }
.footer__role { font-size: .85rem; color: var(--teal-100); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer__nav a { font-size: .92rem; color: var(--teal-100); transition: color .2s ease; }
.footer__nav a:hover { color: var(--copper-500); }
.footer__legal {
  flex-basis: 100%;
  text-align: center;
  font-size: .82rem;
  color: rgba(220,234,232,.6);
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ----------------------------- WhatsApp flotante ----------------------------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: var(--z-float);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #06321a;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(7,50,26,.32);
  transform: translateY(120px);
  opacity: 0;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s ease, background-color .2s ease;
}
.wa-float.is-visible { transform: translateY(0); opacity: 1; }
.wa-float:hover { background: var(--wa-dark); }
.wa-float svg { width: 28px; height: 28px; flex-shrink: 0; }
.wa-float__label { font-size: .98rem; }

/* ----------------------------- Reveal animations ----------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .reasons { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    z-index: var(--z-overlay);
  }
  .nav.is-open { max-height: 70vh; }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 18px 22px;
  }
  .nav__link { padding: 14px 16px; font-size: 1.05rem; }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 420px; margin-inline: auto; }
  .hero__photo { aspect-ratio: 4 / 4.4; }
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .audience { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .reasons { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .brand__role { display: none; }
  .hero__actions .btn { width: 100%; }
  .wa-float__label { display: none; }
  .wa-float { padding: 16px; right: 16px; bottom: 16px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------- Reduced motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .wa-float { transform: none; opacity: 1; }
}

/* =================================================================
   ░░  CAPA DE REDISEÑO EDITORIAL  ░░
   "Estudio editorial" — Fraunces + Hanken Grotesk · papel hueso,
   tinta espresso, azul tinta (accent) y ámbar (marigold).
   Reemplaza el look genérico del header, hero, secciones internas,
   footer y botón flotante. NO afecta a #faq ni #contacto: esas
   secciones conservan sus clases (.section, .faq*, .contact*) y
   estilos originales (teal/cobre, Poppins/Open Sans).
   ================================================================= */
:root {
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-grotesk: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --paper:        #F4EFE5;   /* fondo papel cálido */
  --paper-2:      #ECE4D4;   /* banda alterna */
  --card:         #FBF8F2;   /* superficie clara */
  --espresso:     #1B1A1D;   /* banda oscura (carbón neutro) */
  --espresso-2:   #262428;   /* variante para tarjetas oscuras */
  --ed-ink:       #221A18;   /* texto principal */
  --ed-muted:     #6B5F57;   /* texto secundario */
  --rule:         #DBCFBB;   /* línea fina */
  --rule-2:       #C6B69A;   /* línea marcada */
  --accent:      #1E3A5F;   /* acento principal (azul tinta) */
  --accent-deep: #16263D;
  --marigold:     #C98A1E;   /* acento cálido (ámbar) */
  --marigold-br:  #E0A93B;   /* ámbar sobre oscuro */
  --paper-soft:   #EFE7D6;   /* texto sobre oscuro */
  --muted-dark:   #C4B6A0;   /* texto secundario sobre oscuro */

  --grain: 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.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ----------------------------- Botones editoriales ----------------------------- */
.btn-ed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  line-height: 1;
  padding: 14px 22px;
  min-height: 50px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease,
              border-color .2s ease, box-shadow .2s ease, transform .15s ease;
  white-space: nowrap;
}
.btn-ed:active { transform: translateY(1px); }
.btn-ed .icon { width: 20px; height: 20px; flex-shrink: 0; }
.btn-ed--lg { padding: 17px 30px; min-height: 58px; font-size: 1.04rem; }
.btn-ed--lg .icon { width: 22px; height: 22px; }

.btn-ed--wa { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.btn-ed--wa:hover { background: var(--accent-deep); border-color: var(--accent-deep); box-shadow: 6px 6px 0 rgba(34,26,24,.14); }

.btn-ed--solid { background: var(--espresso); color: var(--paper); border-color: var(--espresso); }
.btn-ed--solid:hover { background: var(--accent); border-color: var(--accent); }

.btn-ed--line { background: transparent; color: var(--ed-ink); border-color: var(--ed-ink); }
.btn-ed--line:hover { background: var(--ed-ink); color: var(--paper); }

/* ----------------------------- Enlace con flecha ----------------------------- */
.link-ed {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--accent);
  transition: gap .2s ease, color .2s ease, border-color .2s ease;
}
.link-ed:hover { gap: 15px; color: var(--accent-deep); }
.link-ed .icon-arrow { width: 18px; height: 18px; }
.link-ed--light { color: var(--marigold-br); border-bottom-color: var(--marigold-br); }
.link-ed--light:hover { color: var(--paper); border-bottom-color: var(--paper); }

/* ----------------------------- Lista con marcas ----------------------------- */
.tick { display: grid; gap: 11px; }
.tick li {
  position: relative;
  padding-left: 22px;
  color: var(--ed-muted);
  font-family: var(--font-grotesk);
}
.tick li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  background: var(--marigold);
  transform: rotate(45deg);
}

/* ----------------------------- Encabezado / masthead ----------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--paper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--rule);
  box-shadow: none;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--rule-2);
  box-shadow: 0 1px 0 var(--rule-2), 0 14px 30px -24px rgba(34,26,24,.5);
}
.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: 13px; }

/* Logo de marca (imagen) — reemplaza el monograma FG */
.brand-logo {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-logo--lg { width: 92px; height: 92px; }
/* Sobre el footer oscuro: disco claro para que el logo (negro/dorado) se vea */
.footer-ed__brand .brand-logo {
  background: var(--card);
  border-radius: 50%;
  padding: 5px;
}
/* En la ficha de "Quién soy": centrado + separación */
.bio__ficha .brand-logo { margin: 0 auto 22px; }

.brand__seal {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--accent);
  box-shadow: inset 0 0 0 3px var(--card), inset 0 0 0 4px rgba(30,58,95,.25);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ed-ink);
  font-size: 1.14rem;
  letter-spacing: -.01em;
}
.brand__role {
  font-family: var(--font-grotesk);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--ed-muted);
}

.nav__list { display: flex; align-items: center; gap: 2px; }
.nav__link {
  display: inline-block;
  padding: 9px 13px;
  border-radius: 4px;
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ed-ink);
  transition: color .2s ease, background-color .2s ease;
}
.nav__link:hover { background: transparent; color: var(--accent); }
.nav__link.is-active { color: var(--accent); background: transparent; }
.nav__link.is-active { box-shadow: inset 0 -2px 0 var(--marigold); }

.header__cta { margin-left: 4px; min-height: 44px; padding: 11px 18px; }
.header__cta .icon { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  background: transparent;
  border: 1.5px solid var(--ed-ink);
  border-radius: 4px;
  cursor: pointer;
}
.nav-toggle__bar { background: var(--ed-ink); }

/* ----------------------------- Ticker / cinta ----------------------------- */
.ticker {
  background: var(--espresso);
  border-block: 1px solid var(--espresso);
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 11px 0;
  will-change: transform;
  animation: ticker-scroll 36s linear infinite;
}
.ticker__item {
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--paper-soft);
}
.ticker__sep { color: var(--marigold-br); font-size: .7rem; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.ticker:hover .ticker__track { animation-play-state: paused; }

/* ----------------------------- Kicker / títulos editoriales ----------------------------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--marigold);
}
.kicker--light { color: var(--marigold-br); }
.kicker--light::before { background: var(--marigold-br); }
.kicker__loc {
  font-weight: 600;
  color: var(--ed-muted);
  letter-spacing: .14em;
  padding-left: 12px;
  border-left: 1px solid var(--rule-2);
}
.kicker__loc::before { content: ""; }

.ed-title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  color: var(--ed-ink);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.018em;
}
.ed-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.ed-title { text-wrap: balance; overflow-wrap: break-word; }
.ed-title--light { color: var(--paper); }
.ed-title--light em { color: var(--marigold-br); }
.ed-lead {
  margin-top: 18px;
  font-family: var(--font-grotesk);
  font-size: 1.12rem;
  color: var(--ed-muted);
  max-width: 58ch;
  line-height: 1.6;
}
.ed-head { max-width: 820px; margin-bottom: clamp(40px, 5vw, 60px); }

/* ----------------------------- Bandas / secciones ----------------------------- */
.slab {
  font-family: var(--font-grotesk);
  background: var(--paper);
  padding: clamp(64px, 9vw, 116px) 0;
  border-top: 1px solid var(--rule);
}
.slab--paper { background: var(--paper-2); }

/* ----------------------------- Hero / portada ----------------------------- */
.cover {
  position: relative;
  font-family: var(--font-grotesk);
  background: var(--paper);
  overflow: hidden;
}
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .05;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.cover__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(48px, 7vw, 92px) 22px clamp(60px, 9vw, 104px);
}
.cover__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ed-ink);
}
.cover__title em { font-style: italic; font-weight: 500; color: var(--accent); }
.cover__lead {
  margin-top: 24px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ed-muted);
  max-width: 50ch;
}
.cover__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cover__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--rule-2);
}
.cover__trust li {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 600;
  font-size: .96rem;
  color: var(--ed-ink);
}
.cover__trust-no {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  color: var(--accent);
}

.cover__figure { position: relative; margin: 0; }
.portrait {
  position: relative;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--espresso);
  border: 1px solid var(--ed-ink);
  box-shadow: 0 30px 60px -34px rgba(34,26,24,.6);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.cover__figure::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--accent);
  border-radius: 2px;
}
.cover__figure::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 34px; top: -14px; right: -14px; bottom: 34px;
  background: repeating-linear-gradient(45deg, transparent 0 7px, rgba(201,138,30,.5) 7px 8px);
  opacity: .5;
}
.seal {
  position: absolute;
  z-index: 2;
  left: -26px;
  bottom: 26px;
  width: 116px; height: 116px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  background: var(--card);
  border: 1.5px solid var(--accent);
  box-shadow: inset 0 0 0 4px var(--card), inset 0 0 0 5px rgba(30,58,95,.35), 0 12px 22px -12px rgba(34,26,24,.5);
  transform: rotate(-9deg);
  color: var(--accent);
}
.seal__top, .seal__bot {
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: .52rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.seal__big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1;
  margin: 3px 0;
}
.seal__big small { font-size: .72rem; font-weight: 600; }
.cover__cap {
  margin-top: 18px;
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--ed-muted);
  text-align: right;
  font-style: italic;
}

/* ----------------------------- Audiencia / perfiles (índice) ----------------------------- */
.ledger--audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1.5px solid var(--ed-ink);
}
.profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 40px 38px 40px 0;
  border-bottom: 1.5px solid var(--ed-ink);
}
.ledger--audience .profile:nth-child(1) { padding-right: 44px; border-right: 1.5px solid var(--ed-ink); }
.ledger--audience .profile:nth-child(2) { padding-left: 44px; }
.profile__no {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
}
.profile__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ed-ink);
  margin-bottom: 10px;
}
.profile__text { color: var(--ed-muted); margin-bottom: 22px; }
.profile .tick { margin-bottom: 26px; }

/* ----------------------------- Servicios / catálogo ----------------------------- */
.catalog { border-top: 1.5px solid var(--ed-ink); }
.catalog__row {
  display: grid;
  grid-template-columns: 92px minmax(220px, 300px) 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 26px 16px;
  border-bottom: 1px solid var(--rule-2);
  transition: background-color .2s ease, padding-left .2s ease, box-shadow .2s ease;
}
.catalog__row:hover {
  background: var(--card);
  padding-left: 26px;
  box-shadow: inset 4px 0 0 var(--accent);
}
.catalog__no {
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--accent);
  padding-top: .35em;
}
.catalog__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.36rem;
  line-height: 1.15;
  color: var(--ed-ink);
}
.catalog__text { color: var(--ed-muted); font-size: 1rem; }
.catalog__cta {
  margin-top: 34px;
  background: var(--espresso);
  color: var(--paper-soft);
  padding: clamp(30px, 4vw, 44px);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.catalog__cta::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--marigold);
}
.catalog__cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--paper);
}
.catalog__cta-text { color: var(--muted-dark); margin-bottom: 12px; max-width: 52ch; }

/* ----------------------------- Proceso / línea de tiempo ----------------------------- */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  counter-reset: tl;
  padding-left: 8px;
}
.timeline__step {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--rule-2);
}
.timeline__step:last-child { border-bottom: 1px solid var(--rule-2); }
.timeline__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 3.4rem;
  line-height: .9;
  color: var(--accent);
  position: relative;
}
.timeline__num::after {
  content: "";
  display: block;
  width: 38px; height: 2px;
  background: var(--marigold);
  margin-top: 14px;
}
.timeline__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.42rem;
  color: var(--ed-ink);
  margin-bottom: 8px;
  padding-top: 6px;
}
.timeline__text { color: var(--ed-muted); max-width: 60ch; }

/* ----------------------------- Banda oscura / por qué ----------------------------- */
.band {
  position: relative;
  font-family: var(--font-grotesk);
  background: var(--espresso);
  color: var(--paper-soft);
  padding: clamp(64px, 9vw, 116px) 0;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .06;
  pointer-events: none;
}
.band__inner {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.band__quote {
  margin-top: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--marigold-br);
  padding-top: 22px;
  border-top: 1px solid rgba(196,182,160,.3);
  max-width: 22ch;
}
.reasons-ed { display: grid; gap: 0; }
.reason-ed {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid rgba(196,182,160,.22);
}
.reason-ed:last-child { border-bottom: 1px solid rgba(196,182,160,.22); }
.reason-ed__no {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--marigold-br);
}
.reason-ed__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.24rem;
  color: var(--paper);
  margin-bottom: 5px;
}
.reason-ed__text { color: var(--muted-dark); font-size: 1rem; }

/* ----------------------------- Sobre mí ----------------------------- */
.about-ed {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.about-ed__media {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--ed-ink);
  box-shadow: -20px 20px 0 -1px var(--card), -20px 20px 0 0 var(--accent);
}
.about-ed__media img { width: 100%; height: 100%; object-fit: cover; }
.about-ed__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.about-ed__text { color: var(--ed-muted); margin-top: 16px; max-width: 60ch; }
.about-ed__text strong { color: var(--ed-ink); font-weight: 700; }
.about-ed__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 30px 0;
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
}
.about-ed__facts li {
  flex: 1 1 0;
  min-width: 120px;
  padding: 20px 22px 20px 0;
}
.about-ed__facts li + li { padding-left: 22px; border-left: 1px solid var(--rule); }
.about-ed__fact-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--accent);
  line-height: 1.1;
}
.about-ed__fact-label { font-size: .86rem; color: var(--ed-muted); }

/* ----------------------------- Footer editorial ----------------------------- */
.footer-ed {
  font-family: var(--font-grotesk);
  background: var(--espresso);
  color: var(--muted-dark);
  padding: clamp(48px, 6vw, 72px) 0 40px;
}
.footer-ed__inner { display: grid; gap: 26px; }
.footer-ed__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(196,182,160,.2);
}
.footer-ed__brand { display: inline-flex; align-items: center; gap: 14px; }
.footer-ed__brand .brand__seal {
  background: transparent;
  border-color: var(--marigold-br);
  color: var(--marigold-br);
  box-shadow: inset 0 0 0 3px var(--espresso), inset 0 0 0 4px rgba(224,169,59,.3);
}
.footer-ed__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--paper);
  letter-spacing: -.01em;
}
.footer-ed__nav { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.footer-ed__nav a {
  font-weight: 600;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted-dark);
  transition: color .2s ease;
}
.footer-ed__nav a:hover { color: var(--marigold-br); }
.footer-ed__role {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--paper-soft);
}
.footer-ed__legal {
  font-size: .78rem;
  letter-spacing: .02em;
  color: rgba(196,182,160,.65);
}

/* ----------------------------- WhatsApp flotante (editorial) ----------------------------- */
.wa-float {
  background: var(--espresso);
  color: var(--paper);
  border: 1.5px solid var(--espresso);
  border-radius: 4px;
  padding: 13px 20px 13px 15px;
  font-family: var(--font-grotesk);
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 5px 5px 0 rgba(30,58,95,.9);
}
.wa-float:hover { background: var(--accent); border-color: var(--accent); box-shadow: 5px 5px 0 rgba(34,26,24,.85); }
.wa-float svg { color: var(--marigold-br); }
.wa-float__label { font-size: .92rem; }

/* ----------------------------- Ancho editorial angosto ----------------------------- */
.container.ed-narrow { max-width: 860px; }

/* ----------------------------- FAQ editorial ----------------------------- */
.faq-ed { border-top: 1.5px solid var(--ed-ink); }
.faq-ed__item { border-bottom: 1px solid var(--rule-2); }
.faq-ed__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.32;
  color: var(--ed-ink);
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}
.faq-ed__q::-webkit-details-marker { display: none; }
.faq-ed__q:hover { color: var(--accent); }
.faq-ed__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .28s ease;
}
.faq-ed__item[open] .faq-ed__q { color: var(--accent); }
.faq-ed__item[open] .faq-ed__icon { transform: rotate(135deg); }
.faq-ed__a {
  padding: 0 4px 26px;
  color: var(--ed-muted);
  font-family: var(--font-grotesk);
}
.faq-ed__a p { max-width: 68ch; }
.faq-ed__a strong { color: var(--ed-ink); font-weight: 700; }

/* ----------------------------- Contacto editorial ----------------------------- */
.contact-ed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3.5vw, 40px);
  align-items: stretch;
}
.contact-ed__main {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--espresso);
  color: var(--muted-dark);
  padding: clamp(28px, 4vw, 46px);
  border-radius: 3px;
}
.contact-ed__main::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--marigold);
}
.contact-ed__cta { width: 100%; }
.contact-ed__note {
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-grotesk);
  color: var(--muted-dark);
  font-size: .96rem;
}
.contact-ed__info {
  display: grid;
  gap: 22px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(196,182,160,.25);
}
.contact-ed__info li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-grotesk);
  line-height: 1.5;
}
.contact-ed__info strong { color: var(--paper); font-weight: 700; }
.contact-ed__no {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--marigold-br);
}
.contact-ed__map {
  border-radius: 3px;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--ed-ink);
  box-shadow: 12px 12px 0 0 var(--accent);
}
.contact-ed__map iframe {
  width: 100%; height: 100%;
  min-height: 380px;
  filter: grayscale(.25) sepia(.06) contrast(1.02);
}

/* =================================================================
   Responsive — capa editorial
   ================================================================= */
@media (max-width: 860px) {
  .contact-ed { grid-template-columns: 1fr; }
  .contact-ed__map { box-shadow: 8px 8px 0 0 var(--accent); min-height: 320px; }
  .contact-ed__map iframe { min-height: 320px; }
}
@media (max-width: 960px) {
  .cover__inner { grid-template-columns: 1fr; gap: 40px; }
  .cover__figure { order: -1; max-width: 440px; margin-inline: auto; }
  .cover__cap { text-align: left; }
  .ledger--audience { grid-template-columns: 1fr; }
  .ledger--audience .profile:nth-child(1) {
    padding-right: 0; border-right: 0;
  }
  .ledger--audience .profile:nth-child(2) { padding-left: 0; }
  .band__inner { grid-template-columns: 1fr; gap: 32px; }
  .about-ed { grid-template-columns: 1fr; }
  .about-ed__media { max-width: 460px; margin-left: 20px; }
}

@media (max-width: 720px) {
  /* En pantallas chicas, los saltos de línea forzados de los títulos
     se ignoran para que el texto se acomode sin recortarse. */
  .ed-title br { display: none; }
}

@media (max-width: 860px) {
  /* Menú móvil — versión editorial (papel + tinta) */
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--paper);
    border-bottom: 1.5px solid var(--ed-ink);
    box-shadow: 0 20px 30px -22px rgba(34,26,24,.6);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    z-index: var(--z-overlay);
  }
  .nav.is-open { max-height: 80vh; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 18px 18px; }
  .nav__link {
    padding: 15px 6px;
    font-size: .9rem;
    border-bottom: 1px solid var(--rule);
    border-radius: 0;
  }
  .nav__link.is-active { box-shadow: inset 3px 0 0 var(--marigold); padding-left: 12px; }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .catalog__row { grid-template-columns: 70px 1fr; row-gap: 6px; }
  .catalog__row .catalog__text { grid-column: 2; }
  .catalog__row:hover { padding-left: 16px; }
}

@media (max-width: 560px) {
  .cover__title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .cover__cta .btn-ed { width: 100%; }
  .profile { grid-template-columns: 1fr; gap: 6px; padding: 30px 0; }
  .timeline__step { grid-template-columns: 60px 1fr; gap: 18px; }
  .timeline__num { font-size: 2.6rem; }
  .catalog__row { grid-template-columns: 1fr; gap: 4px; }
  .catalog__row .catalog__text { grid-column: 1; }
  .about-ed__media { margin-left: 16px; }
  .about-ed__facts li { flex-basis: 100%; }
  .about-ed__facts li + li { padding-left: 0; border-left: 0; padding-top: 16px; border-top: 1px solid var(--rule); }
  .footer-ed__top { flex-direction: column; align-items: flex-start; }
}

/* ----------------------------- Reduced motion (capa editorial) ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; transform: none; }
}

/* ----------------------------- Monograma editorial (reemplaza la foto) ----------------------------- */
/* Hero: composición sobre fondo espresso, dentro del marco del retrato */
.portrait--mono {
  display: grid;
  place-items: center;
  padding: clamp(26px, 4vw, 40px);
}
.mono {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--paper-soft);
}
.mono__eyebrow {
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--marigold-br);
  margin-bottom: 26px;
}
.mono__seal {
  display: grid;
  place-items: center;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1.5px solid var(--marigold-br);
  box-shadow: inset 0 0 0 5px var(--espresso), inset 0 0 0 6px rgba(224,169,59,.32);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.7rem;
  letter-spacing: .03em;
  color: var(--paper);
  margin-bottom: 28px;
}
.mono__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.4vw, 1.95rem);
  line-height: 1.08;
  color: var(--paper);
}
.mono__role {
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--marigold-br);
  margin-top: 10px;
}
.mono__rule { width: 46px; height: 2px; background: var(--marigold-br); margin: 22px 0; }
.mono__foot {
  font-family: var(--font-grotesk);
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--muted-dark);
}

/* Sobre mí: credencial sobre papel claro */
.about-ed__media--mono { background: var(--card); }
.credential {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 4vw, 44px);
}
.credential::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .05;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.credential > * { position: relative; }
.credential__seal {
  display: grid;
  place-items: center;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  box-shadow: inset 0 0 0 4px var(--card), inset 0 0 0 5px rgba(30,58,95,.26);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 22px;
}
.credential__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 2.6vw, 2.1rem);
  line-height: 1;
  color: var(--accent);
}
.credential__role {
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ed-muted);
  margin-top: 12px;
}
.credential__rule { width: 44px; height: 2px; background: var(--marigold); margin: 20px 0; }
.credential__foot {
  font-family: var(--font-grotesk);
  font-size: .84rem;
  line-height: 1.6;
  color: var(--ed-muted);
}

/* Link "Cómo llegar" en la tarjeta de contacto */
.contact-ed__maplink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--marigold-br);
  border-bottom: 1.5px solid var(--marigold-br);
  padding-bottom: 2px;
  transition: gap .2s ease, color .2s ease, border-color .2s ease;
}
.contact-ed__maplink:hover { gap: 12px; color: var(--paper); border-bottom-color: var(--paper); }
.contact-ed__maplink .icon-arrow { width: 16px; height: 16px; }

/* =================================================================
   ░░  REDISEÑO 2 — Hero (broadsheet) · Por qué (bento) · Quién soy (dossier)
   ================================================================= */

/* ----------------------------- Hero · portada tipo diario ----------------------------- */
.front {
  position: relative;
  padding: clamp(32px, 4.5vw, 58px) 22px clamp(54px, 8vw, 96px);
}
.front__masthead {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--ed-ink);
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.front__brand { color: var(--accent); }
.front__meta { color: var(--ed-muted); }
.front__headline {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  color: var(--ed-ink);
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.03em;
  text-wrap: balance;
  max-width: 17ch;
  margin: clamp(26px, 4vw, 50px) 0 clamp(30px, 4vw, 54px);
}
.front__headline em { font-style: italic; font-weight: 500; color: var(--accent); }
.front__columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.05fr;
  gap: 0;
  border-top: 1.5px solid var(--ed-ink);
}
.front__col { padding: 28px 32px 0 0; }
.front__col--trust { padding-left: 32px; border-left: 1px solid var(--rule-2); }
.front__lead {
  font-family: var(--font-grotesk);
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ed-muted);
  max-width: 42ch;
}
.front__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.front__col-label {
  display: block;
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.front__trust { display: grid; gap: 14px; }
.front__trust li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: .98rem;
  color: var(--ed-ink);
  padding-bottom: 13px;
  border-bottom: 1px solid var(--rule);
}
.front__trust-no {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.front__dossier {
  align-self: start;
  margin-top: 28px;
  margin-left: 32px;
  background: var(--espresso);
  color: var(--muted-dark);
  padding: 28px 24px 26px;
  border-radius: 3px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.front__dossier::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: var(--marigold); }
.front__seal {
  display: inline-grid;
  place-items: center;
  width: 66px; height: 66px;
  border-radius: 50%;
  border: 1.5px solid var(--marigold-br);
  box-shadow: inset 0 0 0 3px var(--espresso), inset 0 0 0 4px rgba(224,169,59,.3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--paper);
  margin-bottom: 14px;
}
.front__dossier-name { font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; color: var(--paper); }
.front__dossier-role {
  font-family: var(--font-grotesk);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--marigold-br);
  margin-top: 5px;
}
.front__hours {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(196,182,160,.25);
  display: grid;
  gap: 3px;
  font-family: var(--font-grotesk);
}
.front__hours span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-dark); }
.front__hours strong { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--paper); }

/* ----------------------------- Por qué · manifiesto bento ----------------------------- */
.manifesto__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.manifesto__lead {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  background: var(--espresso-2);
  border: 1px solid rgba(196,182,160,.16);
  border-radius: 4px;
  padding: clamp(28px, 3.4vw, 46px);
}
.manifesto__quote {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.22;
  color: var(--marigold-br);
  max-width: 20ch;
}
.manifesto__cell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196,182,160,.16);
  border-radius: 4px;
  padding: 26px 24px;
  background: rgba(255,255,255,.02);
  transition: background-color .25s ease, transform .25s ease, border-color .25s ease;
}
.manifesto__cell:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(224,169,59,.4);
  transform: translateY(-3px);
}
.manifesto__no {
  position: absolute;
  right: 12px; top: -2px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 4.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(224,169,59,.4);
  pointer-events: none;
}
.manifesto__title {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--paper);
  margin-bottom: 7px;
}
.manifesto__text { position: relative; color: var(--muted-dark); font-size: .98rem; }

/* ----------------------------- Quién soy · ficha + artículo ----------------------------- */
.bio__head { max-width: 920px; margin-bottom: clamp(34px, 4vw, 54px); }
.bio__tagline {
  margin-top: 18px;
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: .01em;
  color: var(--accent);
}
.bio__tagline-sep { color: var(--marigold); margin: 0 10px; font-weight: 700; }
.bio__body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  border-top: 1.5px solid var(--ed-ink);
  padding-top: clamp(28px, 3.4vw, 46px);
}
.bio__ficha {
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: 4px;
  padding: 30px 26px;
  text-align: center;
}
.bio__seal {
  display: inline-grid;
  place-items: center;
  width: 86px; height: 86px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  box-shadow: inset 0 0 0 4px var(--card), inset 0 0 0 5px rgba(30,58,95,.26);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 22px;
}
.bio__facts { display: grid; text-align: left; }
.bio__facts li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
}
.bio__facts li:first-child { border-top: 0; }
.bio__fact-num { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--accent); }
.bio__fact-label { font-family: var(--font-grotesk); font-size: .82rem; color: var(--ed-muted); text-align: right; }
.bio__ficha-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-grotesk);
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--marigold);
}
.bio__article { font-family: var(--font-grotesk); }
.bio__text { color: var(--ed-muted); font-size: 1.1rem; line-height: 1.72; }
.bio__text + .bio__text { margin-top: 18px; }
.bio__text strong { color: var(--ed-ink); font-weight: 700; }
.bio__text--lead::first-letter {
  float: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.6em;
  line-height: .74;
  padding: 8px 12px 0 0;
  color: var(--accent);
}
.bio__article .btn-ed { margin-top: 28px; }

/* ----------------------------- Responsive — rediseño 2 ----------------------------- */
@media (max-width: 900px) {
  .front__columns { grid-template-columns: 1fr 1fr; }
  .front__col--lead { grid-column: 1 / -1; padding-right: 0; }
  .front__col--trust { grid-column: 1; border-left: 0; padding-left: 0; border-top: 1px solid var(--rule-2); padding-top: 24px; }
  .front__dossier { grid-column: 2; margin-left: 0; }
  .manifesto__grid { grid-template-columns: 1fr 1fr; }
  .manifesto__lead { grid-column: 1 / -1; grid-row: auto; }
  .bio__body { grid-template-columns: 1fr; }
  .bio__ficha { max-width: 420px; }
}

@media (max-width: 560px) {
  .front__headline { font-size: clamp(2.05rem, 8.5vw, 2.7rem); max-width: none; }
  .front__columns { grid-template-columns: 1fr; }
  .front__col { padding: 24px 0 0; }
  .front__col--trust { grid-column: 1; }
  .front__dossier { grid-column: 1; }
  .front__cta .btn-ed { width: 100%; }
  .manifesto__grid { grid-template-columns: 1fr; }
}

/* =================================================================
   ░░  REDISEÑO 3 — Hero "El sello"
   Sello/timbre giratorio (SVG) + tipografía cinética + asientos ledger.
   ================================================================= */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.stage {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  font-family: var(--font-grotesk);
}
.stage__paper {
  position: absolute; inset: 0;
  background-image: var(--grain);
  opacity: .05; mix-blend-mode: multiply; pointer-events: none;
}
/* reglas verticales tenues, tipo papel de libro contable */
.stage::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(30,58,95,.05) calc(100% - 1px));
  background-size: 90px 100%;
  pointer-events: none;
}
.stage__inner {
  position: relative;
  padding: clamp(26px, 3.6vw, 52px) 22px clamp(48px, 6vw, 84px);
}

/* ---- Eyebrow con palabra cinética ---- */
.stage__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ed-muted);
  padding-bottom: clamp(20px, 3vw, 34px);
  margin-bottom: clamp(26px, 3.6vw, 44px);
  border-bottom: 1.5px solid var(--ed-ink);
}
.rotator {
  display: inline-block;
  height: 1.2em;
  line-height: 1.2em;
  overflow: hidden;
  vertical-align: bottom;
}
.rotator__list { display: flex; flex-direction: column; animation: rotate-words 11s infinite; }
.rotator__word { height: 1.2em; line-height: 1.2em; white-space: nowrap; color: var(--accent); font-weight: 700; }
@keyframes rotate-words {
  0%, 13%      { transform: translateY(0); }
  16.6%, 29.6% { transform: translateY(-16.667%); }
  33.3%, 46.3% { transform: translateY(-33.333%); }
  50%, 63%     { transform: translateY(-50%); }
  66.6%, 79.6% { transform: translateY(-66.667%); }
  83.3%, 100%  { transform: translateY(-83.333%); }
}

/* ---- Composición principal ---- */
.stage__main {
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.stage__title {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  color: var(--ed-ink);
  font-size: clamp(2.4rem, 5.6vw, 4.7rem);
  line-height: 1.0;
  letter-spacing: -.025em;
  text-wrap: balance;
  max-width: 15ch;
}
.stage__title em { font-style: italic; font-weight: 500; color: var(--accent); }
.stage__sub {
  margin-top: 22px;
  font-size: 1.16rem;
  line-height: 1.55;
  color: var(--ed-muted);
  max-width: 46ch;
}
.stage__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

/* ---- Sello giratorio + chip de horario ---- */
.stage__rail { display: flex; flex-direction: column; align-items: center; gap: 22px; position: relative; }
.stage__seal-svg { width: clamp(196px, 17vw, 252px); height: auto; display: block; }
.stage__ring { fill: none; }
.stage__ring--out { stroke: var(--accent); stroke-width: 1.5; }
.stage__ring--mid { stroke: var(--marigold); stroke-width: 1; }
.stage__ring--in  { stroke: var(--accent); stroke-width: 1; opacity: .45; }
.stage__seal-arc {
  fill: var(--ed-ink);
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 11.4px;
  letter-spacing: .14em;
}
.stage__seal-rot {
  transform-box: view-box;
  transform-origin: 100px 100px;
  animation: seal-spin 28s linear infinite;
}
@keyframes seal-spin { to { transform: rotate(360deg); } }
.stage__seal-fg {
  fill: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 46px;
  text-anchor: middle;
  dominant-baseline: middle;
}
.stage__seal-tag {
  fill: var(--marigold);
  font-family: var(--font-grotesk);
  font-weight: 700;
  font-size: 8.5px;
  letter-spacing: .24em;
  text-anchor: middle;
}
.stage__chip {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: 4px;
  padding: 14px 24px;
  box-shadow: 6px 6px 0 0 var(--accent);
}
.stage__chip-k { display: block; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ed-muted); }
.stage__chip-v { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: var(--ed-ink); margin: 2px 0; }
.stage__chip-foot { display: block; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 700; }

/* ---- Asientos tipo libro contable (con puntos guía) ---- */
.stage__ledger {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 44px;
  margin-top: clamp(30px, 4vw, 50px);
  padding-top: clamp(20px, 2.6vw, 30px);
  border-top: 1.5px solid var(--ed-ink);
}
.stage__entry { display: flex; align-items: baseline; gap: 11px; }
.stage__entry-no {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 1.05rem; color: var(--accent); flex-shrink: 0;
}
.stage__entry-key { font-weight: 700; color: var(--ed-ink); white-space: nowrap; }
.stage__entry-led { flex: 1; align-self: center; border-bottom: 2px dotted var(--rule-2); min-width: 16px; }
.stage__entry-val { color: var(--ed-muted); text-align: right; }

@media (max-width: 900px) {
  .stage__main { grid-template-columns: 1fr; gap: 36px; }
  /* Sello y chip de horarios: solo en desktop */
  .stage__rail { display: none; }
  .stage__title { max-width: none; }
  .stage__ledger { grid-template-columns: 1fr; gap: 0; }
  .stage__entry { padding: 13px 0; border-bottom: 1px solid var(--rule); }
}
@media (max-width: 560px) {
  .stage__title { font-size: clamp(2.05rem, 9vw, 2.8rem); }
  .stage__cta .btn-ed { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .rotator__list { animation: none; }
  .stage__seal-rot { animation: none; }
}
