/* ═══════════════════════════════════════════════════════
   ÁMBAR BEACH — Main Stylesheet
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --gold: #E8A800;
  --gold-dark: #C9A84C;
  --gold-light: #FFD54F;
  --dark: #333333;
  --text: #333333;
  --text-light: #777777;
  --sand: #F5F7FA;
  --sand-light: #EDF0F5;
  --border: #D6DCE8;
  --white: #FFFFFF;
  --avail-bg: #DCFCE7;
  --avail-text: #166534;
  --busy-bg: #FEE2E2;
  --busy-text: #991B1B;
  --font-body: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(44,36,22,0.06);
  --shadow-lg: 0 8px 32px rgba(44,36,22,0.12);
  --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1 { font-family: var(--font-body); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.2; color: var(--text); }
h2 { font-family: var(--font-body); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--text); }
h3 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 700; color: var(--text); }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ══ LANGUAGE SELECTOR (dropdown) ══ */
.lang-bar { display: none; }
.lang-selector {
  position: relative; z-index: 100;
}
.lang-toggle {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
  background: none; border: none; padding: 6px 10px; border-radius: 8px;
  font-size: 22px; line-height: 1; transition: background var(--transition);
}
.lang-toggle:hover { background: var(--sand-light); }
.lang-toggle::after {
  content: '▾'; font-size: 18px; color: var(--text-light); margin-left: 4px;
}
.lang-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 6px;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: var(--shadow-lg); overflow: hidden; min-width: 160px; z-index: 200;
}
.lang-dropdown.open { display: block; }
.lang-dropdown a {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  font-size: 14px; font-weight: 500; color: var(--dark); text-decoration: none;
  transition: background var(--transition);
}
.lang-dropdown a:hover { background: var(--sand); }
.lang-dropdown a.active { background: var(--sand); font-weight: 700; }
.lang-dropdown a span.flag { font-size: 20px; }

