/* ═══════════════════════════════════════════════════════════
   PRATUM APART — Main Stylesheet
   Structure: tokens → reset → layout → header → hero →
   stats → about → gallery → amenities → location →
   reviews → booking → faq → footer → modal → animations
   ═══════════════════════════════════════════════════════════ */

/* ── FONTS ───────────────────────────────────────────────── */
@font-face {
  font-family: 'Berlingske';
  src: url('../fonts/BerlingskeSerif-Regular.woff') format('woff'),
       url('../fonts/BerlingskeSerif-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}

@font-face {
  font-family: 'Berlingske';
  src: url('../fonts/BerlingskeSerif-SemiBold.woff') format('woff'),
       url('../fonts/BerlingskeSerif-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Berlingske';
  src: url('../fonts/BerlingskeSerif-Bold.woff') format('woff'),
       url('../fonts/BerlingskeSerif-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Kinetika';
  src: url('../fonts/Kinetika-Light.woff') format('woff'),
       url('../fonts/Kinetika-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Kinetika';
  src: url('../fonts/Kinetika-Regular.woff') format('woff'),
       url('../fonts/Kinetika-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Kinetika';
  src: url('../fonts/Kinetika-Medium.woff') format('woff'),
       url('../fonts/Kinetika-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Kinetika';
  src: url('../fonts/Kinetika-SemiBold.woff') format('woff'),
       url('../fonts/Kinetika-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --sage:   #81887A;
  --mint:   #96BCA6;
  --forest: #3E4A39;
  --terra:  #B05A32;  /* darkened for WCAG AA 4.5:1 on cream */
  --oak:    #C2A074;
  --cream:  #F5F1E8;
  --ink:    #26261F;
  --stone:  #6E6B64;  /* darkened for WCAG AA 4.5:1 on cream */
  --ochre:  #D6A94C;

  --ff-serif: 'Berlingske', Georgia, serif;
  --ff-sans:  'Kinetika', system-ui, sans-serif;

  --max-w: 1200px;
  --gap:   clamp(20px, 4vw, 64px);
  --section-py: clamp(64px, 8vw, 104px);

  --header-h: 72px;
  --radius: 2px;
  --transition: 0.34s cubic-bezier(0.22, 0.8, 0.24, 1);
  --transition-hover: 0.38s cubic-bezier(0.22, 0.8, 0.24, 1);
}

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 12px 20px;
  background: var(--terra);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* scroll-behavior removed — JS handles smooth scroll with header offset */
html {
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--terra) rgba(129,136,122,0.18);
}
html::-webkit-scrollbar { width: 10px; height: 10px; }
html::-webkit-scrollbar-track { background: rgba(129,136,122,0.14); }
html::-webkit-scrollbar-thumb {
  background: var(--terra);
  border: 2px solid var(--cream);
  border-radius: 2px;
}
html::-webkit-scrollbar-thumb:hover { background: var(--terra); }
body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
.site-icon {
  --icon: none;
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: none;
  background-color: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.pratum-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.pratum-select {
  position: relative;
  width: 100%;
  min-width: 0;
  color: inherit;
  z-index: 8;
}
.pratum-select.is-open {
  z-index: 2600;
}
.pratum-select__button {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 50px 0 18px;
  border: 1px solid rgba(62,74,57,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1;
  text-align: left;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.pratum-select__button:hover,
.pratum-select__button:focus-visible,
.pratum-select.is-open .pratum-select__button {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(176,90,50,0.10);
}
.pratum-select__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pratum-select__icon {
  position: absolute;
  right: 18px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  color: var(--terra);
  transition: transform var(--transition);
}
.pratum-select.is-open .pratum-select__icon {
  transform: translateY(-50%) rotate(180deg);
}
.pratum-select__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 232px;
  overflow: auto;
  padding: 6px;
  border: 1px solid rgba(62,74,57,0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(245,241,232,0.98)),
    var(--cream);
  box-shadow: 0 22px 52px rgba(18,18,13,0.18);
}
.pratum-select__menu[hidden] {
  display: none;
}
.pratum-select__option {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(38,38,31,0.78);
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.2;
  text-align: left;
}
.pratum-select__option:hover,
.pratum-select__option:focus-visible,
.pratum-select__option[aria-selected="true"] {
  background: rgba(176,90,50,0.10);
  color: var(--terra);
}
.pratum-select__option:disabled {
  color: rgba(38,38,31,0.34);
  cursor: default;
}
.site-icon--calendar { --icon: url('../img/icons/tabler/calendar.svg'); }
.site-icon--chevron-down { --icon: url('../img/icons/tabler/chevron-down.svg'); }
.site-icon--chevron-left { --icon: url('../img/icons/tabler/chevron-left.svg'); }
.site-icon--chevron-right { --icon: url('../img/icons/tabler/chevron-right.svg'); }
.site-icon--map-pin { --icon: url('../img/icons/tabler/map-pin.svg'); }
.site-icon--maximize { --icon: url('../img/icons/tabler/arrows-maximize.svg'); }
.site-icon--phone { --icon: url('../img/icons/tabler/phone.svg'); }
.site-icon--x { --icon: url('../img/icons/tabler/x.svg'); }
.text-nowrap { white-space: nowrap; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}
.section {
  padding: var(--section-py) 0;
}
.section--dark {
  background: var(--forest);
  color: var(--cream);
}

/* ── LABEL (eyebrow) ──────────────────────────────────────── */
.label {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}
.label--light { color: var(--mint); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 32px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: background var(--transition-hover), color var(--transition-hover),
              border-color var(--transition-hover), transform var(--transition-hover);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--terra);
  color: var(--cream);
  border-color: var(--terra);
}
.btn--primary:hover  { background: #8f4a27; border-color: #8f4a27; transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0); }

.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--sage);
}
.btn--secondary:hover { background: var(--sage); color: var(--cream); transform: translateY(-1px); }

.btn--cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,241,232,0.55);
}
.btn--cream:hover {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
  transform: translateY(-1px);
}

/* ── Cookie consent ──────────────────────────────────────── */
.cookie-consent {
  position: fixed;
  right: clamp(14px, 3vw, 32px);
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 180;
  width: min(390px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(245,241,232,0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(62,74,57,0.96), rgba(38,38,31,0.98));
  color: var(--cream);
  box-shadow: 0 24px 70px rgba(22,24,18,0.32);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.cookie-consent.is-hiding {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  pointer-events: none;
}
.cookie-consent__copy {
  display: grid;
  gap: 7px;
}
.cookie-consent__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.cookie-consent p:not(.cookie-consent__title) {
  color: rgba(245,241,232,0.78);
  font-size: 13px;
  line-height: 1.42;
}
.cookie-consent__link {
  width: fit-content;
  color: var(--mint);
  font-size: 13px;
  line-height: 1.3;
  text-decoration: none;
  border-bottom: 1px solid rgba(150,188,166,0.42);
}
.cookie-consent__link:hover {
  color: var(--cream);
  border-bottom-color: currentColor;
}
.cookie-consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
}
.cookie-consent__btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(245,241,232,0.24);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background var(--transition-hover), color var(--transition-hover),
              border-color var(--transition-hover), transform var(--transition-hover);
}
.cookie-consent__btn:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}
.cookie-consent__btn--ghost {
  background: transparent;
  color: var(--cream);
}
.cookie-consent__btn--ghost:hover {
  border-color: rgba(245,241,232,0.56);
  transform: translateY(-1px);
}
.cookie-consent__btn--primary {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--cream);
}
.cookie-consent__btn--primary:hover {
  background: #8f4a27;
  border-color: #8f4a27;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--cream);
  border-bottom: 1px solid rgba(129,136,122,0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gap);
  transition:
    transform 0.32s ease,
    opacity 0.24s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
/* Transparent header on hero — JS adds/removes .scrolled */
.site-header--transparent:not(.scrolled) {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header--transparent:not(.scrolled) .site-header__nav a { color: var(--cream); }
.site-header--transparent:not(.scrolled) .site-header__nav a:hover { color: var(--mint); }
.site-header--transparent:not(.scrolled) .site-header__logo img {
  filter: brightness(0) invert(1) opacity(0.9);
}
/* Burger: white over hero (transparent/dark), dark when header is solid */
.site-header--transparent:not(.scrolled) .burger span { background: var(--cream); }
.site-header.scrolled {
  background: var(--cream);
  border-bottom-color: rgba(129,136,122,0.16);
  box-shadow: 0 2px 20px rgba(38,38,31,0.1);
}
.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo img { height: 46px; width: auto; }

.site-header__nav {
  display: flex;
  gap: 32px;
}
.site-header__nav a {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.site-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--terra);
  transition: width var(--transition);
}
.site-header__nav a:hover { color: var(--terra); }
.site-header__nav a:hover::after { width: 100%; }

/* burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.burger:hover { background: rgba(129,136,122,0.12); }
.burger:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; }
.burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.2s, width 0.3s;
}
.burger span:nth-child(3) { width: 66%; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { width: 100%; transform: translateY(-6.5px) rotate(-45deg); }
/* Menu open → panel is cream, so the X must be dark regardless of header state */
.site-header .burger[aria-expanded="true"] span { background: var(--ink); }

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  z-index: 99;
  background: var(--cream);
  border-bottom: 1px solid rgba(129,136,122,0.16);
  padding: 20px var(--gap) 28px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(38,38,31,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(129,136,122,0.12);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--terra); }
.mobile-nav .btn { margin-top: 16px; width: 100%; text-align: center; }
/* Menu CTA: dark text on cream panel (client request) — ghost style, fills on tap */
.mobile-nav .btn--primary {
  background: transparent;
  color: var(--ink);
  border-color: var(--terra);
}
.mobile-nav .btn--primary:hover,
.mobile-nav .btn--primary:active {
  background: var(--terra);
  color: var(--cream);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/renders/IMG_3295.webp');
  background-size: cover;
  background-position: center 35%;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(24,24,18,0.56) 0%,
      rgba(24,24,18,0.18) 30%,
      rgba(24,24,18,0.16) 48%,
      rgba(24,24,18,0.68) 78%,
      rgba(24,24,18,0.94) 100%
    ),
    linear-gradient(
      95deg,
      rgba(18,18,13,0.78) 0%,
      rgba(18,18,13,0.44) 44%,
      rgba(18,18,13,0.10) 78%,
      rgba(38,38,31,0.00) 100%
    );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap) clamp(72px, 10vw, 136px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-shadow: 0 2px 24px rgba(18,18,14,0.58);
}
.hero__content .btn { text-shadow: none; }
.hero__eyebrow {
  display: block;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.88);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(44px, 6.8vw, 94px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0.025em;
  max-width: 760px;
  margin-bottom: 14px;
  text-wrap: balance;
}
.hero__title-line {
  display: block;
  margin-top: 4px;
  font-family: var(--ff-sans);
  font-size: clamp(13px, 1.45vw, 18px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(150,188,166,0.88);
  line-height: 1.45;
}
.hero__accent {
  display: block;
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(19px, 2.35vw, 28px);
  line-height: 1.22;
  color: rgba(245,241,232,0.80);
  letter-spacing: 0;
  margin-bottom: 14px;
  max-width: 680px;
}
.hero__accent span {
  display: block;
}
.hero__sub {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.72;
  color: rgba(245,241,232,0.82);
  max-width: 720px;
  margin-bottom: 34px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__btns--secondary {
  margin-top: 14px;
}
.hero-booking {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(178px, 1fr) minmax(178px, 1fr) minmax(108px, 0.62fr) minmax(178px, auto);
  gap: 8px;
  align-items: stretch;
  padding: 8px;
  border: 1px solid rgba(245,241,232,0.20);
  background:
    linear-gradient(135deg, rgba(245,241,232,0.16), rgba(245,241,232,0.06)),
    rgba(38,38,31,0.38);
  box-shadow: 0 22px 60px rgba(18,18,13,0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-shadow: none;
}
.hero-booking__field {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-height: 64px;
  padding: 10px 14px;
  border: 1px solid rgba(245,241,232,0.16);
  background: rgba(245,241,232,0.10);
}
.hero-booking__field--date {
  padding-right: 58px;
  cursor: pointer;
}
.hero-booking__field--date::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: 1px solid rgba(245,241,232,0.30);
  background:
    url('../img/icons/lucide/calendar.svg') center / 17px 17px no-repeat,
    rgba(245,241,232,0.08);
  pointer-events: none;
}
.hero-booking__field span {
  color: rgba(245,241,232,0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.hero-booking input,
.hero-booking select {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.2;
  outline: none;
}
.hero-booking__value {
  display: block;
  min-height: 18px;
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.hero-booking__value.is-empty {
  color: rgba(245,241,232,0.56);
  font-weight: 400;
}
.hero-booking__field--date input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.hero-date-picker {
  position: fixed;
  z-index: 2400;
  width: min(348px, calc(100vw - 24px));
  padding: 16px;
  border: 1px solid rgba(62,74,57,0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.82), rgba(245,241,232,0.96)),
    var(--cream);
  color: var(--ink);
  box-shadow: 0 22px 54px rgba(18,18,13,0.26);
  font-family: var(--ff-sans);
  text-shadow: none;
}
.hero-date-picker[hidden] {
  display: none;
}
.hero-date-picker__head {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.hero-date-picker__title {
  text-align: center;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.hero-date-picker__nav,
.hero-date-picker__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font-family: var(--ff-sans);
  cursor: pointer;
}
.hero-date-picker__nav {
  width: 40px;
  height: 40px;
  color: var(--sage);
}
.hero-date-picker__nav:hover,
.hero-date-picker__nav:focus-visible {
  border-color: rgba(176,90,50,0.24);
  background: rgba(176,90,50,0.08);
  color: var(--terra);
}
.hero-date-picker__weekdays,
.hero-date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.hero-date-picker__weekdays {
  margin-bottom: 6px;
  color: rgba(38,38,31,0.54);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.hero-date-picker__weekdays span {
  padding: 7px 0;
}
.hero-date-picker__grid {
  gap: 3px;
}
.hero-date-picker__day {
  aspect-ratio: 1;
  min-height: 40px;
  font-size: 15px;
  line-height: 1;
}
.hero-date-picker__day:hover:not(:disabled),
.hero-date-picker__day:focus-visible:not(:disabled) {
  border-color: rgba(176,90,50,0.24);
  background: rgba(176,90,50,0.10);
  color: var(--terra);
}
.hero-date-picker__day.is-outside {
  color: rgba(38,38,31,0.34);
}
.hero-date-picker__day.is-selected {
  border-color: var(--terra);
  background: var(--terra);
  color: var(--cream);
}
.hero-date-picker__day:disabled {
  color: rgba(38,38,31,0.20);
  cursor: not-allowed;
}
.hero-booking select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  background-image: url('../img/icons/lucide/chevron-down.svg');
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 16px 16px;
}
.hero-booking option {
  color: var(--ink);
}
.hero-booking .pratum-select {
  color: var(--cream);
}
.hero-booking .pratum-select__button {
  height: 22px;
  min-height: 22px;
  padding: 0 32px 0 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  box-shadow: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.hero-booking .pratum-select__button:hover,
.hero-booking .pratum-select__button:focus-visible,
.hero-booking .pratum-select.is-open .pratum-select__button {
  border: 0;
  box-shadow: none;
  color: var(--cream);
}
.hero-booking .pratum-select__icon {
  right: 0;
  width: 17px;
  height: 17px;
  color: var(--mint);
}
.hero-booking .pratum-select__menu {
  left: -10px;
  right: auto;
  width: min(132px, 100vw);
  border-color: rgba(245,241,232,0.18);
  background:
    linear-gradient(145deg, rgba(48,58,43,0.98), rgba(38,38,31,0.98)),
    var(--forest);
  box-shadow: 0 18px 42px rgba(18,18,13,0.32);
}
.hero-booking .pratum-select__option {
  color: rgba(245,241,232,0.78);
}
.hero-booking .pratum-select__option:hover,
.hero-booking .pratum-select__option:focus-visible,
.hero-booking .pratum-select__option[aria-selected="true"] {
  background: rgba(176,90,50,0.22);
  color: var(--cream);
}
.hero-booking__submit {
  width: 100%;
  height: 64px;
  min-height: 64px;
  align-self: stretch;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
  white-space: nowrap;
}

/* Hero rating badge */
.hero__badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 276px;
  height: 82px;
  padding: 14px 18px;
  border: 1px solid rgba(245,241,232,0.22);
  border-radius: 4px;
  background: rgba(245,241,232,0.10);
  box-shadow: 0 18px 38px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: left;
}
.hero__badge-score-block {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 4px;
}
.hero__badge-kicker {
  color: rgba(245,241,232,0.68);
  font-family: var(--ff-sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__badge-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.hero__badge-score {
  color: var(--cream);
  font-family: var(--ff-serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.9;
}
.hero__badge-scale {
  color: rgba(245,241,232,0.72);
  font-size: 10px;
  white-space: nowrap;
}
.hero__badge-divider {
  width: 1px;
  height: 46px;
  flex: 0 0 auto;
  margin: 0 18px;
  background: rgba(245,241,232,0.26);
}
.hero__badge-good-place {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: rgba(245,241,232,0.94);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__badge-good-place-icon {
  display: block;
  width: 44px;
  height: 30px;
  object-fit: contain;
}
.hero__badge-good-place > span {
  width: 58px;
  white-space: normal;
}

/* Section divider (pratum_symbol.svg) */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 18px 0 12px;
  background: linear-gradient(180deg, #303025 0%, #2a2a20 100%);
  opacity: 1;
}
.section-divider img {
  width: 44px;
  height: 44px;
  opacity: 0.36;
  filter: brightness(0) saturate(100%) sepia(20%) hue-rotate(80deg) invert(0.5) brightness(1.6);
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(180deg, #2a2a20 0%, var(--ink) 48%, #171711 100%);
}
.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(245,241,232,0.07);
}
.stat {
  padding: clamp(28px,3vw,44px) clamp(20px,2.5vw,36px);
  border-right: 1px solid rgba(245,241,232,0.07);
}
.stat__num {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 48px);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat__num sup {
  font-size: 0.34em;
  font-family: var(--ff-sans);
  font-weight: 500;
  vertical-align: baseline;
  margin-left: 0;
  color: rgba(245,241,232,0.62);
  letter-spacing: 0.02em;
}
.stat__label {
  font-family: var(--ff-sans);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 400;
  letter-spacing: 0.035em;
  color: rgba(245,241,232,0.66);
  margin-top: 10px;
  line-height: 1.48;
}

/* ══════════════════════════════════════════════════════════
   ABOUT (split)
══════════════════════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-split__image {
  position: relative;
  overflow: hidden;
}
.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-split__image:hover img { transform: scale(1.03); }

.about-split__text {
  background: var(--cream);
  padding: clamp(48px, 6vw, 88px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-split__text .label { margin-bottom: 12px; }
.about-split__text h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-split__text .about-sub {
  font-family: var(--ff-sans);
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--sage);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 28px;
}
.about-split__text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 16px;
}
.about-split__text p:last-of-type { margin-bottom: 32px; }

/* ── Scroll margin for sticky header ─────────────────────── */
#studio, #about, #gallery, #amenities, #location, #reviews, #guide, #faq, #booking {
  scroll-margin-top: 80px;
}
#about {
  padding-top: 0;
  padding-bottom: 0;
}

/* ══════════════════════════════════════════════════════════
   GALLERY
══════════════════════════════════════════════════════════ */
.gallery-section {
  background:
    linear-gradient(180deg, rgba(129,136,122,0.10) 0%, rgba(245,241,232,0.00) 18%),
    #ebe4d7;
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}
.gallery-section--source {
  display: none !important;
}
.gallery-section h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.gallery-caption {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 48px;
}

/* ── Gallery grid — compact editorial mosaic ──────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(190px, 18vw, 256px);
  grid-template-areas:
    "a a b c"
    "a a d e"
    "f f g g"
    "h i j j"
    "h i j j";
  gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

/* All items: 4:3 landscape */
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: rgba(129,136,122,0.1);
  aspect-ratio: auto;
}

/* Item 1 (Спальня): featured span-2, 16:9 */
.gallery-item:nth-child(1) {
  grid-area: a;
}

.gallery-item:nth-child(2) { grid-area: b; }
.gallery-item:nth-child(3) { grid-area: c; }
.gallery-item:nth-child(4) { grid-area: d; }
.gallery-item:nth-child(5) { grid-area: e; }
.gallery-item:nth-child(6) { grid-area: f; }
.gallery-item:nth-child(7) { grid-area: g; }
.gallery-item:nth-child(8) { grid-area: h; }
.gallery-item:nth-child(9) { grid-area: i; }
.gallery-item:nth-child(10) { grid-area: j; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}
/* Portrait bathroom — show top (mirror, arch) */
.gallery-item:nth-child(8) img,
.gallery-item:nth-child(9) img {
  object-position: center top;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38,38,31,0);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px 14px;
  gap: 8px;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(38,38,31,0.30); }

/* Zone label */
.gallery-item__zone {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.9);
  background: rgba(38,38,31,0.45);
  padding: 4px 8px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
  align-self: flex-start;
}
.gallery-item__icon {
  width: 28px;
  height: 28px;
  color: rgba(245,241,232,0.92);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.gallery-item:hover .gallery-item__zone,
.gallery-item:hover .gallery-item__icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ══════════════════════════════════════════════════════════
   WALKTHROUGH
══════════════════════════════════════════════════════════ */
.walkthrough-section {
  position: relative;
  padding: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(150,188,166,0.32), transparent 31vw),
    radial-gradient(circle at 83% 70%, rgba(176,90,50,0.19), transparent 28vw),
    linear-gradient(135deg, #f7f1e5 0%, #dfdecf 48%, #aeb89f 100%);
  overflow: clip;
}
.walkthrough-scroll { height: 640vh; }
.walkthrough-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(72px, 7vw, 104px) 0 clamp(24px, 4vw, 52px);
}
.walkthrough-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(620px, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  max-width: min(1480px, calc(100% - clamp(28px, 5vw, 72px)));
  padding-right: clamp(14px, 2vw, 34px);
  padding-left: clamp(14px, 2vw, 34px);
}
.walkthrough-copy {
  position: relative;
  z-index: 2;
}
.walkthrough-copy h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-family: var(--ff-serif);
  font-size: clamp(36px, 4.6vw, 62px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.walkthrough-lead {
  max-width: 520px;
  margin-bottom: clamp(20px, 2.6vw, 30px);
  color: var(--stone);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}
.walkthrough-zone-card {
  position: relative;
  max-width: 500px;
  min-height: 172px;
  margin-bottom: 18px;
  border: 1px solid rgba(38,38,31,0.12);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 30px);
  padding-left: clamp(42px, 3.5vw, 56px);
  background: rgba(245,241,232,0.68);
  box-shadow: 0 24px 70px rgba(38,38,31,0.12);
  backdrop-filter: blur(24px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.walkthrough-zone-card::before {
  content: "";
  position: absolute;
  inset: 18px auto 18px 22px;
  width: 3px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--terra), var(--mint));
}
.walkthrough-zone-card.is-changing {
  opacity: 0.35;
  transform: translateX(12px);
}
.walkthrough-zone-card__kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--terra);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.walkthrough-zone-card h3 {
  margin-bottom: 12px;
  font-family: var(--ff-serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}
.walkthrough-zone-card p {
  margin: 0;
  color: rgba(38,38,31,0.74);
  font-size: 16px;
  line-height: 1.55;
}
.walkthrough-route {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px 12px;
  border: 1px solid rgba(38,38,31,0.1);
  border-radius: var(--radius);
  background: rgba(245,241,232,0.42);
}
.walkthrough-route__steps {
  display: flex;
  align-items: center;
  gap: 8px;
}
.walkthrough-route__dot {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(62,74,57,0.22);
  border-radius: var(--radius);
  color: rgba(62,74,57,0.72);
  background: rgba(255,255,255,0.28);
  line-height: 1;
  cursor: pointer;
  transition: transform var(--transition-hover), border-color var(--transition-hover), background var(--transition-hover), color var(--transition-hover);
}
.walkthrough-route__dot::after {
  content: "";
  position: absolute;
  left: calc(100% + 1px);
  width: 7px;
  height: 1px;
  background: rgba(62,74,57,0.18);
}
.walkthrough-route__dot:last-child::after { display: none; }
.walkthrough-route__dot span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  transform: translateY(1px);
}
.walkthrough-route__dot:hover,
.walkthrough-route__dot:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(176,90,50,0.58);
  color: var(--terra);
  outline: none;
}
.walkthrough-route__dot.is-active {
  color: var(--cream);
  border-color: var(--terra);
  background: var(--terra);
  box-shadow: 0 10px 24px rgba(176,90,50,0.22);
}
.walkthrough-route__hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 28px;
  color: rgba(62,74,57,0.78);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.walkthrough-route__scroll {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 24px;
  border: 1px solid rgba(176,90,50,0.72);
  border-radius: 999px;
}
.walkthrough-route__scroll span {
  position: absolute;
  left: 50%;
  top: 5px;
  width: 2px;
  height: 5px;
  border-radius: 999px;
  background: var(--terra);
  transform: translateX(-50%);
  animation: walkthroughWheel 1.35s ease-in-out infinite;
}
.walkthrough-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 500px;
  margin-top: 14px;
}
.walkthrough-skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(176,90,50,0.66);
  border-radius: var(--radius);
  padding: 0 18px;
  color: var(--terra);
  background: rgba(245,241,232,0.42);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform var(--transition-hover), color var(--transition-hover), border-color var(--transition-hover), background var(--transition-hover);
}
.walkthrough-skip:hover,
.walkthrough-skip:focus-visible {
  transform: translateY(-2px);
  border-color: var(--terra);
  color: var(--cream);
  background: var(--terra);
  outline: none;
}
.walkthrough-video-controls {
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  left: 50%;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(132px, 1fr) auto minmax(132px, 1fr);
  align-items: center;
  gap: 10px;
  width: min(92%, 560px);
  transform: translateX(-50%);
  pointer-events: none;
}
.walkthrough-video-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 2.4vw, 28px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(245,241,232,0.28);
  border-radius: var(--radius);
  color: rgba(245,241,232,0.92);
  background: rgba(38,38,31,0.42);
  box-shadow: 0 14px 36px rgba(38,38,31,0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  pointer-events: none;
}
.walkthrough-video-hint__scroll {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 24px;
  border: 1px solid rgba(245,241,232,0.72);
  border-radius: 999px;
}
.walkthrough-video-hint__scroll span {
  position: absolute;
  left: 50%;
  top: 5px;
  width: 2px;
  height: 5px;
  border-radius: 999px;
  background: var(--terra);
  transform: translateX(-50%);
  animation: walkthroughWheel 1.35s ease-in-out infinite;
}
.walkthrough-video-controls__link,
.walkthrough-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(245,241,232,0.28);
  border-radius: var(--radius);
  padding: 0 14px;
  color: rgba(245,241,232,0.9);
  background: rgba(38,38,31,0.38);
  box-shadow: 0 14px 36px rgba(38,38,31,0.22);
  backdrop-filter: blur(16px);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform var(--transition-hover), color var(--transition-hover), border-color var(--transition-hover), background var(--transition-hover), box-shadow var(--transition-hover);
  pointer-events: auto;
}
.walkthrough-video-controls__link:hover,
.walkthrough-video-controls__link:focus-visible,
.walkthrough-play:hover,
.walkthrough-play:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(176,90,50,0.86);
  color: var(--cream);
  background: rgba(176,90,50,0.88);
  outline: none;
}
.walkthrough-play {
  position: relative;
  min-width: 76px;
  padding: 0 18px;
  border-color: var(--terra);
  color: var(--cream);
  background: var(--terra);
  box-shadow: 0 18px 42px rgba(176,90,50,0.28);
}
.walkthrough-play__icon {
  display: block;
  width: 0;
  height: 0;
  margin-right: 8px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}
