/* ==========================================================================
   The Landscapers Rest, Mudgee NSW
   Country-luxe palette (cream / olive / terracotta, Fraunces + Karla) on an  [unslop-ignore: deliberate, iterated-on brand choice, not a default]
   editorial layout: full-bleed image heroes under a fixed translucent header,
   counter stats, badge service cards, dark featured band, split FAQ panel,
   full-width CTA banner and a four-column footer.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Mulish:ital,wght@0,300..800;1,300..800&family=Bitter:ital,wght@0,600;0,700;1,700&display=swap'); /* unslop-ignore: brand type pairing, chosen deliberately */

:root {
  /* Palette */
  --green: #4C5943;        /* primary surface */
  --green-deep: #3B4634;   /* dark bands */
  --green-ink: #222B1D;    /* darkest: buttons, headings on cream */
  --green-soft: #6C7A60;   /* muted green */
  --cream: #F3F0E7;        /* page background */
  --cream-2: #ECE8DB;      /* tinted sections */
  --white: #FFFFFF;
  --ink: #232B1F;          /* body text on light */
  --ink-soft: #5A6152;     /* muted text on light */
  --on-green: #F3F0E7;     /* text on green */
  --on-green-soft: #C9CDBB;/* muted text on green */
  --gold: #E9B44C;         /* stars, accents on dark */
  --terracotta: #A2583C;   /* warm accent / CTA, 4.6:1 on cream (WCAG AA) */
  --terracotta-dark: #8C4930;
  --line: #DDD8C8;         /* borders on light */
  --line-green: rgba(243, 240, 231, 0.22); /* borders on green */

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif; /* unslop-ignore: brand type, chosen deliberately */
  --font-body: 'Mulish', 'Segoe UI', sans-serif;

  /* Rhythm */
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(34, 43, 29, 0.06);
  --shadow-md: 0 12px 32px rgba(34, 43, 29, 0.10);
  --shadow-lg: 0 26px 64px rgba(34, 43, 29, 0.18);
  --container: 1240px;
  --section-pad: clamp(4rem, 9vw, 7.5rem);
  --header-h: 92px;

  /* Z-scale */
  --z-header: 50;
  --z-drawer: 60;
  --z-lightbox: 70;
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 0.55em;
  color: var(--green-ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.9rem, 6.4vw, 5.1rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.55rem); font-variation-settings: "SOFT" 30, "WONK" 0; line-height: 1.2; }
h4 { font-size: 1.0625rem; font-variation-settings: "SOFT" 30, "WONK" 0; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta); }

:focus-visible {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--green); color: var(--cream); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { padding-block: var(--section-pad); }
.section--tint { background: var(--cream-2); }
.section--deep { background: var(--green-deep); color: var(--on-green); }
.section--deep h2, .section--deep h3 { color: var(--on-green); }

.lede { color: var(--ink-soft); font-size: 1.125rem; }
.section--deep .lede { color: var(--on-green-soft); }

/* Eyebrow: "//" editorial marker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "//";
  letter-spacing: 0;
  font-weight: 800;
}
.section--deep .eyebrow,
.hero-full .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow,
.faq-split__panel .eyebrow { color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* Split section header: heading left, supporting copy / action right */
.head-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.5rem clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.head-row h2 { margin-bottom: 0; }
.head-row__aside { color: var(--ink-soft); font-size: 1.0625rem; padding-bottom: 0.35rem; }
.head-row__aside .btn, .head-row__aside .text-link { margin-top: 1rem; }
.head-row__aside--end { display: flex; justify-content: flex-end; align-items: flex-end; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.9rem;
  border-radius: 999px; /* unslop-ignore: pill CTA is a deliberate brand shape, not a default */
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.25s ease; }
.btn:hover svg { transform: translate(3px, -3px); }

.btn--accent { background: var(--terracotta); color: var(--cream); }
.btn--accent:hover { background: var(--terracotta-dark); color: var(--cream); box-shadow: var(--shadow-md); }

