/* ================================================
   ESTANCIA EL RECUERDO — Estilos
   Mobile-first · Custom properties · BEM-ish
   ================================================ */

:root {
  --verde:       #1D3B28;
  --verde-mid:   #2a5238;
  --verde-deep:  #0E2018;
  --crema:       #F5F0E6;
  --crema-2:     #FBF8F1;
  --crema-dark:  #E8DFD0;
  --oro:         #C4A262;
  --oro-light:   #D8BE84;
  --oro-deep:    #A8854A;
  --text:        #1A1A1A;
  --text-mid:    #444444;
  --text-light:  #777777;
  --white:       #FFFFFF;
  --shadow-sm:   0 1px 8px rgba(20,40,28,0.06);
  --shadow:      0 6px 30px rgba(20,40,28,0.10);
  --shadow-lg:   0 18px 50px rgba(20,40,28,0.16);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   22px;
  --t:           0.25s ease;
  --max-w:       1180px;

  /* Degradados premium */
  --grad-verde:  linear-gradient(150deg, #234733 0%, #1D3B28 45%, #0E2018 100%);
  --grad-verde-soft: linear-gradient(180deg, #224430 0%, #16301f 100%);
  --grad-oro:    linear-gradient(135deg, #D8BE84 0%, #C4A262 55%, #A8854A 100%);
  --grad-crema:  linear-gradient(180deg, #FBF8F1 0%, #F2EBDC 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Que las anclas no queden tapadas por el nav fijo */
[id] { scroll-margin-top: 84px; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--crema);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.005em;
}

em {
  font-style: italic;
  color: var(--oro);
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── UTILITIES ── */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--oro-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.eyebrow--light { color: var(--oro-light); }

/* Línea dorada bajo títulos de sección (estilo PDF) */
.incluye h2::after,
.calculadora h2::after,
.detalles h2::after,
.lugar__text h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 2px;
  background: var(--grad-oro);
  margin-top: 22px;
  border-radius: 2px;
}
.contacto h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 2px;
  background: var(--oro-light);
  margin: 22px 0 0;
  border-radius: 2px;
}

.section-desc {
  color: var(--text-mid);
  max-width: 560px;
  margin: 14px 0 40px;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ── Cortes de línea armoniosos ──
   balance: reparte las palabras en líneas parejas (títulos y bajadas cortas)
   pretty: evita que quede una sola palabra colgada en el último renglón */
h1, h2, h3,
.section-desc,
.detail-card__text span {
  text-wrap: balance;
}
.card__list li,
.hero__sub,
.lugar__text p,
.traslado p,
.incluye__nota,
.calc__notes p,
.contacto__inner > p {
  text-wrap: pretty;
}

/* ── BUTTONS ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary  { background: var(--grad-oro); color: var(--white); box-shadow: 0 4px 18px rgba(196,162,98,0.38); letter-spacing: 0.02em; }
.btn--primary:hover { filter: brightness(1.06); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(196,162,98,0.45); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--outline {
  background: transparent;
  color: var(--verde);
  border: 2px solid var(--verde);
}
.btn--outline:hover { background: var(--verde); color: var(--white); }

.btn--whatsapp { background: #25D366; color: var(--white); }
.btn--whatsapp:hover { background: #20BD5C; transform: translateY(-1px); }

.btn--full  { width: 100%; }
.btn--large { padding: 18px 32px; font-size: 1.05rem; }
.btn--small { padding: 8px 18px; font-size: 0.85rem; }

/* ── NAV ── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t), box-shadow var(--t);
}

.nav.scrolled {
  background: var(--grad-verde-soft);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo { display: flex; align-items: center; line-height: 1; }
.nav__logo-img {
  height: 34px;
  width: auto;
  display: block;
}
@media (max-width: 480px) { .nav__logo-img { height: 29px; } }
.nav__logo-title {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
}
.nav__logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--oro-light);
  font-weight: 500;
  margin-top: 2px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--t);
}
.nav__links a:hover { color: var(--white); }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--verde);
  padding: 8px 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav__mobile.open { display: flex; }

.nav__mobile-link {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--t);
}
.nav__mobile-link:last-child { border-bottom: none; }
.nav__mobile-link:hover { color: var(--white); }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }
}

/* ── HERO ── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--verde);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-verde);
}

.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(130% 90% at 72% 18%, rgba(216,190,132,0.14) 0%, rgba(216,190,132,0) 48%),
    linear-gradient(158deg, rgba(10,22,14,0.55) 0%, rgba(10,22,14,0.18) 34%, rgba(10,22,14,0.50) 68%, rgba(10,22,14,0.90) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--oro-light);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(3.2rem, 8.5vw, 5.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 620px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero__title em { color: var(--oro-light); }

.hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 52px;
}

.hero__address {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

@media (max-width: 479px) {
  .hero__actions .btn { width: 100%; }
}
@media (min-width: 480px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
}

/* ── LUGAR ── */

.lugar {
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(216,190,132,0.10) 0%, rgba(216,190,132,0) 50%),
    var(--grad-verde);
  padding: clamp(64px, 9vw, 112px) 0;
}
.lugar .eyebrow { color: var(--oro-light); }

.lugar__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.lugar__text h2 { font-size: clamp(2.2rem, 4vw, 2.7rem); margin-bottom: 16px; color: var(--white); }
.lugar__text p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 460px;
  line-height: 1.8;
}

.lugar__photos { display: flex; flex-direction: column; gap: 12px; }

.lugar__photo-main {
  width: 100%; height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
}

.lugar__photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lugar__photo-grid > div {
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.lugar__photos img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Galería de fotos */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid a {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }

.placeholder-img {
  background: linear-gradient(135deg, var(--crema-dark) 0%, var(--crema) 100%);
  border: 2px dashed var(--crema-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.78rem;
  text-align: center;
  padding: 12px;
}

@media (min-width: 900px) {
  .lugar__inner { flex-direction: row; align-items: center; gap: 72px; }
  .lugar__text { flex: 0 0 360px; }
  .lugar__photos { flex: 1; }
  .lugar__photo-main { height: 400px; }
  .lugar__photo-grid > div { height: 230px; }
}

/* ── QUÉ INCLUYE ── */

.incluye { padding: clamp(64px, 9vw, 112px) 0; background: var(--grad-crema); }
.incluye h2 { font-size: clamp(2.4rem, 5vw, 3.5rem); max-width: 480px; }

.incluye__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 580px) { .incluye__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .incluye__grid { grid-template-columns: 1fr 1fr 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid rgba(29,59,40,0.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.card__icon {
  width: 44px; height: 44px;
  background: var(--verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--white);
}
/* Tonalidades alternadas para que no quede monótono */
.incluye__grid .card:nth-child(2n) .card__icon { background: var(--oro); color: var(--verde); }
.incluye__grid .card:nth-child(3)  .card__icon { background: var(--verde-mid); }
.incluye__grid .card:nth-child(5)  .card__icon { background: var(--verde-deep); }
/* Fondo apenas tintado + contorno del color del ícono */
.incluye__grid .card:nth-child(odd) { background: #FCFAF5; border-color: rgba(196,162,98,0.20); }
.incluye__grid .card:nth-child(2n)  { background: #F8F1E2; border-color: rgba(196,162,98,0.40); }

.card h3 {
  font-size: 1.16rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--verde);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card__list li {
  color: var(--text-mid);
  font-size: 0.88rem;
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.5;
}
.card__list li::before {
  content: '';
  position: absolute;
  /* centrado en la primera línea (no en el bloque), para que no flote entre renglones */
  left: 0; top: calc(3px + 0.75em);
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--oro);
}

.incluye__nota {
  background: var(--verde);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-top: 32px;
  font-size: 0.93rem;
  line-height: 1.65;
}
.incluye__nota strong { color: var(--oro-light); }

/* ── CALCULADORA ── */

/* ── Cómo llegan tus invitados ── */
.traslados { padding: clamp(64px, 9vw, 112px) 0; background: var(--grad-crema); }
.traslados h2 { font-size: clamp(2rem, 4.5vw, 2.8rem); margin-bottom: 34px; }

.traslados__grid { display: grid; gap: 18px; }

.traslado {
  background: var(--white);
  border: 1px solid rgba(29,59,40,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 26px 28px;
}

.traslado h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--verde);
  margin: 14px 0 8px;
}

.traslado p { font-size: 0.93rem; color: var(--text-mid); line-height: 1.6; }

.traslado__contactos { list-style: none; margin: 14px 0 0; display: flex; flex-direction: column; gap: 8px; }

.traslado__contactos a {
  font-size: 0.9rem;
  color: var(--verde);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(29,59,40,0.25);
  text-underline-offset: 3px;
}

@media (min-width: 760px) {
  .traslados__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* ── Tu noche (quince): timeline de momentos, swipe en móvil ── */
.noche { padding: clamp(64px, 9vw, 112px) 0; background: var(--white); }
.noche h2 { font-size: clamp(2.2rem, 5vw, 3rem); }

.noche__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 72%;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.noche__item { scroll-snap-align: start; position: relative; }

.noche__item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.noche__hora {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,22,14,0.78);
  color: var(--oro);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}

.noche__item h3 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 10px;
}

@media (min-width: 760px) {
  .noche__grid { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); overflow: visible; }
  .noche__item img { height: 280px; }
}

/* ── Video del lugar en la galería ── */
.gal-video { margin: 0 0 34px; }

.gal-video video {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  background: #000;
  box-shadow: var(--shadow-sm);
}

.gal-video p { text-align: center; font-size: 0.9rem; color: var(--text-mid); margin-top: 10px; }

.calculadora { padding: clamp(40px, 6vw, 72px) 0; background: var(--white); }
.calculadora h2 { font-size: clamp(2rem, 4vw, 2.8rem); max-width: 420px; margin-bottom: 6px; }
.calculadora .section-desc { margin-bottom: 18px; }

.calc {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 4px;
}

@media (min-width: 860px) {
  /* En PC el título queda arriba (debajo del nav) y la calculadora en 2 columnas;
     compacto el padding para que entre lo máximo posible en una pantalla. */
  .calculadora { padding: 86px 0 44px; }
  .calc { flex-direction: row; align-items: flex-start; gap: 32px; }
  .calc__form { flex: 1; }
  .calc__results { flex: 1; }
}

.calc__form { display: flex; flex-direction: column; gap: 18px; }

.calc__label {
  display: block;
  font-weight: 600;
  font-size: 0.93rem;
  margin-bottom: 8px;
  color: var(--text);
}

/* En celular, achicamos un toque para que el FORMULARIO de la calculadora entre
   en una pantalla (el "presupuesto estimado" queda abajo). */
@media (max-width: 560px) {
  .calculadora h2 { font-size: 1.7rem; }
  .calculadora .section-desc { font-size: 0.86rem; margin-bottom: 12px; }
  .calc { gap: 14px; }
  .calc__form { gap: 14px; }
  .calc__label { margin-bottom: 6px; font-size: 0.88rem; }
  .calc__slider-wrap { margin-bottom: 6px; }
  .calc__field p { margin-top: 5px !important; }
}

/* Slider */
.calc__slider-wrap { margin-bottom: 10px; }

.calc__slider {
  width: 100%; height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--crema-dark);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--verde);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  transition: transform var(--t);
}
.calc__slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc__slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--verde);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
}

