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

:root {
  --bg:        oklch(97.5% 0.012 75);
  --bg-warm:   oklch(94% 0.018 75);
  --ink:       oklch(14% 0.025 260);
  --ink-soft:  oklch(40% 0.02 260);
  --accent:    oklch(55% 0.19 43);
  --accent-lt: oklch(93% 0.05 75);
  --rule:      oklch(80% 0.015 75);

  --serif: 'Cormorant', Georgia, serif;
  --sans:  'Plus Jakarta Sans', system-ui, sans-serif;

  --max: 1160px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(0.9rem, 1.05vw + 0.5rem, 1.05rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILS ─────────────────────────────────────────── */
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── NAV ────────────────────────────────────────────── */

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: color-mix(in oklch, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

#nav.scrolled { border-color: var(--rule); }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo span { color: var(--accent); }

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bg);
  background: var(--ink);
  padding: 0.55em 1.3em;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* ── HERO ───────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 10vh, 8rem);
}

.hero-tag {
  margin-bottom: 2rem;
}

.hero-heading {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 14ch;
}

.hero-heading em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  margin-top: clamp(1.5rem, 4vh, 2.5rem);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 46ch;
  line-height: 1.6;
}

.hero-actions {
  margin-top: clamp(2rem, 5vh, 3rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--bg);
  background: var(--ink);
  padding: 0.85em 2em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.hero-scroll {
  padding-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--rule);
}

/* ── STATS BAND ─────────────────────────────────────── */
#stats {
  background: var(--ink);
  color: var(--bg);
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}

.stat-item {
  padding: 1.5rem 2.5rem;
  border-right: 1px solid oklch(30% 0.02 260);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
  color: oklch(97% 0.012 75);
}

.stat-num span { color: var(--accent); }

.stat-label {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: oklch(65% 0.015 260);
  line-height: 1.4;
}

/* ── SECCIÓN GENÉRICA ───────────────────────────────── */
section {
  padding-block: clamp(5rem, 10vw, 9rem);
}

.section-header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
}

.section-header h2 em {
  font-style: italic;
  color: var(--accent);
}

hr.section-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* ── PROBLEMA ───────────────────────────────────────── */
#problema {
  background: var(--bg-warm);
}

.problema-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.problema-left h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.problema-left h2 em {
  font-style: italic;
  color: var(--accent);
}

.problema-right p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.problema-right p + p { margin-top: 1.25rem; }

.problema-conclusion {
  color: var(--ink);
  font-weight: 500;
}

.work-visual {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.work-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.work-bar-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.work-bar {
  height: 10px;
  border-radius: 1px;
  flex-shrink: 0;
}

.work-bar.trabajo { width: 33%; background: var(--accent); }
.work-bar.vida    { width: 67%; background: var(--rule); }

.work-bar-text {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ── PROPUESTA ──────────────────────────────────────── */
.venn-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}

.venn-intro {
  color: var(--ink-soft);
  max-width: 42ch;
  line-height: 1.75;
}

.venn-text .pilares {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.pilar {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.pilar-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-top: 0.1rem;
}

.pilar-body strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.pilar-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.venn-diagram {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
}

.venn-key-question {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-lt);
}

.venn-key-question p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}

/* ── ROMÁN ──────────────────────────────────────────── */
#roman {
  background: var(--ink);
  color: oklch(90% 0.012 75);
}

#roman .eyebrow { color: var(--accent); }

.roman-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.roman-photo {
  position: sticky;
  top: 6rem;
}

.roman-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
}

.roman-quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: oklch(80% 0.02 75);
  margin: 0 0 1.75rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--accent);
  background: oklch(18% 0.015 260 / 0.4);
  border-radius: 0 4px 4px 0;
}

.roman-quote::before {
  content: '"';
  display: inline;
  font-size: 1.25em;
  color: var(--accent);
  margin-right: 0.1em;
}

.roman-details h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: oklch(97% 0.012 75);
  margin-block: 0.75rem 1.5rem;
}

.roman-details p {
  color: oklch(65% 0.015 260);
  line-height: 1.75;
}

.roman-details p + p { margin-top: 1.25rem; }

.credentials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.credential {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.75rem;
  align-items: start;
  padding-block: 1rem;
  border-bottom: 1px solid oklch(22% 0.02 260);
}

.credential:first-child { border-top: 1px solid oklch(22% 0.02 260); }

.credential-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.55rem;
}

.credential p {
  font-size: 0.9rem !important;
  color: oklch(75% 0.012 260) !important;
  margin: 0 !important;
}

/* ── CÓMO FUNCIONA ──────────────────────────────────── */
#como {
  background: var(--bg-warm);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--rule);
  position: relative;
}

.step:last-child { border-right: none; }

.step-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--rule);
  margin-bottom: 1.5rem;
}

.step h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.step p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── PRECIOS ────────────────────────────────────────── */
.precios-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 760px;
}

.precio-card {
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
}

