/* ============================================================
   HOTEL APOLO XI — Sistema visual "Tierra de Levante"
   Rústico-chic natural · oklch · WCAG AA
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Palette: OLIVAR (default) */
  --bg:        oklch(0.967 0.009 92);
  --bg-2:      oklch(0.944 0.013 88);
  --bg-3:      oklch(0.918 0.016 86);
  --surface:   oklch(0.992 0.006 95);
  --ink:       oklch(0.265 0.018 70);
  --ink-soft:  oklch(0.430 0.020 72);
  --muted:     oklch(0.560 0.016 78);
  --line:      oklch(0.882 0.013 88);
  --line-soft: oklch(0.918 0.010 90);

  --primary:      oklch(0.470 0.058 142);
  --primary-deep: oklch(0.372 0.050 145);
  --primary-soft: oklch(0.930 0.022 130);
  --on-primary:   oklch(0.975 0.010 110);

  --clay:      oklch(0.580 0.090 50);
  --clay-soft: oklch(0.930 0.026 58);
  --gold:      oklch(0.730 0.075 78);

  /* Type */
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, sans-serif;
  --mono:  "Spline Sans Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Space scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Radius / shadow / motion */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-pill: 999px;
  --shadow-sm: 0 1px 2px oklch(0.30 0.02 70 / 0.06), 0 2px 8px oklch(0.30 0.02 70 / 0.05);
  --shadow-md: 0 4px 14px oklch(0.30 0.02 70 / 0.10), 0 12px 36px oklch(0.30 0.02 70 / 0.08);
  --shadow-lg: 0 10px 30px oklch(0.30 0.02 70 / 0.14), 0 30px 70px oklch(0.30 0.02 70 / 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --maxw: 1240px;
}

/* Palette: BOSQUE */
[data-palette="bosque"] {
  --bg:        oklch(0.958 0.012 110);
  --bg-2:      oklch(0.930 0.016 115);
  --bg-3:      oklch(0.900 0.020 118);
  --surface:   oklch(0.988 0.008 108);
  --ink:       oklch(0.255 0.022 140);
  --ink-soft:  oklch(0.410 0.024 140);
  --line:      oklch(0.872 0.018 120);
  --primary:      oklch(0.420 0.072 152);
  --primary-deep: oklch(0.330 0.058 155);
  --primary-soft: oklch(0.918 0.030 145);
  --clay:      oklch(0.560 0.095 44);
  --clay-soft: oklch(0.922 0.028 52);
  --gold:      oklch(0.720 0.080 84);
}

/* Palette: COSTA */
[data-palette="costa"] {
  --bg:        oklch(0.972 0.011 80);
  --bg-2:      oklch(0.948 0.018 78);
  --bg-3:      oklch(0.922 0.024 76);
  --surface:   oklch(0.994 0.007 84);
  --ink:       oklch(0.275 0.024 230);
  --ink-soft:  oklch(0.440 0.028 225);
  --line:      oklch(0.890 0.016 78);
  --primary:      oklch(0.520 0.072 205);
  --primary-deep: oklch(0.420 0.062 210);
  --primary-soft: oklch(0.930 0.030 200);
  --clay:      oklch(0.640 0.095 58);
  --clay-soft: oklch(0.938 0.030 64);
  --gold:      oklch(0.760 0.080 82);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01";
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }

::selection { background: var(--primary-soft); color: var(--primary-deep); }

/* Accessible focus */
:where(a, button, input, select, [tabindex]):focus-visible {
  outline: 2.5px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: var(--bg); padding: 10px 20px; border-radius: var(--r-pill);
  z-index: 2000; transition: top .2s var(--ease); font-weight: 700; font-size: 14px;
}
.skip-link:focus { top: 12px; }

/* High-contrast & large-text accessibility helpers */
[data-contrast="high"] {
  --bg: #ffffff; --surface: #ffffff; --ink: #14130f; --ink-soft: #14130f;
  --line: #14130f; --muted: #2c2a24; --primary: oklch(0.36 0.07 145);
}
[data-textscale="lg"]  { font-size: 18.5px; }
[data-textscale="xl"]  { font-size: 20px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
.section { padding-block: clamp(56px, 9vw, 128px); }
.eyebrow {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--clay); font-weight: 500; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .7; }
.section-title { font-size: clamp(30px, 4.4vw, 54px); line-height: 1.04; max-width: 18ch; }
.lede { font-size: clamp(17px, 1.5vw, 19.5px); color: var(--ink-soft); max-width: 60ch; line-height: 1.6; }