/* ══ HEADER ══ */
.header {
  background: var(--white); position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 80px; padding: 10px 24px;
  max-width: 1400px; margin: 0 auto; position: relative;
}
.logo { position: absolute; left: 50%; transform: translateX(-50%); }
.logo img { height: 64px; width: auto; }
.nav { display: none; }
.nav-hidden, .nav {
  position: absolute; left: 0; right: 0;
  display: none; justify-content: center; pointer-events: none;
}
.nav ul {
  display: flex; align-items: center; gap: 6px; pointer-events: auto;
}
.nav a {
  color: var(--text); font-weight: 600; font-size: 13.5px;
  padding: 8px 14px; border-radius: 20px;
  transition: background var(--transition), color var(--transition);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.nav a:hover, .nav a.active {
  color: var(--dark); background: var(--gold-light);
}
.nav li:not(:last-child)::after {
  content: ''; display: inline-block; width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%; margin-left: 6px; vertical-align: middle;
}
/* Hamburger (visible on all sizes, left-aligned with label) */
.hamburger {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: transparent; border: none; padding: 4px 6px; z-index: 10;
  cursor: pointer;
}
.hamburger-icon {
  display: flex; flex-direction: column; gap: 4px;
  background: #FFF8E1; border: 1.5px solid var(--gold-light);
  border-radius: 10px; padding: 9px 11px;
  transition: background var(--transition), border-color var(--transition);
}
.hamburger:hover .hamburger-icon { background: #FFEFC2; border-color: var(--gold); }
.hamburger-icon span {
  display: block; width: 18px; height: 2px;
  background: var(--gold-dark); border-radius: 1px; flex-shrink: 0;
}
.hamburger-label {
  font-size: 11px; font-weight: 600; color: var(--text-light);
  letter-spacing: 0.04em;
}

/* Language ES code next to flag */
.lang-code {
  font-size: 14px; font-weight: 600; color: var(--dark);
  margin-left: 6px; letter-spacing: 0.02em;
}

/* Header right cluster (lang + favorite) */
.header-right {
  display: flex; align-items: center; gap: 6px; margin-left: auto;
}
.fav-btn {
  background: transparent; border: none; padding: 8px; border-radius: 50%;
  color: var(--text-light); cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.fav-btn:hover { background: var(--sand-light); color: #dc2626; }
.fav-btn.active { color: #dc2626; }
.fav-btn.active svg { fill: currentColor; }

/* ══ HERO ══ */
.hero {
  background: linear-gradient(160deg, #1B2A4A 0%, #2A3F6A 45%, #1B2A4A 100%);
  padding: 90px 24px 80px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/hero.jpg') center/cover no-repeat;
  opacity: 0.18; pointer-events: none;
}
.hero-inner { position: relative; max-width: 840px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-block; background: rgba(201,168,76,0.15); color: var(--gold-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 40px; border: 1px solid rgba(201,168,76,0.35); margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-body); font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 800; color: var(--white); line-height: 1.12; margin: 0 0 10px; letter-spacing: -0.02em;
}
.hero h1 span { color: var(--gold-dark); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: rgba(255,255,255,0.92);
  margin: 0 0 36px; line-height: 1.65;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 1rem; padding: 15px 36px; border-radius: var(--radius-sm);
  text-decoration: none; transition: all var(--transition); border: none;
  letter-spacing: 0.03em; cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: #D49A00; color: var(--white); }
.btn-outline {
  background: transparent; color: var(--sand);
  border: 2px solid rgba(250,248,245,0.35);
}
.btn-outline:hover { border-color: rgba(250,248,245,0.7); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #D49A00; color: var(--white); }

/* ── Stats strip ── */
.stats {
  display: flex; gap: 0; justify-content: center;
  border: 1px solid rgba(201,168,76,0.2); border-radius: 14px;
  overflow: hidden; background: rgba(0,0,0,0.25);
}
.stat {
  flex: 1; min-width: 130px; padding: 18px 12px; text-align: center;
  border-right: 1px solid rgba(201,168,76,0.15);
}
.stat:last-child { border-right: none; }
.stat-value { display: block; font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label {
  display: block; font-size: 11px; color: rgba(250,248,245,0.55);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px;
}

/* ══ GALLERY ══ */
.gallery { padding: 80px 24px; background: var(--sand); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-title {
  font-family: var(--font-body); font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800; color: var(--dark); margin: 0 0 10px;
}
.gallery-sub { color: var(--text-light); font-size: 1rem; margin: 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px; gap: 10px; max-width: 1200px; margin: 0 auto;
}
.gallery-grid .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-grid .gallery-item:nth-child(9) { grid-column: span 2; }
.gallery-item {
  position: relative; overflow: hidden; border-radius: 10px; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,36,22,0.75) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 14px 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { color: #fff; font-size: 13px; font-weight: 600; }

/* ══ DESCRIPTION ══ */
.description-text p {
  font-size: 15px; line-height: 1.8; color: var(--text);
  margin-bottom: 16px; text-align: justify;
}
.description-text p:last-child { margin-bottom: 0; }
.desc-toggle {
  background: none; border: none; color: var(--gold); font-size: 14px;
  font-weight: 700; cursor: pointer; padding: 8px 0; margin-top: 4px;
  font-family: inherit; transition: color var(--transition);
}
.desc-toggle:hover { color: var(--gold-dark); }

/* ══ LIGHTBOX ══ */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,8,6,0.96); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.28s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap { position: relative; max-width: 90vw; max-height: 88vh; display: flex; align-items: center; justify-content: center; }
.lightbox-img {
  max-width: 88vw; max-height: 84vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,0.7); transition: opacity 0.2s;
}
.lightbox-img.fading { opacity: 0; }
.lightbox-caption {
  position: absolute; bottom: -36px; left: 0; right: 0;
  text-align: center; color: rgba(255,255,255,0.65); font-size: 13px;
}
.lightbox-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 999999; cursor: pointer;
}
.lightbox-btn:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 999999; font-size: 18px; cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 13px; letter-spacing: 0.06em; z-index: 999999;
}

/* ══ SECTIONS ══ */
.section { padding: 24px 24px; }
.section-sand { background: var(--sand); }
.section-white { background: var(--sand); }
.section-header { text-align: center; margin-bottom: 32px; }

/* ══ CALENDAR ══ */
.cal-section { background: var(--sand); padding: 16px 12px 24px; }
section[id], [id="reservar"], [id="apartamento"], [id="info"], [id="contacto"], [id="footer-map"] {
  scroll-margin-top: 80px;
}
html { scroll-padding-top: 80px; }
.section-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; max-width: 900px; margin: 0 auto;
}
.cal-inner { max-width: 900px; margin: 0 auto; }
.cal-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 20px; }
.cal-nav-btn {
  background: var(--white); border: 2px solid var(--border); border-radius: 50%;
  width: 38px; height: 38px; font-size: 1.3rem; cursor: pointer;
  color: var(--dark); display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.cal-nav-btn:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.cal-label { font-weight: 700; font-size: 1rem; color: var(--dark); min-width: 180px; text-align: center; text-transform: capitalize; }
.cal-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; justify-items: center;
}
.cal-month {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  box-shadow: var(--shadow); width: 100%; overflow: hidden;
}
.cal-month-title {
  text-align: center; font-weight: 700; font-size: 13px;
  color: var(--dark); margin-bottom: 6px; text-transform: capitalize;
}
.cal-month table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.cal-month th {
  font-size: 9px; color: var(--text-light); text-align: center;
  padding: 4px 0; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
}
/* Day cells — full-width, no gaps, color on td */
.cal-month td { text-align: center; padding: 0; vertical-align: top; }
.cal-day {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%; padding: 6px 0 4px; min-height: 36px;
  font-size: 13px; font-weight: 700; color: var(--dark); cursor: default;
  position: relative;
}
.cal-day-num { line-height: 1.2; }
.cal-day-price { font-size: 8px; font-weight: 700; color: inherit; line-height: 1; margin-top: 1px; }
/* States — background on the TD for seamless rows */
.cal-avail { background: var(--avail-bg); }
.cal-avail .cal-day { color: var(--avail-text); cursor: pointer; }
.cal-avail:hover { background: #BBF7D0; }
.cal-busy { background: var(--busy-bg); }
.cal-busy .cal-day { color: var(--busy-text); }
.cal-busy .cal-day .cal-day-num { text-decoration: line-through; }
.cal-past { background: var(--white); }
.cal-past .cal-day { color: #D1C4B0; }
/* Pre-reserva (pago pendiente) — rojo (igual que ocupado) */
.cal-prereserva { background: var(--busy-bg); }
.cal-prereserva .cal-day { color: var(--busy-text); cursor: default; }
.cal-prereserva .cal-day .cal-day-num { text-decoration: line-through; }
/* Reserva confirmada — rojo (igual que ocupado, sin distinción pública) */
.cal-booked { background: var(--busy-bg); }
.cal-booked .cal-day { color: var(--busy-text); cursor: default; }
.cal-booked .cal-day .cal-day-num { text-decoration: line-through; }
.cal-sel { background: var(--gold-dark) !important; }
.cal-sel .cal-day { color: var(--white) !important; }
.cal-range { background: #FDE68A !important; }
.cal-range .cal-day { color: var(--dark) !important; }
/* Split Saturday — diagonal only on transition days */
.cal-split { background: transparent !important; }
.cal-split .cal-day { overflow: hidden; }
.cal-half-am, .cal-half-pm { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.cal-half-am { clip-path: polygon(0 0, 100% 0, 0 100%); }
.cal-half-pm { clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.cal-half-avail { background: var(--avail-bg); }
.cal-half-busy { background: var(--busy-bg); }
.cal-half-prereserva { background: var(--busy-bg); }
.cal-half-booked { background: var(--busy-bg); }
.cal-half-sel { background: var(--gold-dark); }
.cal-split .cal-day .cal-day-num, .cal-split .cal-day .cal-day-price { position: relative; z-index: 2; }
.cal-split .cal-day::after {
  content: ''; position: absolute; top: -1px; right: -1px;
  width: 150%; height: 2px; background: rgba(60,38,0,0.25);
  transform-origin: 100% 0; transform: rotate(135deg); z-index: 3; pointer-events: none;
}

/* ══ TWO-COLUMN LAYOUT (desktop) ══ */
.page-layout {
  display: grid; grid-template-columns: 1fr 380px; gap: 28px;
  max-width: 1140px; margin: 0 auto; padding: 0 24px; align-items: start;
}
.page-main { min-width: 0; }
.page-sidebar {
  position: sticky; top: 88px;
}
.sidebar-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.sidebar-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.sidebar-trust {
  display: flex; align-items: center; gap: 10px; padding: 10px 0;
  border-top: 1px solid var(--sand-light); font-size: 13px; color: var(--text);
}
.sidebar-trust-icon {
  width: 36px; height: 36px; border-radius: 50%; background: var(--sand);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
@media (max-width: 991px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
}

/* ══ BOOKING FORM ══ */
.booking-section { background: var(--sand); padding: 24px 12px; }
.booking-inner { max-width: 700px; margin: 0 auto; }
.booking-card {
  background: var(--sand); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 32px;
}
.booking-row { display: flex; gap: 12px; margin-bottom: 18px; flex-wrap: nowrap; align-items: flex-end; }
@media (max-width: 400px) { .booking-row { flex-wrap: wrap; } }
.booking-field { flex: 1; min-width: 130px; }
.booking-label {
  display: block; font-size: 11px; font-weight: 700; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 5px;
}
.booking-input, .booking-select {
  width: 100%; padding: 11px 13px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px; font-family: inherit;
  color: var(--dark); background: var(--white); outline: none;
  transition: border-color var(--transition);
}
.booking-input:focus, .booking-select:focus { border-color: var(--gold-dark); }
.booking-arrow { font-size: 1.3rem; color: var(--gold-dark); align-self: flex-end; padding-bottom: 8px; }
.extras-title {
  font-size: 12px; font-weight: 700; color: var(--dark);
  text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 10px;
}
.extra-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 2px solid var(--border); border-radius: 10px;
  margin-bottom: 8px; cursor: pointer; background: var(--white);
  transition: all 0.15s; user-select: none;
}
.extra-item:hover { border-color: var(--gold-dark); }
.extra-item.selected { border-color: var(--gold-dark); background: #FFFBEB; }
.extra-item input { display: none; }
.extra-icon { font-size: 20px; }
.extra-info { flex: 1; display: flex; flex-direction: column; }
.extra-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.extra-desc { font-size: 11px; color: var(--text-light); }
.extra-price { font-weight: 700; font-size: 14px; color: var(--gold-dark); }

/* ══ RESULT ══ */
.result {
  margin-top: 20px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
}
.result-head {
  background: var(--white); padding: 18px 22px 0;
}
.result-head h3 { color: var(--dark); margin: 0 0 14px; font-size: 15px; font-weight: 800; }
.result-rows { background: var(--white); padding: 0 22px; }
.result-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--sand-light); font-size: 14px; color: #555;
}
.result-row:last-child { border: none; }
.result-row span:last-child { font-weight: 600; color: var(--dark); }
.result-totals {
  background: var(--white); padding: 14px 22px;
  border-top: 2px solid var(--dark);
}
.result-total {
  display: flex; justify-content: space-between;
  font-size: 1.1rem; font-weight: 800; color: var(--dark);
}
.result-total-value { color: var(--dark); }
.result-continue {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px 24px;
  background: var(--gold); color: var(--white); font-weight: 700; font-size: 1rem;
  border-radius: 10px; border: none; cursor: pointer; letter-spacing: 0.04em;
  transition: background var(--transition); text-decoration: none;
}
.result-continue:hover { background: #D49A00; color: var(--white); }
.result-footer {
  padding: 16px 22px; background: var(--white);
}

/* ══ AMENITIES ══ */
.amenities-grid {
  column-count: 1; column-gap: 28px;
}
.amenity-group {
  break-inside: avoid; page-break-inside: avoid; -webkit-column-break-inside: avoid;
  display: inline-block; width: 100%; margin-bottom: 18px;
}
.amenity-extra { display: none; }
.amenities-open .amenity-extra { display: inline-block; }
.amenities-open .amenities-grid { column-count: 2; }
@media (max-width: 480px) { .amenities-open .amenities-grid { column-count: 1; } }
.amenity-group h4 {
  font-size: 14px; font-weight: 800; color: var(--dark); margin: 0 0 8px;
}
.amenity-group ul { padding: 0; margin: 0; }
.amenity-group li {
  font-size: 13px; color: var(--text); padding: 3px 0; list-style: none;
}
@media (max-width: 480px) { .amenities-grid { column-count: 1; } }

/* ══ INFO CARDS ══ */
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.info-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 14px; }
.info-list { padding: 0; }
.info-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text); padding: 5px 0;
  border-bottom: 1px solid var(--sand-light);
}
.info-list li:last-child { border-bottom: none; }
.info-list li span { font-size: 16px; flex-shrink: 0; width: 22px; text-align: center; }
.info-link {
  display: inline-block; margin-top: 12px; font-size: 13px;
  font-weight: 700; color: var(--gold); transition: color var(--transition);
}
.info-link:hover { color: var(--gold-dark); }
@media (max-width: 580px) { .info-grid { grid-template-columns: 1fr; } }

.info-wrap { max-width: 500px; }
.info-wrap .info-card {
  background: transparent; border: none; border-radius: 0;
  padding: 18px 16px; border-bottom: 1px solid var(--sand-light);
}
.info-wrap .info-card:last-child { border-bottom: none; padding-bottom: 0; }
.info-wrap .info-card:first-of-type { padding-top: 0; }

/* ══ CONTACT ══ */
.contact-form { max-width: 500px; margin: 0 auto; }
.contact-form .booking-field { margin-bottom: 16px; }
.contact-form textarea {
  width: 100%; padding: 11px 13px; border: 2px solid var(--border);
  border-radius: var(--radius-sm); font-size: 15px; font-family: inherit;
  color: var(--dark); background: var(--white); outline: none; min-height: 120px; resize: vertical;
}
.contact-form textarea:focus { border-color: var(--gold-dark); }

/* ══ CANCELLATION POLICY ══ */
.policy-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; margin-bottom: 24px;
}
.policy-card h3 { color: var(--dark); margin-bottom: 16px; }
.policy-card p { font-size: 14px; line-height: 1.7; color: #5C4E3D; text-align: justify; }
.policy-card ul { font-size: 14px; line-height: 1.7; color: #5C4E3D; text-align: justify; margin-top: 8px; padding-left: 20px; }
.policy-card li { margin-bottom: 4px; list-style: disc; }
.policy-highlight {
  background: #FFF8E1; border: 1px solid #FFE082;
  border-radius: var(--radius); padding: 24px; text-align: center;
  margin-bottom: 24px;
}

/* ══ FOOTER ══ */
.footer { background: var(--sand); color: var(--dark); padding: 24px 24px 0; }
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; max-width: 1200px; margin: 0 auto;
}
.footer-grid-3 { grid-template-columns: 1fr 2fr 1fr; }
.footer-map iframe { box-shadow: 0 2px 12px rgba(0,0,0,0.1); }
.footer-location {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; max-width: 800px; margin: 0 auto;
}
.footer-location .footer-heading {
  font-size: 1.5rem; font-weight: 800; text-transform: none; letter-spacing: 0;
  color: var(--dark); margin-bottom: 18px; font-family: var(--font-body);
}
/* Availability info strip */
.avail-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 32px; margin-bottom: 20px; font-size: 13px; font-weight: 600; color: var(--text);
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.avail-strip-item { display: flex; align-items: center; gap: 8px; }
.avail-strip-item span { width: 20px; text-align: center; flex-shrink: 0; }
.avail-strip-item img { width: 18px; height: 18px; }
.footer-brand { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dark); margin-bottom: 14px; }
.footer a { color: var(--text-light); font-size: 13px; transition: color var(--transition); }
.footer a:hover { color: var(--gold); }
.footer ul li { margin-bottom: 8px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: none; margin: 30px -24px 0; padding: 18px 32px;
  background: #1a1a2e; color: #cfd3e0;
  border-top: none; font-size: 12px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: #cfd3e0; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom p { margin: 0; }

/* ══ WHATSAPP FLOAT ══ */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 9998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ══ MOBILE DRAWER ══ */
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(72vw, 280px); background: var(--sand); z-index: 10002;
  display: flex; flex-direction: column;
  transform: translateX(-100%); transition: transform 0.3s ease;
  box-shadow: none; visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; box-shadow: 8px 0 40px rgba(0,0,0,0.12); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border); background: var(--white);
}
.drawer-close {
  background: transparent; border: none; color: var(--text-light);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer;
}
.drawer-nav { flex: 1; padding: 16px 0; overflow-y: auto; }
.drawer-nav a {
  display: block; padding: 14px 20px; color: var(--dark);
  font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.drawer-nav a:hover { background: var(--sand-light); }
.drawer-footer {
  padding: 20px; border-top: 1px solid var(--border); margin-top: auto; background: var(--white);
}
.drawer-wa {
  display: flex; align-items: center; gap: 10px; background: #25D366; color: var(--white);
  font-weight: 700; font-size: 14px; padding: 13px 18px; border-radius: 10px;
  text-decoration: none; transition: opacity 0.2s;
}
.drawer-wa:hover { opacity: 0.88; color: var(--white); }
/* Backdrop */
.backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 10001;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s; cursor: pointer;
}
.backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; }

/* ══ SHOW/HIDE HELPERS ══ */
.mobile-only { display: none; }
.desktop-only { display: block; }

/* ══ MOBILE HERO ══ */
.mobile-hero-img { position: relative; width: 100%; }
.mobile-hero-photos {
  position: absolute; bottom: 12px; right: 12px; z-index: 5;
  background: var(--white); color: var(--dark); border: none; border-radius: 8px;
  padding: 8px 14px; font-size: 13px; font-weight: 700; font-family: inherit;
  cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
/* Mobile slider */
.mobile-slider {
  position: relative; width: 100%; height: 280px; overflow: hidden;
  background: #1a1a1a; cursor: pointer;
}
.mobile-slider-track {
  display: flex; height: 100%; transition: transform 0.3s ease;
}
.mobile-slider-track img {
  min-width: 100%; width: 100%; height: 100%; object-fit: cover; flex-shrink: 0;
}
.mobile-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  background: rgba(255,255,255,0.85); border: none; border-radius: 50%;
  width: 34px; height: 34px; font-size: 18px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: background 0.15s;
}
.mobile-slider-btn:hover { background: var(--white); }
.mobile-slider-prev { left: 8px; }
.mobile-slider-next { right: 8px; }
.mobile-slider-counter {
  position: absolute; bottom: 12px; left: 12px; z-index: 4;
  background: rgba(0,0,0,0.55); color: #fff; font-size: 12px; font-weight: 600;
  padding: 4px 10px; border-radius: 12px;
}
.mobile-hero-info { padding: 20px; }
.mobile-hero-info h1 {
  font-family: var(--font-body); font-size: 1.6rem; font-weight: 800;
  color: var(--dark); margin: 0 0 4px; line-height: 1.2;
}
.mobile-hero-loc {
  font-size: 14px; color: var(--text-light); margin: 0 0 4px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.loc-pin { font-size: 14px; color: var(--gold-dark); }
.loc-map-link {
  display: inline-flex; align-items: center; gap: 4px; margin-left: 6px;
  color: var(--gold-dark); font-size: 13px; font-weight: 600; text-decoration: none;
}
.loc-map-link:hover { color: var(--gold); text-decoration: underline; }

/* Trust badge (Reserva segura) */
.trust-badge {
  display: flex; align-items: center; gap: 14px;
  background: #FFF8E7; border: 1px solid #FFE9B0; border-radius: 12px;
  padding: 14px 18px; margin: 20px 0 18px;
}
.trust-badge-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid #FFE082;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); flex-shrink: 0;
}
.trust-badge-text { display: flex; flex-direction: column; gap: 2px; }
.trust-badge-text strong { font-size: 14px; font-weight: 800; color: var(--dark); }
.trust-badge-text span { font-size: 12.5px; color: var(--text-light); }

/* Trust row (3 items below CTA) */
.trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 18px;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--text-light); min-width: 0;
}
.trust-item > div { min-width: 0; }
.trust-item strong {
  display: block; font-size: 12.5px; font-weight: 700; color: var(--dark); line-height: 1.25;
}
.trust-item small {
  display: block; font-size: 11px; color: var(--text-light); line-height: 1.3; margin-top: 2px;
}
.trust-row { gap: 16px !important; }
.trust-ico {
  width: 26px; height: 26px; border-radius: 50%;
  background: #DCFCE7; color: #16a34a;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-ico svg { display: block; }
.mobile-hero-addr { font-size: 13px; color: var(--text-light); margin: 0 0 16px; font-style: italic; }
.mobile-hr { border: none; border-top: 1px solid var(--border); margin: 0 0 16px; }
.mobile-hero-info h3 { font-size: 16px; font-weight: 700; margin: 0 0 12px; }
.mobile-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px;
}
.mobile-feat {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text);
}
.mobile-feat span { font-size: 18px; }
.mobile-ctas { margin-top: 8px; }

/* ══ PROMO BANNERS ══ */
/* Option 1: Top strip (full width bar) */
.promo-strip {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1f4e 100%);
  color: #fff; text-align: center; padding: 10px 20px; font-size: 13px;
  cursor: pointer; letter-spacing: 0.02em; position: relative;
}
.promo-strip-code {
  background: var(--gold); color: #1a1a2e; padding: 2px 8px; border-radius: 4px;
  font-weight: 800; letter-spacing: 0.06em; margin: 0 2px;
}