.calc__slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.73rem;
  color: var(--text-light);
}

/* Number stepper */
.calc__number-wrap {
  display: flex;
  align-items: center;
  background: var(--crema);
  border-radius: 50px;
  border: 2px solid var(--crema-dark);
  overflow: hidden;
  width: fit-content;
  transition: border-color var(--t);
}
.calc__number-wrap:focus-within { border-color: var(--verde); }

.calc__num-btn {
  width: 46px; height: 46px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--verde);
  font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
  user-select: none;
}
.calc__num-btn:hover { background: var(--crema-dark); }

.calc__number {
  width: 78px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  outline: none;
  -moz-appearance: textfield;
}
.calc__number::-webkit-inner-spin-button,
.calc__number::-webkit-outer-spin-button { -webkit-appearance: none; }

.calc__hint {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
  min-height: 20px;
  font-style: italic;
}

/* Day toggle */
.calc__toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.calc__toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  border: 2px solid var(--crema-dark);
  border-radius: var(--radius-sm);
  background: var(--crema);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all var(--t);
  text-align: center;
  line-height: 1.3;
}
.calc__toggle-btn:hover { border-color: var(--verde); color: var(--verde); }
.calc__toggle-btn.active {
  border-color: var(--verde);
  background: var(--verde);
  color: var(--white);
}