/* ---------- Texture placeholder (stand-in for .webp) ---------- */
.ph {
  position: relative; overflow: hidden; background: var(--bg-2);
  display: flex; align-items: flex-end; isolation: isolate;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--ink-soft);
  background: oklch(0.99 0.006 95 / 0.82); padding: 5px 10px; margin: 12px;
  border-radius: var(--r-pill); border: 1px solid var(--line); backdrop-filter: blur(3px);
}
.ph[data-tone="green"] { background-color: var(--primary-soft); }
.ph[data-tone="clay"]  { background-color: var(--clay-soft); }
.ph[data-tone="ink"]   { background-color: oklch(0.30 0.02 70); }
.ph[data-tone="ink"]::after { color: var(--bg); background: oklch(0.20 0.02 70 / 0.65); border-color: oklch(1 0 0 / .15); }
.ph[data-has-img="true"] { background: var(--bg-3); background-image: none; }
.ph[data-has-img="true"]::after { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: var(--r-pill); border: 1px solid transparent;
  text-decoration: none; transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .2s; white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-deep); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: oklch(0.30 0.02 70 / 0.04); }
.btn-clay { background: var(--clay); color: oklch(0.99 0.01 60); box-shadow: var(--shadow-sm); }
.btn-clay:hover { filter: brightness(0.96); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

.pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
}
.pill svg { width: 15px; height: 15px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--primary-deep); color: oklch(0.95 0.01 110);
  font-size: 12.5px; letter-spacing: 0.02em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; padding-block: 6px; }
.topbar a { text-decoration: none; opacity: .9; }
.topbar a:hover { opacity: 1; }
.topbar-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; margin-right: 8px; }

.header {
  position: sticky; top: 0; z-index: 1000;
  background: oklch(0.967 0.009 92 / 0.82); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent; transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s;
}
.header[data-stuck="true"] { box-shadow: var(--shadow-sm); border-color: var(--line); background: oklch(0.972 0.009 92 / 0.92); }
.header .wrap { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); min-height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: var(--on-primary); background: var(--primary);
  font-family: var(--serif); font-size: 17px; letter-spacing: 0.02em; box-shadow: inset 0 0 0 3px oklch(1 0 0 / 0.14);
}
.brand-mark span, .brand-mark .__om-t { position: relative; top: 7px; }
.brand > span { display: flex; flex-direction: column; }
.brand-name { display: block; font-family: var(--serif); font-size: 21px; line-height: 1; letter-spacing: 0.01em; white-space: nowrap; }
.brand-sub { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-top: 4px; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink-soft); white-space: nowrap;
  padding: 9px 11px; border-radius: var(--r-pill); transition: color .2s, background .2s; position: relative;
}
.nav a:hover { color: var(--ink); background: oklch(0.30 0.02 70 / 0.045); }

.header-tools { display: flex; align-items: center; gap: 10px; }
.lang {
  display: inline-flex; border: 1px solid var(--line); border-radius: var(--r-pill); overflow: hidden; background: var(--surface);
}
.lang a { text-decoration: none; font-size: 12.5px; font-weight: 700; padding: 7px 12px; color: var(--muted); transition: background .2s, color .2s; }
.lang a[aria-current="true"] { background: var(--primary); color: var(--on-primary); }

.weather {
  display: inline-flex; align-items: center; gap: 11px; padding: 7px 14px 7px 11px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line); white-space: nowrap;
}
.weather .wx-ico { width: 30px; height: 30px; flex: none; color: var(--clay); }
.weather .wx-temp { font-family: var(--serif); font-size: 19px; line-height: 1; }
.weather .wx-meta { font-size: 11px; color: var(--muted); line-height: 1.25; }
.weather .wx-wind { font-weight: 700; color: var(--primary-deep); }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }

/* mobile drawer */
.drawer-backdrop { position: fixed; inset: 0; background: oklch(0.2 0.02 70 / 0.4); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity .3s; }
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(86vw, 360px); background: var(--bg);
  z-index: 1200; transform: translateX(100%); transition: transform .35s var(--ease); padding: 24px;
  display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow-lg);
}
.drawer.open { transform: none; }
.drawer a { text-decoration: none; font-family: var(--serif); font-size: 22px; padding: 12px 6px; border-bottom: 1px solid var(--line-soft); color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; }
.hero-media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-media .ph { position: absolute; inset: -8% 0 0 0; height: 116%; }
.hero-scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, oklch(0.22 0.02 70 / 0.42) 0%, oklch(0.22 0.02 70 / 0.18) 38%, oklch(0.20 0.02 70 / 0.66) 100%);
}
.hero-inner { position: relative; z-index: 2; min-height: min(92vh, 860px); display: flex; flex-direction: column; justify-content: flex-end; padding-block: clamp(48px, 9vh, 110px); }
.hero h1 { color: oklch(0.99 0.01 95); font-size: clamp(44px, 8.2vw, 110px); line-height: 0.98; font-weight: 300; letter-spacing: -0.02em; max-width: 16ch; text-shadow: 0 2px 30px oklch(0.2 0.02 70 / 0.4); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-claim { color: oklch(0.96 0.01 95); font-size: clamp(17px, 2vw, 22px); max-width: 44ch; margin-top: 22px; line-height: 1.5; text-shadow: 0 1px 16px oklch(0.2 0.02 70 / 0.5); }
.hero-loc { color: oklch(0.92 0.01 95); display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 22px; }
.hero-loc svg { width: 16px; height: 16px; color: var(--gold); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; align-items: center; }
.hero-scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3; color: oklch(0.95 0.01 95); display: flex; flex-direction: column; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: .85; }
.hero-scroll .scroll-arrow { animation: scrollbounce 2.2s var(--ease) infinite; }
@keyframes scrollbounce { 0%, 100% { transform: rotate(90deg) translateX(0); } 50% { transform: rotate(90deg) translateX(6px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll .scroll-arrow { animation: none; } }

/* hero video badge */
.hero-tag { position: absolute; top: clamp(20px, 4vh, 40px); right: clamp(20px, 5vw, 56px); z-index: 3; }

/* slider dots */
.hero-dots { display: flex; gap: 9px; margin-left: 8px; }
.hero-dots button { width: 34px; height: 4px; border-radius: var(--r-pill); border: none; background: oklch(1 0 0 / 0.35); padding: 0; transition: background .3s; }
.hero-dots button[aria-current="true"] { background: var(--gold); }

/* split hero variant */
.hero.split .hero-inner { min-height: auto; }
.hero-split-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: min(88vh, 820px); }
.hero-split-text { background: var(--bg); display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 96px) clamp(28px, 5vw, 80px); }
.hero-split-text h1 { color: var(--ink); text-shadow: none; font-size: clamp(40px, 5.4vw, 78px); }
.hero-split-text h1 em { color: var(--clay); }
.hero-split-text .hero-claim, .hero-split-text .hero-loc { color: var(--ink-soft); text-shadow: none; }
.hero-split-text .hero-loc svg { color: var(--clay); }
.hero-split-media { position: relative; overflow: hidden; }
.hero-split-media .ph { position: absolute; inset: 0; height: 100%; }