/* Option 2: Card banner (inside content) */
.promo-banner {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, #FFF7E6 0%, #FFF0CC 100%);
  border: 2px solid var(--gold); border-radius: 12px;
  padding: 14px 18px; margin: 12px 0; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.promo-banner:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,168,0,0.2); }
.promo-left { display: flex; align-items: center; gap: 12px; }
.promo-fire { font-size: 24px; }
.promo-title { font-size: 11px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
.promo-sub { font-size: 14px; color: var(--dark); margin-top: 2px; }
.promo-code-tag {
  background: var(--gold); color: #fff; padding: 2px 8px; border-radius: 4px;
  font-weight: 800; font-size: 13px; letter-spacing: 0.06em;
}
.promo-arrow { font-size: 20px; color: var(--gold); font-weight: 700; }

/* Option 3: Dismissible top alert */
.promo-alert {
  background: var(--gold); color: #fff; text-align: center; padding: 7px 48px 7px 20px;
  font-size: 13px; font-weight: 600; position: relative; cursor: pointer;
}
.promo-alert strong { font-weight: 800; }
.promo-alert-code {
  background: #fff; color: var(--gold); padding: 2px 10px; border-radius: 4px;
  font-weight: 800; letter-spacing: 0.06em; margin: 0 4px;
}
.promo-alert-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.5);
  color: #fff; font-size: 14px; width: 26px; height: 26px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: background 0.15s;
}
.promo-alert-close:hover { background: rgba(255,255,255,0.35); }

