/* ==========================================================================
   Miudiños · Centro de Ocio Montessori
   Paleta cálida: crema, terracota, salvia, madera
   ========================================================================== */

:root {
  --cream: #fdf8ef;
  --cream-2: #f7efe0;
  --paper: #fffdf8;
  --ink: #3d3429;
  --ink-soft: #6f6353;
  --terracotta: #e0704f;
  --terracotta-dark: #c55a3b;
  --sage: #8ba888;
  --sage-dark: #5e7d5b;
  --sun: #f2b950;
  --rose: #f2c9bb;
  --wood: #b98d68;
  --danger: #c0392b;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(61, 52, 41, .08);
  --shadow-md: 0 8px 24px rgba(61, 52, 41, .12);
  --shadow-lg: 0 16px 48px rgba(61, 52, 41, .16);
  --font-head: "Georgia", "Iowan Old Style", "Palatino Linotype", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --header-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--terracotta-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.container { width: min(1140px, 92%); margin-inline: auto; }
.container-narrow { width: min(780px, 92%); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem;
  font-weight: 700; color: var(--sage-dark); margin-bottom: .6em;
}

.hl { color: var(--terracotta); }
.hl-2 { color: var(--sage-dark); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .85em 1.7em; border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terracotta-dark); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--wood); }
.btn-ghost:hover { background: var(--cream-2); }
.btn-sm { padding: .5em 1.2em; font-size: .9rem; }
.btn[disabled] { opacity: .45; cursor: not-allowed; box-shadow: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253, 248, 239, .92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(185, 141, 104, .25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .5em; text-decoration: none; }
.brand-mark { font-size: 1.6rem; }
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.45rem;
  color: var(--ink); letter-spacing: -.01em;
}

.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; }
.main-nav a:hover { color: var(--terracotta-dark); }
.main-nav .nav-cta { color: #fff; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px; background: none; border: 0; cursor: pointer;
}
.nav-toggle span { display: block; height: 3px; border-radius: 3px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(180deg, #fbeed9 0%, var(--cream-2) 48%, var(--cream) 100%);
}
.hero-blob {
  position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}
.hero-blob-a {
  width: 44vw; max-width: 560px; aspect-ratio: 1; top: -12%; left: -10%;
  background: var(--rose); opacity: .65; animation: drift 14s ease-in-out infinite;
}
.hero-blob-b {
  width: 38vw; max-width: 480px; aspect-ratio: 1; top: -8%; right: -8%;
  background: #cfdebc; opacity: .7; animation: drift 17s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 6%) scale(1.08); }
}

.hero-inner { position: relative; z-index: 2; padding: 4.8rem 0 3rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--paper); border: 1px solid rgba(185, 141, 104, .35);
  border-radius: 999px; padding: .5em 1.1em; box-shadow: var(--shadow-sm);
  margin-bottom: 1.4rem;
}
.hero-eyebrow-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--sage);
  box-shadow: 0 0 0 0 rgba(139, 168, 136, .5); animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(139, 168, 136, .55); }
  70% { box-shadow: 0 0 0 10px rgba(139, 168, 136, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 168, 136, 0); }
}

.hero-title {
  font-size: clamp(2.7rem, 7.2vw, 5.2rem); letter-spacing: -.02em;
  margin: 0 auto .35em; max-width: 12em;
}
.hl-underline { position: relative; white-space: nowrap; }
.hl-underline::after {
  content: ""; position: absolute; left: -.03em; right: -.03em; bottom: .06em;
  height: .22em; background: var(--sun); border-radius: 999px; z-index: -1;
  transform: scaleX(0); transform-origin: left center;
  animation: grow-x .7s .95s cubic-bezier(.22, .8, .3, 1) forwards;
}
@keyframes grow-x { to { transform: scaleX(1); } }

.hero-lead { margin-inline: auto; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.lead { color: var(--ink-soft); max-width: 36em; }

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .9rem; margin: 1.8rem 0 2.4rem; }
.btn-lg { padding: 1em 2.1em; font-size: 1.05rem; }