/* trust strip under hero */
.trust { border-block: 1px solid var(--line); background: var(--surface); }
.trust .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: 18px; }
.trust-item { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.trust-item svg { width: 22px; height: 22px; color: var(--primary); flex: none; }
.trust-rating strong { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-right: 4px; }

/* ============================================================
   INCENTIVES
   ============================================================ */
.incentives { background: var(--primary-deep); color: oklch(0.96 0.012 110); position: relative; overflow: hidden; }

.incentives .eyebrow { color: var(--gold); }
.incentives-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(32px, 4vw, 52px); position: relative; }
.incentives-head h2 { color: oklch(0.98 0.012 110); font-size: clamp(28px, 3.8vw, 46px); max-width: 20ch; }
.incentives-head p { color: oklch(0.88 0.015 120); max-width: 40ch; }
.inc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.inc-card {
  background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.12); border-radius: var(--r-lg);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 13px; transition: background .3s var(--ease), transform .3s var(--ease); backdrop-filter: blur(2px);
}
.inc-card:hover { background: oklch(1 0 0 / 0.10); transform: translateY(-4px); }
.inc-ico { width: 46px; height: 46px; border-radius: 50%; background: oklch(1 0 0 / 0.10); display: grid; place-items: center; color: var(--gold); }
.inc-ico svg { width: 24px; height: 24px; }
.inc-card h3 { color: oklch(0.99 0.01 110); font-size: 21px; }
.inc-card p { font-size: 14px; color: oklch(0.86 0.015 120); line-height: 1.55; }
.inc-card .tagline { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: auto; }
.inc-vs { text-align: center; margin-top: 30px; font-size: 14px; color: oklch(0.85 0.015 120); position: relative; }
.inc-vs strong { color: var(--gold); }

/* ============================================================
   RESERVE CTA (Booking.com + teléfono)
   ============================================================ */
.reserve { background: var(--bg-2); border-block: 1px solid var(--line); }
.reserve-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: clamp(30px, 4vw, 56px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 5vw, 68px); align-items: center;
}
.reserve-text h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 14px; }
.reserve-perks { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 13px; }
.reserve-perks li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-soft); font-size: 15.5px; }
.reserve-perks svg { width: 21px; height: 21px; color: var(--primary); flex: none; }
.reserve-actions { display: flex; flex-direction: column; gap: 14px; }