/* ══ HERO SPLIT (desktop 2-col layout) ══ */
@media (min-width: 992px) {
  .mobile-hero {
    display: grid; grid-template-columns: 2.1fr 1fr; gap: 32px;
    max-width: 1340px; margin: 24px auto 0; padding: 0 24px;
    align-items: start;
  }
  .mobile-hero-img { position: sticky; top: 96px; }
  .mobile-slider { height: 560px; border-radius: 14px; overflow: hidden; }
  .mobile-slider-counter { font-size: 13px; padding: 6px 14px; }
  .mobile-slider-btn { width: 44px; height: 44px; font-size: 22px; }
  .mobile-hero-info { padding: 8px 0; min-width: 0; }
  .mobile-hero-info h1 {
    font-size: clamp(1.2rem, 1.25vw, 1.45rem); font-weight: 800; line-height: 1.2;
    margin: 0 0 10px; white-space: nowrap;
  }
  .mobile-hero-loc { font-size: 13px; margin-bottom: 24px; }
  .mobile-hr { margin: 10px 0 28px; }
  .mobile-hero-info h3 { font-size: 15px; margin-bottom: 22px; }
  .mobile-features {
    grid-template-columns: 1fr 1fr; gap: 22px 20px; margin-bottom: 0;
  }
  .mobile-feat {
    font-size: 13px; color: var(--dark); font-weight: 600;
    padding: 0; background: none; gap: 10px;
  }
  .mobile-feat span {
    font-size: 20px; line-height: 1; width: auto; height: auto;
    background: none; border-radius: 0; padding: 0;
  }
  .mobile-ctas { margin-top: 28px; }
  .mobile-ctas .btn { padding: 18px 20px; font-size: 1rem; }
  .trust-badge { padding: 14px 16px; font-size: 12px; margin-top: 18px; }
  .trust-badge strong { font-size: 13px; }
  .trust-row { margin-top: 18px; gap: 14px; }
  .price-highlight { display: flex !important; }
}