.walkthrough-play.is-playing .walkthrough-play__icon {
  width: 10px;
  height: 12px;
  margin-right: 8px;
  border: 0;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.walkthrough-stage {
  position: relative;
  display: grid;
  justify-items: end;
  min-width: 0;
}
.walkthrough-video-shell {
  position: relative;
  isolation: isolate;
  width: min(82svh, 61vw, 820px);
  border: 1px solid rgba(38,38,31,0.12);
  border-radius: var(--radius);
  padding: clamp(10px, 1vw, 14px);
  background:
    linear-gradient(145deg, rgba(245,241,232,0.72), rgba(255,255,255,0.28)),
    rgba(245,241,232,0.5);
  box-shadow: 0 34px 110px rgba(38,38,31,0.22);
}
.walkthrough-video-shell::before {
  display: none;
}
.walkthrough-video-shell::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(245,241,232,0.18);
  border-radius: var(--radius);
  pointer-events: none;
}
.walkthrough-video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  background: #11140f;
}

@keyframes walkthroughWheel {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  22% { opacity: 1; }
  76% { opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

/* ══════════════════════════════════════════════════════════
   AMENITIES (dark section)
══════════════════════════════════════════════════════════ */
.amenities {
  position: relative;
  background: var(--forest);
  overflow: hidden;
}
.amenities__pattern {
  position: absolute;
  inset: 0;
  background-image: url('../img/logo/pratum_pattern.svg');
  background-size: 400px auto;
  background-repeat: repeat;
  opacity: 0.018;
  pointer-events: none;
}
.amenities__inner {
  position: relative;
  z-index: 1;
}
.amenities h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.amenities-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245,241,232,0.82);
  margin-bottom: 48px;
  max-width: 760px;
}
.amenities-group { margin-bottom: 48px; }
.amenities-group:last-child { margin-bottom: 0; }
.amenities-group__title {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(150,188,166,0.2);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}
.amenity {
  background: rgba(245,241,232,0.07);
  border: 1px solid rgba(150,188,166,0.16);
  padding: clamp(20px, 2.4vw, 30px) clamp(16px, 2vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 154px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.amenity:hover {
  background: rgba(245,241,232,0.10);
  border-color: rgba(150,188,166,0.20);
  transform: translateY(-2px);
}
.amenity__icon {
  width: 30px; height: 30px; flex-shrink: 0;
}
.amenity__icon svg {
  width: 30px; height: 30px;
  stroke: var(--mint);
  stroke-width: 0.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amenity__icon img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.7;
}
.amenity__name {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
}
.amenity__desc {
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,241,232,0.70);
  line-height: 1.4;
  max-width: 22ch;
  min-height: 1.4em;
}
.amenities-house-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-flow: dense;
}

/* ══════════════════════════════════════════════════════════
   LOCATION
══════════════════════════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}
.location-map {
  order: 2;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 560px;
  height: 100%;
  background:
    radial-gradient(circle at 50% 42%, rgba(176,90,50,0.16), transparent 28%),
    linear-gradient(135deg, #e7e0d5 0%, #d2cec5 100%);
  position: relative;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: relative;
  z-index: 2;
}
.location-map-fallback {
  display: flex;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
  font-size: 14px;
  text-align: center;
  padding: clamp(24px, 5vw, 48px);
  z-index: 1;
}
.location-map-fallback__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  color: rgba(176,90,50,0.92);
}
.location-map--fallback iframe {
  display: none;
}
.location-map-fallback::before {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(38,38,31,0.10);
  background-image:
    linear-gradient(rgba(38,38,31,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,38,31,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.location-map-fallback::after {
  content: none;
}
.location-map-fallback svg,
.location-map-fallback p,
.location-map-fallback a {
  position: relative;
  z-index: 1;
}
.location-map-fallback svg {
  stroke: var(--terra);
  filter: drop-shadow(0 8px 18px rgba(176,90,50,0.22));
}
.location-map-fallback p {
  margin: 0;
  line-height: 1.45;
}
.location-map-fallback__title {
  font-family: var(--ff-serif);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink);
}
.location-map-fallback__address {
  color: var(--stone);
  max-width: 28ch;
}
.location-map-fallback__link {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: var(--cream);
  background: var(--terra);
  border: 1px solid rgba(176,90,50,0.20);
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 32px rgba(176,90,50,0.18);
  transition: transform var(--transition), background var(--transition);
}
.location-map-fallback__link:hover {
  background: #944b2a;
  transform: translateY(-2px);
}
.location-info h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.location-info {
  order: 1;
  align-self: center;
  max-width: 560px;
}
.location-sub {
  font-size: 15px;
  color: var(--stone);
  margin-bottom: 28px;
  line-height: 1.55;
}
.location-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
  margin-bottom: 32px;
}
.distances {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(129,136,122,0.14);
  gap: 16px;
}
.distance-item:last-child { border-bottom: none; }
.distance-item__place {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.distance-item__time {
  font-size: 14px;
  color: var(--stone);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════════════════ */
.reviews-section {
  background:
    linear-gradient(180deg, rgba(129,136,122,0.07) 0%, rgba(245,241,232,0.00) 16%),
    #f1eadf;
}
.reviews-section h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.reviews-rating__score {
  font-family: var(--ff-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--terra);
  line-height: 1;
}
.reviews-rating__info { font-size: 14px; color: var(--stone); line-height: 1.4; }
.reviews-rating__info strong { color: var(--ink); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
}
.review-card {
  background: rgba(129,136,122,0.06);
  border: 1px solid rgba(129,136,122,0.16);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.review-card__date {
  font-size: 12px;
  color: var(--stone);
  white-space: nowrap;
}
.review-card blockquote {
  position: relative;
  padding-left: 22px;
  border-left: 2px solid rgba(176,90,50,0.42);
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.01em;
  quotes: none;
  flex: 1;
}
.review-card blockquote::before {
  content: none;
}
.review-card blockquote::after { content: none; }
.review-stars {
  display: flex;
  gap: 3px;
  margin-top: 20px;
}
.review-stars span {
  color: var(--ochre);
  font-size: 14px;
}
/* Review meta: avatar initials + name + date */
.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 0;
}
.review-meta__avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  line-height: 1;
  border-radius: 50%;
  background: rgba(129,136,122,0.18);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sage);
  flex-shrink: 0;
  padding-top: 1px;
}
.review-meta__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}
.review-meta__date {
  font-size: 12px;
  color: var(--stone);
  white-space: nowrap;
}
.review-read-more {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border: 0;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(176,90,50,0.28);
  white-space: nowrap;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.review-read-more:hover {
  color: #8f4a27;
  text-decoration-color: rgba(176,90,50,0.56);
}

.platform-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  color: rgba(38,38,31,0.54);
  filter: grayscale(1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), filter var(--transition), transform var(--transition);
}
a.platform-mark:hover {
  color: var(--terra);
  filter: grayscale(1);
  transform: translateX(2px);
}
.reviews-platform-card {
  min-height: 260px;
  padding: clamp(24px, 3vw, 36px);
  border: 0;
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews-platform-card__title {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2vw, 28px);
  color: var(--ink);
  margin-bottom: 22px;
}
.platform-cloud {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.platform-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 34px;
  color: rgba(38,38,31,0.54);
  text-decoration: none;
  transition: color var(--transition-hover), transform var(--transition-hover);
}
.platform-logo__mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 28px;
  filter: grayscale(1) saturate(0) contrast(0.92);
  opacity: 0.62;
  transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}
.platform-logo__label {
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.platform-logo:hover,
.platform-logo:focus-visible {
  color: var(--terra);
  transform: translateX(2px);
}
.platform-logo:hover .platform-logo__mark,
.platform-logo:focus-visible .platform-logo__mark {
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   BOOKING CTA
══════════════════════════════════════════════════════════ */
.booking-section {
  background:
    linear-gradient(90deg, rgba(20,20,16,0.82), rgba(20,20,16,0.44)),
    url('../img/renders/IMG_3295.webp') center center / cover no-repeat,
    var(--ink);
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 10vw, 132px) 0;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 24%, rgba(150,188,166,0.12), transparent 28%),
    linear-gradient(180deg, rgba(20,20,16,0.04), rgba(20,20,16,0.34));
  pointer-events: none;
}
.booking-section .container {
  position: relative;
  z-index: 1;
}
.booking-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.82fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: end;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at top left, rgba(150,188,166,0.14), transparent 36%),
    linear-gradient(135deg, rgba(43,42,36,0.98), rgba(38,38,31,0.99));
  border: 1px solid rgba(150,188,166,0.16);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(17,17,13,0.32);
  overflow: hidden;
}
.booking-panel::before {
  content: none;
}
.booking-panel::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(150,188,166,0.34), transparent);
  pointer-events: none;
}
.booking-panel__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 42rem;
}
.booking-panel__label {
  margin-bottom: 12px;
}
.booking-section h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.02;
  color: var(--cream);
  letter-spacing: -0.035em;
  margin-bottom: 16px;
  text-wrap: balance;
}

/* Price anchor */
.booking-price {
  font-family: var(--ff-sans);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  color: var(--mint);
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.booking-price strong {
  font-family: var(--ff-serif);
  font-size: 1.5em;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.booking-invite {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,241,232,0.65);
  margin-bottom: 0;
  line-height: 1.6;
  max-width: 34ch;
}
.booking-invite a {
  color: var(--mint);
  text-decoration: none;
  transition: color var(--transition-hover);
}
.booking-invite a:hover { color: var(--cream); }
.booking-panel__cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: 24px;
  border-radius: 4px;
  border: 1px solid rgba(245,241,232,0.10);
  background: rgba(245,241,232,0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.booking-panel__mark {
  width: 42px;
  height: 42px;
  opacity: 0.46;
  filter: brightness(0) saturate(0) invert(1);
  margin-bottom: auto;
}
.booking-panel__btn {
  width: 100%;
  text-align: center;
  min-height: 54px;
  padding: 0 24px;
  font-size: 13px;
  line-height: 1.15;
  white-space: normal;
}
.booking-note {
  font-size: 13px;
  color: rgba(245,241,232,0.70);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   TOURIST GUIDE
══════════════════════════════════════════════════════════ */
.guide-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(150,188,166,0.22), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(194,160,116,0.20), transparent 30%),
    linear-gradient(135deg, rgba(245,241,232,1) 0%, rgba(238,232,219,1) 52%, rgba(226,219,204,1) 100%);
}
.guide-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(129,136,122,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129,136,122,0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 72%, transparent);
  opacity: 0.42;
  pointer-events: none;
}
.guide-section::after {
  content: '';
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: -74px;
  width: clamp(220px, 28vw, 380px);
  aspect-ratio: 1;
  border: 1px solid rgba(129,136,122,0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,188,166,0.16), transparent 64%);
  pointer-events: none;
}
.guide-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(30px, 4.2vw, 56px);
}
.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.88fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}
.guide-copy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 760px;
}
.guide-copy::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url('../img/guide/editorial-map.svg') center / cover no-repeat;
  opacity: 0.82;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 50%, #000 28%, rgba(0,0,0,0.86) 62%, transparent 100%);
  mask-image: radial-gradient(ellipse 72% 68% at 50% 50%, #000 28%, rgba(0,0,0,0.86) 62%, transparent 100%);
  pointer-events: none;
}
.guide-copy h2 {
  margin: 16px 0 22px;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--ink);
  text-wrap: balance;
}
.guide-lead {
  max-width: 42rem;
  margin: 0;
  color: rgba(38,38,31,0.70);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.62;
  letter-spacing: 0.01em;
}
.guide-visual {
  position: relative;
  min-height: clamp(300px, 34vw, 440px);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-visual::before {
  content: '';
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: 3%;
  left: -8%;
  height: 27%;
  background: radial-gradient(ellipse 46% 38% at 50% 50%, rgba(176,90,50,0.52) 0%, rgba(176,90,50,0.34) 38%, rgba(176,90,50,0.12) 59%, rgba(176,90,50,0) 82%);
  transform-origin: 50% 50%;
  animation: guideMagazineShadow 7.6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  pointer-events: none;
}
.guide-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  height: auto;
  display: block;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
  transform-origin: 50% 56%;
  animation: guideMagazineFloat 7.6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes guideMagazineFloat {
  0%, 100% { transform: translate3d(0, 5px, 0) rotate(-0.30deg); }
  42% { transform: translate3d(0, -15px, 0) rotate(0.35deg); }
}

@keyframes guideMagazineShadow {
  0%, 100% {
    opacity: 0.70;
    transform: translate3d(0, 7px, 0) scaleX(0.66) scaleY(0.78);
  }
  42% {
    opacity: 0.24;
    transform: translate3d(0, 15px, 0) scaleX(1.16) scaleY(1);
  }
}
.guide-access {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1fr);
  grid-template-areas:
    "intro features"
    "footer footer";
  gap: clamp(12px, 1.45vw, 18px);
  padding: clamp(18px, 2vw, 24px);
  background:
    radial-gradient(circle at 92% 12%, rgba(150,188,166,0.16), transparent 28%),
    linear-gradient(135deg, rgba(39,43,34,0.98), rgba(65,76,58,0.96));
  border: 1px solid rgba(245,241,232,0.14);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(38,38,31,0.16);
  overflow: hidden;
}
.guide-access::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/logo/pratum_pattern.svg') left top / 220px auto repeat;
  opacity: 0.055;
  pointer-events: none;
}
.guide-access__intro,
.guide-features,
.guide-access__footer {
  position: relative;
  z-index: 1;
}
.guide-access__intro {
  grid-area: intro;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 224px;
  padding: clamp(16px, 1.85vw, 24px);
  background: rgba(245,241,232,0.94);
  color: var(--ink);
  overflow: hidden;
}
.guide-access__intro span {
  color: var(--terra);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.guide-access__intro h3 {
  max-width: 100%;
  margin: 18px 0 12px;
  font-family: var(--ff-serif);
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.guide-access__intro p {
  max-width: 30ch;
  margin: 0;
  color: rgba(38,38,31,0.64);
  font-size: 14px;
  line-height: 1.5;
}
.guide-features {
  grid-area: features;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid rgba(245,241,232,0.12);
  padding: 8px;
  background: rgba(245,241,232,0.08);
}
.guide-feature {
  min-height: 104px;
  padding: clamp(12px, 1.35vw, 16px);
  border: 1px solid rgba(245,241,232,0.10);
  background: rgba(245,241,232,0.05);
}
.guide-feature span {
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.guide-feature strong {
  display: block;
  color: var(--cream);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  margin-bottom: 10px;
}
.guide-feature p {
  margin: 0;
  color: rgba(245,241,232,0.58);
  font-size: 13px;
  line-height: 1.42;
}
.guide-access__footer {
  grid-area: footer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(188px, auto);
  align-items: stretch;
  gap: 12px;
}
.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 0;
  background: transparent;
}
.guide-steps li {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(245,241,232,0.12);
  background: rgba(38,38,31,0.26);
  color: rgba(245,241,232,0.78);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  box-sizing: border-box;
}
.guide-steps li span {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(150,188,166,0.26);
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.guide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  height: 52px;
  min-height: 52px;
  padding-inline: 24px;
  white-space: nowrap;
  box-sizing: border-box;
}

.guide-modal-backdrop {
  align-items: center;
  justify-content: center;
}
.guide-modal {
  position: relative;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(245,241,232,0.36);
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(150,188,166,0.15), transparent 34%),
    linear-gradient(135deg, #f5f1e8, #ede7da);
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(18,18,13,0.32);
}
.guide-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(62,74,57,0.18);
  background: rgba(62,74,57,0.08);
  color: var(--sage);
  box-shadow: none;
}
.guide-modal__close:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--cream);
}
.guide-modal__head {
  max-width: 560px;
  margin-bottom: 24px;
  padding-right: 56px;
}
.guide-modal__head .label {
  margin-bottom: 12px;
}
.guide-modal__head h3 {
  margin: 0 0 12px;
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.guide-modal__head p {
  margin: 0;
  color: rgba(38,38,31,0.66);
  font-size: 15px;
  line-height: 1.6;
}
.guide-form {
  display: grid;
  gap: 14px;
}
.guide-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.guide-form label {
  display: grid;
  gap: 8px;
  color: rgba(38,38,31,0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.guide-form input,
.guide-form select {
  width: 100%;
  height: 54px;
  min-width: 0;
  padding: 0 18px;
  border: 1px solid rgba(62,74,57,0.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 54px;
  outline: none;
}
.guide-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 50px;
  background-image: url('../img/icons/lucide/chevron-down.svg');
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px 18px;
}
.guide-form .pratum-select__button {
  height: 54px;
  min-height: 54px;
  padding: 0 52px 0 18px;
  background: rgba(255,255,255,0.55);
  font-size: 14px;
}
.guide-form .pratum-select__icon {
  right: 18px;
  width: 17px;
  height: 17px;
}
.guide-form input:focus,
.guide-form select:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(176,90,50,0.10);
}
.guide-form__trap {
  position: absolute !important;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
}
.guide-form__note,
.guide-form__status {
  margin: 2px 0 0;
  color: rgba(38,38,31,0.62);
  font-size: 13px;
  line-height: 1.5;
}
.guide-form__status {
  padding: 12px 14px;
  border: 1px solid rgba(62,74,57,0.14);
  background: rgba(255,255,255,0.38);
}
.guide-form__status.is-error {
  border-color: rgba(176,90,50,0.28);
  color: #8f4a27;
}
.guide-form__status.is-success {
  border-color: rgba(62,74,57,0.22);
  color: var(--sage);
}
.guide-form .btn {
  justify-self: start;
  min-height: 52px;
  margin-top: 4px;
}
.guide-form .btn[disabled] {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

/* ══════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════ */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.78fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.faq-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(245,241,232,0.00), rgba(245,241,232,0.20)),
    url('../img/renders/IMG_3298.webp') center center / cover no-repeat,
    rgba(129,136,122,0.10);
}
.faq-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.faq-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(38,38,31,0.64) 100%);
  pointer-events: none;
}
.faq-media__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: rgba(245,241,232,0.86);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin: 0;
}
.faq-section h2 {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 44px;
}
/* FAQ answers hidden from screen readers when closed */
.faq-answer[aria-hidden="true"] { visibility: hidden; }
.faq-item.open .faq-answer { visibility: visible; }
.faq-list {
  max-width: none;
}
.faq-item {
  border-top: 1px solid rgba(129,136,122,0.18);
}
.faq-item:last-child { border-bottom: 1px solid rgba(129,136,122,0.18); }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--transition-hover);
}
.faq-question:hover { color: var(--terra); }
.faq-question:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--stone);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.2s;
}
.faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner {
  overflow: hidden;
  font-size: 16px;
  line-height: 1.7;
  color: var(--stone);
  padding-bottom: 0;
  transition: padding-bottom 0.32s ease;
}
.faq-item.open .faq-answer-inner { padding-bottom: 22px; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--forest);
  border-top: 1px solid rgba(245,241,232,0.08);
  padding: clamp(48px, 6vw, 80px) 0 clamp(28px, 4vw, 40px);
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(245,241,232,0.08);
  margin-bottom: clamp(24px, 3vw, 36px);
}
.footer-brand {}
.footer-brand__logo {
  width: 178px;
  height: auto;
  filter: brightness(0) saturate(0) invert(1) opacity(0.85);
  margin-bottom: 18px;
}
.footer-brand__slogan {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,241,232,0.72);
  line-height: 1.6;
  max-width: 220px;
}
.footer-contacts {
  width: min(100%, 300px);
  justify-self: center;
  text-align: center;
}
.footer-contacts a:not(.footer-map-link) {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: rgba(245,241,232,0.85);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--transition-hover);
}
.footer-contacts a:hover { color: var(--cream); }
.footer-contacts address {
  font-style: normal;
  font-size: 13px;
  color: rgba(245,241,232,0.70);
  line-height: 1.5;
  margin-top: 12px;
}
.footer-map-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 16px;
  margin-bottom: 0 !important;
  padding: 0 16px;
  border: 1px solid rgba(245,241,232,0.24);
  border-radius: 2px;
  color: rgba(245,241,232,0.72) !important;
  background: transparent;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background var(--transition-hover), border-color var(--transition-hover), color var(--transition-hover), transform var(--transition-hover);
}
.footer-map-link:hover {
  border-color: var(--terra);
  background: var(--terra);
  color: var(--cream) !important;
  transform: translateY(-1px);
}
.footer-platforms {
  justify-self: end;
  width: min(100%, 360px);
  text-align: right;
}
.footer-disclosure {
  min-width: 0;
}
.footer-disclosure__summary {
  display: block;
  list-style: none;
  margin-bottom: 12px;
  color: rgba(245,241,232,0.65);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}
