/*
  Montha — base premium (HTML + CSS)
  Objetivo: calma, aire, honestidad.
  No está "terminada": está pensada para iterar y escalar.
*/

/* =========================
   1) Variables / base
   ========================= */

:root {
  /* Paleta cálida (evita look spa genérico: menos “verde”, más luz / piel / arena) */
  --bg: #fbf7f0;
  --paper: #fffaf2;
  --text: rgba(19, 16, 12, 0.92);
  --muted: rgba(19, 16, 12, 0.62);
  --line: rgba(19, 16, 12, 0.12);

  --accent: #caa56b;      /* arena cálida */
  --accent-ink: #3a2a17;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 60px rgba(20, 14, 8, 0.10);
  --shadow-soft: 0 10px 34px rgba(20, 14, 8, 0.08);

  --container: 1040px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1000px 520px at 18% -10%, rgba(202, 165, 107, 0.20), transparent 60%),
    radial-gradient(900px 540px at 84% 0%, rgba(202, 165, 107, 0.12), transparent 58%),
    linear-gradient(180deg, var(--bg), var(--paper));

  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Links */
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

::selection {
  background: rgba(202, 165, 107, 0.28);
  color: rgba(19, 16, 12, 0.95);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  background: rgba(255, 250, 242, 0.95);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  z-index: 9999;
}
.skip-link:focus { left: 10px; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px rgba(202, 165, 107, 0.18);
  border-color: rgba(202, 165, 107, 0.55);
}

/* =========================
   2) Header / nav
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(251, 247, 240, 0.70);
  border-bottom: 1px solid rgba(19, 16, 12, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.lang-switch {
  justify-self: center;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  user-select: none;
  line-height: 1.25;
}

/* Temporary header note */
.header-announce {
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(19, 16, 12, 0.10);
  color: rgba(19, 16, 12, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.25;
  padding-top: 2px;
  padding-bottom: 2px;
}

@media (max-width: 420px) {
  .header-announce { display: none; }
}

.lang-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: var(--muted);
  font: inherit;
  font-weight: 650;
  line-height: 1.2;
}

.lang-btn[aria-pressed="true"] {
  color: var(--text);
}

.lang-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--text) 45%, transparent);
  outline-offset: 6px;
  border-radius: 8px;
}

.lang-sep {
  color: color-mix(in srgb, var(--muted) 65%, transparent);
}

.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  text-align: left;
}

/* Logo de marca */
.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 800; /* negrita */
  letter-spacing: 0.01em;
  font-size: 18px;
  line-height: 1.0;
}

.header-location {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  text-align: right;
  justify-self: end;
}

.header-location-title {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 11px;
}

.header-address {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.header-location-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  color: inherit;
  text-decoration: none;
  padding: 4px 0;
}

.header-location-sep {
  display: none;
}

.header-location-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* =========================
   3) Hero
   ========================= */

.top-image {
  width: 100%;
  margin: 0;
  padding: 0;
}

.top-image-inner {
  position: relative;
}

.top-image img {
  display: block;
  width: 100%;
}

.top-image img {
  height: clamp(360px, 70vh, 720px);
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(19, 16, 12, 0.08);
}

@media (min-width: 981px) {
  .top-image,
  .top-image-inner {
    height: 100%;
  }

  .top-image img {
    height: 100%;
  }
}