.calc__toggle-price {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.7;
}
.calc__toggle-btn.active .calc__toggle-price { opacity: 0.85; }

/* Month select */
.calc__select {
  width: 100%;
  padding: 13px 44px 13px 16px;
  border: 2px solid var(--crema-dark);
  border-radius: var(--radius-sm);
  background: var(--crema);
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color var(--t);
}
.calc__select:focus { border-color: var(--verde); }

/* Results card */
.calc__results {
  background: var(--crema);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--crema-dark);
  box-shadow: var(--shadow);
}

.calc__results-header {
  background: var(--verde);
  padding: 18px 24px;
}
.calc__results-header h3 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.calc__breakdown {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--crema-dark);
}

.calc__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.calc__row-label { display: flex; flex-direction: column; gap: 3px; }
.calc__row-label span:first-child { font-weight: 600; font-size: 0.93rem; }
.calc__row-sub { font-size: 0.78rem; color: var(--text-light); }

.calc__row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.calc__row-value { font-weight: 600; font-size: 0.98rem; color: var(--text); }

.calc__discount-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #1e7040;
  background: #daf2e4;
  padding: 2px 8px;
  border-radius: 50px;
  display: none;
}
.calc__discount-badge.visible { display: inline-block; }
.calc__discount-badge--up { color: #8a5a12; background: #f6e6c9; }
.calc__discount-badge--season { color: #1e7040; background: #daf2e4; }

.calc__total-wrap {
  padding: 20px 24px 16px;
  background: var(--white);
}

.calc__total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.calc__total-row > span:first-child { font-weight: 700; font-size: 1rem; }

.calc__total-note {
  font-size: 0.75rem;
  color: var(--text-light);
  flex: 1;
  margin-left: 4px;
}

.calc__notes strong { color: var(--text-mid); font-weight: 700; }

.calc__total-value {
  font-family: 'Lora', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--verde);
  flex-shrink: 0;
}

.calc__sena-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--crema);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.calc__sena-row span:first-child { color: var(--text-mid); }
.calc__sena-value { font-weight: 600; color: var(--text); }

.calc__notes {
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.calc__notes p {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.5;
}

.calc__results .btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* ── DETALLES / SUBPAGES ── */

.detalles { padding: clamp(64px, 9vw, 112px) 0; background: var(--grad-crema); }
.detalles h2 { font-size: clamp(2.4rem, 5vw, 3.5rem); }

.detalles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 8px;
}
@media (min-width: 580px) { .detalles__grid { grid-template-columns: 1fr 1fr; } }

.detail-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  transition: all var(--t);
  box-shadow: var(--shadow-sm);
}
.detail-card:hover { transform: translateX(5px); box-shadow: var(--shadow); }

.detail-card__icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  background: var(--crema);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.detail-card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.detail-card__text strong { font-size: 0.93rem; color: var(--text); }
.detail-card__text span  { font-size: 0.8rem; color: var(--text-light); }
/* En móvil: tarjetas más compactas para que los títulos entren en una línea,
   y bajada con 2 líneas siempre reservadas para que todas midan lo mismo */
@media (max-width: 579px) {
  .detail-card { padding: 16px; gap: 12px; }
  .detail-card__text strong { font-size: 0.9rem; }
  .detail-card__text span { min-height: 3.3em; }
}