.price-highlight {
  display: none; margin-top: 16px; padding: 12px 18px;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  align-items: baseline; justify-content: center; gap: 10px;
}
.price-from { font-size: 14px; color: var(--text-light); font-weight: 500; }
.price-value {
  font-size: 1.5rem; font-weight: 800; color: var(--dark);
  font-family: var(--font-body); line-height: 1;
}
.price-unit { font-size: 14px; color: var(--dark); font-weight: 600; }
.price-note { font-size: 11px; color: var(--text-light); font-style: italic; margin-left: 4px; }

/* ══ THUMBNAIL STRIP (desktop only) ══ */
.thumb-strip {
  display: flex; align-items: center; gap: 8px; margin-top: 10px;
  position: relative;
}
.thumb-track {
  display: flex; gap: 8px; overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; flex: 1;
}
.thumb-track::-webkit-scrollbar { display: none; }
.thumb {
  flex: 0 0 calc(20% - 7px); aspect-ratio: 4 / 3;
  padding: 0; background: none; border: 2px solid transparent;
  border-radius: 8px; overflow: hidden; cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb:hover { opacity: 0.85; }
.thumb.active { border-color: var(--gold); }
.thumb-nav {
  background: var(--white); border: 1px solid var(--border); border-radius: 50%;
  width: 32px; height: 32px; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); flex-shrink: 0; box-shadow: var(--shadow);
  transition: background 0.15s, border-color 0.15s;
}
.thumb-nav:hover { background: var(--sand); border-color: var(--gold-dark); }

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
  .hamburger-label { display: none; }
  .hamburger { padding: 0; }
  .lang-code { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 760px) {
  .cal-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { flex-direction: row; }
}
@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-grid .gallery-item:nth-child(1),
  .gallery-grid .gallery-item:nth-child(5),
  .gallery-grid .gallery-item:nth-child(9) { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cal-grid { grid-template-columns: 1fr; }
  .booking-card { padding: 18px 14px; }
}