.top-image-stack {
  position: absolute;
  left: 50%;
  bottom: 68px;
  transform: translateX(-50%);
  width: min(980px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 2;
}

.top-image-quote {
  margin: 0;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  line-height: 0.90;
  font-size: clamp(34px, 4.8vw, 52px);
  color: rgba(19, 16, 12, 0.92);
  text-shadow: none;
}

.hero {
  position: relative;
  padding: 84px 0 58px;
  overflow: hidden;
}

/* textura suave: recuerda luz cálida, sin imágenes */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 22% 20%, rgba(202, 165, 107, 0.16), transparent 62%),
    radial-gradient(900px 520px at 78% 10%, rgba(202, 165, 107, 0.10), transparent 60%),
    repeating-linear-gradient(90deg, rgba(19, 16, 12, 0.03) 0 1px, transparent 1px 140px);
  opacity: 0.65;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.eyebrow {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.hero h1 {
  margin: 0 0 14px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(36px, 4.8vw, 58px);
}

.lead {
  margin: 0 0 18px;
  color: rgba(19, 16, 12, 0.76);
  font-size: 16px;
  max-width: 64ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.hero-highlights {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.hero-highlights li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-highlights li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(202, 165, 107, 0.95);
  box-shadow: 0 0 0 4px rgba(202, 165, 107, 0.16);
}

.hero-card {
  border: 1px solid rgba(19, 16, 12, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-top {
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(19, 16, 12, 0.10);
}

.hero-card-title {
  margin: 0;
  font-weight: 700;
}

.hero-card-sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-card-body { padding: 16px 18px 18px; }

.mini-dl {
  display: grid;
  gap: 12px;
  margin: 0 0 14px;
}

.mini-dl dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-dl dd { margin: 3px 0 0; }

.hero-glow {
  position: absolute;
  inset: -240px -240px auto -240px;
  height: 420px;
  background: radial-gradient(circle at 38% 44%, rgba(202, 165, 107, 0.22), transparent 55%);
  filter: blur(28px);
  pointer-events: none;
}

/* =========================
   4) Secciones
   ========================= */

.section { padding: 82px 0; }

.section-alt {
  background: rgba(255, 255, 255, 0.50);
  border-top: 1px solid rgba(19, 16, 12, 0.06);
  border-bottom: 1px solid rgba(19, 16, 12, 0.06);
}

/* Reserva: centrada (panel 3) */
#reserva.section {
  padding: 0;
}

#reserva.section > .container {
  min-height: calc(100vh - var(--header-h, 0px));
  display: flex;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}

#reserva .contact {
  width: 100%;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 30px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.muted { color: var(--muted); }

.fineprint {
  color: rgba(19, 16, 12, 0.55);
  font-size: 12px;
  margin: 14px 0 0;
}

.prose {
  max-width: 72ch;
}

.prose p {
  margin: 0 0 14px;
  color: rgba(19, 16, 12, 0.80);
}

.grid {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid rgba(19, 16, 12, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 16, 12, 0.18);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin: 0 0 8px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: rgba(19, 16, 12, 0.74);
}

/* =========================
   5) About (Pep)
   ========================= */

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.about-panel {
  border-radius: var(--radius);
  border: 1px solid rgba(19, 16, 12, 0.12);
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  height: 140px; /* ~x5 respecto al tamaño anterior */
  justify-content: center;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 700;
  color: rgba(58, 42, 23, 0.92);
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), rgba(202, 165, 107, 0.75));
  box-shadow: 0 0 0 8px rgba(202, 165, 107, 0.12);
  margin-bottom: 10px;
}

.panel-title { margin: 0 0 8px; font-weight: 750; }

.ticks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.ticks li {
  padding: 18px 0;
  gap: 10px;
  color: rgba(19, 16, 12, 0.78);
}

.ticks li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(202, 165, 107, 0.48);
  box-shadow: 0 0 0 6px rgba(202, 165, 107, 0.12);
  margin-top: 2px;
}

/* =========================
   6) Reserva / formulario
   ========================= */

.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.cta-panel {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(19, 16, 12, 0.10);
  background: rgba(255, 255, 255, 0.60);
}