.btn--dark { background: var(--green-ink); color: var(--cream); }
.btn--dark:hover { background: var(--green); color: var(--cream); box-shadow: var(--shadow-md); }

.btn--cream { background: var(--cream); color: var(--green-ink); }
.btn--cream:hover { background: var(--white); color: var(--green-ink); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--green-ink); border-color: var(--green-ink); }
.btn--ghost:hover { background: var(--green-ink); color: var(--cream); }

.btn--ghost-light { background: transparent; color: var(--on-green); border-color: rgba(243, 240, 231, 0.55); }
.btn--ghost-light:hover { background: var(--cream); color: var(--green-ink); border-color: var(--cream); }

.btn--sm { min-height: 44px; padding: 0.55rem 1.4rem; font-size: 0.9375rem; }

/* Arrow text link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--green-ink);
}
.text-link svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.text-link:hover { color: var(--terracotta); }
.text-link:hover svg { transform: translateX(4px); }
.section--deep .text-link, .faq-split__panel .text-link { color: var(--on-green); }
.section--deep .text-link:hover, .faq-split__panel .text-link:hover { color: var(--gold); }

/* ---------- Header (fixed, translucent over heroes) ---------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-header);
  background: rgba(243, 240, 231, 0.78);
  border-bottom: 1px solid rgba(34, 43, 29, 0.07);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(243, 240, 231, 0.94);
  box-shadow: 0 6px 24px rgba(34, 43, 29, 0.12);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; text-decoration: none; justify-self: start; }
.brand img { height: 48px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; justify-content: center; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.9rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__links a {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: var(--green-ink);
  padding: 0.4rem 0.1rem;
  transition: color 0.2s ease;
}
.site-nav__links a:hover { color: var(--terracotta); }
.site-nav__links a[aria-current="page"] { color: var(--terracotta); }

.site-nav__cta { display: none; }

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--green-ink);
}
.nav-toggle svg { width: 28px; height: 28px; margin-inline: auto; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Full-bleed hero (home) ---------- */

.hero-full {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--on-green);
  background-color: var(--green-deep);
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Background video + legibility overlay */
.hero-full__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-full__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(24, 29, 20, 0.42) 0%, rgba(24, 29, 20, 0.28) 45%, rgba(24, 29, 20, 0.72) 100%);
}
.hero-full > .container {
  position: relative;
  z-index: 2;
}

.hero-full .eyebrow {
  gap: 0.85rem;
  font-size: 0.8125rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}
.hero-full .eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.hero-full h1 {
  color: var(--on-green);
  max-width: 15ch;
  font-family: 'Bitter', Georgia, serif;
  font-weight: 700;
  font-size: clamp(3rem, 6.6vw, 5.6rem);
  line-height: 1.03;
  letter-spacing: -0.005em;
  margin-bottom: 0.42em;
  text-shadow: 0 2px 44px rgba(12, 16, 9, 0.5); /* unslop-ignore: legibility shadow over hero video, not a neon accent */
}
.hero-full h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}
.hero-full .lede {
  font-size: clamp(1.15rem, 1.85vw, 1.45rem);
  line-height: 1.58;
  color: rgba(243, 240, 231, 0.9);
  max-width: 33rem;
  text-shadow: 0 1px 22px rgba(12, 16, 9, 0.45); /* unslop-ignore: legibility shadow over hero video, not a neon accent */
}
.hero-full .booking-bar { margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- Booking bar ---------- */

.booking-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
  gap: 0;
  background: rgba(22, 27, 18, 0.30);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  backdrop-filter: blur(22px) saturate(120%);
  border: 1px solid rgba(243, 240, 231, 0.26);
  border-radius: 999px; /* unslop-ignore: pill shape is a deliberate brand choice, not a default */
  padding: 10px;
  box-shadow: 0 20px 54px rgba(12, 15, 9, 0.34);
  max-width: 980px;
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .booking-bar { background: rgba(22, 27, 18, 0.74); }
}