.precio-card.destacado {
  border-color: var(--ink);
  background: var(--accent-lt);
}

.precio-badge {
  position: absolute;
  top: -0.75rem;
  left: 2rem;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
}

.precio-tipo {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.precio-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.precio-num sup {
  font-size: 0.4em;
  vertical-align: super;
  font-family: var(--sans);
  font-weight: 500;
}

.precio-desc {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.precio-features {
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.precio-features li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.6rem;
  align-items: start;
}

.precio-features li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.05em;
}

.precio-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 0.85em 1.5em;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s, color 0.2s;
}

.precio-card:not(.destacado) .precio-cta {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.precio-card:not(.destacado) .precio-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

.precio-card.destacado .precio-cta {
  background: var(--ink);
  color: var(--bg);
}

.precio-card.destacado .precio-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.precios-nota {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  max-width: 520px;
}

/* ── REFERENCIAS ────────────────────────────────────── */
#referencias {
  background: var(--bg-warm);
}

.referencias-contexto {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.referencias-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.referencia-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: clamp(1.25rem, 2vw, 1.8rem);
}

.referencia-head {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  align-items: center;
}

.referencia-avatar {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--rule);
}

.referencia-head h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.1;
}

.referencia-head p {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.referencia-card blockquote {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-style: italic;
}

.referencias-opcion {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--rule);
}

.referencias-opcion h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  margin-top: 0.6rem;
}

.testimonios-carousel {
  margin-top: 2rem;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  flex-shrink: 0;
}

/* Nav: flechas + dots en una fila centrada */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: var(--bg);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.carousel-btn:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--rule);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ── RESERVA ────────────────────────────────────────── */
.reserva-opciones {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  max-width: 640px;
}

.reserva-opcion {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--rule);
}

.reserva-opcion > .btn-primary {
  margin-top: auto;
  align-self: center;
}

.reserva-opcion--destacada {
  border-color: var(--ink);
  background: var(--accent-lt);
}

.reserva-opcion-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.reserva-tipo {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.reserva-precio {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.reserva-precio sup {
  font-size: 0.4em;
  vertical-align: super;
  font-family: var(--sans);
  font-weight: 500;
}

.reserva-nota {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.reserva-nota a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.reserva-nota a:hover { color: var(--accent); }

/* ── CTA FINAL ──────────────────────────────────────── */
#cta-final {
  background: var(--accent);
  padding-block: clamp(5rem, 10vw, 8rem);
}

#cta-final .eyebrow {
  color: oklch(97% 0.012 75);
  opacity: 0.7;
}

.cta-heading {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: oklch(97% 0.012 75);
  margin-top: 0.75rem;
  max-width: 18ch;
}

.cta-heading em { font-style: italic; }

.cta-sub {
  margin-top: 1.5rem;
  color: oklch(85% 0.05 55);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  max-width: 46ch;
  line-height: 1.6;
}

.btn-cta-final {
  display: inline-block;
  margin-top: 2.5rem;
  background: oklch(97% 0.012 75);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.9em 2.2em;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-cta-final:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px oklch(40% 0.18 43 / 0.3);
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--rule);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.footer-logo span { color: var(--accent); }
.footer-logo-tld { color: var(--ink-soft); }

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-decoration: none;
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.footer-contacto {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.footer-contacto a {
  color: inherit;
  text-underline-offset: 3px;
}

.footer-contacto a:hover {
  color: var(--ink);
}

/* ── REVEAL DELAY UTILITIES ─────────────────────────── */
/* Used instead of inline style="transition-delay:..." */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.15s; }
.reveal-delay-3 { transition-delay: 0.2s; }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-heading,
.hero-sub,
.hero-actions {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-sub     { animation-delay: 0.1s; }
.hero-actions { animation-delay: 0.2s; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 860px) {
  .problema-layout,
  .venn-section,
  .roman-layout {
    grid-template-columns: 1fr;
  }

  .roman-photo { position: static; }

  .steps {
    grid-template-columns: 1fr;
  }

  .step { border-right: none; border-bottom: 1px solid var(--rule); }
  .step:last-child { border-bottom: none; }

  .precios-layout { grid-template-columns: 1fr; max-width: 400px; }
  .referencias-grid { grid-template-columns: 1fr; }


  .stat-item {
    border-right: none;
    border-bottom: 1px solid oklch(30% 0.02 260);
    padding: 1.25rem 1.5rem;
  }

  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 560px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .reserva-opciones { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-heading,
  .hero-sub,
  .hero-actions { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; }
  .carousel-track { transition: none; }
}

/* ── FOCUS ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Nav and footer logos get a tighter offset */
.nav-logo:focus-visible,
.footer-logo:focus-visible {
  outline-offset: 4px;
}

/* Carousel dots are small — give them more room */
.carousel-dot:focus-visible {
  outline-offset: 4px;
  border-radius: 999px;
}

/* Remove outline on mouse clicks, keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}