.form {
  border-radius: var(--radius);
  border: 1px solid rgba(19, 16, 12, 0.12);
  background: rgba(255, 255, 255, 0.70);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.form-row { display: grid; gap: 8px; margin-bottom: 12px; }

label {
  color: rgba(19, 16, 12, 0.82);
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(19, 16, 12, 0.12);
  background: rgba(255, 255, 255, 0.70);
  color: rgba(19, 16, 12, 0.92);
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

textarea::placeholder { color: rgba(19, 16, 12, 0.45); }

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* =========================
   7) Botones
   ========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(19, 16, 12, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(19, 16, 12, 0.92);
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(19, 16, 12, 0.18);
  box-shadow: var(--shadow-soft);
}

.btn:active { transform: translateY(0px); }

.btn[aria-disabled="true"],
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-primary {
  border-color: rgba(202, 165, 107, 0.55);
  background: linear-gradient(180deg, rgba(202, 165, 107, 0.55), rgba(202, 165, 107, 0.30));
  color: rgba(58, 42, 23, 0.96);
}

/* =========================
   CTA (minimal, negro)
   ========================= */

.cta {
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding-bottom: 7px;
  padding-left: 2px;
  letter-spacing: 4px;
  font-size: 14px;
  text-transform: uppercase;
  margin-right: 10px;
  position: relative;
  display: inline-block;
  color: #000;
  text-decoration: none;
}

.cta::before {
  content: none;
}

.cta:active {
  transform: scale(0.9);
}

.cta::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cta:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.cta-hero {
  font-size: 22px;
  padding-bottom: 12px;
  margin-right: 0;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  font-weight: 700;
}

/* Landing hero CTA only (keep booking CTA sizing separate) */
.cta-landing {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: 0.12em;
  transition: opacity 220ms ease, transform 220ms ease;
}

.cta-landing.is-dismissed {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.cta-hero::before {
  content: none;
}

/* Inline CTA (as a word inside a sentence) */
.inline-cta {
  display: inline;
  padding: 0;
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: inherit;
  font-weight: 800;
  white-space: nowrap;
}

.inline-cta::before {
  content: none;
}

.inline-cta::after {
  height: 1px;
}

.cta[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================
   Scroll 2 (único explicativo)
   ========================= */

.scroll2 {
  position: relative;
  background-image: url("img/thailand2.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.scroll2::before {
  content: "";
  position: absolute;
  inset: 0;
  /* capa suave para mantener legibilidad y tono premium */
  background: linear-gradient(
    180deg,
    rgba(251, 247, 240, 0.92),
    rgba(251, 247, 240, 0.78) 40%,
    rgba(251, 247, 240, 0.90)
  );
  pointer-events: none;
}

.scroll2-inner {
  position: relative;
  z-index: 1;
}

.scroll2-inner {
  padding-top: clamp(64px, 9vh, 110px);
  padding-bottom: clamp(42px, 6vh, 90px);
  display: grid;
  gap: clamp(18px, 2.6vh, 30px);
}

.scroll2-anchor {
  text-align: center;
  padding: clamp(18px, 3.2vh, 34px) 0;
}

.scroll2-phrase {
  margin: 0;
  font-family: inherit;
  font-weight: 780;
  letter-spacing: -0.02em;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.03;
}

.scroll2-phrase-em {
  font-weight: 900;
  font-size: 1.08em;
  letter-spacing: -0.025em;
}

.scroll2-sub {
  margin: 10px 0 0;
  color: rgba(19, 16, 12, 0.52);
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0.04em;
}

.scroll2-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.scroll2-card {
  border: 1px solid rgba(19, 16, 12, 0.10);
  border-radius: 16px;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 34px rgba(20, 14, 8, 0.05);
  min-height: 128px;
}

.scroll2-card h3 {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 15px;
}

.scroll2-card p {
  margin: 0;
  color: rgba(19, 16, 12, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.scroll2-prices {
  border: 1px solid rgba(19, 16, 12, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.50);
  padding: 18px 22px;
  width: 100%;
}

.scroll2-prices-kicker {
  margin: 0 0 10px;
  color: rgba(19, 16, 12, 0.58);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll2-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.scroll2-price {
  border: 1px solid rgba(19, 16, 12, 0.10);
  border-radius: 14px;
  padding: 14px 14px 12px;
  background: rgba(255, 255, 255, 0.35);
}

.scroll2-price-title {
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 13px;
}

.scroll2-price-row {
  margin: 0;
  color: rgba(19, 16, 12, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

/* =========================
   Booking calendar
   ========================= */

.booking {
  border: 1px solid rgba(19, 16, 12, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 34px rgba(20, 14, 8, 0.05);
  padding: 18px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(19, 16, 12, 0.58);
  margin: 0 0 6px;
}

.booking-field input,
.booking-field select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(19, 16, 12, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  line-height: 1.2;
  min-height: 46px;
}

/* Date inputs suelen ser más altos en móvil: normaliza con el resto */
.booking-field input[type="date"] {
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Selects: improve closed-state look (native menu stays OS-based) */
.booking-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%3E%3Cpath%20d='M5%207l4%204%204-4'%20stroke='%2313100C'%20stroke-opacity='0.72'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(to right, rgba(19, 16, 12, 0.12), rgba(19, 16, 12, 0.12));
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 38px) 50%;
  background-size:
    18px 18px,
    1px 22px;
  background-repeat: no-repeat;
}

.booking-field select::-ms-expand { display: none; }

.booking-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
}

.booking-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 2px;
}

.booking-submit .cta {
  text-align: center;
}

/* Same CTA style as hero, but smaller in Reserva */
.cta-booking {
  font-size: 20px;
  padding-bottom: 10px;
  margin-top: 26px;
}

.booking-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}


.whatsapp-link,
.call-link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-right: 0;
  padding-bottom: 6px;
}

.whatsapp-link::before,
.call-link::before {
  content: none;
}

#bkStatus {
  margin: 0;
  font-size: 12px;
  color: rgba(19, 16, 12, 0.62);
}

.closing-text {
  color: rgba(19, 16, 12, 0.78);
}

/* Bottom article (inside Scroll 3) */
.montha-article {
  padding: 34px 0 18px;
}

@media (max-width: 720px) {
  .booking-row { grid-template-columns: 1fr; }
}

.scroll2-note {
  margin: 12px 0 0;
  color: rgba(19, 16, 12, 0.55);
  font-size: 12px;
}

.scroll2-disclaimer {
  margin: 0;
  color: rgba(19, 16, 12, 0.35);
  font-size: 11px;
  font-weight: 450;
  text-align: center;
}

/* Reveal animation (muy sutil) */
.reveal {
  opacity: 0;
  transform: translateY(6px);
}

.scroll-panel.is-active .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.scroll-panel.is-active .reveal:nth-child(1) { transition-delay: 40ms; }
.scroll-panel.is-active .reveal:nth-child(2) { transition-delay: 90ms; }
.scroll-panel.is-active .reveal:nth-child(3) { transition-delay: 140ms; }
.scroll-panel.is-active .reveal:nth-child(4) { transition-delay: 190ms; }
.scroll-panel.is-active .reveal:nth-child(5) { transition-delay: 240ms; }
.scroll-panel.is-active .reveal:nth-child(6) { transition-delay: 290ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .scroll-panel.is-active .reveal {
    transition: none;
  }
}

@media (max-width: 980px) {
  .scroll2-prices {
    padding: 16px 16px;
  }

  .scroll2-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .scroll2-price {
    padding: 12px 12px 10px;
  }

  .scroll2-price-title {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .scroll2-price-row {
    font-size: 12px;
  }

  /* Mobile: scroll normal (evita que Scroll 2 “desaparezca” por snap/jank) */
  html {
    scroll-snap-type: none;
    scroll-padding-top: 0;
  }

  .scroll-panel {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  /* En móvil los paneles pueden ser más altos que la pantalla;
     si ocultamos `.reveal` hasta `.is-active`, puede no activarse nunca. */
  .reveal {
    opacity: 1;
    transform: none;
  }

  /* Scroll 1: texto debajo de la imagen */
  .top-image-inner {
    display: flex;
    flex-direction: column;
    padding-bottom: 18px;
  }

  .top-image-stack {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: none;
    padding: 18px 0 26px;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .scroll2-cards { grid-template-columns: 1fr; }
  .scroll2-anchor { text-align: left; }
  .scroll2-disclaimer { text-align: left; }
}

.btn-secondary {
  border-color: rgba(19, 16, 12, 0.14);
  background: rgba(255, 255, 255, 0.78);
}

.btn-ghost {
  background: transparent;
}

/* =========================
   8) Cierre + footer
   ========================= */

.closing {
  text-align: center;
}

.closing-quote {
  margin: 0 0 10px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(22px, 3.2vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.footer {
  border-top: 1px solid rgba(19, 16, 12, 0.08);
  padding: 22px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-dot {
  opacity: 0.55;
}

/* =========================
   Cookie + privacy notice
   ========================= */

/* Fixed legal footer (appears on scroll down, hides on scroll up) */
.legal-float {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: var(--paper);
  border-top: 1px solid var(--line);
  transform: translateY(0);
  transition: transform 220ms ease;
}

.legal-float.is-hidden {
  transform: translateY(105%);
}

.legal-float-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.legal-float .footer-links {
  justify-content: center;
  flex-wrap: wrap;
}

/* Prevent content from being covered by the fixed bar */
body {
  padding-bottom: var(--legalbar-h, 0px);
}

@media (min-width: 981px) {
  main {
    padding-bottom: var(--legalbar-h, 0px);
  }
}

.legal-notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.legal-notice {
  width: min(560px, 100%);
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 14px;
}

/* Envelope flap (sutil) */
.legal-notice::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -52%);
  width: 108px;
  height: 56px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
}

.legal-notice-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(19, 16, 12, 0.55);
}

.legal-notice-text {
  margin: 0;
  color: rgba(19, 16, 12, 0.72);
  font-size: 13px;
  max-width: 74ch;
}

.legal-notice-actions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.legal-notice-actions .cta {
  font-size: 12px;
  letter-spacing: 0.14em;
  padding-bottom: 6px;
  margin-right: 0;
}

.legal-notice-actions .cta::before {
  content: none;
}

.legal-notice-actions .cta-hero {
  padding-bottom: 12px;
}

.cookie-banner {
  position: static;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer .cookie-banner {
  margin-top: 14px;
}

.cookie-inner {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cookie-text {
  margin: 0;
  color: rgba(19, 16, 12, 0.62);
  font-size: 12px;
  max-width: 78ch;
}

.cookie-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cookie-actions .cta {
  font-size: 12px;
  letter-spacing: 0.14em;
  padding-bottom: 6px;
  margin-right: 0;
}

.cookie-actions .cta::before {
  content: none;
}

@media (max-width: 720px) {
  .legal-notice-overlay {
    padding: 18px;
  }
  .legal-notice {
    padding: 16px 16px 12px;
  }
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions { gap: 12px; }
}

/* =========================
   9) Responsive
   ========================= */

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-tagline { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }

  /* Móvil: sin scroll interno en la tarjeta de reserva.
     Evita “barras” que se mueven y asegura que se vea todo el formulario. */
  .booking {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 720px) {
  .header-inner {
    grid-template-columns: 1fr auto 1fr;
    justify-items: stretch;
    gap: 10px;
    padding: 10px 0 12px;
  }

  .lang-switch {
    justify-self: center;
  }

  .brand {
    justify-self: start;
  }

  .brand { gap: 10px; }
  .brand-logo { height: 34px; }
  .brand-name { font-size: 18px; }

  .header-location {
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 6px;
    justify-self: end;
  }

  .header-location-title,
  .header-address {
    font-size: 11px;
  }

  .top-image img { height: clamp(320px, 62vh, 620px); }
  .footer-inner { flex-direction: column; gap: 10px; }
  .cards { grid-template-columns: 1fr; }
}

@media (min-width: 981px) {
  :root {
    --header-h: 56px;
  }

  html, body { height: 100%; }

  body {
    overflow: hidden;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
  }

  .header-inner {
    height: 100%;
    padding: 6px 0;
  }

  main {
    height: calc(100vh - var(--header-h));
    margin-top: var(--header-h);
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: none;
  }

  .scroll-panel {
    height: calc(100vh - var(--header-h));
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
  }

  /* Scroll 1: la imagen debe ocupar TODO el panel (sin “hueco” abajo) */
  .top-image-inner {
    height: 100%;
  }

  .top-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: transparent;
  }

  .top-image img {
    border-bottom: none;
  }

  /* Desktop: more presence for the temporary note */
  .header-announce {
    border-left: none;
    padding: 8px 12px;
    margin-left: 14px;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: rgba(19, 16, 12, 0.62);
    border: 1px solid rgba(19, 16, 12, 0.10);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
}