.btn-booking {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: #003580; color: #fff; border-radius: var(--r-md); padding: 18px 26px;
  text-decoration: none; box-shadow: var(--shadow-md);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-booking:hover { background: #002651; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-booking .bk-stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.btn-booking .bk-label { font-family: var(--sans); font-size: 13px; font-weight: 600; color: #9db8e8; letter-spacing: .01em; }
.btn-booking .bk-logo { font-family: var(--sans); font-size: 23px; font-weight: 800; letter-spacing: -0.02em; }
.btn-booking .bk-logo b { color: #febb02; font-weight: 800; }
.btn-booking svg { width: 22px; height: 22px; flex: none; }

.btn-call {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: var(--primary); color: var(--on-primary); border-radius: var(--r-md); padding: 18px 26px;
  text-decoration: none; font-weight: 700; font-size: 18px; box-shadow: var(--shadow-sm);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-call:hover { background: var(--primary-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-call svg { width: 22px; height: 22px; flex: none; }
.btn-call small { display: block; font-size: 12px; font-weight: 600; opacity: .82; margin-top: 2px; }
.reserve-note { text-align: center; font-size: 12.5px; color: var(--muted); font-family: var(--mono); margin-top: 4px; display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.reserve-note svg { width: 15px; height: 15px; color: var(--primary); }

@media (max-width: 920px) {
  .reserve-card { grid-template-columns: 1fr; gap: 30px; }
}

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

/* ============================================================
   BOOKING ENGINE
   ============================================================ */
.booking { background: var(--bg-2); border-block: 1px solid var(--line); }
.booking-shell { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); overflow: hidden; }
.booking-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 24px; border-bottom: 1px solid var(--line); background: var(--primary-deep); color: oklch(0.96 0.01 110); flex-wrap: wrap; }
.booking-bar .bb-title { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 19px; }
.booking-bar .bb-title svg { width: 22px; height: 22px; color: var(--gold); }
.booking-bar .bb-trust { font-size: 12.5px; color: oklch(0.87 0.015 120); display: inline-flex; align-items: center; gap: 8px; }

/* stepper */
.steps { display: flex; align-items: center; gap: 8px; padding: 16px 24px; flex-wrap: wrap; border-bottom: 1px solid var(--line-soft); background: var(--bg); }
.step { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); font-weight: 600; }
.step .num { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; background: var(--bg-3); color: var(--ink-soft); border: 1px solid var(--line); transition: .25s; }
.step[data-state="active"] { color: var(--ink); }
.step[data-state="active"] .num { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }
.step[data-state="done"] .num { background: var(--primary-soft); color: var(--primary-deep); border-color: var(--primary-soft); }
.step-sep { flex: 1; height: 1px; background: var(--line); min-width: 14px; max-width: 46px; }

.booking-body { padding: clamp(22px, 3vw, 36px); }

/* search form */
.search-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 16px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.02em; color: var(--ink-soft); text-transform: uppercase; font-family: var(--mono); }
.field-control {
  display: flex; align-items: center; gap: 10px; padding: 13px 15px; border-radius: var(--r-md);
  border: 1.5px solid var(--line); background: var(--bg); transition: border-color .2s, box-shadow .2s;
}
.field-control:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.field-control svg { width: 19px; height: 19px; color: var(--clay); flex: none; }
.field-control input, .field-control select { border: none; background: none; outline: none; font-family: var(--sans); font-size: 15.5px; color: var(--ink); width: 100%; font-weight: 600; }
.field-control input::placeholder { color: var(--muted); font-weight: 500; }
.stepper-num { display: flex; align-items: center; gap: 4px; }
.stepper-num button { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--surface); font-size: 17px; line-height: 1; color: var(--ink); display: grid; place-items: center; }
.stepper-num button:hover:not(:disabled) { border-color: var(--primary); color: var(--primary); }
.stepper-num button:disabled { opacity: .35; cursor: not-allowed; }
.stepper-num span { min-width: 22px; text-align: center; font-weight: 700; font-size: 16px; }

.search-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.search-note { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.search-note svg { width: 16px; height: 16px; color: var(--primary); }

/* results */
.results-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.results-head h3 { font-size: clamp(22px, 2.6vw, 30px); }
.results-head .nights { font-size: 14px; color: var(--ink-soft); }
.room-result { display: grid; grid-template-columns: 240px 1fr auto; gap: 22px; padding: 20px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg); transition: box-shadow .3s, border-color .3s; margin-bottom: 16px; }
.room-result:hover { box-shadow: var(--shadow-md); border-color: var(--line); }
.room-result .rr-img { height: 160px; border-radius: var(--r-md); }
.room-result .rr-body h4 { font-size: 23px; margin-bottom: 6px; }
.room-result .rr-feats { display: flex; flex-wrap: wrap; gap: 7px; margin: 12px 0; }
.rr-feat { font-size: 12px; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); padding: 4px 10px; border-radius: var(--r-pill); display: inline-flex; gap: 6px; align-items: center; }
.rr-feat svg { width: 13px; height: 13px; color: var(--primary); }
.room-result .rr-perks { font-size: 13px; color: var(--primary-deep); display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.room-result .rr-perks span { display: inline-flex; gap: 7px; align-items: center; }
.room-result .rr-perks svg { width: 14px; height: 14px; color: var(--primary); flex: none; }
.rr-price { text-align: right; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; min-width: 170px; gap: 4px; }
.rr-price .otaline { font-size: 12.5px; color: var(--muted); text-decoration: line-through; }
.rr-price .amount { font-family: var(--serif); font-size: 38px; line-height: 1; color: var(--ink); }
.rr-price .amount small { font-size: 15px; color: var(--muted); font-family: var(--sans); }
.rr-price .total { font-size: 12.5px; color: var(--ink-soft); }
.rr-price .save { font-size: 11.5px; font-weight: 700; color: var(--primary-deep); background: var(--primary-soft); padding: 3px 9px; border-radius: var(--r-pill); margin-top: 4px; }
.rr-sold { font-size: 12px; color: var(--clay); font-weight: 700; }

/* guest form */
.guest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.guest-grid .full { grid-column: 1 / -1; }
.ginput { display: flex; flex-direction: column; gap: 6px; }
.ginput label { font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.ginput input, .ginput textarea, .ginput select { padding: 12px 14px; border-radius: var(--r-md); border: 1.5px solid var(--line); background: var(--bg); font-family: var(--sans); font-size: 15px; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.ginput input:focus, .ginput textarea:focus, .ginput select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.ginput[data-err="true"] input, .ginput[data-err="true"] textarea { border-color: var(--clay); box-shadow: 0 0 0 3px var(--clay-soft); }
.ginput .err { font-size: 12px; color: var(--clay); font-weight: 600; display: none; }
.ginput[data-err="true"] .err { display: block; }

.summary-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; position: sticky; top: 96px; }
.summary-card h4 { font-size: 19px; margin-bottom: 14px; }
.sum-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 8px 0; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.sum-row.total { border-bottom: none; border-top: 2px solid var(--ink); margin-top: 6px; padding-top: 14px; font-size: 16px; color: var(--ink); font-weight: 700; }
.sum-row.total .v { font-family: var(--serif); font-size: 26px; font-weight: 400; }
.sum-perk { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--primary-deep); padding: 5px 0; }
.sum-perk svg { width: 16px; height: 16px; color: var(--primary); flex: none; margin-top: 2px; }
.noprepay { background: var(--primary-soft); border-radius: var(--r-md); padding: 12px 14px; font-size: 13px; color: var(--primary-deep); display: flex; gap: 10px; margin-top: 14px; line-height: 1.45; }
.noprepay svg { width: 20px; height: 20px; flex: none; }

/* confirmation */
.confirm { text-align: center; padding: clamp(20px, 4vw, 40px) 0; }
.confirm-badge { width: 86px; height: 86px; border-radius: 50%; background: var(--primary); color: var(--on-primary); display: grid; place-items: center; margin: 0 auto 24px; box-shadow: var(--shadow-md); animation: pop .5s var(--ease); }
.confirm-badge svg { width: 44px; height: 44px; }
@keyframes pop { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.confirm h3 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 12px; }
.confirm .code { font-family: var(--mono); font-size: 15px; letter-spacing: 0.1em; background: var(--bg); border: 1px dashed var(--line); padding: 10px 18px; border-radius: var(--r-md); display: inline-block; margin: 16px 0; }
.confirm-detail { max-width: 460px; margin: 20px auto 0; text-align: left; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px; }
.confirm-detail .sum-row:last-child { border-bottom: none; }
.flow-note { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; }
.flow-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }

/* spinner */
.spinner { width: 34px; height: 34px; border-radius: 50%; border: 3px solid var(--line); border-top-color: var(--primary); animation: spin .8s linear infinite; margin: 8px auto; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-wrap { text-align: center; padding: 40px 0; color: var(--ink-soft); }

/* ============================================================
   ROOMS / EXPERIENCES / STORY / PROOF / FAQ
   ============================================================ */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.room-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .35s var(--ease), transform .35s var(--ease); }
.room-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.room-card .rc-img { height: 230px; }
.room-card .rc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.room-card .rc-tags { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.room-card h3 { font-size: 26px; margin-bottom: 8px; }
.room-card .rc-desc { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 16px; }
.room-card .rc-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; gap: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft); }
.room-card .rc-price small { display: block; font-size: 11px; color: var(--muted); font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
.room-card .rc-price b { font-family: var(--serif); font-size: 30px; font-weight: 400; }
.room-card .rc-price b span { font-size: 14px; color: var(--muted); font-family: var(--sans); }

.experiences { background: var(--bg-2); }
.exp-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; }
.exp-big { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 420px; display: flex; align-items: flex-end; }
.exp-big .ph { position: absolute; inset: 0; height: 100%; }
.exp-overlay { position: relative; z-index: 2; padding: 32px; color: oklch(0.98 0.01 95); background: linear-gradient(transparent, oklch(0.2 0.02 70 / 0.72)); width: 100%; }
.exp-overlay h3 { color: inherit; font-size: 30px; margin-bottom: 8px; }
.exp-overlay p { color: oklch(0.92 0.01 95); max-width: 42ch; font-size: 14.5px; }
.exp-side { display: flex; flex-direction: column; gap: 22px; }
.exp-small { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.exp-small .exp-ico { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--clay-soft); color: var(--clay); display: grid; place-items: center; }
.exp-small .exp-ico svg { width: 26px; height: 26px; }
.exp-small h3 { font-size: 23px; }
.exp-small p { font-size: 14px; color: var(--ink-soft); }