.footer-disclosure__summary::-webkit-details-marker { display: none; }
.footer-disclosure__summary::after { display: none; }
.footer-disclosure:not([open]) > .footer-disclosure__body { display: block; }
.footer-disclosure--documents > .footer-disclosure__summary { display: none; }
.footer-platforms p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.65);
  margin-bottom: 12px;
}
.footer-platforms__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  justify-items: stretch;
}
.footer-platforms__links .platform-logo {
  width: 100%;
  min-height: 20px;
  gap: 0;
  color: rgba(245,241,232,0.72);
  justify-content: flex-end;
}
.footer-platforms__links .platform-logo__label {
  font-size: 12px;
  line-height: 1.35;
}
.footer-platforms__links .platform-logo:hover,
.footer-platforms__links .platform-logo:focus-visible {
  color: rgba(245,241,232,0.92);
  transform: translateX(-2px);
}
.footer-platforms__links .platform-logo:hover .platform-logo__mark,
.footer-platforms__links .platform-logo:focus-visible .platform-logo__mark {
  filter: grayscale(1) saturate(0) brightness(1.65) contrast(0.74);
  opacity: 1;
  transform: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(245,241,232,0.68);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  /* Larger tap target */
  padding: 10px 4px;
  margin: -10px -4px;
  display: inline-block;
}
.footer-legal a:hover { color: rgba(245,241,232,0.95); }
.footer-copy {
  font-size: 12px;
  color: rgba(245,241,232,0.60);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════════
   MODAL
══════════════════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(38,38,31,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  backdrop-filter: blur(3px);
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--cream);
  border-radius: 4px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(38,38,31,0.4);
  transform: translateY(16px);
  transition: transform 0.28s ease;
}
.modal-backdrop.open .modal { transform: translateY(0); }

.booking-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1fr);
  width: min(1120px, calc(100vw - 40px));
  max-width: 1120px;
  height: min(820px, calc(100vh - 40px));
  max-height: min(820px, calc(100vh - 40px));
  background: linear-gradient(135deg, rgba(245,241,232,1), rgba(232,226,212,1));
  border: 1px solid rgba(38,38,31,0.10);
  border-radius: var(--radius);
  overflow: hidden;
}
.modal-close.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  background: rgba(62,74,57,0.86);
  color: var(--cream);
  border: 1px solid rgba(245,241,232,0.30);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20,20,15,0.30);
  backdrop-filter: blur(14px);
}
.modal-close.booking-modal__close:hover {
  background: var(--terra);
  color: var(--cream);
  border-color: rgba(245,241,232,0.48);
}
.booking-modal__brand {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: var(--ink);
}
.booking-modal__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.booking-modal__brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,20,15,0.12) 0%, rgba(20,20,15,0.74) 100%),
    linear-gradient(110deg, rgba(20,20,15,0.62) 0%, rgba(20,20,15,0.12) 56%);
}
.booking-modal__brand-overlay {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 48px) clamp(34px, 4.8vw, 60px);
  color: var(--cream);
}
.booking-modal__logo {
  width: 152px;
  height: auto;
  margin-bottom: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.booking-modal__eyebrow {
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.booking-modal__brand h3 {
  max-width: 8.4ch;
  margin-bottom: 16px;
  font-family: var(--ff-serif);
  font-size: clamp(36px, 4.1vw, 54px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.booking-modal__brand p {
  max-width: 34ch;
  margin: 0 0 24px;
  color: rgba(245,241,232,0.78);
  font-size: 15px;
  line-height: 1.55;
}
.booking-modal__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.booking-modal__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(245,241,232,0.22);
  color: rgba(245,241,232,0.82);
  background: rgba(245,241,232,0.08);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.booking-modal__form {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(28px, 3.6vw, 46px);
  background:
    radial-gradient(circle at 100% 0%, rgba(150,188,166,0.16), transparent 32%),
    var(--cream);
}
.booking-modal__form-head {
  max-width: 540px;
  margin-bottom: 18px;
  padding-right: 52px;
}
.booking-modal__form-head .label {
  margin-bottom: 0;
}
.booking-modal .booking-modal__widget {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(176,90,50,0.55) rgba(38,38,31,0.08);
  scrollbar-width: thin;
  border: 1px solid rgba(38,38,31,0.10);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(245,241,232,0.96), rgba(236,229,215,0.96));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.48);
}
.booking-modal .modal-body {
  min-height: 0;
}
.booking-modal .booking-modal__widget::-webkit-scrollbar {
  width: 8px;
}
.booking-modal .booking-modal__widget::-webkit-scrollbar-track {
  background: rgba(38,38,31,0.06);
}
.booking-modal .booking-modal__widget::-webkit-scrollbar-thumb {
  background: rgba(176,90,50,0.55);
  border-radius: 999px;
}
.booking-modal__widget-root {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: auto;
  padding: 20px;
  background: transparent !important;
}
.booking-modal__widget-root > div {
  background: transparent !important;
}
.booking-modal__widget .modal-error[hidden] {
  display: none !important;
}
.booking-modal__widget-root [data-pratum-hidden="true"] {
  display: none !important;
}
.pratum-booking-validation {
  margin: 14px 0 0;
  color: var(--terra);
  font-size: 14px;
  line-height: 1.45;
}
.pratum-booking-empty {
  margin: 20px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(62, 74, 57, 0.18);
  color: var(--ink);
}
.pratum-booking-empty .label {
  color: var(--terra);
}
.pratum-booking-empty h4 {
  max-width: 560px;
  margin: 10px 0 8px;
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.04;
}
.pratum-booking-empty > p {
  max-width: 560px;
  margin: 0;
  color: var(--stone);
  font-size: 15px;
  line-height: 1.5;
}
.pratum-booking-empty__suggestions {
  margin-top: 18px;
}
.pratum-booking-empty__status {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
}
.pratum-booking-empty__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-bottom: 18px;
}
.pratum-booking-empty__options:empty {
  display: none;
}
.pratum-booking-empty__date {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(62, 74, 57, 0.32);
  border-radius: 2px;
  background: rgba(245, 241, 232, 0.58);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}
.pratum-booking-empty__date:hover,
.pratum-booking-empty__date:focus-visible {
  border-color: var(--terra);
  background: var(--terra);
  color: var(--cream);
  outline: none;
}
.datepicker,
.datepicker-dropdown {
  display: none !important;
  z-index: 2600 !important;
  border: 1px solid rgba(62,74,57,0.18) !important;
  border-radius: var(--radius) !important;
  color: var(--ink) !important;
  font-family: var(--ff-sans) !important;
  box-shadow: 0 18px 42px rgba(18,18,13,0.22) !important;
}
.datepicker table {
  width: 100%;
}
.datepicker table tr th,
.datepicker table tr td {
  border-radius: 0 !important;
  text-shadow: none !important;
}
.datepicker table tr th {
  color: var(--ink) !important;
  font-weight: 600 !important;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.focused,
.datepicker table tr td span:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker .datepicker-switch:hover {
  background: rgba(176,90,50,0.10) !important;
  color: var(--terra) !important;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover {
  background: rgba(176,90,50,0.14) !important;
  color: var(--terra) !important;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  border-color: var(--terra) !important;
  background: var(--terra) !important;
  color: var(--cream) !important;
  text-shadow: none !important;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover,
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: rgba(38,38,31,0.28) !important;
}
.booking-modal__widget-root .rc-container.rc-main_wrapper {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.booking-modal__widget-root .rc-search_form {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 14px !important;
  background: transparent !important;
  color: var(--ink) !important;
}
.booking-modal__widget-root .rc-search_form__dates_wrapper {
  width: 100% !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1.18fr) minmax(0, 1fr);
  gap: 12px;
}
.booking-modal__widget-root .rc-search_form__btn__wrapper,
.booking-modal__widget-root .rc-search_form__item,
.booking-modal__widget-root .rc-input-group,
.booking-modal__widget-root .rc-date {
  width: 100% !important;
  margin: 0 !important;
}
.booking-modal__widget-root .rc-search_form__btn__wrapper {
  padding: 0 !important;
}
.booking-modal__widget-root .rc-search_form__item {
  display: flex !important;
  flex-direction: column;
  align-items: stretch !important;
  gap: 9px !important;
}
.booking-modal__widget-root .rc-hide-mobile {
  display: none !important;
}
.booking-modal__widget-root label {
  margin: 0 !important;
  color: rgba(38,38,31,0.64) !important;
  font-family: var(--ff-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  line-height: 1 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}
.booking-modal__widget-root .rc-form-control {
  width: 100% !important;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(62,74,57,0.18) !important;
  border-radius: var(--radius) !important;
  background: rgba(255,255,255,0.52) !important;
  color: var(--ink) !important;
  box-shadow: none !important;
  font-family: var(--ff-sans) !important;
  font-size: 14px !important;
  line-height: 56px !important;
}
.booking-modal__widget-root .rc-input-group {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 50px;
}
.booking-modal__widget-root .rc-input-group .rc-form-control {
  border-right: 0 !important;
  border-radius: var(--radius) 0 0 var(--radius) !important;
}
.booking-modal__widget-root .rc-input-group-addon {
  width: 50px !important;
  min-width: 50px !important;
  min-height: 56px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(62,74,57,0.18) !important;
  border-left: 0 !important;
  border-radius: 0 var(--radius) var(--radius) 0 !important;
  background: rgba(245,241,232,0.86) !important;
  color: var(--terra) !important;
  font-size: 18px !important;
  line-height: 1 !important;
}
.booking-modal__widget-root .rc-input-group-addon > * {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.booking-modal__widget-root .rc-glyphicon-th,
.booking-modal__widget-root .rc-icon.rc-glyphicon-th {
  position: relative !important;
  width: 22px !important;
  height: 22px !important;
  font-size: 0 !important;
  color: transparent !important;
}
.booking-modal__widget-root .rc-glyphicon-th::before,
.booking-modal__widget-root .rc-icon.rc-glyphicon-th::before {
  content: "" !important;
  position: absolute;
  inset: 1px;
  background: var(--terra);
  -webkit-mask: url('../img/icons/lucide/calendar.svg') center / contain no-repeat;
  mask: url('../img/icons/lucide/calendar.svg') center / contain no-repeat;
}
.booking-modal__widget-root select.rc-form-control {
  appearance: none !important;
  -webkit-appearance: none !important;
  padding-right: 56px !important;
  background-color: rgba(255,255,255,0.62) !important;
  background-image: url('../img/icons/lucide/chevron-down.svg') !important;
  background-repeat: no-repeat !important;
  background-position: right 20px center !important;
  background-size: 16px 16px !important;
}
.booking-modal__widget-root .pratum-select {
  width: 100%;
  color: var(--ink);
}
.booking-modal__widget-root .pratum-select__button {
  height: 56px;
  min-height: 56px;
  padding: 0 52px 0 14px;
  background: rgba(255,255,255,0.62);
  font-size: 14px;
}
.booking-modal__widget-root .pratum-select__icon {
  right: 18px;
  width: 17px;
  height: 17px;
}
.booking-modal__widget-root .pratum-select__menu {
  z-index: 3200;
}
.booking-modal__widget-root .rc-search_form__search_btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 56px !important;
  margin: 0 !important;
  border: 1px solid var(--terra) !important;
  border-radius: var(--radius) !important;
  background: var(--terra) !important;
  color: var(--cream) !important;
  font-family: var(--ff-sans) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.13em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  transition: background var(--transition), border-color var(--transition), transform var(--transition) !important;
}
.booking-modal__widget-root .rc-search_form__search_btn:hover {
  background: #8f4a27 !important;
  border-color: #8f4a27 !important;
  transform: translateY(-1px);
}
.booking-modal__widget-root .rc-flat_list__wrapper,
.booking-modal__widget-root .rc-flat_list {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}
.booking-modal__widget-root .rc-flat_list__wrapper {
  padding-top: 0 !important;
}
.booking-modal__widget-root .rc-flat {
  position: relative;
  display: block !important;
  margin-top: 18px !important;
  padding: 18px !important;
  border: 1px solid rgba(62,74,57,0.16) !important;
  border-radius: var(--radius) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.58), rgba(245,241,232,0.76)),
    rgba(245,241,232,0.9) !important;
  color: var(--ink) !important;
  box-shadow: 0 18px 48px rgba(38,38,31,0.08) !important;
  font-family: var(--ff-sans) !important;
}
.booking-modal__widget-root .rc-flat::before,
.booking-modal__widget-root .rc-flat::after {
  display: none !important;
}
.booking-modal__widget-root .rc-flat > .rc-row:first-child {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}
.booking-modal__widget-root .rc-flat > .rc-row:first-child::before,
.booking-modal__widget-root .rc-flat > .rc-row:first-child::after,
.booking-modal__widget-root .rc-flat > .rc-row:last-child::before,
.booking-modal__widget-root .rc-flat > .rc-row:last-child::after {
  display: none !important;
}
.booking-modal__widget-root .rc-flat > .rc-row:last-child {
  display: flex !important;
  justify-content: flex-end;
  margin-top: 16px !important;
}
.booking-modal__widget-root .rc-flat [class*="rc-col-sm"],
.booking-modal__widget-root .rc-flat .rc-row {
  float: none !important;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.booking-modal__widget-root .rc-flat > .rc-row:first-child > .rc-col-sm-8 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(96px, auto);
  gap: 20px;
  align-items: start;
  width: 100% !important;
  min-width: 0 !important;
}
.booking-modal__widget-root .rc-flat__img {
  display: none !important;
}
.booking-modal__widget-root .rc-flat__img__wrapper {
  position: relative;
  width: 100% !important;
  aspect-ratio: 1.16;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(62,74,57,0.16);
}
.booking-modal__widget-root .rc-flat__img__wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.booking-modal__widget-root .rc-flat__img__caption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: inline-flex !important;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: var(--radius);
  background: rgba(38,38,31,0.62) !important;
  color: var(--cream) !important;
  font-family: var(--ff-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  backdrop-filter: blur(12px);
}
.booking-modal__widget-root .rc-flat__img__caption__icon {
  display: none !important;
}
.booking-modal__widget-root .flat__info__row {
  display: contents !important;
}
.booking-modal__widget-root .rc-flat__info {
  grid-column: 1;
  grid-row: 1;
  justify-self: stretch;
  width: 100% !important;
  min-width: 0 !important;
  color: var(--ink) !important;
  font-family: var(--ff-sans) !important;
  font-size: 15px !important;
  line-height: 1.52 !important;
}
.booking-modal__widget-root .rc-flat__info__adress {
  display: grid;
  gap: 2px;
  margin-bottom: 8px;
  font-family: var(--ff-serif) !important;
  font-size: 21px !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em;
}
.booking-modal__widget-root .rc-flat__info__city,
.booking-modal__widget-root .rc-flat__info__street {
  display: block;
}
.booking-modal__widget-root .rc-flat__info__services {
  display: none !important;
}
.booking-modal__widget-root .rc-flat__price {
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  min-width: 88px !important;
  text-align: right !important;
  color: var(--ink) !important;
  white-space: normal !important;
}
.booking-modal__widget-root .rc-flat__price br {
  display: none !important;
}
.booking-modal__widget-root .rc-flat__price__value {
  display: block;
  font-family: var(--ff-serif) !important;
  font-size: 34px !important;
  font-weight: 600 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em;
}
.booking-modal__widget-root .rc-flat__price__cur {
  display: block;
  margin-top: 0;
  color: rgba(38,38,31,0.68) !important;
  font-family: var(--ff-sans) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
}
.booking-modal__widget-root .rc-flat__more__info {
  display: none !important;
}
.booking-modal__widget-root .rc-flat__more__info__services {
  margin-bottom: 10px !important;
}
.booking-modal__widget-root .rc-flat__more__info__services__row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px !important;
  margin-bottom: 8px !important;
}
.booking-modal__widget-root .rc-flat__more__info__services__item {
  display: flex !important;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 7px 9px !important;
  border: 1px solid rgba(62,74,57,0.12);
  color: rgba(38,38,31,0.74);
  background: rgba(255,255,255,0.36);
  font-size: 12px !important;
  line-height: 1.25 !important;
}
.booking-modal__widget-root .rc-flat__more__info__services__item .rc-icon {
  opacity: 0.5;
}
.booking-modal__widget-root .rc-flat__book {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.booking-modal__widget-root .rc-flat__more__btn,
.booking-modal__widget-root .rc-flat__book__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 46px;
  margin: 0 !important;
  padding: 0 20px !important;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  font-family: var(--ff-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition) !important;
}
.booking-modal__widget-root .rc-flat__more__btn {
  display: none !important;
}
.booking-modal__widget-root .rc-flat__book__btn {
  border: 1px solid var(--terra) !important;
  background: var(--terra) !important;
  color: var(--cream) !important;
}
.booking-modal__widget-root .rc-flat__book__btn:hover {
  border-color: #8f4a27 !important;
  background: #8f4a27 !important;
  transform: translateY(-1px);
}
.booking-modal__widget-root.has-booking-form .rc-search_form,
.booking-modal__widget-root.has-booking-form .rc-flat_list__wrapper {
  display: none !important;
}
.booking-modal__widget-root.has-booking-form {
  padding: clamp(16px, 2vw, 24px);
  min-height: 0;
}
.booking-modal__widget-root .rc-modal {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  display: block !important;
  width: 100% !important;
  overflow: visible !important;
  background: transparent !important;
  opacity: 1 !important;
}
.booking-modal__widget-root .rc-modal .rc-modal-dialog {
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  transform: none !important;
}
.booking-modal__widget-root .rc-modal .rc-modal-content {
  overflow: visible !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ink) !important;
  font-family: var(--ff-sans) !important;
}
.booking-modal__widget-root .rc-modal .rc-modal-header,
.booking-modal__widget-root .rc-modal .rc-booking_modal__flat_info {
  display: none !important;
}
.booking-modal__widget-root .rc-modal .rc-modal-body {
  padding: 0 !important;
  overflow: visible !important;
  min-height: 0 !important;
}
.booking-modal__widget-root .rc-modal form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 14px !important;
  margin: 0 !important;
}
.booking-modal__widget-root.has-booking-form .rc-modal form {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
}
.booking-modal__widget-root .rc-modal .rc-row {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}
.booking-modal__widget-root .rc-modal [class*="rc-col-sm"],
.booking-modal__widget-root .rc-modal [class*="rc-col-xs"] {
  float: none !important;
  width: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
}
.booking-modal__widget-root .rc-modal .rc-booking_form__dates > .rc-row,
.booking-modal__widget-root .rc-modal form > .rc-row:not(.rc-booking_form__price):not(.rc-booking_form__pay_info) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px !important;
  align-items: start;
}
.booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates,
.booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__price,
.booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__pay_info,
.booking-modal__widget-root.has-booking-form .rc-modal .rc-checkbox,
.booking-modal__widget-root.has-booking-form .rc-modal .rc-modal-footer {
  grid-column: 1 / -1 !important;
}
.booking-modal__widget-root.has-booking-form .rc-modal form > * {
  order: 3;
}
.booking-modal__widget-root.has-booking-form .rc-modal form > .rc-form-group:empty {
  display: none !important;
}
.booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates {
  order: 1;
}
.booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__price {
  order: 2;
}
.booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__pay_info {
  order: 5;
}
.booking-modal__widget-root.has-booking-form .rc-modal form > .rc-row:last-of-type {
  order: 6;
}
.booking-modal__widget-root.has-booking-form .rc-modal .rc-form-group {
  min-width: 0 !important;
}
.booking-modal__widget-root.has-booking-form .rc-modal form > .rc-row:not(.rc-booking_form__price):not(.rc-booking_form__pay_info) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
  width: 100% !important;
}
.booking-modal__widget-root.has-booking-form .rc-modal form > .rc-row > .rc-col-sm-12,
.booking-modal__widget-root.has-booking-form .rc-modal form > .rc-row > .rc-col-xs-12 {
  grid-column: 1 / -1 !important;
}
.booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates > .rc-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 10px !important;
}
.booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates > .rc-row > [class*="rc-col"] {
  display: grid !important;
  gap: 7px !important;
  width: 100% !important;
}
.booking-modal__widget-root.has-booking-form .rc-modal form > .rc-row:not(.rc-booking_form__price):not(.rc-booking_form__pay_info) > [class*="rc-col"] {
  display: block !important;
  width: 100% !important;
}
.booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates > .rc-row > [class*="rc-col"] > .rc-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 7px !important;
}
.booking-modal__widget-root .rc-modal .rc-booking_form__dates > .rc-row > .rc-col-sm-6 {
  display: grid !important;
  gap: 7px !important;
}
.booking-modal__widget-root .rc-modal .rc-booking_form__dates > .rc-row > .rc-col-sm-6 > .rc-row:last-child {
  display: grid !important;
  grid-template-columns: 1fr !important;
}
.booking-modal__widget-root .rc-modal .rc-booking_form__dates__time__wrapper {
  display: none !important;
}
.booking-modal__widget-root .rc-modal .rc-form-group {
  margin: 0 !important;
}
.booking-modal__widget-root .rc-modal label {
  display: block !important;
  margin: 0 0 8px !important;
  color: rgba(38,38,31,0.64) !important;
}
.booking-modal__widget-root .rc-modal textarea.rc-form-control {
  height: 96px !important;
  min-height: 96px !important;
  padding-top: 14px !important;
  line-height: 1.45 !important;
  resize: vertical;
}
.booking-modal__widget-root .rc-modal .rc-booking_form__price,
.booking-modal__widget-root .rc-modal .rc-booking_form__pay_info {
  padding: 14px 16px !important;
  border: 1px solid rgba(62,74,57,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.42);
  color: rgba(38,38,31,0.82) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}
.booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__price {
  display: grid !important;
  gap: 5px !important;
  margin: 0 !important;
}
.booking-modal__widget-root .rc-booking-price__label,
.booking-modal__widget-root .rc-booking-price__note {
  display: block;
  color: rgba(38,38,31,0.68);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.booking-modal__widget-root .rc-booking-price__amount {
  display: block;
  color: var(--terra);
  font-family: var(--ff-serif);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
}
.booking-modal__widget-root .rc-modal .rc-help-block {
  display: none !important;
  margin: 7px 0 0 !important;
  color: var(--terra) !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}
.booking-modal__widget-root.has-booking-submit-attempt .rc-modal .rc-help-block {
  display: block !important;
}
.booking-modal__widget-root .rc-modal .rc-checkbox label {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 18px auto !important;
  align-items: center;
  column-gap: 6px;
  padding-left: 0 !important;
  color: rgba(38,38,31,0.76) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  letter-spacing: 0.08em !important;
}
.booking-modal__widget-root .rc-modal .rc-checkbox .rc-checkbox__text {
  display: block;
  min-width: 0;
  padding-top: 0;
}
.booking-modal__widget-root .rc-modal .rc-checkbox input {
  position: static !important;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0 !important;
  transform: none !important;
  accent-color: var(--terra);
}
.booking-modal__widget-root .rc-modal .rc-checkbox a {
  color: var(--terra) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(176,90,50,0.34);
}
.booking-modal__widget-root .rc-modal .rc-modal-footer {
  display: flex !important;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
.booking-modal__widget-root .rc-modal .rc-btn-default {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 46px;
  margin: 0 !important;
  padding: 0 18px !important;
  border: 1px solid rgba(62,74,57,0.22) !important;
  border-radius: var(--radius) !important;
  background: transparent !important;
  color: rgba(38,38,31,0.72) !important;
  font-family: var(--ff-sans) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}
.booking-modal__widget-root .rc-modal .rc-btn-default:hover {
  border-color: var(--terra) !important;
  color: var(--terra) !important;
}
.booking-modal__widget-root .rc-modal .rc-modal-footer .rc-flat__book__btn {
  min-width: 180px;
}
body.rc-modal-open #booking-modal.open {
  overflow: hidden;
}
body.rc-modal-open .rc-modal-backdrop[data-pratum-hidden="true"] {
  display: none !important;
}
.booking-modal__widget-root .rc-text-center {
  display: none !important;
}
.booking-modal__widget-root .rc-text-center p {
  max-width: 100% !important;
  margin: 0 0 10px !important;
  color: rgba(38,38,31,0.66) !important;
  font-family: var(--ff-sans) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}
.booking-modal__direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 38px;
  margin-top: 16px;
  padding: 0 16px;
  border: 1px solid rgba(62,74,57,0.18);
  color: rgba(38,38,31,0.72);
  background: rgba(245,241,232,0.42);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.booking-modal__direct:hover,
.booking-modal__direct:focus-visible {
  border-color: var(--terra);
  background: var(--terra);
  color: var(--cream);
  transform: translateY(-1px);
  outline: none;
}
.booking-modal__contact {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(38,38,31,0.62);
  font-size: 13px;
  line-height: 1.55;
}
.booking-modal__contact a {
  color: var(--ink);
  text-decoration: none;
}
.booking-modal__contact a:hover,
.booking-modal__contact a:focus-visible {
  color: var(--terra);
  outline: none;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(129,136,122,0.16);
  flex-shrink: 0;
}
.modal-header img { height: 28px; }
.modal-close {
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-hover), color var(--transition-hover);
  color: var(--stone);
}
.modal-close:hover { background: rgba(129,136,122,0.14); color: var(--ink); }
.modal-close:focus-visible { outline: 2px solid var(--terra); }
.modal-close .site-icon {
  width: 18px;
  height: 18px;
}
.modal-close.guide-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  border: 1px solid rgba(62,74,57,0.18);
  border-radius: var(--radius);
  background: rgba(62,74,57,0.08);
  color: var(--sage);
  box-shadow: none;
}
.modal-close.guide-modal__close:hover {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--cream);
}

.modal-body {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 500px;
}
.modal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: absolute;
  inset: 0;
}
.modal-footer {
  padding: 12px 24px;
  border-top: 1px solid rgba(129,136,122,0.12);
  text-align: center;
  flex-shrink: 0;
}
.modal-footer a {
  font-size: 13px;
  color: var(--stone);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.modal-footer a:hover { color: var(--terra); }

/* Modal loading skeleton */
.modal-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--cream);
  z-index: 1;
}
.modal-loading.hidden { display: none; }
.modal-spinner {
  width: 36px; height: 36px;
  border: 2px solid rgba(129,136,122,0.2);
  border-top-color: var(--terra);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .modal-spinner { animation: none; border-top-color: var(--terra); }
}
.modal-loading__text {
  font-size: 14px;
  color: var(--stone);
}

/* Modal error fallback */
.modal-error {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cream);
  padding: 32px;
  text-align: center;
  z-index: 1;
}
.modal-error p { font-size: 15px; color: var(--stone); }
.modal-error a { color: var(--terra); font-weight: 500; }

/* Review modal */
.review-modal {
  max-width: 640px;
}
.review-modal__header {
  align-items: flex-start;
}
.review-modal__source {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
}
.review-modal__header h3 {
  font-family: var(--ff-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
}
.review-modal__body {
  overflow: auto;
  padding: clamp(24px, 4vw, 36px);
}
.review-modal__text {
  font-family: var(--ff-serif);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.48;
  color: var(--ink);
  white-space: pre-line;
}
.review-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(24px, 4vw, 36px) 18px;
  border-top: 1px solid rgba(129,136,122,0.14);
  color: var(--stone);
  font-size: 13px;
}
.review-modal__guest {
  font-weight: 700;
  color: var(--ink);
}

/* ── Mobile sticky CTA bar ────────────────────────────────── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--forest);
  border-top: 1px solid rgba(150,188,166,0.2);
  padding: 6px 14px;
  padding-bottom: max(6px, env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  gap: 12px;
  transform: translateY(120%);
  transition: transform 0.32s ease;
}
.mobile-cta-bar.is-visible { transform: translateY(0); }
.mobile-cta-bar__tel {
  order: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  min-height: 40px;
  transition: color var(--transition);
}
.mobile-cta-bar__tel .site-icon {
  width: 18px;
  height: 18px;
}
.mobile-cta-bar__tel:hover { color: var(--mint); }
.mobile-cta-bar__btn {
  order: 1;
  flex: 0 0 auto;
  text-align: center;
  padding: 0 18px;
  font-size: 12.5px;
  white-space: nowrap;
  min-height: 40px;
}
.mobile-cta-bar.hidden { display: none !important; }

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20,20,16,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__inner {
  position: relative;
  max-width: 1000px;
  max-height: 90vh;
  width: 100%;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: rgba(245,241,232,0.8);
  cursor: pointer;
  transition: color var(--transition-hover), background var(--transition-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.lightbox__close {
  top: -48px; right: 0;
  width: 40px; height: 40px;
}
.lightbox__close:hover { color: var(--cream); background: rgba(255,255,255,0.1); }
.lightbox__prev { left: 0; }
.lightbox__next { right: 0; }
.lightbox__prev,
.lightbox__next {
  width: 48px; height: 48px;
}
.lightbox .site-icon {
  width: 24px;
  height: 24px;
}
.lightbox__prev:hover,
.lightbox__next:hover { color: var(--cream); background: rgba(255,255,255,0.1); }
.lightbox__prev svg,
.lightbox__next svg,
.lightbox__close svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lightbox__counter {
  position: absolute;
  bottom: -40px;
  left: 50%; transform: translateX(-50%);
  font-size: 13px;
  color: rgba(245,241,232,0.4);
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--slide-left,
.reveal--slide-right,
.reveal--scale {
  transition-timing-function: cubic-bezier(0.22, 0.8, 0.24, 1);
}
.reveal--slide-left { transform: translateX(-28px); }
.reveal--slide-right { transform: translateX(28px); }
.reveal--scale { transform: scale(0.965); }
.reveal--slide-up { transform: translateY(20px); }
.reveal--slide-left.visible,
.reveal--slide-right.visible,
.reveal--scale.visible,
.reveal--slide-up.visible {
  opacity: 1;
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .walkthrough-scroll,
  .walkthrough-scroll a,
  .walkthrough-scroll button { cursor: none; }
}

@media (max-width: 760px) {
  .footer-platforms__links {
    justify-items: center;
    gap: 8px;
  }
  .footer-platforms__links .platform-logo {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 641px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }
  .footer-disclosure__summary { pointer-events: none; }
  .footer-disclosure--platforms > .footer-disclosure__summary {
    display: block !important;
  }
  .footer-disclosure--platforms > .footer-disclosure__body,
  .footer-disclosure--documents > .footer-disclosure__body {
    display: block !important;
  }
  .footer-disclosure--documents > .footer-disclosure__summary {
    display: none !important;
  }
  .footer-disclosure--documents .footer-legal {
    display: flex !important;
  }
  .footer-bottom .footer-disclosure--documents {
    flex: 1 1 auto;
    min-width: 0;
  }
  .footer-bottom .footer-disclosure--documents > .footer-disclosure__body,
  .footer-bottom .footer-disclosure--documents .footer-legal {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-disclosure__summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 0;
    padding: 12px 40px;
    border-top: 1px solid rgba(245,241,232,0.12);
    color: rgba(245,241,232,0.82);
    font-size: 13px;
    letter-spacing: 0.08em;
    cursor: pointer;
    pointer-events: auto;
    text-align: center;
  }
  .footer-disclosure__summary::after {
    position: absolute;
    right: 0;
    display: block;
    content: '+';
    color: var(--mint);
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    transition: transform var(--transition-hover), color var(--transition-hover);
  }
  .footer-disclosure[open] > .footer-disclosure__summary::after {
    content: '\2212';
    color: var(--terra);
  }
  .footer-disclosure.is-expanded > .footer-disclosure__summary::after {
    content: '\2212';
    color: var(--terra);
  }
  .footer-disclosure:not(.is-expanded) > .footer-disclosure__summary::after {
    content: '+';
    color: var(--mint);
  }
  .footer-disclosure__body {
    display: grid !important;
    grid-template-rows: 0fr;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    opacity: 0;
    transition: grid-template-rows var(--transition-hover), max-height var(--transition-hover), padding-top var(--transition-hover), opacity var(--transition-hover);
  }
  .footer-disclosure__body > * {
    min-height: 0;
    overflow: hidden;
  }
  .footer-disclosure[open] > .footer-disclosure__body {
    grid-template-rows: 1fr;
    max-height: 360px;
    padding-top: 8px;
    opacity: 1;
  }
  .footer-disclosure.is-expanded > .footer-disclosure__body {
    grid-template-rows: 1fr;
    max-height: 360px;
    padding-top: 8px;
    opacity: 1;
  }
  .footer-disclosure:not([open]) > .footer-disclosure__body {
    grid-template-rows: 0fr !important;
    max-height: 0 !important;
    padding-top: 0 !important;
    opacity: 0 !important;
  }
  .footer-disclosure:not(.is-expanded) > .footer-disclosure__body {
    grid-template-rows: 0fr !important;
    max-height: 0 !important;
    padding-top: 0 !important;
    opacity: 0 !important;
  }
  .footer-disclosure--platforms {
    border-bottom: 1px solid rgba(245,241,232,0.12);
  }
  .footer-disclosure--platforms[open],
  .footer-disclosure--platforms.is-expanded {
    padding-bottom: 24px;
  }
  .footer-disclosure--documents {
    width: min(100%, 420px);
    flex: 1 1 100%;
  }
  .footer-disclosure--documents > .footer-disclosure__summary {
    display: flex;
    border-top: 0;
  }
  .footer-disclosure--documents { border-bottom: 1px solid rgba(245,241,232,0.12); }
  .footer-legal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-content: stretch;
  }
  .footer-legal a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 0;
    margin: 0;
    font-size: 13px;
    text-align: center;
  }
  .footer-platforms__links .platform-logo {
    min-height: 44px;
    font-size: 13px;
  }
  .footer-platforms__links .platform-logo__label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0;
  }
  .footer-disclosure--documents { order: 1; }
  .footer-copy {
    order: 2;
    margin-top: 24px;
  }
  .footer-disclosure--documents .footer-legal {
    justify-content: stretch;
  }
}

/* Directional scroll cue: the page and the video hint use the same state. */
.walkthrough-video-hint__scroll {
  position: relative;
  display: flex;
  width: 18px;
  height: 28px;
  flex: 0 0 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.24s ease;
}
.walkthrough-video-hint__scroll span {
  position: static;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border: 0;
  border-right: 1.5px solid var(--terra);
  border-bottom: 1.5px solid var(--terra);
  border-radius: 0;
  background: transparent;
  transform: rotate(45deg) translate(-2px, -2px);
  animation: walkthroughArrowDown 1.35s ease-in-out infinite;
}
.walkthrough-video-hint__scroll span:nth-child(2) {
  opacity: 0.42;
  animation-delay: -0.42s;
}
.walkthrough-scroll.is-direction-up .walkthrough-video-hint__scroll {
  transform: rotate(180deg);
}
@keyframes walkthroughArrowDown {
  0%, 100% { opacity: 0.35; transform: rotate(45deg) translate(-2px, -4px); }
  45%, 72% { opacity: 1; transform: rotate(45deg) translate(1px, -1px); }
}