.detail-card__arrow {
  color: var(--text-light);
  flex-shrink: 0;
  transition: transform var(--t), color var(--t);
}
.detail-card:hover .detail-card__arrow { transform: translateX(3px); color: var(--verde); }

/* ── CONTACTO ── */

.contacto { background: var(--grad-verde); padding: clamp(64px, 9vw, 112px) 0; }
.contacto h2 { font-size: clamp(2.6rem, 5.4vw, 3.8rem); color: var(--white); margin-bottom: 18px; }
.contacto h2 em { color: var(--oro-light); }
.contacto p { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.75; max-width: 560px; }
.contacto__highlight {
  color: var(--oro-light);
  font-weight: 600;
  border-bottom: 2px solid rgba(212,184,122,0.4);
}

.contacto__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.contacto__actions .btn svg { flex-shrink: 0; }

.contacto__reviews { margin-top: 44px; }
.contacto__reviews p { font-size: 0.88rem; margin-bottom: 6px; }
.stars { font-size: 1.3rem; color: var(--oro-light); margin-bottom: 8px; }
.contacto__reviews-link {
  color: var(--oro-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--t);
}
.contacto__reviews-link:hover { color: var(--white); }

/* ── FOOTER ── */

.footer { background: linear-gradient(180deg, #143024 0%, #0b1810 100%); padding: 52px 0 24px; }

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
@media (min-width: 580px) { .footer__inner { grid-template-columns: 1fr 1fr 1fr; } }

.footer__label {
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  color: var(--oro-light);
  margin-bottom: 6px;
  font-weight: 600;
  display: block;
}
.footer__link {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--t);
}
.footer__link:hover { color: var(--white); }
.footer p { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer__contact-name {
  display: block;
  margin-top: 5px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer__copy {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.28) !important;
}

/* ── FAB WHATSAPP ── */

.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 20px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.42);
  z-index: 90;
  transition: transform var(--t), box-shadow var(--t);
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ── SUBPAGES ── */

.subpage-hero {
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(216,190,132,0.12) 0%, rgba(216,190,132,0) 50%),
    var(--grad-verde);
  padding: 116px 0 60px;
}

/* Variante con foto: media pantalla, imagen de fondo y velo verde para leer bien. */
.subpage-hero--photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 46vh;
  min-height: 46svh;
  padding: 116px 0 44px;
  background:
    linear-gradient(180deg, rgba(16,34,23,0.55) 0%, rgba(16,34,23,0.35) 45%, rgba(16,34,23,0.82) 100%),
    var(--sp-img) center / cover no-repeat,
    var(--grad-verde);
}
.subpage-hero--photo .container { position: relative; }
.subpage-hero h1 { font-size: clamp(2.6rem, 5.4vw, 3.8rem); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.86rem;
  margin-bottom: 28px;
  transition: color var(--t);
}
.back-link:hover { color: var(--white); }

.subpage-hero h1 { color: var(--white); font-size: clamp(2.6rem, 5.4vw, 3.8rem); }
.subpage-hero h1 em { color: var(--oro-light); }
.subpage-hero p {
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.75;
}

.subpage-content { padding: 60px 0 80px; }

.coming-soon {
  text-align: center;
  padding: 60px 20px 80px;
}
.coming-soon .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}
.coming-soon h2 {
  color: var(--text-mid);
  margin-bottom: 12px;
  font-size: 1.6rem;
}
.coming-soon p {
  color: var(--text-light);
  max-width: 400px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Adicionales tables */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.93rem;
}
.price-table th {
  background: var(--verde);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--crema-dark);
  color: var(--text-mid);
  vertical-align: top;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { font-weight: 600; color: var(--text); white-space: nowrap; }
/* Tablas por temporada/cantidad: nombre en negrita, todos los precios parejos */
.price-table--season td:not(:first-child) { font-weight: 600; color: var(--text); white-space: nowrap; }
.price-table--season td:first-child { font-weight: 400; }
.price-table--season td:first-child strong { font-weight: 700; color: var(--verde); }

/* Acordeón / desplegables premium */
.acc {
  background: var(--white);
  border: 1px solid rgba(29,59,40,0.08);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}
.acc:hover { box-shadow: var(--shadow); }
.acc[open] { border-left-color: var(--oro); }
.acc__head {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 54px 18px 22px;
  line-height: 1.12;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.005em;
  color: var(--verde);
  transition: background var(--t);
}
.acc__head::-webkit-details-marker { display: none; }
.acc__head:hover { background: var(--crema); }
.acc__head::after {
  content: '';
  position: absolute;
  right: 24px; top: 24px;
  width: 11px; height: 11px;
  border-right: 2px solid var(--oro);
  border-bottom: 2px solid var(--oro);
  transform: rotate(45deg);
  transition: transform var(--t);
}
.acc[open] > .acc__head { background: var(--crema); }
.acc[open] > .acc__head::after { transform: rotate(-135deg); top: 28px; }