.booking-bar__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 0.55rem 1.6rem;
  border-left: 1px solid var(--line-green);
  min-width: 0;
}
.booking-bar__field:first-child { border-left: none; }

.booking-bar__field label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-green-soft);
}

.booking-bar__field input,
.booking-bar__field select {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--on-green);
  color-scheme: dark;
  background: transparent;
  border: none;
  padding: 0;
  min-height: 30px;
  width: 100%;
  cursor: pointer;
}
.booking-bar__field input:focus,
.booking-bar__field select:focus { outline: none; }

.booking-bar__submit { margin-left: 0.75rem; white-space: nowrap; }

/* ---------- Date range picker ---------- */

/* Fields host the (visually hidden but focusable) native input for the popover */
.booking-bar__field,
.form-field { position: relative; }

/* Native date inputs are kept for form submission + validation, hidden from view.
   NOT display:none, so `required` still validates and can receive focus. */
.dp-native {
  position: absolute;
  left: 1rem;
  bottom: 0.4rem;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.dp-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  font-family: var(--font-body);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}
.dp-trigger__value { min-width: 0; }
.dp-trigger__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* Booking bar context (dark translucent glass) */
.booking-bar__field .dp-trigger {
  color: var(--on-green);
  font-size: 1rem;
  font-weight: 700;
  min-height: 30px;
  padding: 0;
}
.booking-bar__field .dp-trigger__icon { color: var(--on-green-soft); }
.booking-bar__field .dp-trigger.is-empty .dp-trigger__value {
  color: var(--on-green-soft);
  font-weight: 600;
}