@media (max-width: 640px) {
  .faq-section h2 { margin-bottom: 30px; }
  .guide-copy::before { opacity: 0.64; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .guide-visual img,
  .guide-visual::before { animation: none !important; }
  .guide-visual img { transform: none; }
  .walkthrough-scroll { height: auto !important; }
  .walkthrough-sticky { position: relative !important; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
/* Desktop baseline: git tag desktop-final-2026-07-08 (commit ff54dbb). */

/* Hero badge hides on small desktop where it would overlap */
@media (max-width: 860px) {
  .hero__badge { display: none; }
}

@media (max-width: 1024px) {
  .amenities-grid        { grid-template-columns: repeat(3, 1fr); }
  .amenities-house-grid  { grid-template-columns: repeat(3, 1fr); }

  .walkthrough-scroll { height: 720vh; }
  .walkthrough-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .walkthrough-copy {
    max-width: 760px;
  }
  .walkthrough-zone-card,
  .walkthrough-actions {
    max-width: none;
  }
  .walkthrough-stage {
    justify-items: center;
  }
  .walkthrough-video-shell {
    width: min(74svh, 88vw, 760px);
  }

  /* Gallery: 2 cols on tablet */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(180px, 28vw, 260px);
    grid-template-areas: none;
    gap: 5px;
  }
  .gallery-item { grid-area: auto !important; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(10) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 2;
  }
  .gallery-item:not(:nth-child(1)):not(:nth-child(10)):not(:nth-child(8)):not(:nth-child(9)) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 860px) {
  .site-header__nav { display: none; }
  .site-header__cta-desktop { display: none; }
  .burger { display: flex; }

  .hero-booking {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 520px;
  }
  .hero-booking__field,
  .hero-booking__submit {
    height: 60px;
    min-height: 60px;
  }
  .hero-booking__submit {
    padding-inline: 12px;
  }

  .about-split { grid-template-columns: 1fr; }
  .about-split__image { min-height: 380px; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map  { order: 2; min-height: 340px; height: 340px; }
  .location-info { order: 1; max-width: none; }

  .reviews-section {
    overflow: hidden;
  }
  .reviews-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    margin-right: calc(var(--gap) * -1);
    padding-right: var(--gap);
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card,
  .reviews-platform-card {
    flex: 0 0 min(86vw, 420px);
    scroll-snap-align: start;
  }

  .walkthrough-scroll { height: 620vh; }
  .walkthrough-sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    padding: clamp(64px, 8vw, 78px) 0 clamp(82px, 14vw, 104px);
  }
  body.is-walkthrough-focus .site-header {
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
  }
  body.is-walkthrough-focus .mobile-cta-bar.is-visible {
    transform: translateY(130%);
    pointer-events: none;
  }
  body.is-walkthrough-focus .walkthrough-sticky {
    padding-top: clamp(18px, 5vw, 30px);
    padding-bottom: clamp(22px, 6vw, 38px);
  }
  .walkthrough-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .walkthrough-copy {
    display: contents;
  }
  .walkthrough-copy .label {
    order: 1;
    margin-bottom: 2px;
  }
  .walkthrough-copy h2 {
    order: 2;
  }
  .walkthrough-lead {
    order: 3;
  }
  .walkthrough-stage {
    order: 4;
    justify-items: center;
  }
  .walkthrough-video-shell {
    width: min(50svh, 100%, 360px);
    margin: 0 auto;
  }
  .walkthrough-zone-card {
    order: 5;
    max-width: none;
    margin-bottom: 0;
  }
  .walkthrough-route {
    order: 6;
  }
  .walkthrough-actions {
    order: 7;
    margin-top: 0;
  }
  .walkthrough-actions.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .amenities-grid,
  .amenities-house-grid { grid-template-columns: repeat(2, 1fr); }

  .faq-layout { grid-template-columns: 1fr; }
  .faq-media { min-height: 320px; max-height: 420px; }

  .site-footer {
    padding-bottom: calc(108px + env(safe-area-inset-bottom));
    text-align: center;
  }
  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 0;
  }
  .footer-brand,
  .footer-contacts,
  .footer-platforms {
    justify-self: center;
    text-align: center;
  }
  .footer-brand__logo,
  .footer-brand__slogan {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .footer-legal {
    justify-content: center;
  }
  .footer-platforms__links {
    max-width: 420px;
  }
  .footer-platforms__links .platform-logo {
    justify-content: center;
  }

  /* Show mobile CTA bar */
  .mobile-cta-bar { display: flex; }
  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: auto;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  /* Crop lower so text sits over darker bed/floor, not bright posters */
  .hero__bg { background-position: center 62%; }
  /* Strong, near-uniform hero scrim on narrow screens for guaranteed legibility */
  .hero__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(30,30,24,0.55) 0%,
        rgba(30,30,24,0.55) 38%,
        rgba(30,30,24,0.66) 62%,
        rgba(30,30,24,0.86) 84%,
        rgba(30,30,24,0.96) 100%
      );
  }
  /* The fixed CTA overlays content; footer carries its own bottom safety space. */
  body { padding-bottom: 0; }

  .booking-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .booking-panel::before {
    background:
      linear-gradient(180deg, rgba(38,38,31,0.94) 0%, rgba(38,38,31,0.74) 100%),
      url('../img/renders/IMG_3293.webp') center center / cover no-repeat;
  }
  .booking-panel__cta {
    padding: 20px;
  }

  .guide-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .guide-copy {
    max-width: none;
  }
  .guide-visual {
    min-height: 260px;
    justify-content: flex-start;
  }
  .guide-visual img {
    width: min(100%, 560px);
  }
  .guide-access {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "features"
      "footer";
  }
  .guide-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-feature {
    min-height: 148px;
  }
  .guide-access__footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
  }
  .hero__content {
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }
  .hero__eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }
  .hero__title {
    margin-bottom: 8px;
    font-size: clamp(44px, 15vw, 68px);
    letter-spacing: 0.01em;
  }
  .hero__title-line {
    font-size: 11px;
    line-height: 1.25;
  }
  .hero__accent {
    margin-bottom: 8px;
    font-size: clamp(17px, 5.2vw, 22px);
  }
  .hero__sub {
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.48;
  }
  .hero-booking {
    gap: 6px;
    padding: 6px;
  }
  .hero-booking__field,
  .hero-booking__submit {
    height: 54px;
    min-height: 54px;
  }
  .hero-booking__field {
    gap: 5px;
    padding: 8px 12px;
  }
  .hero-booking__field--date {
    padding-right: 48px;
  }
  .hero-booking__field--date::after {
    right: 12px;
    width: 28px;
    height: 28px;
  }
  .hero-booking__field span {
    font-size: 9px;
  }
  .hero-booking__value,
  .hero-booking input,
  .hero-booking select {
    font-size: 14px;
  }
  .hero__btns {
    gap: 8px;
  }
  .hero__btns--secondary {
    margin-top: 8px;
  }
  .hero__btns .btn {
    min-height: 42px;
    padding-inline: 20px;
  }

  .stats-bar {
    position: relative;
    padding-top: 72px;
  }
  .stats-bar::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 50%;
    width: 42px;
    height: 42px;
    transform: translateX(-50%);
    background: url('../img/logo/pratum_symbol.svg') center / contain no-repeat;
    opacity: 0.38;
    filter: brightness(0) saturate(0) invert(1);
  }
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    border-left: 0;
  }
  .stat {
    min-height: 250px;
    padding: 28px clamp(22px, 8vw, 38px);
    border-right: 0;
  }
  .stat:nth-child(odd) {
    border-right: 1px solid rgba(245,241,232,0.10);
  }
  .stat:nth-child(n + 3) {
    border-top: 1px solid rgba(245,241,232,0.10);
  }

  .walkthrough-layout {
    gap: 9px;
  }
  .walkthrough-copy h2 {
    margin-bottom: 2px;
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.02;
  }
  .walkthrough-lead {
    margin-bottom: 4px;
    font-size: 13.5px;
    line-height: 1.34;
  }
  .walkthrough-zone-card {
    min-height: 0;
    padding: 13px 14px 13px 32px;
  }
  .walkthrough-zone-card::before {
    inset: 12px auto 12px 16px;
  }
  .walkthrough-zone-card__kicker {
    margin-bottom: 6px;
    font-size: 9px;
  }
  .walkthrough-zone-card h3 {
    margin-bottom: 5px;
    font-size: clamp(22px, 7.2vw, 30px);
  }
  .walkthrough-zone-card p {
    font-size: 12.5px;
    line-height: 1.32;
  }
  .walkthrough-route {
    width: 100%;
    max-width: none;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 8px 9px;
  }
  .walkthrough-route::-webkit-scrollbar { display: none; }
  .walkthrough-route__steps {
    min-width: max-content;
  }
  .walkthrough-route__dot {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
  }
  .walkthrough-video-controls {
    top: 10px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 6px;
    width: calc(100% - 28px);
  }
  .walkthrough-video-controls__link {
    min-height: 36px;
    padding: 0 8px;
    font-size: 8px;
    letter-spacing: 0.06em;
  }
  .walkthrough-play {
    min-width: 62px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 9px;
  }
  .walkthrough-video-hint {
    bottom: 10px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .walkthrough-actions {
    justify-content: stretch;
  }
  .walkthrough-skip {
    width: 100%;
    min-height: 38px;
    font-size: 10px;
  }
  /* Gallery mobile: 2 cols, no portraits */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(168px, 48vw, 220px);
    grid-template-areas: none;
    gap: 4px;
  }
  .gallery-item {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item:nth-child(8),
  .gallery-item:nth-child(9) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item:nth-child(8) img,
  .gallery-item:nth-child(9) img { object-position: center top; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(10) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .amenities-grid    { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .amenities-house-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .platform-cloud,
  .footer-platforms__links {
    grid-template-columns: 1fr;
  }

  .hero__btns { flex-direction: column; align-items: flex-start; }
  .hero__btns .btn { width: 100%; text-align: center; }

  .booking-panel { padding: 22px 18px; }
  .booking-panel__cta { padding: 18px; }
  .booking-panel__btn { white-space: normal; word-break: keep-all; }

  .guide-section::before {
    background-size: 42px 42px;
  }
  .guide-visual {
    min-height: 220px;
    margin-top: -14px;
  }
  .guide-access {
    padding: 16px;
  }
  .guide-access__intro {
    min-height: 0;
    padding: 18px;
  }
  .guide-access__intro h3 {
    max-width: 12ch;
    margin: 20px 0 12px;
    font-size: clamp(34px, 11vw, 48px);
  }
  .guide-features {
    grid-template-columns: 1fr;
  }
  .guide-feature {
    min-height: 0;
    padding: 16px;
  }
  .guide-feature span {
    margin-bottom: 10px;
  }
  .guide-steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .guide-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
  .guide-modal {
    width: 100%;
    max-height: 95vh;
    padding: 24px 18px;
  }
  .guide-modal__head {
    padding-right: 50px;
  }
  .guide-form__grid {
    grid-template-columns: 1fr;
  }
  .guide-form .btn {
    width: 100%;
  }

  /* About tablet image */
  .about-split__image { min-height: 260px; }

  .modal { max-height: 95vh; margin: 0; border-radius: 0; }
  .modal-backdrop { padding: 0; align-items: flex-end; }
  .booking-modal {
    width: 100%;
    height: 95vh;
    max-height: 95vh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
  }
  .modal-close.booking-modal__close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: 12px;
    width: 48px;
    height: 48px;
    z-index: 20;
  }
  .booking-modal__brand {
    height: 246px;
    min-height: 246px;
  }
  .booking-modal__brand-overlay {
    padding: 22px 18px 20px;
  }
  .booking-modal__logo {
    width: 156px;
    margin-bottom: 30px;
  }
  .booking-modal__brand h3 {
    max-width: none;
    font-size: 34px;
    margin-bottom: 12px;
  }
  .booking-modal__brand p {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .booking-modal__form {
    min-height: 0;
    padding: 22px 18px;
  }
  .booking-modal__form-head {
    margin-bottom: 16px;
    padding-right: 0;
  }
  .booking-modal__widget {
    min-height: auto !important;
    overflow-y: auto !important;
  }
  .booking-modal__widget-root {
    padding: 14px;
  }
  .booking-modal__widget-root .rc-search_form__dates_wrapper {
    grid-template-columns: 1fr;
    gap: 14px !important;
  }
  .booking-modal__widget-root .rc-flat {
    display: block !important;
    padding: 14px !important;
  }
  .booking-modal__widget-root .rc-flat > .rc-row:first-child {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .booking-modal__widget-root .rc-flat > .rc-row:first-child > .rc-col-sm-8 {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .booking-modal__widget-root .rc-flat > .rc-row:last-child {
    justify-content: stretch;
  }
  .booking-modal__widget-root .rc-flat__img,
  .booking-modal__widget-root .rc-flat__info,
  .booking-modal__widget-root .rc-flat__price,
  .booking-modal__widget-root .rc-flat__more__info,
  .booking-modal__widget-root .rc-flat__book {
    grid-column: 1;
    grid-row: auto;
  }
  .booking-modal__widget-root .rc-flat__price {
    justify-self: stretch;
    text-align: left !important;
  }
  .booking-modal__widget-root .rc-flat__price__value,
  .booking-modal__widget-root .rc-flat__price__cur {
    display: inline-block;
    vertical-align: baseline;
  }
  .booking-modal__widget-root .rc-flat__price__cur {
    margin: 0 0 0 6px;
  }
  .booking-modal__widget-root .rc-flat__book {
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
  }
  .booking-modal__widget-root .rc-flat__more__btn,
  .booking-modal__widget-root .rc-flat__book__btn {
    width: 100%;
  }
  .booking-modal__widget-root .rc-flat__more__info__services__row {
    grid-template-columns: 1fr;
  }
  .booking-modal__widget-root .rc-modal .rc-booking_form__dates > .rc-row,
  .booking-modal__widget-root .rc-modal form > .rc-row:not(.rc-booking_form__price):not(.rc-booking_form__pay_info) {
    grid-template-columns: 1fr;
  }
  .booking-modal__widget-root.has-booking-form .rc-modal form,
  .booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates > .rc-row {
    grid-template-columns: 1fr !important;
  }
  .booking-modal__widget-root .rc-modal .rc-modal-footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .booking-modal__widget-root .rc-modal .rc-btn-default,
  .booking-modal__widget-root .rc-modal .rc-modal-footer .rc-flat__book__btn {
    width: 100%;
  }
  .booking-modal .modal-body {
    min-height: auto !important;
    overflow: visible;
  }
  .booking-modal__widget-root label {
    text-align: left !important;
  }
  .booking-modal__contact {
    margin-top: 14px;
    font-size: 13px;
  }

  .lightbox__inner { padding: 0 44px; }
}

@media (max-width: 380px) {
  /* Gallery: single column on very narrow */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; gap: 4px; }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(10) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .amenities-grid    { grid-template-columns: 1fr; }
  .amenities-house-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   FINAL ADAPTIVE PASS — phones/tablets only
   Desktop styles above remain the approved PC version.
══════════════════════════════════════════════════════════ */

@media (max-width: 860px) {
  :root {
    --header-h: 68px;
    --gap: clamp(18px, 5.2vw, 28px);
    --section-py: clamp(52px, 12vw, 76px);
  }

  body {
    font-size: 16px;
  }

  .site-header {
    height: var(--header-h);
  }

  .site-header__logo img {
    height: 39px;
  }

  .burger {
    width: 44px;
    height: 44px;
    padding: 8px;
  }

  .mobile-nav {
    top: var(--header-h);
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding-top: 0;
    padding-bottom: clamp(22px, 5svh, 44px);
  }

  .hero__accent {
    max-width: min(100%, 31rem);
  }

  .hero__sub {
    max-width: min(100%, 32rem);
  }

  .hero-booking {
    max-width: 540px;
  }

  .hero-booking__field,
  .hero-booking__submit,
  .btn {
    touch-action: manipulation;
  }

  .hero-date-picker {
    max-height: min(430px, calc(100svh - 24px));
    overflow-y: auto;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: auto;
    max-width: 460px;
    margin: 0 auto;
    padding: 10px 12px;
    gap: 8px;
  }

  .cookie-consent__copy {
    gap: 4px;
  }

  .cookie-consent__title {
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .cookie-consent p:not(.cookie-consent__title),
  .cookie-consent__link {
    font-size: 11px;
    line-height: 1.24;
  }

  .cookie-consent__actions {
    gap: 8px;
  }

  .cookie-consent__btn {
    min-height: 36px;
    padding: 0 10px;
    font-size: 8.5px;
    letter-spacing: 0.06em;
    white-space: normal;
  }

  .stats-bar {
    padding-bottom: 0;
  }

  .stats-bar__inner {
    position: relative;
    overflow: hidden;
  }

  .stat {
    border: 0 !important;
  }

  .stats-bar__inner::before,
  .stats-bar__inner::after {
    content: none;
  }

  .walkthrough-section {
    overflow: hidden;
  }

  .walkthrough-copy h2,
  .walkthrough-lead,
  .walkthrough-zone-card,
  .walkthrough-route,
  .walkthrough-actions {
    max-width: none;
  }

  .walkthrough-video-shell {
    box-shadow: 0 22px 70px rgba(38,38,31,0.18);
  }

  .walkthrough-video-hint {
    min-width: min(260px, calc(100% - 36px));
  }

  .reviews-section {
    position: relative;
  }

  .reviews-section .container {
    padding-right: 0;
  }

  .reviews-grid {
    padding-left: 0;
    padding-bottom: 6px;
    scroll-padding-left: var(--gap);
  }

  .review-card,
  .reviews-platform-card {
    min-height: 326px;
  }

  .review-card {
    padding: 24px;
  }

  .review-card blockquote {
    border-left-color: rgba(176,90,50,0.36);
    border-left-width: 1px;
    padding-left: 18px;
  }

  .reviews-section::after {
    content: "Листайте отзывы";
    display: block;
    width: calc(100% - var(--gap));
    margin-top: 12px;
    color: rgba(38,38,31,0.52);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-align: right;
    text-transform: uppercase;
  }

  .guide-access {
    gap: 12px;
  }

  .guide-access__footer {
    gap: 10px;
  }

  .mobile-cta-bar {
    z-index: 120;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -18px 44px rgba(20,24,18,0.18);
  }

  .mobile-cta-bar__tel,
  .mobile-cta-bar__btn {
    min-height: 44px;
    height: 44px;
    display: flex;
    align-items: center;
  }

  .mobile-cta-bar__tel {
    font-size: clamp(15px, 4.2vw, 17px);
  }

  .mobile-cta-bar__btn {
    justify-content: center;
    padding: 0 16px;
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1;
  }

  .site-footer {
    margin-bottom: 0;
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .footer-top {
    gap: 34px;
  }
}

@media (max-width: 640px) and (orientation: portrait) {
  .hero__bg {
    background-position: center 54%;
  }

  .hero__content {
    justify-content: flex-end;
    min-height: calc(100svh - var(--header-h));
  }

  .hero__eyebrow {
    max-width: 100%;
    white-space: normal;
  }

  .hero__title {
    font-size: clamp(48px, 16.2vw, 70px);
  }

  .hero__accent {
    font-size: clamp(18px, 5.5vw, 22px);
    line-height: 1.18;
  }

  .hero__sub {
    margin-bottom: 14px;
    font-size: 12.5px;
    line-height: 1.42;
  }

  .hero-booking {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
  }

  .hero-booking__field,
  .hero-booking__submit {
    min-height: 52px;
    height: 52px;
  }

  .hero-booking__field--guests {
    grid-column: 1;
  }

  .hero-booking__submit {
    grid-column: 2;
    padding-inline: 10px;
    font-size: 9.5px;
    letter-spacing: 0.09em;
  }

  .hero__btns--secondary {
    width: 100%;
    margin-top: 8px;
  }

  .hero__btns .btn {
    width: min(100%, 250px);
    min-height: 40px;
    padding-inline: 18px;
    font-size: 10px;
  }

  .hero-date-picker {
    width: calc(100vw - 24px);
    padding: 12px;
  }

  .hero-date-picker__day {
    min-height: 36px;
    font-size: 14px;
  }

  .stat {
    min-height: clamp(184px, 48vw, 226px);
    padding: clamp(24px, 7vw, 34px) clamp(18px, 7vw, 30px);
  }

  .stats-bar__inner {
    position: relative;
    overflow: hidden;
  }

  .stats-bar__inner::before,
  .stats-bar__inner::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: rgba(245,241,232,0.10);
  }

  .stats-bar__inner::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
  }

  .stats-bar__inner::after {
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
  }

  .stat__num {
    gap: 4px;
    font-size: clamp(40px, 14vw, 58px);
    letter-spacing: -0.06em;
  }

  .stat__label {
    max-width: 12ch;
    font-size: clamp(13px, 3.9vw, 15px);
  }

  .walkthrough-scroll {
    height: 680vh;
  }

  .walkthrough-sticky {
    min-height: 100svh;
    padding-top: clamp(16px, 4.8vw, 24px);
    padding-bottom: clamp(74px, 18vw, 90px);
  }

  .walkthrough-layout {
    gap: 10px;
  }

  .walkthrough-copy .label {
    font-size: 9px;
    margin-bottom: 0;
  }

  .walkthrough-copy h2 {
    font-size: clamp(28px, 8.8vw, 38px);
    line-height: 1;
  }

  .walkthrough-lead {
    font-size: 12.5px;
    line-height: 1.32;
  }

  .walkthrough-stage {
    order: 4;
  }

  .walkthrough-video-shell {
    width: min(72vw, 48svh, 330px);
    padding: 8px;
  }

  .walkthrough-video-controls {
    top: 9px;
    width: calc(100% - 22px);
  }

  .walkthrough-video-hint {
    bottom: 9px;
  }

  .walkthrough-zone-card {
    padding: 13px 14px 13px 32px;
  }

  .walkthrough-route {
    width: 100%;
  }

  .walkthrough-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .walkthrough-skip {
    color: var(--terra);
    border-color: rgba(176,90,50,0.72);
    background: rgba(245,241,232,0.64);
  }

  .reviews-grid {
    gap: 12px;
  }

  .review-card,
  .reviews-platform-card {
    flex-basis: min(84vw, 360px);
  }

  .footer-bottom {
    gap: 0;
  }
}

@media (max-width: 430px) and (orientation: portrait) {
  .cookie-consent {
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr 1fr;
  }

  .walkthrough-video-shell {
    width: min(76vw, 320px);
  }

  .mobile-cta-bar {
    gap: 9px;
  }

  .mobile-cta-bar__tel .site-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 374px) and (orientation: portrait) {
  :root {
    --header-h: 62px;
  }

  .site-header__logo img {
    height: 34px;
  }

  .hero__title {
    font-size: clamp(42px, 15vw, 56px);
  }

  .hero__title-line {
    font-size: 10px;
  }

  .hero__accent {
    font-size: 16px;
  }

  .hero-booking__field {
    padding: 7px 10px;
  }

  .hero-booking__field--date {
    padding-right: 42px;
  }

  .hero-booking__field--date::after {
    right: 9px;
    width: 26px;
    height: 26px;
    background-size: 15px 15px;
  }

  .cookie-consent {
    padding: 8px 9px;
    gap: 6px;
  }

  .cookie-consent__copy {
    gap: 3px;
  }

  .cookie-consent__title {
    font-size: 8.8px;
    letter-spacing: 0.11em;
  }

  .cookie-consent p:not(.cookie-consent__title),
  .cookie-consent__link {
    font-size: 9.8px;
    line-height: 1.14;
  }

  .cookie-consent__actions {
    gap: 6px;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent__btn {
    min-height: 32px;
    padding-inline: 6px;
    font-size: 7.2px;
    letter-spacing: 0.045em;
  }

  .walkthrough-video-shell {
    width: min(64vw, 205px);
  }

  .walkthrough-sticky {
    padding-top: 10px;
    padding-bottom: 12px;
  }

  body.is-walkthrough-focus .walkthrough-sticky {
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .walkthrough-layout {
    gap: 7px;
  }

  .walkthrough-copy .label {
    font-size: 8px;
  }

  .walkthrough-copy h2 {
    font-size: clamp(24px, 8vw, 30px);
    line-height: 0.98;
  }

  .walkthrough-lead {
    font-size: 10.5px;
    line-height: 1.22;
  }

  .walkthrough-zone-card {
    min-height: 0;
    padding: 10px 12px 10px 28px;
  }

  .walkthrough-zone-card::before {
    inset: 11px auto 11px 14px;
    width: 2px;
  }

  .walkthrough-zone-card__kicker {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .walkthrough-zone-card h3 {
    margin-bottom: 5px;
    font-size: 24px;
  }

  .walkthrough-zone-card p {
    font-size: 10.5px;
    line-height: 1.22;
  }

  .walkthrough-route {
    padding: 6px;
    gap: 5px;
  }

  .walkthrough-route__steps {
    gap: 5px;
  }

  .walkthrough-route__dot {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .walkthrough-route__dot span {
    font-size: 8px;
  }

  .walkthrough-route__hint {
    min-height: 20px;
    font-size: 8px;
  }

  .walkthrough-actions {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .walkthrough-skip {
    min-height: 32px;
    padding-inline: 8px;
    font-size: 7.5px;
  }

  .walkthrough-video-controls__link {
    font-size: 7px;
  }

  .mobile-cta-bar__tel {
    max-width: 43vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 932px) and (orientation: landscape) {
  :root {
    --header-h: 56px;
    --gap: clamp(18px, 4vw, 32px);
  }

  .site-header__logo img {
    height: 34px;
  }

  .burger {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__bg {
    background-position: center 50%;
  }

  .hero__content {
    max-width: min(760px, calc(100vw - 36px));
    margin-left: 0;
    padding-bottom: clamp(14px, 4svh, 28px);
  }

  .hero__eyebrow {
    margin-bottom: 6px;
    font-size: 9px;
  }

  .hero__title {
    margin-bottom: 6px;
    font-size: clamp(40px, 9vw, 58px);
  }

  .hero__title-line {
    margin-top: 0;
    font-size: 10px;
  }

  .hero__accent {
    margin-bottom: 8px;
    font-size: clamp(17px, 3.8vw, 22px);
  }

  .hero__sub {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-booking {
    grid-template-columns: minmax(112px, 1fr) minmax(112px, 1fr) minmax(76px, 0.56fr) minmax(132px, 0.9fr);
    max-width: min(760px, calc(100vw - 36px));
    gap: 6px;
    padding: 6px;
  }

  .hero-booking__field,
  .hero-booking__submit {
    min-height: 48px;
    height: 48px;
  }

  .hero-booking__field {
    gap: 4px;
    padding: 7px 10px;
  }

  .hero-booking__field--date {
    padding-right: 42px;
  }

  .hero-booking__field--date::after {
    right: 9px;
    width: 26px;
    height: 26px;
    background-size: 15px 15px;
  }

  .hero-booking__submit {
    padding-inline: 12px;
    font-size: 9px;
  }

  .hero__btns--secondary {
    margin-top: 8px;
  }

  .hero__btns .btn {
    min-height: 36px;
    padding-inline: 18px;
    font-size: 9px;
  }

  .cookie-consent {
    left: auto;
    right: 12px;
    bottom: 12px;
    width: min(430px, calc(100vw - 24px));
    padding: 9px 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .cookie-consent__copy {
    gap: 3px;
  }

  .cookie-consent p:not(.cookie-consent__title),
  .cookie-consent__link {
    font-size: 10px;
    line-height: 1.18;
  }

  .cookie-consent__actions {
    min-width: 190px;
  }

  .cookie-consent__btn {
    min-height: 34px;
    padding-inline: 8px;
    font-size: 7.8px;
  }

  .stats-bar {
    padding-top: 52px;
  }

  .stat {
    min-height: 168px;
  }

  .walkthrough-scroll {
    height: 560vh;
  }

  .walkthrough-sticky {
    min-height: 100svh;
    padding: 10px 0 12px;
  }

  body.is-walkthrough-focus .walkthrough-sticky {
    padding: 10px 0 12px;
  }

  .walkthrough-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.82fr) minmax(260px, 0.72fr);
    gap: 18px;
    align-items: center;
    max-width: calc(100% - 28px);
  }

  .walkthrough-copy {
    display: block;
  }

  .walkthrough-copy h2 {
    margin-bottom: 8px;
    font-size: clamp(28px, 5vw, 42px);
  }

  .walkthrough-lead {
    margin-bottom: 12px;
    font-size: 12.5px;
    line-height: 1.35;
  }

  .walkthrough-zone-card {
    min-height: 0;
    margin-bottom: 8px;
    padding: 13px 14px 13px 32px;
  }

  .walkthrough-zone-card h3 {
    font-size: clamp(24px, 4vw, 34px);
  }

  .walkthrough-zone-card p {
    font-size: 12px;
    line-height: 1.34;
  }

  .walkthrough-video-shell {
    width: min(78svh, 42vw, 360px);
    padding: 8px;
  }

  .walkthrough-route {
    max-width: 100%;
    padding: 7px 8px;
  }

  .walkthrough-route__dot {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .walkthrough-actions {
    margin-top: 8px;
  }

  .walkthrough-skip {
    min-height: 34px;
    font-size: 9px;
  }

  .mobile-cta-bar {
    display: none !important;
  }

  .booking-modal {
    width: calc(100vw - 24px);
    height: calc(100svh - 24px);
    max-height: calc(100svh - 24px);
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
    overflow: hidden;
  }

  .booking-modal__brand-overlay {
    padding: 22px;
  }

  .booking-modal__brand h3 {
    font-size: clamp(32px, 6vw, 48px);
  }

  .booking-modal__form {
    padding: 20px;
    min-height: 0;
    overflow-y: auto;
  }
}

@media (max-width: 640px) and (orientation: landscape) {
  :root {
    --header-h: 50px;
  }

  .site-header__logo img {
    height: 30px;
  }

  .hero__content {
    max-width: calc(100vw - 28px);
    padding-bottom: 10px;
  }

  .hero__eyebrow {
    margin-bottom: 4px;
    font-size: 8px;
  }

  .hero__title {
    margin-bottom: 4px;
    font-size: clamp(34px, 7vw, 42px);
  }

  .hero__accent {
    margin-bottom: 5px;
    font-size: 15px;
  }

  .hero__sub {
    margin-bottom: 7px;
    font-size: 10.5px;
    line-height: 1.25;
  }

  .hero-booking {
    grid-template-columns: minmax(98px, 1fr) minmax(98px, 1fr) minmax(66px, 0.56fr) minmax(116px, 0.88fr);
    max-width: min(520px, calc(100vw - 28px));
    gap: 5px;
    padding: 5px;
  }

  .hero-booking__field,
  .hero-booking__submit {
    min-height: 42px;
    height: 42px;
  }

  .hero-booking__field--guests,
  .hero-booking__submit {
    grid-column: auto;
  }

  .hero-booking__field {
    padding: 6px 8px;
  }

  .hero-booking__field--date {
    padding-right: 36px;
  }

  .hero-booking__field--date::after {
    right: 7px;
    width: 24px;
    height: 24px;
    background-size: 14px 14px;
  }

  .hero-booking__submit {
    padding-inline: 8px;
    font-size: 8px;
  }

  .hero__btns--secondary {
    margin-top: 6px;
  }

  .hero__btns .btn {
    min-height: 30px;
    padding-inline: 14px;
    font-size: 8px;
  }

  .booking-modal {
    display: block;
    overflow-y: auto;
  }

  .booking-modal__brand {
    min-height: 112px;
    height: 112px;
  }

  .booking-modal__form {
    overflow: visible;
  }

  .booking-modal__close {
    top: 12px;
    right: 12px;
  }

  .walkthrough-scroll {
    height: 560vh;
  }

  .walkthrough-sticky,
  body.is-walkthrough-focus .walkthrough-sticky {
    padding: 8px 0;
  }

  .walkthrough-layout {
    grid-template-columns: minmax(228px, 0.9fr) minmax(190px, 0.72fr);
    gap: 12px;
    max-width: calc(100% - 24px);
  }

  .walkthrough-copy h2 {
    margin-bottom: 6px;
    font-size: clamp(22px, 4.8vw, 28px);
    line-height: 0.98;
  }

  .walkthrough-lead {
    display: none;
  }

  .walkthrough-video-shell {
    width: min(62svh, 35vw, 198px);
  }

  .walkthrough-zone-card {
    margin-bottom: 6px;
    padding: 10px 12px 10px 28px;
  }

  .walkthrough-zone-card::before {
    inset: 11px auto 11px 14px;
    width: 2px;
  }

  .walkthrough-zone-card__kicker {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .walkthrough-zone-card h3 {
    margin-bottom: 5px;
    font-size: 23px;
  }

  .walkthrough-zone-card p {
    font-size: 10.5px;
    line-height: 1.22;
  }

  .walkthrough-route {
    padding: 5px 6px;
    gap: 4px;
  }

  .walkthrough-route__dot {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .walkthrough-route__hint {
    min-height: 18px;
    font-size: 7.5px;
  }

  .walkthrough-actions {
    margin-top: 6px;
  }

  .walkthrough-skip {
    min-height: 30px;
    padding-inline: 9px;
    font-size: 7.5px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) and (orientation: portrait) {
  :root {
    --gap: clamp(28px, 5vw, 44px);
  }

  .hero__content {
    padding-bottom: clamp(70px, 12vw, 118px);
  }

  .hero-booking {
    max-width: 720px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-booking__field--guests {
    grid-column: 1;
  }

  .walkthrough-scroll {
    height: 700vh;
  }

  .walkthrough-layout {
    max-width: min(760px, calc(100% - 56px));
    margin: 0 auto;
  }

  .walkthrough-video-shell {
    width: min(62svh, 74vw, 640px);
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    margin-right: 0;
    padding-right: 0;
  }

  .reviews-section::after {
    display: none;
  }

  .booking-modal {
    width: calc(100vw - 36px);
    height: calc(100svh - 36px);
    max-height: calc(100svh - 36px);
    grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1fr);
  }

  .booking-modal__brand-overlay,
  .booking-modal__form {
    padding: 28px;
  }

  .guide-access {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "features"
      "footer";
  }
}

/* Tablet polish: keep approved desktop/mobile intact, only bridge the in-between widths. */
@media (min-width: 861px) and (max-width: 1080px) and (orientation: portrait) {
  .site-header__nav,
  .site-header__cta-desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .cookie-consent {
    width: min(360px, calc(100vw - 32px));
    padding: 12px;
    gap: 8px;
  }

  .cookie-consent p:not(.cookie-consent__title) {
    display: none;
  }

  .cookie-consent__actions {
    gap: 8px;
  }

  .cookie-consent__btn {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 8px;
  }
}

@media (min-width: 861px) and (max-width: 1180px) and (orientation: portrait) {
  .hero__badge {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 720px) and (orientation: portrait) {
  .booking-modal {
    width: calc(100vw - 28px);
    height: calc(100svh - 28px);
    max-height: calc(100svh - 28px);
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
  }

  .booking-modal__brand {
    height: 186px;
    min-height: 186px;
  }

  .booking-modal__brand-overlay,
  .booking-modal__form {
    padding: 22px;
  }

  .booking-modal__logo {
    width: 142px;
    margin-bottom: 22px;
  }

  .booking-modal__brand h3 {
    max-width: none;
    font-size: 34px;
  }

  .booking-modal__brand p {
    display: none;
  }

  .booking-modal__form {
    min-height: 0;
    overflow-y: auto;
  }

  .cookie-consent {
    padding: 10px 12px;
    gap: 8px;
  }

  .cookie-consent p:not(.cookie-consent__title) {
    display: none;
  }

  .cookie-consent__btn {
    min-height: 34px;
    font-size: 8px;
  }
}

@media (min-width: 641px) and (max-width: 1180px) and (orientation: landscape) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: auto;
    max-width: none;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 8px 10px;
    align-items: end;
  }

  .cookie-consent__copy {
    gap: 3px;
  }

  .cookie-consent__title {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .cookie-consent p:not(.cookie-consent__title),
  .cookie-consent__link {
    font-size: 9px;
    line-height: 1.14;
  }

  .cookie-consent__actions {
    min-width: 176px;
    gap: 8px;
  }

  .cookie-consent__btn {
    min-height: 32px;
    padding-inline: 8px;
    font-size: 7.4px;
    letter-spacing: 0.05em;
  }
}

@media (min-width: 641px) and (max-width: 1180px) and (max-height: 820px) and (orientation: landscape) {
  .cookie-consent p:not(.cookie-consent__title) {
    display: none;
  }
}

@media (min-width: 861px) and (max-width: 1180px) and (orientation: landscape) {
  .site-header__nav {
    gap: 18px;
  }

  .site-header__nav a {
    font-size: 12px;
  }

  .site-header__cta-desktop {
    padding-inline: 22px;
  }

  .hero-booking {
    width: min(880px, 100%);
  }

  .walkthrough-layout {
    grid-template-columns: minmax(286px, 0.46fr) minmax(520px, 1fr);
    gap: 30px;
  }

  .walkthrough-video-shell {
    width: min(72svh, 56vw, 680px);
  }

  .guide-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  }

  .guide-access {
    grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  }

  .guide-steps li {
    font-size: 11px;
  }
}

/* ══════════════════════════════════════════════════════════
   Mobile walkthrough, reviews and guide typography.
══════════════════════════════════════════════════════════ */
.reviews-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 48px;
}

.reviews-rating-row .reviews-rating {
  margin-bottom: 0;
}

.reviews-swipe-cue {
  display: none;
  flex: 0 0 auto;
  color: var(--terra);
}

.reviews-swipe-cue svg {
  display: block;
  width: 68px;
  height: 32px;
  overflow: visible;
}

.reviews-swipe-cue__line,
.reviews-swipe-cue__arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.5;
}

.reviews-swipe-cue__dot {
  fill: var(--cream);
  stroke: currentColor;
  stroke-width: 1.4;
  transform-origin: center;
  animation: reviewsSwipeDot 1.65s ease-in-out infinite;
}

.reviews-swipe-cue__arrow {
  opacity: 0.72;
  animation: reviewsSwipeArrow 1.65s ease-in-out infinite;
}

.guide-copy h2,
.guide-access__intro h3 {
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.guide-copy h2 span {
  display: block;
  white-space: nowrap;
}

/* Keep the location name as one editorial line in the guide lockup. */
.guide-copy h2 {
  font-size: 46px;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .guide-copy h2 {
    font-size: 36px;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .guide-copy h2 {
    font-size: 43px;
  }
}

@media (max-width: 640px) {
  .guide-copy h2 {
    font-size: 30px;
  }
}

@keyframes reviewsSwipeDot {
  0%, 100% {
    opacity: 0.35;
    transform: translateX(0);
  }
  42%, 72% {
    opacity: 1;
    transform: translateX(-20px);
  }
}

@keyframes reviewsSwipeArrow {
  0%, 100% {
    opacity: 0.35;
  }
  42%, 72% {
    opacity: 0.85;
  }
}

@media (max-width: 640px) and (orientation: portrait) {
  .walkthrough-scroll {
    height: 420svh;
    min-height: 420svh;
  }

  .walkthrough-sticky,
  body.is-walkthrough-focus .walkthrough-sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    height: 100svh;
    padding: max(8px, env(safe-area-inset-top)) 0 calc(84px + env(safe-area-inset-bottom));
    align-items: start;
    overflow: hidden;
  }

  .walkthrough-layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
    padding-inline: 10px;
  }

  .walkthrough-copy {
    display: contents;
  }

  .walkthrough-copy .label,
  .walkthrough-copy h2,
  .walkthrough-lead {
    display: none;
  }

  .walkthrough-stage {
    order: 1;
    width: 100%;
    display: grid;
    justify-items: center;
  }

  .walkthrough-video-shell {
    width: min(95vw, 420px) !important;
    margin: 0 auto;
    padding: 6px;
  }

  .walkthrough-video-controls {
    top: 8px;
    width: calc(100% - 16px);
    grid-template-columns: minmax(74px, 1fr) auto minmax(74px, 1fr);
    gap: 5px;
  }

  .walkthrough-video-controls__link,
  .walkthrough-play {
    min-height: 28px;
    padding-inline: 8px;
    font-size: 7px;
    letter-spacing: 0.055em;
  }

  .walkthrough-play {
    min-width: 52px;
  }

  .walkthrough-play__icon {
    margin-right: 5px;
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 7px;
  }

  .walkthrough-video-hint {
    bottom: 8px;
    min-width: 0;
    min-height: 24px;
    gap: 5px;
    padding: 0 8px;
    font-size: 7px;
    letter-spacing: 0.07em;
    line-height: 1;
  }

  .walkthrough-video-hint__scroll {
    flex-basis: 11px;
    width: 11px;
    height: 17px;
  }

  .walkthrough-video-hint__scroll span {
    top: 3px;
    width: 2px;
    height: 4px;
  }

  .walkthrough-zone-card {
    order: 2;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 13px 14px 13px 34px;
  }

  .walkthrough-zone-card::before {
    inset: 13px auto 13px 16px;
    width: 2px;
  }

  .walkthrough-zone-card__kicker {
    margin-bottom: 6px;
    font-size: 8.5px;
    letter-spacing: 0.16em;
  }

  .walkthrough-zone-card h3 {
    margin-bottom: 5px;
    font-size: clamp(24px, 8vw, 31px);
    line-height: 1.06;
    letter-spacing: -0.022em;
  }

  .walkthrough-zone-card p {
    font-size: 11px;
    line-height: 1.3;
  }

  .walkthrough-route {
    order: 3;
    width: 100%;
    padding: 6px;
  }

  .walkthrough-route__steps {
    width: 100%;
    justify-content: center;
    gap: 5px;
  }

  .walkthrough-route__dot {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .walkthrough-route__dot span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none;
    font-size: 8px;
    line-height: 1;
  }

  .walkthrough-route__dot::after {
    width: 4px;
  }

  .walkthrough-actions {
    order: 4;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
  }

  .walkthrough-skip {
    min-height: 34px;
    font-size: 8.5px;
  }

  .reviews-rating-row {
    margin-bottom: 22px;
  }

  .reviews-swipe-cue {
    display: block;
  }

  .reviews-section::after {
    display: none !important;
    content: none;
  }

  .reviews-section {
    overflow: hidden;
  }

  .reviews-section .container {
    padding-right: var(--gap);
  }

  .reviews-grid {
    display: flex;
    gap: 12px;
    width: calc(100% - var(--gap));
    margin: 0 0 0 var(--gap);
    padding: 0 0 10px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card,
  .reviews-platform-card {
    flex: 0 0 calc(100vw - (var(--gap) * 2) - 34px);
    min-width: calc(100vw - (var(--gap) * 2) - 34px);
    max-width: calc(100vw - (var(--gap) * 2) - 34px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x pan-y;
  }

  .review-card * {
    -webkit-user-drag: none;
  }

  .guide-copy h2 {
    line-height: 1.12;
    letter-spacing: -0.018em;
  }

  .guide-access__intro h3,
  .guide-feature strong {
    letter-spacing: -0.012em;
  }
}

/* ══════════════════════════════════════════════════════════
   Mobile walkthrough, reviews and bottom CTA adjustments.
══════════════════════════════════════════════════════════ */
@media (max-width: 640px) and (orientation: portrait) {
  .walkthrough-section {
    overflow: visible;
  }

  .section-divider {
    padding: 14px 0 8px;
  }

  .section-divider img {
    width: 34px;
    height: 34px;
  }

  .stats-bar {
    padding-top: 0;
  }

  .stats-bar::before {
    display: none;
    content: none;
  }

  .stat {
    min-height: clamp(128px, 32vw, 148px);
    padding: clamp(16px, 4.2vw, 20px) clamp(18px, 5.6vw, 24px);
    align-content: start;
  }

  .stat__num {
    gap: 3px;
    font-size: clamp(34px, 10.2vw, 44px);
    letter-spacing: -0.052em;
    line-height: 0.98;
  }

  .stat__num sup {
    font-size: 0.32em;
    letter-spacing: 0;
  }

  .stat__label {
    max-width: 16ch;
    margin-top: 8px;
    font-size: clamp(12px, 3.35vw, 13.5px);
    line-height: 1.32;
    letter-spacing: 0.02em;
  }

  .walkthrough-scroll {
    height: auto;
    min-height: 0;
  }

  .walkthrough-sticky,
  body.is-walkthrough-focus .walkthrough-sticky {
    position: relative;
    top: 0;
    height: auto;
    min-height: 0;
    padding: 22px 0 28px;
    overflow: visible;
  }

  .walkthrough-layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 7px;
    width: 100%;
    height: auto;
    padding-inline: 10px;
  }

  .walkthrough-copy {
    display: contents;
  }

  .walkthrough-copy .label {
    order: 1;
    display: block;
    margin: 0;
    font-size: 8px;
    line-height: 1.1;
    letter-spacing: 0.18em;
  }

  .walkthrough-copy h2 {
    order: 2;
    display: block;
    max-width: 100%;
    margin: 0;
    font-size: clamp(26px, 7.8vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.018em;
  }

  .walkthrough-lead {
    order: 3;
    display: block;
    max-width: 100%;
    margin: 0 0 1px;
    font-size: clamp(11.5px, 3.05vw, 12.5px);
    line-height: 1.32;
    letter-spacing: 0.004em;
  }

  .walkthrough-stage {
    order: 4;
    width: 100%;
    display: grid;
    justify-items: center;
  }

  .walkthrough-video-shell {
    width: min(95vw, 430px) !important;
    margin: 0 auto;
    padding: 5px;
    border-color: rgba(39,41,31,0.10);
    box-shadow: 0 14px 34px rgba(39,41,31,0.12);
  }

  .walkthrough-video-shell::after {
    content: none !important;
    display: none !important;
  }

  .walkthrough-video-controls {
    top: 6px;
    left: 6px;
    right: 6px;
    width: auto;
    transform: none;
    grid-template-columns: minmax(94px, 1fr) auto minmax(94px, 1fr);
    gap: 6px;
  }

  .walkthrough-video-controls__link,
  .walkthrough-play {
    min-height: 28px;
    padding-inline: 7px;
    font-size: 6.5px;
    line-height: 1;
    letter-spacing: 0.055em;
    border-color: rgba(245,241,232,0.22);
    background: rgba(35,39,30,0.54);
    box-shadow: 0 8px 18px rgba(35,39,30,0.16);
    backdrop-filter: blur(10px);
  }

  .walkthrough-play {
    min-width: 56px;
    border-color: var(--terra);
    background: var(--terra);
    box-shadow: 0 8px 18px rgba(176,90,50,0.2);
  }

  .walkthrough-play__icon {
    margin-right: 5px;
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 7px;
  }

  .walkthrough-video-hint {
    bottom: 6px;
    min-width: 0;
    min-height: 20px;
    gap: 5px;
    padding: 0 7px;
    font-size: 6.4px;
    line-height: 1;
    letter-spacing: 0.07em;
  }

  .walkthrough-video-hint__scroll {
    flex: 0 0 8px;
    width: 8px;
    height: 12px;
    border-width: 1px;
  }

  .walkthrough-video-hint__scroll span {
    top: 3px;
    width: 2px;
    height: 3px;
  }

  .walkthrough-zone-card {
    order: 5;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 12px 13px 12px 32px;
  }

  .walkthrough-zone-card::before {
    inset: 12px auto 12px 16px;
    width: 2px;
  }

  .walkthrough-zone-card__kicker {
    margin-bottom: 5px;
    font-size: 8px;
    line-height: 1.1;
    letter-spacing: 0.16em;
  }

  .walkthrough-zone-card h3 {
    margin-bottom: 4px;
    font-size: clamp(24px, 7.3vw, 30px);
    line-height: 1.06;
    letter-spacing: -0.014em;
  }

  .walkthrough-zone-card p {
    font-size: clamp(11.5px, 3.15vw, 12.5px);
    line-height: 1.32;
    letter-spacing: 0.002em;
  }

  .walkthrough-route {
    order: 6;
    width: 100%;
    padding: 6px;
  }

  .walkthrough-route__steps {
    width: 100%;
    justify-content: center;
    gap: 5px;
  }

  .walkthrough-route__dot {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .walkthrough-actions {
    order: 7;
    width: 100%;
    margin: 0;
  }

  .walkthrough-skip {
    min-height: 34px;
    font-size: 8.5px;
    line-height: 1;
  }

  .reviews-swipe-cue {
    display: block;
    color: var(--terra);
  }

  .reviews-swipe-cue svg {
    width: 58px;
    height: 28px;
  }

  .reviews-grid {
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x pan-y;
  }

  .review-card,
  .reviews-platform-card {
    opacity: 1 !important;
    transform: translateZ(0);
    transition: none !important;
    animation: none !important;
    touch-action: pan-x;
    -webkit-user-select: none;
    user-select: none;
  }

  .review-card * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    -webkit-user-drag: none;
    user-select: none;
  }

  .guide-copy h2 {
    line-height: 1.16;
    letter-spacing: -0.008em;
  }

  .guide-access__intro h3,
  .guide-feature strong {
    letter-spacing: 0;
  }

  .mobile-cta-bar {
    min-height: 68px;
    height: auto;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    align-items: center;
  }

  .mobile-cta-bar__tel,
  .mobile-cta-bar__btn {
    min-height: 44px;
    height: 44px;
    align-items: center;
  }
}

@media (max-width: 374px) and (orientation: portrait) {
  .walkthrough-copy h2 {
    font-size: clamp(25px, 8vw, 29px);
  }

  .walkthrough-lead {
    font-size: 11.2px;
    line-height: 1.28;
  }

  .walkthrough-video-controls {
    top: 8px;
    left: 8px;
    right: 8px;
    grid-template-columns: minmax(84px, 1fr) auto minmax(84px, 1fr);
    gap: 5px;
  }

  .walkthrough-video-controls__link,
  .walkthrough-play {
    min-height: 28px;
    padding-inline: 6px;
    font-size: 6.2px;
  }

  .walkthrough-video-hint {
    bottom: 8px;
  }

  .walkthrough-zone-card h3 {
    font-size: 24px;
  }
}

/* ══════════════════════════════════════════════════════════
   Mobile modal overflow, menu and date picker adjustments.
══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
    touch-action: pan-x pan-y;
  }

  input,
  select,
  textarea,
  button,
  .pratum-select__button {
    font-size: max(16px, 1rem);
  }

  .site-header {
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 1900;
    height: calc(100svh - var(--header-h));
    max-height: calc(100svh - var(--header-h));
    overflow-x: hidden;
    overflow-y: auto;
    padding: 26px max(18px, env(safe-area-inset-left)) calc(34px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-right));
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  .mobile-nav .btn {
    min-height: 54px;
    margin-top: 22px;
    margin-bottom: 0;
    padding: 0 18px;
    justify-content: center;
    line-height: 1 !important;
    border-color: transparent;
    box-shadow: inset 0 0 0 2px var(--terra);
    overflow: visible;
  }

  body.is-mobile-nav-open .mobile-cta-bar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .hero-date-picker {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: max(78px, calc(env(safe-area-inset-top) + 58px)) !important;
    width: min(320px, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    max-height: min(392px, calc(100svh - 96px)) !important;
    padding: 12px !important;
    transform: translateX(-50%) !important;
    overflow: auto !important;
    overscroll-behavior: contain;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }

  .hero-date-picker__head {
    min-height: 34px;
    margin-bottom: 8px;
  }

  .hero-date-picker__title {
    font-size: 15px;
    line-height: 1.1;
  }

  .hero-date-picker__nav {
    width: 32px;
    height: 32px;
  }

  .hero-date-picker__weekdays {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .hero-date-picker__grid {
    gap: 3px;
  }

  .hero-date-picker__day {
    min-width: 0;
    width: 100%;
    height: 32px;
    min-height: 32px;
    font-size: 14px;
  }

  .datepicker,
  .datepicker-dropdown {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: max(78px, calc(env(safe-area-inset-top) + 58px)) !important;
    width: min(320px, calc(100vw - 24px)) !important;
    min-width: 0 !important;
    max-width: calc(100vw - 24px) !important;
    padding: 10px !important;
    transform: translateX(-50%) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .datepicker table {
    width: 100% !important;
    table-layout: fixed !important;
  }

  .datepicker table tr th,
  .datepicker table tr td {
    width: auto !important;
    height: 32px !important;
    min-width: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 32px !important;
  }

  .modal-backdrop.open,
  .guide-modal-backdrop.open {
    align-items: stretch;
    justify-content: stretch;
    inset: 0;
    width: 100vw;
    height: 100svh;
    min-height: 100svh;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .booking-modal {
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: auto;
    min-height: 100svh;
    max-height: none;
    overflow: visible;
    margin: 0;
    border-radius: 0;
    border: 0;
    box-sizing: border-box;
  }

  .modal-close.booking-modal__close {
    position: fixed;
    top: max(10px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    float: right;
    width: 48px;
    height: 48px;
    margin: 0;
    z-index: 2050;
  }

  .booking-modal__brand {
    height: auto;
    min-height: 274px;
    overflow: hidden;
  }

  .booking-modal__brand-overlay {
    min-height: 274px;
    padding: 24px 18px 18px;
    box-sizing: border-box;
  }

  .booking-modal__logo {
    width: 142px;
    margin-bottom: 38px;
  }

  .booking-modal__eyebrow {
    margin-bottom: 9px;
    font-size: 10px;
  }

  .booking-modal__brand h3 {
    max-width: 100%;
    margin-bottom: 10px;
    font-size: clamp(31px, 10.6vw, 42px);
    line-height: 0.96;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
  }

  .booking-modal__brand p {
    max-width: 30ch;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.42;
  }

  .booking-modal__chips {
    gap: 6px;
  }

  .booking-modal__chips span {
    min-height: 28px;
    padding-inline: 9px;
    font-size: 9px;
  }

  .booking-modal__form {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 18px 14px 16px;
    overflow: visible;
    box-sizing: border-box;
  }

  .booking-modal__form-head {
    max-width: none;
    margin-bottom: 12px;
    padding-right: 0;
  }

  .booking-modal .booking-modal__widget,
  .booking-modal .modal-body {
    width: 100%;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    overscroll-behavior: auto;
    box-sizing: border-box;
  }

  .booking-modal__widget-root,
  .booking-modal__widget-root.has-booking-form {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 10px;
    overflow: visible !important;
    box-sizing: border-box;
  }

  .booking-modal__widget-root *,
  .booking-modal__widget-root *::before,
  .booking-modal__widget-root *::after {
    max-width: 100%;
    box-sizing: border-box;
  }

  .booking-modal__widget-root .pratum-native-select,
  .guide-form .pratum-native-select {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .booking-modal__widget-root .rc-search_form,
  .booking-modal__widget-root .rc-search_form__dates_wrapper,
  .booking-modal__widget-root .rc-flat,
  .booking-modal__widget-root .rc-flat > .rc-row:first-child,
  .booking-modal__widget-root .rc-flat > .rc-row:first-child > .rc-col-sm-8,
  .booking-modal__widget-root .rc-modal form,
  .booking-modal__widget-root .rc-modal .rc-booking_form__dates > .rc-row,
  .booking-modal__widget-root .rc-modal form > .rc-row:not(.rc-booking_form__price):not(.rc-booking_form__pay_info) {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .booking-modal__widget-root .rc-search_form__item,
  .booking-modal__widget-root .rc-date,
  .booking-modal__widget-root .rc-input-group,
  .booking-modal__widget-root .rc-form-group,
  .booking-modal__widget-root .rc-form-control,
  .booking-modal__widget-root .pratum-select,
  .booking-modal__widget-root .pratum-select__button {
    width: 100% !important;
    min-width: 0 !important;
  }

  .booking-modal__widget-root .rc-input-group {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 52px !important;
    align-items: stretch !important;
    gap: 0 !important;
  }

  .booking-modal__widget-root .rc-input-group .rc-form-control {
    grid-column: 1 !important;
    border-right: 0 !important;
  }

  .booking-modal__widget-root .rc-form-control,
  .booking-modal__widget-root .pratum-select__button,
  .guide-form input,
  .guide-form select,
  .guide-form .pratum-select__button {
    height: 52px !important;
    min-height: 52px !important;
    padding-left: 14px !important;
    padding-right: 46px !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }

  .booking-modal__widget-root label,
  .booking-modal__widget-root .rc-modal label {
    margin-bottom: 7px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.14em !important;
    white-space: normal !important;
  }

  .booking-modal__widget-root .rc-input-group-addon {
    grid-column: 2 !important;
    width: 52px !important;
    min-width: 52px !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: static !important;
    transform: none !important;
    border-left: 1px solid rgba(39,41,31,0.14) !important;
  }

  .booking-modal__widget-root .rc-input-group-addon .site-icon,
  .booking-modal__widget-root .rc-input-group-addon svg,
  .booking-modal__widget-root .rc-input-group-addon img {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
  }

  .booking-modal__widget-root .rc-flat {
    padding: 16px !important;
    gap: 12px !important;
  }

  .booking-modal__widget-root .rc-flat__info__adress {
    font-size: clamp(27px, 8.2vw, 34px) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
  }

  .booking-modal__widget-root .rc-flat__price {
    justify-self: start !important;
    align-self: start !important;
    width: auto !important;
    margin: 4px 0 0 !important;
    text-align: left !important;
  }

  .booking-modal__widget-root .rc-flat__price__value {
    font-size: clamp(46px, 14vw, 58px) !important;
    line-height: 0.95 !important;
  }

  .booking-modal__widget-root .rc-flat__price__cur {
    display: block !important;
    margin-top: 6px !important;
    font-size: 14px !important;
    line-height: 1.15 !important;
  }

  .booking-modal__widget-root .rc-flat__book {
    width: 100% !important;
    justify-self: stretch !important;
  }

  .booking-modal__widget-root .rc-modal,
  .booking-modal__widget-root .rc-modal .rc-modal-dialog,
  .booking-modal__widget-root .rc-modal .rc-modal-content,
  .booking-modal__widget-root .rc-modal .rc-modal-body {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .booking-modal__widget-root .rc-modal .rc-booking_form__price,
  .booking-modal__widget-root .rc-modal .rc-booking_form__pay_info {
    padding: 12px 13px !important;
  }

  .booking-modal__widget-root .rc-booking-price__amount {
    display: block !important;
    color: var(--terra) !important;
    font-family: var(--ff-serif) !important;
    font-size: clamp(42px, 13vw, 56px) !important;
    line-height: 1 !important;
    letter-spacing: -0.035em !important;
  }

  .booking-modal__widget-root .rc-modal .rc-checkbox label {
    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 10px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.06em !important;
  }

  .booking-modal__widget-root .rc-modal .rc-checkbox input {
    width: 22px;
    height: 22px;
  }

  .booking-modal__widget-root .rc-modal .rc-modal-footer {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .booking-modal__widget-root .rc-modal .rc-btn-default,
  .booking-modal__widget-root .rc-modal .rc-modal-footer .rc-flat__book__btn,
  .booking-modal__widget-root .rc-search_form__search_btn,
  .booking-modal__widget-root .rc-flat__book__btn {
    width: 100% !important;
    min-height: 48px !important;
    font-size: 11px !important;
    line-height: 1 !important;
  }

  body.rc-modal-open #booking-modal.open {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .booking-modal__contact {
    margin: 14px 0 0;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
    font-size: 12px;
    line-height: 1.45;
  }

  .guide-modal {
    width: 100vw;
    max-width: 100vw;
    min-height: 100svh;
    max-height: none;
    margin: 0;
    padding: max(24px, calc(env(safe-area-inset-top) + 14px)) 16px calc(24px + env(safe-area-inset-bottom));
    border: 0;
    border-radius: 0;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
  }

  .guide-modal *,
  .guide-modal *::before,
  .guide-modal *::after {
    max-width: 100%;
    box-sizing: border-box;
  }

  .guide-modal__close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
    z-index: 2050;
  }

  .guide-modal__head {
    max-width: none;
    margin-bottom: 18px;
    padding-right: 48px;
  }

  .guide-modal__head h3 {
    font-size: clamp(30px, 9.4vw, 38px);
    line-height: 1.06;
    letter-spacing: -0.026em;
  }

  .guide-modal__head p {
    font-size: 14px;
    line-height: 1.48;
  }

  .guide-form,
  .guide-form__grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .guide-form label {
    min-width: 0;
    font-size: 10px;
    line-height: 1.1;
  }

  .guide-form .pratum-select__icon,
  .booking-modal__widget-root .pratum-select__icon {
    right: 15px;
  }

  .guide-form .btn {
    width: 100%;
    min-height: 48px;
    justify-self: stretch;
  }
}

/* Keep custom select source elements from creating hidden horizontal scroll.
   RealtyCalendar styles are loaded with high specificity, so this must stay last. */
.pratum-native-select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 1px !important;
  max-height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.pratum-booking-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin: 0 0 12px;
  padding: 0 14px;
  border: 1px solid rgba(62,74,57,0.22);
  border-radius: var(--radius);
  background: rgba(245,241,232,0.72);
  color: var(--sage);
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-hover), border-color var(--transition-hover), color var(--transition-hover), transform var(--transition-hover);
}

.pratum-booking-back:hover,
.pratum-booking-back:focus-visible {
  border-color: var(--terra);
  color: var(--cream);
  background: var(--terra);
  outline: none;
}

/* Final mobile cascade guard for modals, booking card and walkthrough sizing. */
@media (max-width: 640px) {
  .modal-backdrop.open,
  .guide-modal-backdrop.open {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
    background: rgba(38,38,31,0.78);
  }

  .booking-modal,
  .guide-modal {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    max-height: 100dvh;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-sizing: border-box;
  }

  .booking-modal {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .booking-modal__form {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
  }

  .booking-modal .booking-modal__widget,
  .booking-modal .modal-body {
    flex: 1 1 auto;
    min-height: 0 !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .modal-close.booking-modal__close {
    position: fixed;
    top: max(10px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    z-index: 2300;
  }

  .modal-close.guide-modal__close,
  .guide-modal__close {
    position: sticky;
    top: max(10px, env(safe-area-inset-top));
    z-index: 2300;
    margin-left: auto;
    margin-bottom: -44px;
  }

  .guide-modal {
    overflow-x: hidden;
    overflow-y: auto;
    padding: max(26px, calc(env(safe-area-inset-top) + 16px)) 16px calc(26px + env(safe-area-inset-bottom));
    -webkit-overflow-scrolling: touch;
  }

  .guide-modal__head h3 {
    max-width: 10.5ch;
    font-size: clamp(30px, 8.8vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.024em;
  }

  .guide-form input,
  .guide-form select,
  .guide-form .pratum-select,
  .guide-form .pratum-select__button,
  .booking-modal__widget-root .rc-search_form,
  .booking-modal__widget-root .rc-search_form__dates_wrapper,
  .booking-modal__widget-root .rc-search_form__item,
  .booking-modal__widget-root .rc-date,
  .booking-modal__widget-root .rc-input-group,
  .booking-modal__widget-root .rc-form-group,
  .booking-modal__widget-root .rc-form-control,
  .booking-modal__widget-root .pratum-select,
  .booking-modal__widget-root .pratum-select__button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .booking-modal__widget-root label,
  .booking-modal__widget-root .rc-modal label {
    margin-bottom: 4px !important;
  }

  .booking-modal__widget-root .rc-flat > .rc-row:first-child,
  .booking-modal__widget-root .rc-flat > .rc-row:first-child > .rc-col-sm-8 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(88px, auto) !important;
    gap: 12px !important;
    align-items: start !important;
  }

  .booking-modal__widget-root .rc-flat__info__adress {
    font-size: clamp(21px, 5.8vw, 25px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em !important;
  }

  .booking-modal__widget-root .rc-flat__price {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: start !important;
    min-width: 88px !important;
    margin: 2px 0 0 !important;
    text-align: right !important;
  }

  .booking-modal__widget-root .rc-flat__price__value {
    font-size: clamp(32px, 9.8vw, 42px) !important;
    line-height: 0.92 !important;
  }

  .booking-modal__widget-root .rc-flat__price__cur {
    margin-top: 1px !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
  }

  .booking-modal__widget-root .rc-flat > .rc-row:last-child {
    display: flex !important;
    justify-content: flex-end !important;
    margin-top: 12px !important;
  }

  .booking-modal__widget-root .rc-flat__book {
    width: auto !important;
    justify-content: flex-end !important;
  }

  .booking-modal__widget-root .rc-flat__book__btn {
    width: auto !important;
    min-width: 172px !important;
    padding-inline: 18px !important;
  }

  .booking-modal__widget-root .rc-booking-price__amount {
    font-size: clamp(40px, 11vw, 48px) !important;
    line-height: 0.96 !important;
  }

  .pratum-booking-back {
    position: sticky;
    top: 0;
    z-index: 4;
    width: 100%;
    margin-bottom: 10px;
    background: rgba(245,241,232,0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

@media (max-width: 640px) and (orientation: portrait) {
  .walkthrough-sticky,
  body.is-walkthrough-focus .walkthrough-sticky {
    padding: 48px 0 54px;
  }

  .walkthrough-layout {
    gap: 14px;
    padding-inline: var(--gap);
  }

  .walkthrough-copy h2 {
    font-size: clamp(36px, 10.2vw, 43px);
    line-height: 1.03;
  }

  .walkthrough-lead,
  .walkthrough-zone-card p {
    font-size: 16px;
    line-height: 1.45;
  }

  .walkthrough-video-shell {
    width: 96vw !important;
    max-width: 96vw !important;
    padding: 6px;
  }

  .walkthrough-stage {
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
  }

  .walkthrough-video-controls {
    top: 15px;
    left: 15px;
    right: 15px;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    gap: 8px;
  }

  .walkthrough-video-controls__link,
  .walkthrough-play {
    min-height: 32px;
    height: 32px;
    padding-inline: 8px;
    transform: none !important;
  }

  .walkthrough-video-controls__link {
    font-size: 7px;
  }

  .walkthrough-play {
    min-width: 72px;
    font-size: 8px;
  }

  .walkthrough-video-hint {
    bottom: 15px;
    min-height: 32px;
    height: 32px;
    gap: 7px;
    padding: 0 8px;
    font-size: 8px;
    align-items: center;
    line-height: 1;
  }

  .walkthrough-video-hint__scroll {
    flex-basis: 12px;
    width: 12px;
    height: 17px;
    overflow: hidden;
  }

  .walkthrough-video-hint > span:last-child {
    display: inline-flex;
    align-items: center;
    height: 17px;
    line-height: 1;
  }

  .walkthrough-video-hint__scroll span {
    top: 4px;
    left: 50%;
    height: 4px;
    animation: none;
  }

  .walkthrough-route__steps {
    justify-content: space-between;
    gap: 0;
  }

  .walkthrough-route__dot {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .walkthrough-route__dot::after {
    left: 100%;
    width: clamp(7px, 2.6vw, 12px);
  }

  .walkthrough-skip {
    min-height: 42px;
    font-size: 10px;
  }
}

/* Mobile interaction fixes: iOS scroll lock, tap states, guide fields. */
html.is-page-scroll-locked,
body.is-page-scroll-locked {
  overscroll-behavior: none;
}

.modal-close,
.guide-modal__close,
.review-modal__close,
.lightbox__close,
.burger,
.btn,
.mobile-cta-bar a {
  -webkit-tap-highlight-color: transparent;
}

.modal-close:focus:not(:focus-visible),
.guide-modal__close:focus:not(:focus-visible),
.review-modal__close:focus:not(:focus-visible),
.lightbox__close:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
.burger:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.modal-close:active,
.guide-modal__close:active,
.review-modal__close:active,
.lightbox__close:active {
  transform: none;
}

@media (max-width: 640px) {
  .burger {
    gap: 5px;
    background: transparent;
  }

  .burger:hover {
    background: transparent;
  }

  .burger span,
  .burger span:nth-child(3) {
    width: 26px;
    height: 2px;
    border-radius: 999px;
  }

  .mobile-nav {
    top: var(--header-h);
    bottom: 0;
    min-height: calc(100svh - var(--header-h));
    padding: 22px var(--gap) calc(30px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .modal-close.booking-modal__close,
  .modal-close.guide-modal__close {
    color: var(--cream);
    background: rgba(48, 60, 44, 0.96);
    border-color: rgba(245, 241, 232, 0.28);
  }

  .modal-close.booking-modal__close .site-icon,
  .modal-close.guide-modal__close .site-icon {
    color: var(--cream);
    stroke: currentColor;
  }

  .guide-form__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .guide-form label {
    min-width: 0;
  }

  .guide-form input[type="date"] {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    -webkit-appearance: none;
    appearance: none;
  }

  .guide-form input[type="date"]::-webkit-date-and-time-value {
    min-width: 0;
    text-align: left;
  }

  .guide-form input[type="date"]::-webkit-calendar-picker-indicator {
    margin: 0;
    padding: 0 2px;
  }

  .mobile-cta-bar {
    gap: 0;
    border-top: 0;
    box-shadow: 0 -10px 24px rgba(20, 24, 18, 0.22);
  }

  .mobile-cta-bar__btn,
  .mobile-cta-bar__tel {
    min-height: 42px;
  }

  .mobile-cta-bar__btn {
    border-radius: 0;
  }

  .mobile-cta-bar__tel {
    padding-left: 12px;
  }

  .walkthrough-copy .label,
  .faq-section .label {
    font-size: 10px;
    line-height: 1.1;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
  }

  .faq-section h2 {
    font-size: clamp(36px, 10.2vw, 43px);
    line-height: 1.03;
    font-weight: 400;
  }
}

/* Final mobile menu, booking and walkthrough containment for iPhone Safari. */
@media (max-width: 640px) {
  body.is-mobile-nav-open .site-header {
    background: var(--cream);
    border-bottom-color: rgba(129,136,122,0.16);
    box-shadow: 0 8px 24px rgba(38,38,31,0.1);
  }

  body.is-mobile-nav-open .site-header__logo img {
    filter:
      brightness(0)
      saturate(100%)
      invert(25%)
      sepia(12%)
      saturate(704%)
      hue-rotate(57deg)
      brightness(92%)
      contrast(86%);
  }

  body.is-mobile-nav-open .site-header .burger[aria-expanded="true"] span,
  body.is-mobile-nav-open .burger span {
    background: var(--ink) !important;
  }

  .mobile-nav {
    background: var(--cream);
    border-bottom: 1px solid rgba(129,136,122,0.16);
    box-shadow: 0 8px 24px rgba(38,38,31,0.1);
  }

  .mobile-nav a {
    color: var(--ink);
    border-bottom-color: rgba(129,136,122,0.12);
  }

  .mobile-nav a:hover,
  .mobile-nav a:active {
    color: var(--terra);
  }

  .mobile-nav .btn--primary {
    color: var(--ink);
    border-color: var(--terra);
    background: transparent;
  }

  .mobile-nav .btn--primary:hover,
  .mobile-nav .btn--primary:active {
    color: var(--cream);
    border-color: var(--terra);
    background: var(--terra);
  }

  .booking-modal .booking-modal__widget,
  .booking-modal .modal-body {
    padding-bottom: max(92px, calc(env(safe-area-inset-bottom) + 92px)) !important;
    scroll-padding-bottom: max(92px, calc(env(safe-area-inset-bottom) + 92px));
  }

  .booking-modal__widget-root .rc-search_form__search_btn,
  .booking-modal__widget-root .rc-flat__book__btn,
  .booking-modal__widget-root .rc-modal .rc-modal-footer .rc-flat__book__btn {
    min-height: 48px !important;
  }

  #walkthrough,
  .walkthrough-sticky,
  .walkthrough-layout,
  .walkthrough-copy,
  .walkthrough-stage {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .walkthrough-layout {
    width: 100%;
    padding-inline: var(--gap);
  }

  .walkthrough-copy,
  .walkthrough-copy h2,
  .walkthrough-lead {
    width: 100%;
    max-width: 100%;
  }

  .walkthrough-copy h2,
  .walkthrough-lead,
  .walkthrough-zone-card p {
    overflow-wrap: anywhere;
  }

  .walkthrough-video-shell {
    contain: layout paint;
  }

  .walkthrough-video-controls {
    z-index: 3;
  }
}

/* Open mobile menu keeps the original light header with visible green logo. */
@media (max-width: 640px) {
  body.is-mobile-nav-open .site-header.site-header--transparent:not(.scrolled) {
    background: var(--cream) !important;
    border-bottom-color: rgba(129,136,122,0.16) !important;
  }

  body.is-mobile-nav-open .site-header.site-header--transparent:not(.scrolled) .site-header__logo img,
  body.is-mobile-nav-open .site-header__logo img {
    filter:
      brightness(0)
      saturate(100%)
      invert(25%)
      sepia(12%)
      saturate(704%)
      hue-rotate(57deg)
      brightness(92%)
      contrast(86%) !important;
    opacity: 1 !important;
  }

  body.is-mobile-nav-open .site-header.site-header--transparent:not(.scrolled) .burger span,
  body.is-mobile-nav-open .site-header .burger[aria-expanded="true"] span {
    background: var(--ink) !important;
  }
}

/* Real iPhone adjustments: avoid clipped booking header text and optical CTA border drift. */
@media (max-width: 640px) {
  .booking-modal__brand {
    min-height: 328px;
    height: auto;
    overflow: hidden;
  }

  .booking-modal__brand-overlay {
    min-height: 328px;
    padding: max(28px, calc(env(safe-area-inset-top) + 18px)) 18px 20px;
  }

  .booking-modal__logo {
    width: 136px;
    margin-bottom: 26px;
  }

  .booking-modal__eyebrow {
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .booking-modal__brand h3 {
    margin-bottom: 12px;
    font-size: clamp(32px, 10vw, 40px);
    line-height: 1.04;
    letter-spacing: 0;
  }

  .booking-modal__brand p {
    max-width: 28ch;
    margin-bottom: 0;
    line-height: 1.38;
  }

  .booking-modal__chips {
    display: none;
  }

  .mobile-nav a.btn,
  .mobile-nav .btn,
  .mobile-nav .btn--primary {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 44px;
    margin-top: 20px;
    padding: 0 18px;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    background: transparent;
    line-height: 1 !important;
  }

  .mobile-nav a.btn::before,
  .mobile-nav .btn::before,
  .mobile-nav .btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--terra);
    border-radius: 0;
    pointer-events: none;
    transform: translateZ(0);
  }

  .mobile-nav a.btn:hover::before,
  .mobile-nav a.btn:active::before,
  .mobile-nav .btn--primary:hover::before,
  .mobile-nav .btn--primary:active::before {
    border-color: var(--terra);
  }
}

/* Final mobile header/menu guard for real iPhone Safari. */
@media (max-width: 640px) {
  .site-header {
    min-height: var(--header-h);
    align-items: center;
    overflow: visible;
  }

  .site-header__logo {
    display: flex;
    align-items: center;
    height: 42px;
    overflow: visible;
  }

  .site-header__logo img {
    display: block;
    width: auto;
    height: 32px;
    max-height: 32px;
    object-fit: contain;
  }

  .booking-modal__brand {
    min-height: 350px;
  }

  .booking-modal__brand-overlay {
    min-height: 350px;
    justify-content: flex-end;
    padding-top: max(32px, calc(env(safe-area-inset-top) + 22px));
  }

  .booking-modal__logo {
    width: 132px;
    margin-bottom: 30px;
  }

  .booking-modal__brand h3 {
    max-width: 9.5ch;
    line-height: 1.06;
  }

  .booking-modal__brand p {
    display: block;
    max-width: 29ch;
    overflow: visible;
  }

  .mobile-nav a.btn,
  .mobile-nav .btn,
  .mobile-nav .btn--primary {
    min-height: 46px;
    margin-top: 22px;
    overflow: visible;
    color: var(--ink);
    text-align: center;
    text-decoration: none;
  }

  .mobile-nav a.btn {
    border-bottom: 0 !important;
  }

  .mobile-nav a.btn::before,
  .mobile-nav .btn::before,
  .mobile-nav .btn--primary::before {
    inset: 0;
    border-width: 1px;
    box-sizing: border-box;
  }
}

/* Keep the mobile header tap target above hero/modal helper layers. */
@media (max-width: 640px) {
  .site-header {
    z-index: 2100;
    pointer-events: auto;
  }

  .site-header__logo,
  .burger {
    position: relative;
    z-index: 2101;
    pointer-events: auto;
  }

  .burger {
    min-width: 46px;
    min-height: 46px;
    touch-action: manipulation;
  }

  .mobile-nav {
    z-index: 2000;
  }
}

/* Give booking hero copy visible breathing room at the bottom. */
@media (max-width: 640px) {
  .booking-modal__brand,
  .booking-modal__brand-overlay {
    min-height: 376px;
  }

  .booking-modal__brand-overlay {
    padding-bottom: 26px;
  }
}

/* Mobile menu close icon and walkthrough layout are stable on iPhone. */
@media (max-width: 640px) {
  .burger[aria-expanded="true"] {
    position: relative;
    gap: 0;
  }

  .burger[aria-expanded="true"] span {
    position: absolute;
    top: 50%;
    left: 9px;
    width: 28px !important;
    height: 2.5px;
    transform-origin: 50% 50%;
  }

  .burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg) !important;
  }

  .burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0) !important;
  }

  .burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg) !important;
  }

  #walkthrough {
    overflow-x: hidden;
  }

  #walkthrough .walkthrough-scroll {
    height: auto !important;
    min-height: 0 !important;
  }

  #walkthrough .walkthrough-sticky,
  body.is-walkthrough-focus #walkthrough .walkthrough-sticky {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding: clamp(72px, 17vw, 96px) 0 44px !important;
    overflow: visible !important;
  }

  #walkthrough .walkthrough-layout {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: auto !important;
    margin: 0;
    padding-inline: var(--gap) !important;
    gap: 18px;
    box-sizing: border-box;
  }

  body.is-walkthrough-focus .site-header {
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  #walkthrough .walkthrough-copy {
    display: contents !important;
  }

  #walkthrough .walkthrough-copy .label,
  #walkthrough .walkthrough-copy h2,
  #walkthrough .walkthrough-lead {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow-wrap: normal;
  }

  #walkthrough .walkthrough-copy .label {
    order: 1;
    margin-bottom: -4px;
  }

  #walkthrough .walkthrough-copy h2 {
    order: 2;
    margin-bottom: 0;
    font-size: clamp(44px, 13.2vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
  }

  #walkthrough .walkthrough-lead {
    order: 3;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.45;
  }

  #walkthrough .walkthrough-stage {
    order: 4;
    display: grid;
    justify-items: center;
    width: 100%;
    margin: 4px 0 0;
  }

  #walkthrough .walkthrough-video-shell {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 6px;
    box-sizing: border-box;
    contain: layout paint;
    touch-action: pan-y;
  }

  #walkthrough .walkthrough-video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  #walkthrough .walkthrough-video-controls {
    top: 6px;
    left: 6px;
    right: 6px;
    width: auto;
    transform: none;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 6px;
  }

  #walkthrough .walkthrough-video-controls__link,
  #walkthrough .walkthrough-play {
    min-height: 36px;
    padding-inline: 9px;
    font-size: 8px;
    letter-spacing: 0.06em;
  }

  #walkthrough .walkthrough-play {
    min-width: 72px;
  }

  #walkthrough .walkthrough-video-hint {
    bottom: 10px;
    min-height: 32px;
    padding: 0 12px;
    align-items: center;
    font-size: 9px;
    line-height: 1;
  }

  #walkthrough .walkthrough-zone-card {
    order: 5;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  #walkthrough .walkthrough-route {
    order: 6;
    width: 100%;
    box-sizing: border-box;
  }

  #walkthrough .walkthrough-actions {
    order: 7;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

/* Walkthrough matches regular sections; booking modal scrolls like guide modal on iPhone. */
@media (max-width: 640px) {
  #booking-modal.open {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  #booking-modal.open .booking-modal {
    height: auto !important;
    min-height: 100svh !important;
    max-height: none !important;
    overflow: visible !important;
  }

  #booking-modal.open .booking-modal__form {
    overflow: visible !important;
    min-height: 0 !important;
  }

  #booking-modal.open .booking-modal .booking-modal__widget,
  #booking-modal.open .booking-modal .modal-body {
    flex: 0 0 auto !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    -webkit-overflow-scrolling: auto;
  }

  #booking-modal.open .booking-modal__widget-root,
  #booking-modal.open .booking-modal__widget-root > div {
    min-height: 0 !important;
    overflow: visible !important;
  }

  #booking-modal.open .booking-modal__contact {
    padding-bottom: max(96px, calc(env(safe-area-inset-bottom) + 96px));
  }

  #walkthrough .walkthrough-sticky,
  body.is-walkthrough-focus #walkthrough .walkthrough-sticky {
    padding: var(--section-py) 0 44px !important;
  }

  #walkthrough .walkthrough-layout {
    max-width: var(--max-w);
    margin: 0 auto;
    padding-inline: var(--gap) !important;
    gap: 18px;
  }

  #walkthrough .walkthrough-copy .label {
    margin-bottom: 0;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  #walkthrough .walkthrough-copy h2 {
    font-size: clamp(28px, 4vw, 52px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0;
  }

  #walkthrough .walkthrough-lead {
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  #walkthrough .walkthrough-video-controls {
    top: 10px;
    left: 50%;
    right: auto;
    display: flex;
    justify-content: center;
    width: auto;
    transform: translateX(-50%);
    pointer-events: none;
  }

  #walkthrough .walkthrough-video-controls__link {
    display: none !important;
  }

  #walkthrough .walkthrough-play {
    min-width: 92px;
    min-height: 40px;
    padding-inline: 16px;
    font-size: 10px;
    letter-spacing: 0.08em;
    pointer-events: auto;
  }

  #walkthrough .walkthrough-video-hint {
    display: none !important;
  }

  #walkthrough .walkthrough-route__dot {
    pointer-events: none;
  }

  #walkthrough .walkthrough-zone-card {
    padding: 20px 20px 20px 42px;
  }

  #walkthrough .walkthrough-zone-card h3 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  #walkthrough .walkthrough-zone-card p {
    font-size: 16px;
    line-height: 1.55;
  }
}