/* Acordeón anidado (sub-opciones, ej. plato principal) */
.acc--sub {
  background: var(--crema-2);
  border-color: var(--crema-dark);
  border-radius: var(--radius-sm);
  box-shadow: none;
  margin-bottom: 10px;
}
.acc--sub:last-child { margin-bottom: 0; }
.acc--sub:hover { box-shadow: none; }
.acc--sub .acc__head { padding: 13px 44px 13px 18px; font-size: 0.92rem; }
.acc--sub .acc__head:hover { background: rgba(29,59,40,0.03); }
.acc--sub .acc__head::after { right: 18px; top: 18px; width: 9px; height: 9px; }
.acc--sub[open] > .acc__head { background: transparent; }
.acc--sub[open] > .acc__head::after { top: 21px; }
.acc--sub .acc__body { padding: 0 18px 14px; }
.acc__head small {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-light);
  text-transform: none;
  margin-top: 3px;
}
.acc__body { padding: 4px 22px 22px; }
.acc__body .prov-grid { margin-top: 4px; }
.acc__body .info-list { margin-top: 4px; }
.acc__intro { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 12px; }

/* Carta de menú — formato unificado */
.menu-list { margin-top: 4px; }
.menu-item {
  position: relative;
  padding: 15px 4px 15px 24px;
  border-bottom: 1px solid rgba(29,59,40,0.06);
}
.menu-item:last-child { border-bottom: none; }
.menu-item::before {
  content: '';
  position: absolute;
  left: 3px; top: 23px;
  width: 7px; height: 7px;
  background: var(--grad-oro);
  transform: rotate(45deg);
  border-radius: 1px;
}
.menu-item__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--verde);
  display: block;
  line-height: 1.4;
}
.menu-item__desc {
  color: var(--text-light);
  font-size: 0.84rem;
  line-height: 1.6;
  margin-top: 3px;
}
.menu-list--two {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 32px;
}
@media (min-width: 640px) { .menu-list--two { grid-template-columns: 1fr 1fr; } }
.menu-list--two .menu-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

/* Listas de nombres sueltos (finger food, fin de fiesta, barra): más livianas */
.menu-list--light .menu-item { padding-top: 8px; padding-bottom: 8px; }
.menu-list--light .menu-item__name { font-weight: 400; font-size: 0.92rem; }
.menu-list--light .menu-item::before { top: 14px; }

/* Badges de dieta (vegetariano / sin TACC / infantil) */
.diet {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 10px;
  vertical-align: 2px;
  white-space: nowrap;
}
.diet svg { width: 12px; height: 12px; flex-shrink: 0; }
.diet--veg    { background: #E6F0E1; color: #3F6B34; }
.diet--celiac { background: #F4EAD4; color: #8F6A1E; }
.diet--kids   { background: #FBE7E2; color: #B05238; }

/* Leyenda de íconos de dieta (menú) */
.menu-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--crema-dark);
}
.menu-legend > span { display: inline-flex; align-items: center; gap: 7px; }
.menu-legend .diet { margin-left: 0; }
.menu-legend__note { color: var(--text-light); font-size: 0.8rem; }

/* Ícono de sección en el acordeón */
.acc__head:has(.acc__icon) { padding-left: 70px; }
.acc__icon {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  background: rgba(29,59,40,0.06);
  border: 1px solid rgba(29,59,40,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.acc[open] .acc__icon { background: var(--white); }

/* Banda de cierre de página de detalle: dos fotos lado a lado con la frase y el CTA encima.
   La página termina en foto. En móvil queda una sola foto grande. */
.cta-band { position: relative; }

.cta-band__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-band__photos img {
  width: 100%;
  height: clamp(400px, 42vw, 540px);
  object-fit: cover;
  display: block;
}

.cta-band__bar {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10,22,14,0.16) 0%, rgba(10,22,14,0.34) 55%, rgba(10,22,14,0.62) 100%);
}

.cta-band__phrase {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.35rem, 4.2vw, 1.8rem);
  color: var(--white);
  max-width: 580px;
  margin: 0 auto 26px;
  line-height: 1.35;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}

.cta-band__copy {
  margin-top: 26px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

@media (max-width: 599px) {
  .cta-band__photos { grid-template-columns: 1fr; }
  .cta-band__photos img:last-child { display: none; }
  .cta-band__photos img { height: 440px; }
}

/* Título de sección sin acordeón (páginas de poca info) */
.detail-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Lora', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--verde);
  margin: 0 0 14px;
}
.detail-title__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--crema);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Listado de proveedores / hospedaje */
.prov-group { margin-bottom: 40px; }
.prov-group__title {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oro);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--crema-dark);
}
.prov-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 620px) { .prov-grid { grid-template-columns: 1fr 1fr; } }

.prov-card {
  background: var(--white);
  border: 1px solid rgba(29,59,40,0.06);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.prov-card strong { font-size: 0.95rem; color: var(--verde); font-family: 'Poppins', sans-serif; font-weight: 700; }
.prov-card__contact { font-size: 0.82rem; color: var(--text-mid); }
.prov-card__links { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 4px; }
.prov-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--oro);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--t);
}
.prov-card__link:hover { color: var(--verde); }