/* Contact form context (white boxed field) */
.form-field .dp-trigger {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  min-height: 52px;
  color: var(--ink);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field .dp-trigger:hover { border-color: var(--green-soft); }
.form-field .dp-trigger__icon { color: var(--green-soft); }
.form-field .dp-trigger.is-empty .dp-trigger__value { color: var(--ink-soft); }

/* Popover shell: on desktop the container never blocks the page */
.dp-pop {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}
.dp-pop[hidden] { display: none; }
.dp-pop__backdrop { display: none; }

.dp-pop__panel {
  position: fixed;
  pointer-events: auto;
  width: min(360px, calc(100vw - 24px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1rem 0.85rem;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.dp-pop.is-open .dp-pop__panel { opacity: 1; transform: none; }

/* Mobile: bottom sheet with dimmed backdrop */
.dp-pop--sheet { pointer-events: auto; }
.dp-pop--sheet .dp-pop__backdrop {
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 15, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dp-pop--sheet.is-open .dp-pop__backdrop { opacity: 1; }
.dp-pop--sheet .dp-pop__panel {
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 1.1rem 1.15rem calc(1.2rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
}
.dp-pop--sheet.is-open .dp-pop__panel { transform: none; }

.dp-pop__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.dp-hint { margin: 0; font-size: 0.875rem; font-weight: 600; color: var(--ink-soft); }
.dp-hint strong { color: var(--green-ink); font-weight: 800; }
.dp-x {
  flex-shrink: 0;
  display: inline-flex;
  padding: 4px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
}
.dp-x svg { width: 20px; height: 20px; }
.dp-x:hover { background: var(--cream-2); color: var(--green-ink); }

.dp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.25rem 0 0.5rem;
}
.dp-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-ink);
}
.dp-nav {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--green-ink);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.dp-nav svg { width: 20px; height: 20px; }
.dp-nav:hover { background: var(--green); color: var(--cream); border-color: var(--green); }
.dp-nav:disabled { opacity: 0.3; cursor: default; }
.dp-nav:disabled:hover { background: var(--white); color: var(--green-ink); border-color: var(--line); }

.dp-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.2rem;
}
.dp-dow span {
  text-align: center;
  padding: 0.35rem 0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}

.dp-day {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.dp-day:hover { background: var(--cream-2); }
.dp-day.is-today { box-shadow: inset 0 0 0 1.5px var(--green-soft); font-weight: 800; }
.dp-day.is-range {
  background: var(--cream-2);
  border-radius: 0;
  color: var(--green-ink);
}
.dp-day.is-start,
.dp-day.is-end {
  background: var(--green);
  color: var(--cream);
  font-weight: 800;
  box-shadow: none;
}
.dp-day.is-start { border-radius: 12px 0 0 12px; }
.dp-day.is-end { border-radius: 0 12px 12px 0; }
.dp-day.is-start.is-end { border-radius: 12px; }
.dp-day.is-start:hover,
.dp-day.is-end:hover { background: var(--green-deep); }
.dp-day.is-disabled {
  color: var(--line);
  cursor: default;
  opacity: 0.6;
}
.dp-day.is-disabled:hover { background: transparent; }

.dp-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.dp-clear {
  padding: 0.5rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.dp-clear:hover { color: var(--terracotta); }
.dp-done { min-width: 116px; }

/* ---------- Stats (image + counter rows) ---------- */


.stats-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.stats-split__media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Wide establishing shots (e.g. the exterior) need a wider frame than the
   4/3.4 default, or a panorama gets cropped down to a near-square window
   and loses its edges. */
.stats-split__media--wide img {
  aspect-ratio: 16 / 9;
}

.stat-rows { margin-top: clamp(1.5rem, 3vw, 2.5rem); }

.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1rem, 2.4vw, 1.6rem) 0;
  border-bottom: 1.5px solid var(--green-ink);
}

.stat-row__label {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.stat-row strong {
  font-family: var(--font-display);
  font-weight: 560;
  font-variation-settings: "SOFT" 40, "WONK" 1;
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 1;
  color: var(--green-ink);
}

/* ---------- Service cards (image + icon badge) ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.svc-card__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.svc-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card__media img { transform: scale(1.04); }

.svc-card__badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--terracotta);
  color: var(--cream);
}
.svc-card__badge svg { width: 27px; height: 27px; }

.svc-card h3 { margin: 1.4rem 0 0.4rem; }
.svc-card p { color: var(--ink-soft); }

/* ---------- Dark featured band (rooms) ---------- */

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.room-dark__media {
  border-radius: var(--radius);
  overflow: hidden;
}
.room-dark__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.room-dark:hover .room-dark__media img { transform: scale(1.04); }

.room-dark__price {
  margin: 1.5rem 0 0.2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.room-dark h3 { margin-bottom: 0.9rem; }

.room-dark__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-green);
  color: var(--on-green-soft);
  font-size: 0.9375rem;
  font-weight: 600;
}
.room-dark__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.room-dark__meta svg { width: 19px; height: 19px; color: var(--gold); flex-shrink: 0; }

.rooms-foot { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* ---------- Split FAQ (image | dark accordion panel) ---------- */

.faq-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--green-deep);
}

.faq-split__media {
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.faq-split__panel {
  color: var(--on-green);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem);
}
.faq-split__panel h2 { color: var(--on-green); margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.faq {
  border-bottom: 1px solid var(--line-green);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 560;
  color: var(--on-green);
  transition: color 0.2s ease;
}
.faq summary:hover { color: var(--gold); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.25s ease;
}
.faq[open] summary svg { transform: rotate(180deg); }
.faq p {
  margin: 0 0 1.3rem;
  max-width: 60ch;
  color: var(--on-green-soft);
}
.faq-split__panel .text-link { margin-top: 1.75rem; }

/* ---------- Feature steps (auto-advancing "how it works") ---------- */

.feature-steps {
  background: var(--green-deep);
  color: var(--on-green);
  padding-block: var(--section-pad);
}
.feature-steps__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.feature-steps .eyebrow { color: var(--gold); }
.feature-steps__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.feature-steps__head h2 { color: var(--on-green); }
.feature-steps__head .lede {
  font-size: clamp(1.0625rem, 1.8vw, 1.2rem);
  color: var(--on-green-soft);
  margin-bottom: 0;
}

.feature-steps__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

/* Steps list */
.steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 1rem);
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.4rem;
  padding: 0.4rem 0;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.step.is-active { opacity: 1; }

.step__marker {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px; /* unslop-ignore: circular step marker, deliberate */
  border: 2px solid var(--line-green);
  color: var(--on-green-soft);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  background: transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.step__num, .step__check { grid-area: 1 / 1; transition: opacity 0.35s ease; }
.step__check { width: 22px; height: 22px; opacity: 0; }
.step.is-active .step__marker,
.step.is-done .step__marker {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-ink);
}
.step.is-active .step__marker {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(233, 180, 76, 0.14);
}
.step.is-done .step__num { opacity: 0; }
.step.is-done .step__check { opacity: 1; }

.step__body { padding-top: 0.35rem; }
.step__body h3 {
  color: var(--on-green);
  margin-bottom: 0.3em;
}
.step__body p {
  color: var(--on-green-soft);
  font-size: 1rem;
  max-width: 46ch;
  margin-bottom: 0;
}

/* Thin progress bar under the active step */
.step__progress {
  display: block;
  height: 3px;
  width: 100%;
  max-width: 200px;
  margin-top: 0.9rem;
  border-radius: 2px;
  background: var(--line-green);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.step.is-active .step__progress { opacity: 1; }
.step__progress i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 2px;
  background: var(--gold);
  transition: width 0.12s linear;
}

/* Media panel */
.steps__media {
  position: relative;
  min-height: clamp(320px, 42vw, 460px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  perspective: 1200px;
}
.steps__panel {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(34px) scale(1.03);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.steps__panel.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.steps__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.steps__panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(to top, var(--green-deep) 4%, rgba(59, 70, 52, 0.35) 42%, transparent 100%);
  pointer-events: none;
}

.feature-steps__cta { margin-top: clamp(2.25rem, 4vw, 3rem); }

/* Clickable steps (progressive enhancement) */
.feature-steps.is-interactive .step { cursor: pointer; }
.feature-steps.is-interactive .step:hover { opacity: 0.8; }
.feature-steps.is-interactive .step.is-active:hover { opacity: 1; }
.feature-steps .step:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 8px;
}

@media (max-width: 860px) {
  .feature-steps__grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps__media { order: -1; }
  .step__body p { max-width: none; }
  .step__progress { max-width: none; }
}

/* ---------- Region cards (editorial style) ---------- */

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

.insight-card { text-decoration: none; display: block; color: inherit; }

.insight-card__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.insight-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insight-card:hover .insight-card__media img { transform: scale(1.04); }

.insight-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.25rem 0 0.4rem;
}
.insight-card__row time, .insight-card__row .insight-card__note {
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.insight-card h3 { margin-bottom: 0; transition: color 0.2s ease; }
.insight-card:hover h3 { color: var(--terracotta); }

.poi-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ---------- Full-width CTA banner ---------- */

.cta-band {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: clamp(420px, 60vh, 560px);
  padding-block: clamp(4rem, 8vw, 6rem);
  color: var(--on-green);
  background-color: var(--green-deep);
  background-image: linear-gradient(rgba(24, 29, 20, 0.62), rgba(24, 29, 20, 0.62)), var(--hero-img);
  background-size: cover;
  background-position: center;
}
.cta-band h2 { color: var(--on-green); max-width: 22ch; margin-inline: auto; }
.cta-band .lede { max-width: 520px; margin-inline: auto; color: var(--on-green-soft); }
.cta-band .btn { margin-top: 2.25rem; }

/* ---------- Page hero (interior pages, image band) ---------- */

.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(420px, 62vh, 600px);
  color: var(--on-green);
  background-color: var(--green-deep);
  background-image: linear-gradient(180deg, rgba(24, 29, 20, 0.5) 0%, rgba(24, 29, 20, 0.3) 45%, rgba(24, 29, 20, 0.72) 100%), var(--hero-img);
  background-size: cover;
  background-position: center;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-hero h1 { color: var(--on-green); font-size: clamp(2.6rem, 5.4vw, 4.2rem); margin-bottom: 0.3em; }
.page-hero .lede { max-width: 620px; color: var(--on-green-soft); font-size: 1.125rem; }
.page-hero--tall { min-height: 100svh; justify-content: center; }

/* ---------- Room / feature cards (light, The Space) ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.75rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.room-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.room-card__body { padding: 1.25rem 0.9rem 0.9rem; display: flex; flex-direction: column; gap: 0.4rem; flex-grow: 1; }
.room-card__body h3 { margin-bottom: 0; }

.room-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.9375rem;
}
.room-card__meta svg { width: 18px; height: 18px; color: var(--green-soft); flex-shrink: 0; margin-top: 3px; }

.room-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
}
.room-card__foot .price { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--green-ink); }
.room-card__foot .price span { font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; color: var(--ink-soft); }

/* ---------- Amenities (The Space) ---------- */

.amenity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenity-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-weight: 500;
  color: var(--ink-soft);
}
.amenity-list svg { width: 21px; height: 21px; color: var(--green); flex-shrink: 0; }