/* Final mobile cleanup for booking widget and walkthrough playback-only mode. */
@media (max-width: 640px) {
  .section .label,
  .about-split__text .label,
  #walkthrough .walkthrough-copy .label,
  .faq-section .label {
    margin-bottom: 12px !important;
  }

  .about-split__text {
    padding: var(--section-py) var(--gap) !important;
  }

  #booking-modal.open .modal-close.booking-modal__close {
    position: fixed !important;
    top: max(12px, env(safe-area-inset-top)) !important;
    right: var(--gap) !important;
    z-index: 3600 !important;
  }

  #booking-modal.open .booking-modal {
    min-height: auto !important;
  }

  #booking-modal.open .booking-modal__brand {
    display: none !important;
  }

  #booking-modal.open .booking-modal__form {
    padding: 30px var(--gap) 0 !important;
  }

  #booking-modal.open .booking-modal__form-head {
    margin-bottom: 14px !important;
    padding-right: 58px !important;
  }

  #booking-modal.open .booking-modal .booking-modal__widget {
    min-height: 0 !important;
    padding-bottom: 0 !important;
  }

  #booking-modal.open .booking-modal__contact {
    margin-top: 18px !important;
  }

  .booking-modal__widget-root .rc-search_form,
  .booking-modal__widget-root .rc-search_form__dates_wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .booking-modal__widget-root .rc-search_form {
    gap: 14px !important;
  }

  .booking-modal__widget-root .rc-flat_list__wrapper,
  .booking-modal__widget-root .rc-flat_list {
    min-height: 0 !important;
    padding: 0 !important;
  }

  .booking-modal__widget-root .rc-flat_list__wrapper {
    margin-top: 14px !important;
  }

  .booking-modal__widget-root .rc-flat {
    display: grid !important;
    gap: 18px !important;
    min-height: 0 !important;
    margin: 14px 0 0 !important;
    padding: 22px 20px !important;
  }

  .booking-modal__widget-root .rc-flat > .rc-row:first-child,
  .booking-modal__widget-root .rc-flat > .rc-row:first-child > .rc-col-sm-8 {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .booking-modal__widget-root .rc-flat__info {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .booking-modal__widget-root .rc-flat__info__adress {
    max-width: 100% !important;
    margin: 0 !important;
    font-size: 26px !important;
    line-height: 1.12 !important;
  }

  .booking-modal__widget-root .rc-flat__info__services {
    display: block !important;
    margin-top: 14px !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .booking-modal__widget-root .rc-flat__price {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-items: baseline !important;
    justify-self: start !important;
    flex-direction: row !important;
    gap: 6px !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  .booking-modal__widget-root .rc-flat__price__value {
    font-size: 40px !important;
    line-height: 1 !important;
  }

  .booking-modal__widget-root .rc-flat__price__cur {
    display: inline-block !important;
    margin: 0 !important;
    font-size: 13px !important;
    line-height: 1.15 !important;
  }

  .booking-modal__widget-root .rc-flat > .rc-row:last-child {
    display: block !important;
    margin-top: 0 !important;
  }

  .booking-modal__widget-root .rc-flat__book,
  .booking-modal__widget-root .rc-flat__book__btn {
    width: 100% !important;
    min-width: 0 !important;
  }

  .booking-modal__widget-root.has-booking-form {
    padding: 0 !important;
    min-height: 0 !important;
  }

  .booking-modal__widget-root.has-booking-form .rc-modal form {
    padding-bottom: 20px !important;
  }

  #walkthrough .walkthrough-layout {
    max-width: var(--max-w) !important;
    padding-inline: var(--gap) !important;
  }

  #walkthrough .walkthrough-copy h2 {
    font-size: clamp(30px, 10vw, 40px) !important;
    line-height: 1.08 !important;
  }

  #walkthrough .walkthrough-lead {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  #walkthrough .walkthrough-zone-card,
  #walkthrough .walkthrough-route {
    display: none !important;
  }

  #walkthrough .walkthrough-actions {
    order: 5 !important;
    display: grid !important;
    width: 100% !important;
    margin: 0 !important;
  }

  #walkthrough .walkthrough-skip {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 48px !important;
    padding: 0 18px !important;
    line-height: 1 !important;
  }
}