.hero-facts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.4rem 2.6rem;
  list-style: none; padding: 0; margin: 0;
}
.hero-facts li { font-size: .9rem; color: var(--ink-soft); position: relative; }
.hero-facts li + li::before {
  content: ""; position: absolute; left: -1.3rem; top: 50%;
  transform: translateY(-50%); width: 1px; height: 2.4em;
  background: rgba(185, 141, 104, .4);
}
.hero-facts strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--terracotta-dark); }

/* Escena panorámica a todo ancho */
.hero-stage { position: relative; z-index: 1; margin-top: 1.5rem; }
.hero-scene {
  width: 100%; display: block;
  animation: scene-in 1.1s .35s cubic-bezier(.22, .8, .3, 1) both;
}
@keyframes scene-in {
  from { opacity: 0; transform: translateY(46px) scale(1.04); }
  to { opacity: 1; transform: none; }
}

.hero-card {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: .5em;
  background: var(--paper); border-radius: 999px; padding: .6em 1.1em;
  font-weight: 700; font-size: .92rem; box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}
.hero-card-1 { top: 26%; left: 4%; }
.hero-card-2 { top: 14%; right: 5%; animation-delay: -1.7s; }
.hero-card-3 { top: 52%; right: 16%; animation-delay: -3.2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-scroll {
  position: absolute; z-index: 4; bottom: 74px; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--ink-soft); text-decoration: none; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
}
.hero-scroll svg { animation: bounce-down 1.8s ease-in-out infinite; }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 90px; fill: var(--cream); }

/* Entrada escalonada */
.reveal { animation: rise .85s cubic-bezier(.22, .8, .3, 1) both; }
.reveal.d1 { animation-delay: .12s; }
.reveal.d2 { animation-delay: .26s; }
.reveal.d3 { animation-delay: .4s; }
.reveal.d4 { animation-delay: .54s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Secciones ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream-2); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-sub { color: var(--ink-soft); }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }

.pill-card {
  background: var(--paper); border-radius: var(--radius-lg); padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(185, 141, 104, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pill-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pill-icon {
  width: 60px; height: 60px; display: grid; place-items: center;
  font-size: 1.7rem; background: var(--cream-2); border-radius: 20px; margin-bottom: 1rem;
}
.pill-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ---------- Literatura del método ---------- */
.method-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  margin-top: 3.5rem; background: var(--paper);
  border: 1px solid rgba(185, 141, 104, .2); border-radius: var(--radius-lg);
  padding: 2.6rem; box-shadow: var(--shadow-sm);
}
.method-story-text h3 { color: var(--terracotta-dark); }
.method-story-text p { color: var(--ink-soft); font-size: .97rem; }
.method-story-text p:last-child { margin-bottom: 0; }
.method-story-text strong { color: var(--ink); }

/* ---------- Actividades ---------- */
.activity-card {
  display: flex; flex-direction: column;
  background: var(--paper); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(185, 141, 104, .18); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activity-emoji {
  display: grid; place-items: center; font-size: 3rem; padding: 1.6rem 0 1rem;
}
.activity-body { padding: 0 1.4rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.activity-body h3 { margin-bottom: .3em; }
.activity-meta { font-size: .82rem; color: var(--ink-soft); margin-bottom: .6em; }
.activity-body p { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.activity-price { font-weight: 800; color: var(--terracotta-dark); margin-bottom: .9rem; }
.activity-price small { font-weight: 500; color: var(--ink-soft); }

/* ---------- Galería ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery-item {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  cursor: zoom-in; box-shadow: var(--shadow-sm); border: 4px solid var(--paper);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:hover, .gallery-item:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 2px; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2em .9em .75em; font-size: .85rem; font-weight: 700; color: #fff;
  background: linear-gradient(transparent, rgba(40, 32, 24, .82));
  pointer-events: none;
}
/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(40, 32, 24, .92);
  display: flex; align-items: center; justify-content: center; padding: 3.5rem 1rem 2rem;
  animation: fadeIn .2s ease;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: min(1000px, 94vw); text-align: center; }
.lightbox img {
  max-width: 100%; max-height: 78vh; border-radius: var(--radius);
  border: 5px solid var(--paper); box-shadow: var(--shadow-lg);
}
.lightbox figcaption { color: #efe6d8; font-weight: 700; margin-top: 1rem; }
.lightbox-close {
  position: absolute; top: 1.1rem; right: 1.3rem;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: var(--paper); color: var(--ink); font-size: 1.1rem; font-weight: 800;
  cursor: pointer; transition: transform .15s ease;
}
.lightbox-close:hover { transform: scale(1.1); }

/* ---------- Tarifas ---------- */
.price-card {
  background: var(--paper); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem;
  text-align: center; border: 1px solid rgba(185, 141, 104, .18); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--terracotta); position: relative; }
.price-card .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .3em 1em; border-radius: 999px;
}
.price-amount { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--ink); margin: .4rem 0; }
.price-amount small { font-size: .9rem; color: var(--ink-soft); font-family: var(--font-body); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 1.4rem; text-align: left; font-size: .9rem; color: var(--ink-soft); flex: 1; }
.price-card li { padding: .35em 0 .35em 1.6em; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: .2em; color: var(--sage-dark); font-weight: 800; }
.pricing-note { text-align: center; margin-top: 2rem; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Bonos ---------- */
.voucher-card {
  background: var(--paper); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem;
  text-align: center; border: 2px dashed var(--wood); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; position: relative;
}
.voucher-card.featured { border: 2px solid var(--terracotta); border-style: solid; }
.voucher-card .tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .3em 1em; border-radius: 999px;
}
.voucher-sessions { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--ink); margin: .3rem 0 .1rem; }
.voucher-sessions small { font-size: .95rem; font-family: var(--font-body); font-weight: 500; color: var(--ink-soft); }
.voucher-price { font-weight: 800; color: var(--terracotta-dark); font-size: 1.15rem; margin-bottom: .2rem; }
.voucher-saving {
  display: inline-block; background: #e4eede; color: var(--sage-dark);
  font-size: .8rem; font-weight: 800; border-radius: 999px; padding: .2em .9em; margin: .3rem 0 .8rem;
}
.voucher-card ul { list-style: none; padding: 0; margin: 0 0 1.4rem; text-align: left; font-size: .9rem; color: var(--ink-soft); flex: 1; }
.voucher-card li { padding: .3em 0 .3em 1.6em; position: relative; }
.voucher-card li::before { content: "✓"; position: absolute; left: .2em; color: var(--sage-dark); font-weight: 800; }

.voucher-shell { margin-top: 2.5rem; }
.voucher-title { margin-top: 0; }
.voucher-summary {
  margin-top: 1.6rem; background: var(--cream); border: 1px dashed rgba(185, 141, 104, .6);
  border-radius: var(--radius); padding: 1.1rem 1.4rem;
}
.voucher-summary .summary-total { margin-top: .5em; padding-top: .6em; }