/* Chips de contacto (WhatsApp / Instagram / web) */
.prov-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), filter var(--t);
}
.chip:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.chip svg { width: 14px; height: 14px; flex-shrink: 0; }
.chip--wa { background: #25D366; color: #fff; }
.chip--wa:hover { background: #20BD5C; }
.chip--ig,
.chip--web {
  background: var(--crema);
  color: var(--oro-deep);
  border-color: var(--crema-dark);
}
.chip--ig:hover,
.chip--web:hover { background: var(--crema-dark); }

/* Resaltado de marca en menú / barra */
.brand { color: var(--oro-deep); font-weight: 600; font-style: italic; }

/* ── PLANIFICADOR DE MESAS ── */
.planner {
  background: var(--white);
  border: 1px solid rgba(29,59,40,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 16px;
  margin-top: 16px;
}
.planner__modes {
  display: inline-flex;
  background: var(--crema);
  border: 1px solid var(--crema-dark);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 14px;
}
.planner__mode {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-mid);
  cursor: pointer;
  transition: background var(--t), color var(--t);
}
.planner__mode.active { background: var(--verde); color: var(--white); }

.planner__spaces { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.planner__space {
  border: 1.5px solid var(--crema-dark);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-mid);
  cursor: pointer;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all var(--t);
}
.planner__space small { font-weight: 500; font-size: 0.7rem; color: var(--text-light); }
.planner__space:hover { border-color: var(--verde); }
.planner__space.active { border-color: var(--verde); background: var(--verde); color: var(--white); }
.planner__space.active small { color: rgba(255,255,255,0.8); }
.planner__caption { font-size: 0.82rem; color: var(--text-light); text-align: center; margin-top: 8px; }

.planner__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

/* Zonas del plano (estáticas) */
.pz rect { stroke-width: 3; }
.pz text { pointer-events: none; }
.pz-out rect   { fill: #efe9db; stroke: #d8cdb5; }
.pz-pool rect  { fill: #cfe3e8; stroke: #a9cdd6; }
.pz-cov rect   { fill: #FBF8F1; stroke: var(--oro); stroke-width: 4; }
.pz-salon rect { fill: #FBF8F1; stroke: var(--verde); stroke-width: 6; }
.pz-svc rect   { fill: #e7e0d0; stroke: #cdbf9f; }
.pz-bar rect   { fill: var(--verde); stroke: none; }
.pz-entry rect { fill: #dfd6c4; stroke: #cdbf9f; }
.pz-room rect  { fill: #f4eee0; stroke: #c9bb98; }
.pz-gridfill   { stroke: none !important; }
.pz-name { fill: var(--text-mid); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 80px; text-anchor: middle; }
.pz-dim  { fill: var(--text-light); font-family: 'Poppins', sans-serif; font-size: 64px; text-anchor: middle; }
.pz-salon-name { fill: var(--verde); font-family: 'Lora', serif; font-weight: 700; font-size: 150px; text-anchor: middle; letter-spacing: 4px; }
.pz-mini { fill: var(--text-mid); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 58px; text-anchor: middle; }
.pz-mini--light { fill: var(--white); }
.planner__btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--verde);
  border: none;
  border-radius: 50px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.planner__btn small { font-weight: 500; opacity: 0.7; font-size: 0.78em; }
.planner__btn:hover { background: var(--verde-mid); transform: translateY(-1px); }
.planner__btn--ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--crema-dark);
}
.planner__btn--ghost:hover { background: var(--crema); color: var(--verde); transform: none; }

.planner__stage {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--crema);
}
#planner-svg {
  display: block;
  width: 100%;
  height: auto;
  touch-action: none;
}
.planner-item { cursor: grab; touch-action: none; }
.planner-item:active { cursor: grabbing; }
.pi-shape {
  fill: var(--oro);
  stroke: #a8854a;
  stroke-width: 3;
  transition: fill var(--t);
}
.pi-high { fill: var(--oro-light); }
.pi-living { fill: var(--verde); stroke: #16301f; }
.planner-item.sel .pi-shape { stroke: var(--verde); stroke-width: 8; }
.pi-label {
  fill: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 52px;
  pointer-events: none;
}
.pi-living + .pi-label, .planner-item .pi-living ~ .pi-label { fill: var(--white); }

.planner__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.planner__counter { font-size: 0.95rem; color: var(--text-mid); }
.planner__counter strong { color: var(--verde); font-size: 1.05rem; }
.planner__tools { display: flex; align-items: center; gap: 8px; }
.planner__actions { display: inline-flex; gap: 8px; }

.plano-figure { margin: 0; }
.plano-img {
  width: 100%;
  height: auto;
  background: var(--white);
  border: 1px solid var(--crema-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.content-section { margin-bottom: 48px; }
.content-section h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--text);
}
.content-section > p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.info-list { display: flex; flex-direction: column; gap: 12px; }
.info-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.55;
}
.info-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--oro);
}

.highlight-box {
  background: var(--crema);
  border-left: 4px solid var(--oro);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.highlight-box strong { color: var(--text); }

/* Hospedaje: una tarjeta por casa con el precio en grande */
.casas-grid {
  display: grid;
  gap: 16px;
  margin: 20px 0 10px;
}

.casa-card {
  background: var(--white);
  border: 1px solid rgba(29,59,40,0.08);
  border-top: 3px solid var(--oro);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 28px;
}

.casa-card__name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--verde);
  margin: 0;
}

.casa-card__cap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-mid);
  font-size: 0.92rem;
  margin: 6px 0 20px;
}

.casa-card__cap svg { color: var(--oro); flex: none; }

.casa-card__price {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.casa-card__price span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 8px;
}

.casas-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0 0 8px;
}