/* Compact booking header, sticky close, and clean result card details. */
@media (max-width: 640px) {
  #booking-modal.open .modal-close.booking-modal__close {
    position: sticky !important;
    top: max(12px, env(safe-area-inset-top)) !important;
    right: auto !important;
    align-self: flex-end !important;
    flex: 0 0 auto !important;
    z-index: 3800 !important;
    margin: max(12px, env(safe-area-inset-top)) var(--gap) -56px auto !important;
  }

  #booking-modal.open .booking-modal__brand {
    display: block !important;
    flex: 0 0 220px !important;
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
  }

  #booking-modal.open .booking-modal__brand-overlay {
    min-height: 100% !important;
    padding: 26px var(--gap) 22px !important;
  }

  #booking-modal.open .booking-modal__logo {
    width: 142px !important;
    margin-bottom: auto !important;
  }

  #booking-modal.open .booking-modal__eyebrow {
    margin-bottom: 8px !important;
    font-size: 10px !important;
  }

  #booking-modal.open .booking-modal__brand h3 {
    max-width: 11ch !important;
    margin-bottom: 10px !important;
    font-size: 34px !important;
    line-height: 1 !important;
  }

  #booking-modal.open .booking-modal__brand p {
    display: none !important;
  }

  #booking-modal.open .booking-modal__chips {
    gap: 6px !important;
  }

  #booking-modal.open .booking-modal__chips span {
    min-height: 28px !important;
    padding: 0 9px !important;
    font-size: 10px !important;
  }

  #booking-modal.open .booking-modal__form {
    padding-top: 24px !important;
  }

  .booking-modal__widget-root .rc-flat__info__adress {
    font-size: 21px !important;
    line-height: 1.14 !important;
    letter-spacing: -0.015em !important;
  }

  .booking-modal__widget-root .rc-flat__info__services {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .booking-modal__widget-root .rc-flat__info__services svg,
  .booking-modal__widget-root .rc-flat__info__services img,
  .booking-modal__widget-root .rc-flat__info__services i,
  .booking-modal__widget-root .rc-flat__info__services .rc-icon,
  .booking-modal__widget-root .rc-flat__info__services [class*="icon"] {
    display: none !important;
  }
}