.story-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.story-media { position: relative; }
.story-media .ph.main { height: 520px; border-radius: var(--r-lg); }
.story-media .ph.inset { position: absolute; bottom: -28px; right: -28px; width: 56%; height: 230px; border-radius: var(--r-md); border: 6px solid var(--bg); box-shadow: var(--shadow-md); }
.story-text h2 { font-size: clamp(30px, 4.2vw, 50px); margin-bottom: 20px; }
.story-text p { color: var(--ink-soft); margin-bottom: 16px; font-size: 16.5px; }
.story-stats { display: flex; gap: 36px; margin-top: 28px; flex-wrap: wrap; }
.story-stat b { font-family: var(--serif); font-size: 42px; line-height: 1; color: var(--primary); display: block; }
.story-stat span { font-size: 13px; color: var(--muted); font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.story-grid.reverse { grid-template-columns: 1.05fr 0.95fr; }
.story-grid.reverse .ph.inset { right: auto; left: -28px; }

.proof { background: var(--primary-deep); color: oklch(0.96 0.012 110); }
.proof .eyebrow { color: var(--gold); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.quote-card { background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.12); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.quote-card .stars { color: var(--gold); display: flex; gap: 3px; }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-family: var(--serif); font-size: 19px; line-height: 1.5; color: oklch(0.97 0.01 110); margin: 0; }
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-card .who .av { width: 42px; height: 42px; border-radius: 50%; background: oklch(1 0 0 / 0.14); display: grid; place-items: center; font-family: var(--serif); font-size: 17px; color: var(--gold); }
.quote-card .who b { font-size: 14.5px; color: oklch(0.98 0.01 110); display: block; }
.quote-card .who span { font-size: 12.5px; color: oklch(0.84 0.015 120); }
.proof-sources { display: flex; align-items: center; justify-content: center; gap: 30px; margin-top: 44px; flex-wrap: wrap; font-size: 13px; color: oklch(0.84 0.015 120); }
.proof-sources b { font-family: var(--serif); font-size: 22px; color: var(--gold); }

.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--serif); font-size: clamp(18px, 2vw, 22px); color: var(--ink); }
.faq-q .chev { width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s, color .3s; }
.faq-q .chev svg { width: 16px; height: 16px; }
.faq-item[data-open="true"] .chev { transform: rotate(180deg); background: var(--primary); color: var(--on-primary); border-color: var(--primary); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 4px 24px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.faq-a-inner strong { color: var(--ink); }
.dist-list { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 6px; }
.dist-list li { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.dist-list li b { font-weight: 700; color: var(--ink); }
.dist-list li .mins { font-family: var(--mono); color: var(--primary-deep); font-size: 13px; }

.faq-aside { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; position: sticky; top: 96px; }
.faq-aside h3 { font-size: 24px; margin-bottom: 8px; }
.faq-aside p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 20px; }
.faq-aside .help-row { display: flex; align-items: center; gap: 13px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 14px; }
.faq-aside .help-row svg { width: 22px; height: 22px; color: var(--primary); flex: none; }
.faq-aside .help-row b { display: block; }
.faq-aside .help-row span { color: var(--muted); font-size: 12.5px; }

/* ============================================================
   FOOTER
   ============================================================ */
.cta-band { background: var(--clay); color: oklch(0.99 0.01 60); position: relative; overflow: hidden; }

.cta-band .wrap { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-block: clamp(40px, 6vw, 72px); }
.cta-band h2 { font-size: clamp(28px, 4vw, 48px); color: inherit; max-width: 18ch; }
.cta-band p { color: oklch(0.95 0.012 60); max-width: 40ch; margin-top: 12px; }
.cta-band .btn-ghost { color: oklch(0.99 0.01 60); border-color: oklch(1 0 0 / 0.5); }
.cta-band .btn-ghost:hover { background: oklch(1 0 0 / 0.12); border-color: oklch(1 0 0 / 0.8); }
.cta-band .btn-light { background: oklch(0.99 0.01 95); color: var(--clay); }
.cta-band .btn-light:hover { background: white; transform: translateY(-1px); }

.footer { background: var(--ink); color: oklch(0.86 0.012 90); }
.footer .wrap { padding-block: clamp(48px, 6vw, 80px) 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: oklch(0.97 0.01 95); font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; }
.footer a { color: oklch(0.82 0.012 90); text-decoration: none; display: block; padding: 5px 0; font-size: 14.5px; transition: color .2s; }
.footer a:hover { color: var(--gold); }
.footer .brand-name { color: oklch(0.98 0.01 95); }
.footer .brand-sub { color: oklch(0.62 0.012 90); }
.nap { font-size: 14.5px; line-height: 1.7; color: oklch(0.82 0.012 90); margin-top: 16px; }
.nap b { color: oklch(0.95 0.01 95); }
.rat { font-family: var(--mono); font-size: 11.5px; color: oklch(0.66 0.012 90); margin-top: 14px; line-height: 1.6; padding: 10px 12px; border: 1px solid oklch(1 0 0 / 0.1); border-radius: var(--r-md); }
.footer-map { border-radius: var(--r-md); overflow: hidden; border: 1px solid oklch(1 0 0 / 0.12); height: 170px; position: relative; }
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid oklch(1 0 0 / 0.1); font-size: 12.5px; color: oklch(0.66 0.012 90); }
.footer-bottom a { display: inline; padding: 0; }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============================================================
   FLOATING WHATSAPP + COOKIE BANNER
   ============================================================ */