@media (min-width: 680px) {
  .casas-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* Hospedaje: lista "bueno saber" en una sola tarjeta limpia */
.saber-list {
  list-style: none;
  background: var(--white);
  border: 1px solid rgba(29,59,40,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 8px 26px;
  margin: 18px 0 0;
}

.saber-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(29,59,40,0.06);
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.saber-list li:last-child { border-bottom: none; }

.saber-list li strong { color: var(--text); }

.saber-list svg { flex: none; margin-top: 3px; color: var(--oro); }

/* ── Aclaración de alcance (salón solo vs. con catering) ── */
.scope-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--crema-2);
  border: 1px solid var(--crema-dark);
  border-left: 3px solid var(--oro);
  border-radius: 10px;
  padding: 13px 15px;
  margin-bottom: 22px;
}
.scope-note__icon { font-size: 1.15rem; line-height: 1.4; flex-shrink: 0; }
.scope-note p { margin: 0; font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; }
.scope-note strong { color: var(--text); }

/* ── Redes sociales ── */
.contacto__social {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 28px;
}
.contacto__social a {
  width: 46px; height: 46px;
  border: 1px solid var(--oro);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oro-light);
  transition: background var(--t), color var(--t), transform var(--t);
}
.contacto__social a:hover {
  background: var(--oro);
  color: var(--verde);
  transform: translateY(-2px);
}

.footer__social-icons {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.footer__social-icons a {
  width: 38px; height: 38px;
  border: 1px solid rgba(212,184,122,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oro-light);
  transition: background var(--t), color var(--t);
}
.footer__social-icons a:hover {
  background: var(--oro);
  color: var(--verde);
}

/* ════════════════════════════════════════════════
   AJUSTES MÓVIL (auditoría hoja por hoja)
   ════════════════════════════════════════════════ */
.btn { max-width: 100%; }

@media (max-width: 540px) {
  /* Botones grandes: que envuelvan y no desborden el ancho */
  .btn--large {
    padding: 15px 20px;
    font-size: 0.98rem;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  /* Tablas de precios: achicar para que entren las 3 columnas */
  .price-table { font-size: 0.82rem; }
  .price-table th { padding: 11px 9px; font-size: 0.72rem; letter-spacing: 0.01em; }
  .price-table td { padding: 11px 9px; }

  /* Acordeón: un poco menos de padding lateral para ganar ancho útil */
  .acc__body { padding-left: 14px; padding-right: 14px; }
}

/* ============================================================
   GALERÍA — grid editorial + lightbox con swipe
   ============================================================ */
.gallery-section { padding-top: 18px; }

/* Filtros */
.gal-filters {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin: 4px 0 22px;
}
.gal-chip {
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 500;
  color: var(--verde); background: var(--white);
  border: 1.5px solid var(--crema-dark); border-radius: 999px;
  padding: 8px 16px; cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  -webkit-tap-highlight-color: transparent;
}
.gal-chip:hover { border-color: var(--oro); }
.gal-chip.active {
  background: var(--grad-verde); color: var(--white);
  border-color: transparent; box-shadow: var(--shadow-sm);
}

/* Grid masonry */
.gal-masonry { columns: 2; column-gap: 12px; }
@media (min-width: 760px)  { .gal-masonry { columns: 3; column-gap: 14px; } }
@media (min-width: 1080px) { .gal-masonry { columns: 4; column-gap: 14px; } }

.gal-card {
  position: relative; break-inside: avoid; margin: 0 0 12px;
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease var(--d, 0s), transform .5s ease var(--d, 0s), box-shadow var(--t);
  -webkit-tap-highlight-color: transparent;
}
.gal-card.in { opacity: 1; transform: none; }
.gal-card img {
  display: block; width: 100%; height: auto;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.gal-card--tall img { min-height: 1px; }
.gal-card figcaption {
  position: absolute; inset: auto 0 0 0;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 8px;
  padding: 34px 12px 11px;
  background: linear-gradient(to top, rgba(14,32,24,0.82) 0%, rgba(14,32,24,0.30) 55%, rgba(14,32,24,0) 100%);
  opacity: 0; transform: translateY(8px); transition: opacity var(--t), transform var(--t);
}
.gal-card__cap {
  color: #fff; font-family: 'Poppins', sans-serif; font-weight: 500;
  font-size: 0.78rem; line-height: 1.25; text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}
.gal-card__zoom {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.35);
}
.gal-card:hover img { transform: scale(1.07); }
.gal-card:hover figcaption,
.gal-card:focus-within figcaption { opacity: 1; transform: none; }
/* En touch mostramos el epígrafe siempre (sin hover) */
@media (hover: none) {
  .gal-card figcaption { opacity: 1; transform: none; padding-top: 40px; }
}

/* CTA bajo la galería */
.gal-cta {
  margin-top: 18px; text-align: center;
  background: var(--grad-crema); border: 1px solid var(--crema-dark);
  border-radius: var(--radius); padding: 26px 22px 30px;
}
.gal-cta p { max-width: 520px; margin: 0 auto 18px; color: var(--text-mid); }

/* ---------- Lightbox ---------- */
body.lb-open { overflow: hidden; }
.lb {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8,18,13,0.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
  opacity: 0; transition: opacity .22s ease;
  padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
}
.lb.show { opacity: 1; }
.lb[hidden] { display: none; }

.lb__viewport {
  flex: 1 1 auto; overflow: hidden; position: relative;
  touch-action: pan-y;
}
.lb__track { display: flex; height: 100%; will-change: transform; }
.lb__slide {
  flex: 0 0 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}
.lb__slide img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto; object-fit: contain;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  user-select: none; -webkit-user-drag: none;
}

.lb__close, .lb__nav {
  position: absolute; z-index: 3;
  display: grid; place-items: center;
  color: #fff; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22); border-radius: 50%;
  cursor: pointer; transition: background var(--t), opacity var(--t);
  -webkit-tap-highlight-color: transparent;
}
.lb__close:hover, .lb__nav:hover { background: rgba(255,255,255,0.26); }
.lb__close { top: 14px; right: 14px; width: 44px; height: 44px; }
.lb__nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lb__prev { left: 14px; }
.lb__next { right: 14px; }
.lb__nav.hide { opacity: 0; pointer-events: none; }
@media (hover: none) { .lb__nav { display: none; } }

.lb__bar { flex: 0 0 auto; padding: 6px 14px 14px; }
.lb__meta {
  display: flex; align-items: baseline; justify-content: center; gap: 12px;
  margin-bottom: 12px; text-align: center;
}
.lb__caption {
  color: #fff; font-family: 'Lora', serif; font-style: italic;
  font-size: 1.02rem; line-height: 1.3;
}
.lb__counter {
  color: rgba(255,255,255,0.6); font-family: 'Poppins', sans-serif;
  font-size: 0.78rem; font-weight: 500; white-space: nowrap;
}
.lb__thumbs {
  display: flex; gap: 8px; overflow-x: auto; padding: 2px 2px 4px;
  scrollbar-width: none; justify-content: flex-start;
}
.lb__thumbs::-webkit-scrollbar { display: none; }
.lb__thumb {
  flex: 0 0 auto; width: 60px; height: 44px; padding: 0;
  border: 2px solid transparent; border-radius: 7px; overflow: hidden;
  cursor: pointer; opacity: 0.5; background: none;
  transition: opacity var(--t), border-color var(--t);
}
.lb__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb__thumb.active { opacity: 1; border-color: var(--oro); }
.lb__thumb:hover { opacity: 0.85; }
@media (min-width: 760px) { .lb__thumbs { justify-content: center; } }

/* ════════════════════════════════════════════════════════════
   AJUSTES DE LANZAMIENTO — mobile-first (presupuesto)
   ════════════════════════════════════════════════════════════ */

/* Evitar el zoom automático de iOS al enfocar los campos de la calculadora */
@media (max-width: 560px) {
  .calc__select, .calc__number { font-size: 16px; }
}

/* Tap targets ≥44px: hamburguesa y chips de contacto (WhatsApp/IG de proveedores) */
.nav__hamburger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
.chip { min-height: 44px; }

/* FAB de WhatsApp: respetar la safe-area inferior del iPhone y reservar espacio en el footer */
.fab-whatsapp { bottom: calc(env(safe-area-inset-bottom, 0px) + 24px); }
.footer { padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 40px); }