/* Booking form step spacing and inner padding. Walkthrough intentionally untouched. */
@media (max-width: 640px) {
  #booking-modal.open .booking-modal__widget-root.has-booking-form {
    padding: 16px !important;
  }

  #booking-modal.open .booking-modal__widget-root.has-booking-form .rc-modal form {
    gap: 14px !important;
    padding-bottom: 20px !important;
  }

  #booking-modal.open .booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates {
    display: grid !important;
    gap: 12px !important;
    margin: 0 !important;
  }

  #booking-modal.open .booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates > .rc-row,
  #booking-modal.open .booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates > .rc-row > [class*="rc-col"],
  #booking-modal.open .booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates > .rc-row > [class*="rc-col"] > .rc-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #booking-modal.open .booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates label,
  #booking-modal.open .booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates .rc-control-label {
    margin: 0 !important;
  }

  #booking-modal.open .booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates .rc-form-group,
  #booking-modal.open .booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates .rc-date,
  #booking-modal.open .booking-modal__widget-root.has-booking-form .rc-modal .rc-booking_form__dates .rc-input-group {
    margin: 0 !important;
  }
}

/* Desktop reviews width guard. */
.reviews-section > .container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gap);
}

/* Optical centering for mobile walkthrough Play/Pause button. */
@media (max-width: 640px) {
  #walkthrough .walkthrough-play {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 16px !important;
    line-height: 40px !important;
  }

  #walkthrough .walkthrough-play__icon {
    flex: 0 0 auto !important;
    align-self: center !important;
    margin: 0 !important;
    transform: translateY(0) !important;
  }

  #walkthrough .walkthrough-play__text {
    display: block !important;
    flex: 0 0 auto !important;
    height: auto !important;
    line-height: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Final tablet landscape guard: keep approved desktop/mobile untouched. */
@media (min-width: 641px) and (max-width: 1180px) and (orientation: landscape) {
  .hero-booking {
    width: min(820px, calc(100vw - 260px)) !important;
  }

  .hero__badge {
    display: flex !important;
    top: 68.5svh !important;
    right: var(--gap) !important;
    bottom: auto !important;
    width: min(170px, calc(100vw - var(--gap) * 2)) !important;
    padding: 12px 16px !important;
    gap: 4px !important;
  }

  .hero__badge-kicker {
    font-size: 9px !important;
    letter-spacing: 0.13em !important;
  }

  .hero__badge-score {
    font-size: 34px !important;
  }

  .hero__badge-scale {
    font-size: 11px !important;
  }

  .hero__badge-label {
    font-size: 11px !important;
    line-height: 1.2 !important;
  }

  .modal-backdrop.open,
  .guide-modal-backdrop.open {
    align-items: stretch !important;
    justify-content: stretch !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100svh !important;
    min-height: 100svh !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
  }

  #booking-modal.open .booking-modal,
  .guide-modal {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
  }

  #booking-modal.open .booking-modal {
    grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr) !important;
    overflow: hidden !important;
  }

  #booking-modal.open .modal-close.booking-modal__close,
  .modal-close.guide-modal__close,
  .guide-modal__close {
    position: fixed !important;
    top: max(22px, calc(env(safe-area-inset-top) + 18px)) !important;
    right: max(22px, calc(env(safe-area-inset-right) + 18px)) !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    z-index: 4200 !important;
  }

  #booking-modal.open .booking-modal__brand-overlay {
    padding: 34px 28px 26px !important;
  }

  #booking-modal.open .booking-modal__form {
    min-height: 0 !important;
    padding: 34px 28px 22px !important;
    overflow: hidden !important;
  }

  #booking-modal.open .booking-modal__form-head {
    padding-right: 62px !important;
  }

  #booking-modal.open .booking-modal .booking-modal__widget {
    min-height: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .guide-modal {
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) !important;
    min-width: 0 !important;
    padding: max(34px, calc(env(safe-area-inset-top) + 26px)) clamp(28px, 5vw, 56px) calc(30px + env(safe-area-inset-bottom)) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .guide-modal__head {
    width: min(980px, calc(100% - 88px)) !important;
    max-width: calc(100% - 88px) !important;
    margin-bottom: 18px !important;
    padding-right: 64px !important;
    box-sizing: border-box !important;
  }

  .guide-modal__head h3 {
    font-size: clamp(34px, 4.6vw, 48px) !important;
    line-height: 1 !important;
  }

  .guide-modal__head p {
    max-width: none !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
    white-space: nowrap !important;
  }

  .guide-form {
    width: min(980px, 100%) !important;
    max-width: 100% !important;
    align-self: start !important;
    gap: 12px !important;
  }

  .guide-form,
  .guide-form label,
  .guide-form__grid {
    min-width: 0 !important;
  }

  .guide-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .guide-form input,
  .guide-form select,
  .guide-form .pratum-select,
  .guide-form .pratum-select__button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .guide-form input[type="date"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    padding-right: 14px !important;
    font-size: 16px !important;
    line-height: 1 !important;
  }

  .guide-form input[type="date"]::-webkit-date-and-time-value {
    min-width: 0 !important;
    text-align: left !important;
  }

  .guide-form .pratum-native-select {
    width: 1px !important;
    max-width: 1px !important;
    height: 1px !important;
    max-height: 1px !important;
    padding: 0 !important;
  }

  .guide-form .btn {
    width: min(320px, 100%) !important;
  }
}

@media (min-width: 641px) and (max-width: 932px) and (orientation: landscape) {
  .hero-booking {
    width: min(640px, calc(100vw - 260px)) !important;
  }

  .hero__badge {
    top: calc(100svh - 132px) !important;
    width: min(146px, calc(100vw - var(--gap) * 2)) !important;
    padding: 8px 10px !important;
  }

  .hero__badge-label {
    display: none !important;
  }

  .hero__badge-score {
    font-size: 30px !important;
  }

  .hero__badge-scale {
    font-size: 10px !important;
  }
}

@media (min-width: 761px) and (max-width: 932px) and (max-height: 500px) and (orientation: landscape) {
  .hero__badge {
    top: calc(100svh - 123px) !important;
  }
}

@media (min-width: 641px) and (max-width: 760px) and (orientation: landscape) {
  .hero-booking {
    width: min(640px, calc(100vw - var(--gap) * 2)) !important;
  }

  .hero__badge {
    display: none !important;
  }

  .guide-form__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .guide-modal__head p {
    white-space: normal !important;
  }
}

/* Portrait tablets use the full viewport with the booking brand above the form. */
@media (min-width: 641px) and (max-width: 1180px) and (orientation: portrait) {
  .modal-backdrop.open,
  .guide-modal-backdrop.open {
    align-items: stretch !important;
    justify-content: stretch !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100svh !important;
    min-height: 100svh !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }

  #booking-modal.open .booking-modal,
  .guide-modal {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100svh !important;
    min-height: 100svh !important;
    max-height: 100svh !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
  }

  #booking-modal.open .booking-modal {
    grid-template-columns: 1fr !important;
    grid-template-rows: minmax(214px, 28svh) minmax(0, 1fr) !important;
    overflow: hidden !important;
  }

  #booking-modal.open .modal-close.booking-modal__close,
  .modal-close.guide-modal__close,
  .guide-modal__close {
    position: fixed !important;
    top: max(22px, calc(env(safe-area-inset-top) + 18px)) !important;
    right: max(22px, calc(env(safe-area-inset-right) + 18px)) !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    z-index: 4200 !important;
  }

  #booking-modal.open .booking-modal__brand {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }

  #booking-modal.open .booking-modal__brand-overlay {
    min-height: 100% !important;
    padding: 30px 44px 24px !important;
  }

  #booking-modal.open .booking-modal__logo {
    width: 154px !important;
    margin-bottom: auto !important;
  }

  #booking-modal.open .booking-modal__brand h3 {
    max-width: none !important;
    margin-bottom: 10px !important;
    font-size: clamp(36px, 5vw, 54px) !important;
    line-height: 1 !important;
  }

  #booking-modal.open .booking-modal__brand p {
    display: block !important;
    max-width: 520px !important;
    margin-bottom: 14px !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  #booking-modal.open .booking-modal__form {
    min-height: 0 !important;
    padding: 30px 44px 24px !important;
    overflow: hidden !important;
  }

  #booking-modal.open .booking-modal__form-head {
    padding-right: 68px !important;
  }

  #booking-modal.open .booking-modal .booking-modal__widget {
    min-height: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .guide-modal {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto minmax(0, 1fr) !important;
    min-width: 0 !important;
    padding: max(34px, calc(env(safe-area-inset-top) + 28px)) 44px calc(30px + env(safe-area-inset-bottom)) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
  }

  .guide-modal__head {
    width: 100% !important;
    max-width: calc(100% - 68px) !important;
    margin-bottom: 22px !important;
    padding-right: 68px !important;
  }

  .guide-modal__head h3 {
    font-size: clamp(36px, 5.5vw, 58px) !important;
    line-height: 1 !important;
  }

  .guide-modal__head p {
    max-width: 860px !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
    white-space: nowrap !important;
  }

  .guide-form {
    width: 100% !important;
    max-width: 100% !important;
    align-self: start !important;
    gap: 14px !important;
  }

  .guide-form,
  .guide-form label,
  .guide-form__grid {
    min-width: 0 !important;
  }

  .guide-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .guide-form input,
  .guide-form select,
  .guide-form .pratum-select,
  .guide-form .pratum-select__button {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

/* Approved rating badge placements: desktop, tablet and mobile. */
@media (min-width: 1181px) {
  .hero__badge {
    top: clamp(300px, 37.3svh, 390px);
    right: auto;
    bottom: auto;
    left: calc(50% - 180px);
  }
}

@media (min-width: 641px) and (max-width: 1180px) and (orientation: landscape) {
  .hero__badge {
    top: calc(100svh - 242px);
    right: var(--gap);
    bottom: auto;
    left: auto;
    width: 126px;
    height: auto;
    padding: 12px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero__badge-kicker {
    margin-bottom: 5px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .hero__badge-row {
    gap: 4px;
  }

  .hero__badge-score {
    font-size: 32px;
  }

  .hero__badge-scale {
    font-size: 8px;
  }

  .hero__badge-divider {
    width: 92px;
    height: 1px;
    margin: 9px 0 8px;
  }

  .hero__badge-good-place {
    justify-content: center;
    gap: 4px;
    font-size: 7px;
    letter-spacing: 0.06em;
  }

  .hero__badge-good-place-icon {
    width: 24px;
    height: 18px;
  }

  .hero__badge-good-place > span {
    width: 42px;
  }
}

@media (min-width: 641px) and (max-width: 1180px) and (orientation: portrait) {
  .hero__badge {
    top: 50svh;
    right: auto;
    bottom: auto;
    left: clamp(250px, 34vw, 360px);
  }
}

@media (max-width: 640px) and (orientation: portrait) {
  .hero__badge {
    top: 35.8svh;
    right: auto;
    bottom: auto;
    left: var(--gap);
    width: min(239px, calc(100vw - (var(--gap) * 2)));
    height: 76px;
    padding: 14px;
    justify-content: space-between;
  }

  .hero__badge-score-block {
    gap: 8px;
  }

  .hero__badge-kicker {
    font-size: 7px;
    letter-spacing: 0.12em;
  }

  .hero__badge-row {
    gap: 4px;
  }

  .hero__badge-score {
    font-size: 34px;
  }

  .hero__badge-scale {
    font-size: 8px;
  }

  .hero__badge-divider {
    height: 38px;
    margin: 0 12px;
  }

  .hero__badge-good-place {
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .hero__badge-good-place-icon {
    width: 40px;
    height: 27px;
  }

  .hero__badge-good-place > span {
    width: 50px;
  }
}

/* Keep the approved badge geometry ahead of legacy responsive guards. */
@media (min-width: 641px) and (max-width: 1180px) and (orientation: landscape) {
  .hero__badge {
    display: flex !important;
    top: calc(100svh - 242px) !important;
    right: var(--gap) !important;
    bottom: auto !important;
    left: auto !important;
    width: 126px !important;
    height: auto !important;
    padding: 12px !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  .hero__badge-kicker { margin-bottom: 5px !important; font-size: 8px !important; letter-spacing: 0.12em !important; }
  .hero__badge-row { gap: 4px !important; }
  .hero__badge-score { font-size: 32px !important; }
  .hero__badge-scale { font-size: 8px !important; }
  .hero__badge-divider { width: 92px !important; height: 1px !important; margin: 9px 0 8px !important; }
  .hero__badge-good-place { justify-content: center !important; gap: 4px !important; font-size: 7px !important; letter-spacing: 0.06em !important; }
  .hero__badge-good-place-icon { width: 24px !important; height: 18px !important; }
  .hero__badge-good-place > span { width: 42px !important; }
}

@media (min-width: 641px) and (max-width: 1180px) and (orientation: portrait) {
  .hero__badge {
    display: flex !important;
    top: 50svh !important;
    right: auto !important;
    bottom: auto !important;
    left: clamp(250px, 34vw, 360px) !important;
    width: 276px !important;
    height: 82px !important;
    padding: 14px 18px !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    gap: 0 !important;
  }

  .hero__badge-kicker { margin-bottom: 0 !important; font-size: 9px !important; letter-spacing: 0.14em !important; }
  .hero__badge-score { font-size: 40px !important; }
  .hero__badge-scale { font-size: 10px !important; }
  .hero__badge-divider { width: 1px !important; height: 46px !important; margin: 0 18px !important; }
  .hero__badge-good-place { gap: 8px !important; font-size: 10px !important; letter-spacing: 0.08em !important; }
  .hero__badge-good-place-icon { width: 44px !important; height: 30px !important; }
  .hero__badge-good-place > span { width: 58px !important; }
}

@media (max-width: 640px) and (orientation: portrait) {
  .hero__badge {
    display: flex !important;
    top: 35.8svh !important;
    right: auto !important;
    bottom: auto !important;
    left: var(--gap) !important;
    width: min(239px, calc(100vw - (var(--gap) * 2))) !important;
    height: 76px !important;
    padding: 14px !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 0 !important;
  }

  .hero__badge-score-block { gap: 8px !important; }
  .hero__badge-kicker { margin-bottom: 0 !important; font-size: 7px !important; letter-spacing: 0.12em !important; }
  .hero__badge-score { font-size: 34px !important; }
  .hero__badge-scale { font-size: 8px !important; }
  .hero__badge-divider { width: 1px !important; height: 38px !important; margin: 0 12px !important; }
  .hero__badge-good-place { gap: 6px !important; font-size: 9px !important; letter-spacing: 0.06em !important; }
  .hero__badge-good-place-icon { width: 40px !important; height: 27px !important; }
  .hero__badge-good-place > span { width: 50px !important; }
}

/* Keep the first-screen layout stable while mobile browser chrome changes height. */
@media (max-width: 1180px) {
  .hero {
    min-height: var(--pratum-stable-hero-height, 100svh);
  }
}

@media (max-width: 640px) and (orientation: portrait) {
  .hero__content {
    min-height: calc(var(--pratum-stable-hero-height, 100svh) - var(--header-h));
  }
}

/* Final directional cue overrides: keep the arrow treatment intact across legacy mobile rules. */
.walkthrough-video-hint__scroll {
  position: relative !important;
  display: flex !important;
  width: 18px !important;
  height: 28px !important;
  flex: 0 0 18px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2px !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  transition: transform 0.24s ease !important;
}
.walkthrough-video-hint__scroll span {
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: 8px !important;
  height: 8px !important;
  flex: 0 0 8px !important;
  border: 0 !important;
  border-right: 1.5px solid var(--terra) !important;
  border-bottom: 1.5px solid var(--terra) !important;
  border-radius: 0 !important;
  background: transparent !important;
  transform: rotate(45deg) translate(-2px, -2px);
  animation: walkthroughArrowDown 1.35s ease-in-out infinite !important;
}
.walkthrough-video-hint__scroll span:nth-child(2) {
  opacity: 0.42 !important;
  animation-delay: -0.42s !important;
}
.walkthrough-scroll.is-direction-up .walkthrough-video-hint__scroll {
  transform: rotate(180deg) !important;
}

@media (max-width: 640px) {
  .faq-section h2 { margin-bottom: 30px !important; }
  .guide-copy::before { opacity: 0.64; }
}

@media (max-width: 640px) {
  #walkthrough .walkthrough-video-hint {
    display: inline-flex !important;
    bottom: 8px !important;
    min-height: 26px !important;
    height: 26px !important;
    padding: 0 8px !important;
    gap: 5px !important;
    font-size: 7px !important;
  }
  #walkthrough .walkthrough-video-hint__scroll {
    width: 15px !important;
    height: 22px !important;
    flex-basis: 15px !important;
  }
  #walkthrough .walkthrough-video-hint__scroll span {
    width: 6px !important;
    height: 6px !important;
    flex-basis: 6px !important;
  }
}

/* Custom walkthrough cursor: a compact terracotta capsule with a flowing direction cue. */
@media (hover: hover) and (pointer: fine) {
  .walkthrough-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 5000;
    display: flex;
    width: 20px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--terra);
    box-shadow: 0 8px 18px rgba(176,90,50,0.22);
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-100px, -100px, 0);
    transition: opacity 0.38s ease;
  }
  .walkthrough-cursor.is-visible { opacity: 1; }
  .walkthrough-cursor__arrows {
    position: relative;
    display: block;
    width: 16px;
    height: 24px;
    overflow: hidden;
    transition: transform 0.24s ease;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 23%, #000 77%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 23%, #000 77%, transparent 100%);
  }
  .walkthrough-cursor__track {
    position: absolute;
    top: -42px;
    left: 0;
    display: flex;
    width: 16px;
    height: 69px;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    animation: walkthroughCursorStream 3.6s linear infinite;
    will-change: transform;
  }
  .walkthrough-cursor__track span {
    position: relative;
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-right: 1.5px solid var(--cream);
    border-bottom: 1.5px solid var(--cream);
    border-radius: 0;
    opacity: 0.9;
    transform: rotate(45deg);
  }
  .walkthrough-cursor.is-direction-up .walkthrough-cursor__arrows {
    transform: rotate(180deg);
  }
  @keyframes walkthroughCursorStream {
    from { transform: translateY(0); }
    to { transform: translateY(36px); }
  }
}

@media (hover: none), (pointer: coarse) {
  .walkthrough-cursor { display: none !important; }
}

/* Keep interactive color changes calm instead of snapping on hover. */
.btn,
button,
[role="button"],
.footer-map-link,
.platform-logo,
.review-read-more,
.walkthrough-skip,
.walkthrough-video-controls__link,
.walkthrough-play,
.pratum-booking-back,
.modal-close,
.lightbox__close,
.lightbox__prev,
.lightbox__next,
.faq-question {
  transition-duration: 0.38s;
  transition-timing-function: cubic-bezier(0.22, 0.8, 0.24, 1);
}