.wa-fab { position: fixed; right: 22px; bottom: 22px; z-index: 900; display: flex; align-items: center; gap: 12px; }
.wa-bubble { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); border-radius: var(--r-lg); padding: 12px 16px; max-width: 220px; font-size: 13.5px; color: var(--ink); line-height: 1.4; position: relative; animation: wa-in .4s var(--ease); }
.wa-bubble b { display: block; font-size: 13px; }
.wa-bubble .wa-close { position: absolute; top: 6px; right: 8px; background: none; border: none; color: var(--muted); font-size: 16px; line-height: 1; }
@keyframes wa-in { from { opacity: 0; transform: translateY(10px); } }
.wa-btn { width: 60px; height: 60px; border-radius: 50%; background: oklch(0.62 0.16 150); color: white; border: none; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform .25s var(--ease); flex: none; }
.wa-btn:hover { transform: scale(1.07); }
.wa-btn svg { width: 32px; height: 32px; }
.wa-btn .ping { position: absolute; top: 2px; right: 2px; width: 14px; height: 14px; background: var(--clay); border-radius: 50%; border: 2px solid var(--bg); }

.cookie {
  position: fixed; left: 22px; bottom: 22px; z-index: 950; max-width: 420px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 22px; transform: translateY(140%); transition: transform .5s var(--ease);
}
.cookie.show { transform: none; }
.cookie h4 { font-family: var(--serif); font-size: 19px; margin-bottom: 8px; }
.cookie p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 16px; }
.cookie p a { color: var(--primary-deep); font-weight: 700; }
.cookie-prefs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.cookie-pref { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13.5px; }
.cookie-pref span b { display: block; }
.cookie-pref span small { color: var(--muted); }
.switch { width: 44px; height: 25px; border-radius: var(--r-pill); background: var(--bg-3); border: 1px solid var(--line); position: relative; transition: background .25s; flex: none; }
.switch[data-on="true"] { background: var(--primary); border-color: var(--primary); }
.switch[data-locked="true"] { opacity: .6; }
.switch .knob { position: absolute; top: 2px; left: 2px; width: 19px; height: 19px; border-radius: 50%; background: white; transition: transform .25s var(--ease); box-shadow: var(--shadow-sm); }
.switch[data-on="true"] .knob { transform: translateX(19px); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .inc-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .search-grid { grid-template-columns: 1fr 1fr; }
  .search-grid .field-submit { grid-column: 1 / -1; }
}
@media (max-width: 920px) {
  .nav, .weather-desktop { display: none; }
  .burger { display: inline-grid; }
  .hero-split-grid { grid-template-columns: 1fr; }
  .hero-split-media { min-height: 320px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media .ph.main { height: 380px; }
  .exp-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .room-result { grid-template-columns: 1fr; }
  .room-result .rr-img { height: 200px; }
  .rr-price { text-align: left; align-items: flex-start; }
  .guest-grid, .booking-2col { grid-template-columns: 1fr !important; }
  .summary-card { position: static; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .inc-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-grid { grid-template-columns: 1fr; }
  .steps { gap: 4px; }
  .step span.lbl { display: none; }
  .step-sep { max-width: 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .topbar-left .hide-sm { display: none; }
}

body.no-weather .weather { display: none; }

/* booking 2-col layout (guest step) */
.booking-2col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; align-items: start; }