/* ── Calculadora: mes y año, total con IVA, dos señas, visita, preguntas y barra fija ── */
.calc__fecha { display: grid; grid-template-columns: 1fr 104px; gap: 10px; }
.calc__nota { font-size: 0.78rem; color: var(--text-light); margin-top: 8px; line-height: 1.45; }
.calc__total-value small { font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--text-light); }
.calc__sena-row + .calc__sena-row { margin-top: 8px; }
.calc__sena-row small { display: block; font-size: 0.72rem; color: var(--text-light); margin-top: 1px; }
.calc__sena-value { white-space: nowrap; }
.calc__sena-value b { font-weight: 600; color: var(--text); }
.calc__results #calc-cta { margin-bottom: 10px; }

.calc-faq { margin-top: 30px; max-width: 760px; }
.calc-faq__title { font-family: 'Lora', serif; font-size: 1.3rem; color: var(--verde); margin-bottom: 6px; }
.calc-faq__item { border-bottom: 1px solid var(--crema-dark); }
.calc-faq__item summary {
  cursor: pointer; list-style: none; position: relative;
  padding: 14px 32px 14px 0; font-weight: 600; font-size: 0.93rem; color: var(--text);
}
.calc-faq__item summary::-webkit-details-marker { display: none; }
.calc-faq__item summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.25rem; font-weight: 400; color: var(--oro-deep);
}
.calc-faq__item[open] summary::after { content: "−"; }
.calc-faq__item p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; padding: 0 0 16px; }

.calc-bar { display: none; }
@media (max-width: 859px) {
  .calc-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--white); border-top: 1px solid var(--crema-dark);
    box-shadow: 0 -6px 24px rgba(20,40,28,0.12);
    transform: translateY(110%); transition: transform var(--t);
  }
  .calc-bar--on { transform: none; }
  .calc-bar__total { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
  .calc-bar__total small { font-size: 0.7rem; color: var(--text-light); }
  .calc-bar__total strong { font-family: 'Lora', serif; font-size: 1.2rem; color: var(--verde); }
  .calc-bar__total span { font-size: 0.74rem; color: var(--text-light); }
  .calc-bar .btn { flex-shrink: 0; }
  /* En el presupuesto la barra hace de botón de WhatsApp: el flotante sobra */
  .con-calc .fab-whatsapp { display: none; }
}