.voucher-apply { background: var(--cream); border-radius: 12px; padding: 1rem 1.1rem; }
.voucher-apply label { font-weight: 700; font-size: .9rem; display: block; margin-bottom: .5em; }
.voucher-row { display: flex; gap: .6rem; }
.voucher-row input {
  flex: 1; font: inherit; padding: .55em .9em; border-radius: 10px;
  border: 2px solid rgba(185, 141, 104, .4); text-transform: uppercase; letter-spacing: .06em;
}
.voucher-row input:focus { outline: none; border-color: var(--terracotta); }
.voucher-msg { margin: .5em 0 0; font-size: .85rem; font-weight: 700; }
.voucher-msg.ok { color: var(--sage-dark); }
.voucher-msg.ko { color: var(--danger); }
.pay-divider {
  display: flex; align-items: center; gap: 1em; color: var(--ink-soft);
  font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.pay-divider::before, .pay-divider::after { content: ""; flex: 1; height: 1px; background: rgba(185, 141, 104, .4); }
.pay-divider.is-hidden, #cardFields.is-hidden { display: none; }

.voucher-item { border-style: dashed; }
.voucher-item .v-uses { font-weight: 800; color: var(--terracotta-dark); font-size: 1.05rem; }
.voucher-item .v-bar { height: 8px; border-radius: 99px; background: var(--cream-2); overflow: hidden; margin: .5em 0 .8em; }
.voucher-item .v-bar-fill { height: 100%; background: var(--sage); border-radius: 99px; }

/* ---------- Reservas ---------- */
.section-reserve { background: linear-gradient(180deg, var(--cream) 0%, #f3ecdc 100%); }

.booking-shell {
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(185, 141, 104, .2);
  overflow: hidden; max-width: 920px; margin-inline: auto;
}

/* Stepper */
.stepper {
  display: flex; list-style: none; margin: 0; padding: 1.4rem 1.6rem;
  background: var(--cream-2); border-bottom: 1px solid rgba(185, 141, 104, .25);
}
.step { display: flex; align-items: center; gap: .6em; flex: 1; position: relative; }
.step:not(:last-child)::after {
  content: ""; position: absolute; left: calc(50% + 22px); right: calc(-50% + 22px);
  top: 17px; height: 2px; background: rgba(185, 141, 104, .4);
}
.step.is-done:not(:last-child)::after { background: var(--sage); }
.step-dot {
  width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center;
  border-radius: 50%; background: #fff; border: 2px solid rgba(185, 141, 104, .5);
  font-weight: 800; font-size: .9rem; color: var(--ink-soft);
  position: relative; z-index: 1; margin-inline: auto;
}
.step.is-active .step-dot { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.step.is-done .step-dot { background: var(--sage); border-color: var(--sage); color: #fff; }
.step-label { display: block; text-align: center; font-size: .8rem; font-weight: 700; color: var(--ink-soft); position: absolute; top: 100%; left: 50%; transform: translateX(-50%); white-space: nowrap; margin-top: 4px; }
.step.is-active .step-label { color: var(--terracotta-dark); }
.stepper { padding-bottom: 2.4rem; }

.booking-body { padding: 2rem 2.2rem 2.4rem; }

.bstep { display: none; border: 0; padding: 0; margin: 0; }
.bstep.is-active { display: block; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Paso 1: picker de actividades */
.activity-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.pick-card {
  display: flex; gap: 1rem; align-items: center; text-align: left;
  background: var(--cream); border: 2px solid rgba(185, 141, 104, .3);
  border-radius: var(--radius); padding: 1.1rem 1.2rem; cursor: pointer;
  font: inherit; transition: border-color .15s ease, background .15s ease, transform .15s ease;
  width: 100%;
}
.pick-card:hover { transform: translateY(-2px); border-color: var(--terracotta); }
.pick-card.is-selected { border-color: var(--terracotta); background: #fdf1ea; box-shadow: var(--shadow-sm); }
.pick-emoji { font-size: 2rem; }
.pick-card h3 { margin: 0 0 .15em; font-size: 1.05rem; }
.pick-card p { margin: 0; font-size: .85rem; color: var(--ink-soft); }
.pick-card .pick-price { display: block; font-weight: 800; color: var(--terracotta-dark); margin-top: .3em; font-size: .9rem; }

/* Formularios */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.field { display: flex; flex-direction: column; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; margin-bottom: .45em; }
.field .hint { font-weight: 500; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font: inherit; padding: .75em 1em; border-radius: 12px;
  border: 2px solid rgba(185, 141, 104, .4); background: #fff; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(224, 112, 79, .15);
}
.field input.is-invalid, .field textarea.is-invalid { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .82rem; font-weight: 600; margin: .4em 0 0; }

/* Slots horarios */
.slots { display: flex; flex-wrap: wrap; gap: .6rem; }
.slot {
  padding: .55em 1.1em; border-radius: 999px; font-weight: 700; font-size: .9rem;
  border: 2px solid rgba(185, 141, 104, .4); background: #fff; cursor: pointer;
  transition: all .15s ease; font-family: inherit;
}
.slot:hover:not(:disabled) { border-color: var(--terracotta); }
.slot.is-selected { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.slot:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

/* Contador y edades */
.counter { display: inline-flex; align-items: center; gap: .4rem; }
.counter-btn {
  width: 42px; height: 42px; border-radius: 50%; font-size: 1.3rem; font-weight: 800;
  border: 2px solid rgba(185, 141, 104, .4); background: #fff; cursor: pointer;
  transition: all .15s ease; line-height: 1;
}
.counter-btn:hover:not(:disabled) { border-color: var(--terracotta); color: var(--terracotta-dark); }
.counter-btn:disabled { opacity: .35; cursor: not-allowed; }
.counter input {
  width: 64px; text-align: center; font-weight: 800; font-size: 1.1rem;
  padding: .5em .2em !important;
}
.ages-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.ages-row .age-field { display: flex; align-items: center; gap: .4em; }
.ages-row label { margin: 0; font-weight: 600; font-size: .82rem; color: var(--ink-soft); }
.ages-row input { width: 64px; padding: .5em .6em; }

/* Paso 4: pago */
.pay-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 1.6rem; align-items: start; }
.summary-card {
  background: var(--cream); border: 1px dashed rgba(185, 141, 104, .6);
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
}
.summary-card h3 { margin-bottom: .8em; }
.summary-line { display: flex; justify-content: space-between; gap: 1em; padding: .35em 0; font-size: .94rem; }
.summary-line span:last-child { font-weight: 600; text-align: right; }
.summary-total {
  display: flex; justify-content: space-between; margin-top: .8em; padding-top: .8em;
  border-top: 2px solid rgba(185, 141, 104, .4);
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700;
}

.payment-card {
  background: #fff; border: 1px solid rgba(185, 141, 104, .3);
  border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.payment-title { margin: 0; }
.demo-badge {
  background: #fdf3d8; border: 1px solid var(--sun); color: #7a5b12;
  font-size: .82rem; font-weight: 600; border-radius: 10px; padding: .6em .9em; margin: 0;
}
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Navegación wizard */
.wizard-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.2rem; }

/* Confirmación */
.bstep-done.is-active { display: block; }
.done-card { text-align: center; padding: 1rem 0; }
.done-icon { font-size: 3.4rem; margin-bottom: .4em; animation: pop .4s ease; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 80% { transform: scale(1.12); } 100% { transform: scale(1); } }
.booking-code {
  display: inline-block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 700;
  letter-spacing: .12em; background: var(--cream-2); border: 2px dashed var(--wood);
  border-radius: 14px; padding: .4em 1em; margin: .4em 0 1.2em; color: var(--terracotta-dark);
}
.done-card .summary-card { text-align: left; max-width: 460px; margin: 0 auto 1.6rem; }
.done-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; }

/* Mis reservas */
.my-bookings { max-width: 920px; margin: 2.5rem auto 0; }
.booking-item {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  background: var(--paper); border: 1px solid rgba(185, 141, 104, .3);
  border-radius: var(--radius); padding: 1.1rem 1.4rem; margin-bottom: .9rem;
  box-shadow: var(--shadow-sm);
}
.booking-item .b-emoji { font-size: 1.8rem; }
.booking-item .b-info { flex: 1; min-width: 200px; }
.booking-item .b-info strong { display: block; }
.booking-item .b-info span { font-size: .88rem; color: var(--ink-soft); }
.booking-item .b-code { font-weight: 800; color: var(--terracotta-dark); letter-spacing: .06em; }
.booking-item .b-cancel {
  background: none; border: 2px solid var(--danger); color: var(--danger);
  border-radius: 999px; padding: .4em 1.1em; font: inherit; font-weight: 700;
  font-size: .85rem; cursor: pointer; transition: all .15s ease;
}
.booking-item .b-cancel:hover { background: var(--danger); color: #fff; }
.booking-item.is-cancelled { opacity: .5; }
.booking-item.is-cancelled .b-cancel { display: none; }
.b-status { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .25em .8em; border-radius: 999px; background: #e4eede; color: var(--sage-dark); }
.booking-item.is-cancelled .b-status { background: #f3d9d4; color: var(--danger); }
.my-bookings-empty { color: var(--ink-soft); background: var(--paper); border-radius: var(--radius); padding: 1.4rem; text-align: center; }

/* ---------- FAQ ---------- */
.accordion details {
  background: var(--paper); border: 1px solid rgba(185, 141, 104, .25);
  border-radius: var(--radius); margin-bottom: .9rem; overflow: hidden;
}
.accordion summary {
  cursor: pointer; padding: 1.1rem 1.4rem; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1em;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.4rem; color: var(--terracotta); transition: transform .2s ease; flex: 0 0 auto; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details p { padding: 0 1.4rem 1.2rem; margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.4rem 0 0; font-size: 1.05rem; }
.contact-list li { padding: .35em 0; }
.contact-form {
  background: var(--paper); border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(185, 141, 104, .2);
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-form h3 { margin: 0; }
.form-ok { color: var(--sage-dark); font-weight: 700; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: #463a2d; color: #e9dfd0; margin-top: 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
.brand-footer .brand-name { color: #fff; }
.site-footer p { color: #cbbcac; font-size: .93rem; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9em; }
.site-footer nav a { display: block; color: #cbbcac; text-decoration: none; padding: .25em 0; font-size: .93rem; }
.site-footer nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding: 1.2rem 0; text-align: center; }
.footer-bottom p { margin: 0; font-size: .85rem; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--ink); color: #fff; padding: .9em 1.6em; border-radius: 999px;
  font-weight: 600; font-size: .92rem; box-shadow: var(--shadow-lg);
  transition: transform .3s ease; z-index: 200; max-width: 90vw; text-align: center;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1020px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { padding: 3.6rem 0 2.4rem; }
  .hero-facts { gap: 1.2rem 1.8rem; }
  .hero-facts li + li::before { left: -.9rem; }
  .hero-card-3 { right: 8%; }
  .pay-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .method-story { grid-template-columns: 1fr; padding: 2rem; gap: 1.6rem; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid rgba(185, 141, 104, .3);
    box-shadow: var(--shadow-md); padding: .6rem 4%;
    transform: translateY(-115%); transition: transform .25s ease;
  }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { padding: .85em .4em; border-bottom: 1px solid rgba(185, 141, 104, .15); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav .nav-cta { margin: .6rem 0; text-align: center; color: #fff; }

  .section { padding: 3.5rem 0; }
  .cards-3, .cards-4, .form-grid, .activity-picker, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 2rem; }

  .booking-body { padding: 1.5rem 1.1rem 1.8rem; }
  .step-label { display: none; }
  .stepper { padding-bottom: 1.4rem; }
  .step:not(:last-child)::after { top: 17px; }

  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-inner { padding: 3rem 0 2rem; }
  .hero-facts { gap: 1rem 1.4rem; }
  .hero-facts li + li::before { display: none; }
  .hero-scroll { display: none; }
  .field-pair { grid-template-columns: 1fr 1fr; }
  .wizard-nav .btn { flex: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .method-story { padding: 1.5rem; }
  .hero-card { font-size: .85rem; padding: .5em .9em; }
}

@media (max-width: 420px) {
  .field-pair { grid-template-columns: 1fr; }
  .hero-card-1 { left: 2%; }
  .hero-card-2 { right: 2%; }
  .hero-card-3 { display: none; }
}

/* Accesibilidad: menos animación */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