.amenity-group { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.amenity-group:last-child { margin-bottom: 0; }
.amenity-group h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.amenity-group h3::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--line);
}

/* House rules / info rows */
.info-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.info-col {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-sm);
}
.info-cols h3 { display: flex; align-items: center; gap: 0.6rem; }
.info-cols h3 svg { width: 22px; height: 22px; color: var(--terracotta); }
.info-cols ul { list-style: none; margin: 0; padding: 0; }
.info-cols li { padding: 0.45rem 0; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.info-cols li:last-child { border-bottom: none; }

/* ---------- Gallery ---------- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

.filter-btn {
  min-height: 46px;
  padding: 0.55rem 1.4rem;
  border-radius: 999px; /* unslop-ignore: pill filter chip, deliberate brand shape */
  border: 1.5px solid var(--line);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-btn:hover { border-color: var(--green); color: var(--green-ink); }
.filter-btn.is-active { background: var(--green-ink); border-color: var(--green-ink); color: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  background: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.6rem 1.2rem 0.9rem;
  background: linear-gradient(to top, rgba(34, 43, 29, 0.72), transparent);
  color: var(--cream);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
}
.gallery-item.is-hidden { display: none; }
figure.gallery-item.is-hiding,
figure.gallery-item.is-entering {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(26, 32, 22, 0.93);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.lightbox.is-open { display: flex; }
.lightbox.is-visible { opacity: 1; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.lightbox:not(.is-visible) img { opacity: 0; transform: scale(0.96); }
.lightbox img.is-swapping { opacity: 0; }
.lightbox__caption {
  position: absolute;
  bottom: clamp(1rem, 3vw, 2rem);
  inset-inline: 0;
  text-align: center;
  color: var(--on-green-soft);
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(243, 240, 231, 0.4);
  background: rgba(243, 240, 231, 0.08);
  color: var(--cream);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(243, 240, 231, 0.28); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 24px; height: 24px; }

/* ---------- Location page ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.distance-list { list-style: none; margin: 0; padding: 0; }
.distance-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}
.distance-list li:last-child { border-bottom: none; }
.distance-list strong { color: var(--ink); font-weight: 700; }

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 380px;
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--green-soft);
  background: var(--cream-2);
  color: var(--ink-soft);
  text-align: center;
  padding: 2.5rem 2rem;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--green); }

.poi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.poi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.poi-card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; border-radius: var(--radius); }
.poi-card__body { padding: 1.25rem 0.9rem 0.9rem; }
.poi-card__body h3 { font-size: 1.1875rem; margin: 0.3rem 0; }
.poi-card__body p { color: var(--ink-soft); font-size: 0.9375rem; }

/* ---------- Forms ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  min-height: 52px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 140px; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(76, 89, 67, 0.18);
}

.form-note { font-size: 0.875rem; color: var(--ink-soft); }

.contact-aside {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  height: fit-content;
}
.contact-aside h3 { margin-bottom: 1rem; }
.contact-aside ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.contact-aside li { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.55rem 0; color: var(--ink-soft); }
.contact-aside li svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ---------- Footer (4 columns + enquiry form) ---------- */

.site-footer {
  background: var(--green-ink);
  color: var(--on-green-soft);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
  font-size: 0.9375rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
  gap: 2.5rem clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line-green);
}

.site-footer h4 {
  color: var(--on-green);
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 30, "WONK" 0;
  font-size: 1.375rem;
  font-weight: 560;
  margin-bottom: 1.25rem;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 0.35rem 0; }
.site-footer a { color: var(--on-green-soft); text-decoration: none; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--gold); }

.site-footer__brand img { height: 64px; width: auto; margin-bottom: 1.25rem; }
.site-footer__brand p { max-width: 320px; color: var(--on-green-soft); }

.footer-form { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.footer-form input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: none;
  border-radius: 999px; /* unslop-ignore: pill input, deliberate brand shape */
  padding: 0.95rem 1.5rem;
  min-height: 54px;
}
.footer-form input:focus { outline: 3px solid var(--terracotta); outline-offset: 2px; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.75rem;
  font-size: 0.8125rem;
  opacity: 0.8;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-full__video { display: none; }
  .step { opacity: 1; }
  .step__progress { display: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .booking-bar { grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); gap: 0.25rem; }
  .booking-bar__field { border-left: none; padding: 0.65rem 1.1rem; }
  .booking-bar__submit { grid-column: 1 / -1; margin: 0.5rem 0.25rem 0.25rem; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 900px) {
  .head-row { grid-template-columns: 1fr; align-items: start; }
  .head-row__aside { padding-bottom: 0; }
  .head-row__aside--end { justify-content: flex-start; }

  .stats-split { grid-template-columns: 1fr; }

  .faq-split { grid-template-columns: 1fr; }
  .faq-split__media { min-height: 320px; }

  .split { grid-template-columns: 1fr; }
  .split__media { order: -1; }

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

@media (max-width: 860px) {
  .site-header__inner { display: flex; justify-content: space-between; }
  .site-header__cta { display: none; }
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    z-index: var(--z-drawer);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 2rem 1.5rem;
    background: var(--cream);
    border-top: 1px solid rgba(34, 43, 29, 0.08);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
  }
  .site-nav.is-open { transform: none; }

  .site-nav__links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .site-nav__links a {
    display: block;
    padding: 1rem 0.35rem;
    font-size: 1.1875rem;
    border-bottom: 1px solid rgba(34, 43, 29, 0.08);
  }

  .site-nav__cta { display: inline-flex; margin-top: 1.5rem; }
}

@media (max-width: 560px) {
  .booking-bar {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.5rem 0.6rem;
  }
  /* Stacked fields get a clear hairline divider + roomier tap targets */
  .booking-bar__field {
    padding: 0.85rem 0.9rem;
    min-height: 56px;
    border-top: 1px solid var(--line-green);
  }
  .booking-bar__field:first-child { border-top: none; }
  .booking-bar__field .dp-trigger { min-height: 34px; font-size: 1.05rem; }
  .booking-bar__submit {
    grid-column: 1 / -1;
    width: calc(100% - 0.5rem);
    margin: 0.75rem 0.25rem 0.25rem;
  }

  .gallery-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .brand img { height: 40px; }
  .stat-row strong { font-size: 2.2rem; }
}
