/* ============================================================
   TRENANCE HOLIDAY PARK — main.css
   Palette: navy blue + gold + coral + cream  (matched to real logo)
   Logo colours: #4365AF (blue) · #F7C33A (gold)
   Type: Fraunces (display) · Nunito Sans (body) · Caveat (hand)
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --forest:           #4365AF;   /* logo navy blue  */
  --forest-deep:      #2E4A84;   /* deeper navy     */
  --forest-2:         #5573BF;   /* hover/light navy */
  --sage:             #8FA5CC;   /* muted blue-grey  */
  --sage-pale:        #D8E3F2;   /* pale blue tint   */
  --ochre:            #F7C33A;   /* logo gold        */
  --ochre-deep:       #D4A52A;   /* deep gold        */
  --terracotta:       #D26A4F;
  --terracotta-deep:  #B05238;
  --bone:             #FBF4E5;
  --bone-2:           #F4ECDB;
  --bone-3:           #EAE0CB;
  --paper:            #FDF8EC;
  --ink:              #1A1A1A;
  --ink-soft:         #3D3D3A;
  --ash:              #6B6B66;

  /* Hero panel tint (rgb triplet so opacity can vary) */
  --panel-rgb:        67, 101, 175;

  --display: "Fraunces", Georgia, serif;
  --sans:    "Nunito Sans", -apple-system, system-ui, sans-serif;
  --hand:    "Caveat", cursive;

  --shadow-soft:  0 20px 50px -16px rgba(67,101,175,0.18);
  --shadow-deep:  0 30px 60px -20px rgba(67,101,175,0.28);
  --transition:   0.25s ease;
}

/* ── VIBRANT MODE — toggled via a button in the corner ─────── */
:root.vibrant-mode {
  --forest:           #2E5BD9;
  --forest-deep:      #1B3FA8;
  --forest-2:         #4574E8;
  --sage:             #7A95E0;
  --sage-pale:        #D4DEF7;
  --ochre:            #FFCC1A;
  --ochre-deep:       #E8AE00;
  --terracotta:       #FF6B47;
  --terracotta-deep:  #E04F2E;

  --panel-rgb:        46, 91, 217;

  --shadow-soft:  0 20px 50px -16px rgba(46,91,217,0.24);
  --shadow-deep:  0 30px 60px -20px rgba(46,91,217,0.35);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  font-size: 19px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font: 700 13px/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--ochre  { background: var(--ochre);      color: var(--ink); }
.btn--ochre:hover  { background: var(--ochre-deep); }
.btn--forest { background: var(--forest);     color: var(--bone); }
.btn--forest:hover { background: var(--forest-2); }
.btn--terra  { background: var(--terracotta); color: var(--bone); }
.btn--terra:hover  { background: var(--terracotta-deep); }
.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline:hover { background: var(--forest); color: var(--bone); }
.btn--outline-bone {
  background: transparent;
  color: var(--bone);
  border-color: var(--bone);
}
.btn--outline-bone:hover { background: var(--bone); color: var(--forest); }
.btn--sm { padding: 10px 20px; font-size: 11px; }

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.section      { padding: 90px 0; }
.section--sm  { padding: 56px 0; }
.section--lg  { padding: 120px 0; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
.container--narrow { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
.container--text   { max-width: 1040px; margin: 0 auto; padding: 0 60px; }

.bg-paper  { background: var(--paper); }
.bg-bone   { background: var(--bone); }
.bg-bone-2 { background: var(--bone-2); }
.bg-sage   { background: var(--sage-pale); }
.bg-ochre  { background: var(--ochre); }
.bg-forest { background: var(--forest); color: var(--bone); }
.bg-terra  { background: var(--terracotta); color: var(--bone); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  color: var(--terracotta);
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}
.hand-note {
  font-family: var(--hand);
  font-size: 1.8rem;
  color: var(--terracotta);
  line-height: 1.3;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

/* ── MAIN BAR (logo left · phone + book right) ──────────────── */
.header-main-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 60px;
  transition: padding 0.25s ease;
}

.site-logo {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
  justify-self: start;
}
.site-logo img {
  display: block;
  height: 130px;
  width: auto;
  transition: height 0.25s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-self: end;
}

.header-phone {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--forest);
  text-decoration: none;
  font-family: var(--sans);
}
.header-phone__label {
  font-size: 20px;
  font-weight: 400;
  color: var(--forest);
  opacity: 0.9;
}
.header-phone__number {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--forest);
}
.header-phone:hover .header-phone__number { color: var(--forest-2); }

/* ── SHRUNKEN HEADER (after scroll) ──────────────────────── */
.header-phone__number,
.header-phone__label { transition: font-size 0.25s ease; }
.is-scrolled .site-header { box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.is-scrolled .site-logo img { height: 72px; }
.is-scrolled .header-main-bar { padding: 6px 60px; }
.is-scrolled .header-nav { padding: 8px 60px; }
.is-scrolled .header-phone__number { font-size: 24px; }
.is-scrolled .header-phone__label { font-size: 15px; }
.is-scrolled .header-book { padding: 9px 18px; font-size: 11px; }

.header-book {
  padding: 11px 24px;
  font-size: 12px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── DESKTOP NAVIGATION (full-width strip below main bar) ────── */
.header-nav {
  background: var(--forest-2);
  display: block;
  text-align: center;
  padding: 14px 60px;
  margin-top: 0;
  transition: padding 0.25s ease;
}

.header-nav__list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 44px;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.header-nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover,
.header-nav .current-menu-item > a,
.header-nav .current-menu-ancestor > a {
  color: var(--ochre);
  border-bottom-color: var(--ochre);
}

/* Parent item wave indicator */
.header-nav .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 7px;
  margin-left: 5px;
  vertical-align: middle;
  opacity: 0.85;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 7'%3E%3Cpath d='M0 3.5 Q3.5 0 7 3.5 Q10.5 7 14 3.5' stroke='%23FBF4E5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: opacity var(--transition);
}
.header-nav .menu-item-has-children:hover > a::after,
.header-nav .menu-item-has-children:focus-within > a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 7'%3E%3Cpath d='M0 3.5 Q3.5 0 7 3.5 Q10.5 7 14 3.5' stroke='%23F7C33A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  opacity: 1;
}

/* Dropdown panel */
.header-nav .menu-item-has-children {
  position: relative;
}
/* Transparent bridge covering the gap so hover isn't broken mid-mouse-move */
.header-nav .menu-item-has-children::before {
  content: '';
  position: absolute;
  bottom: -14px;
  left: -24px;
  right: -24px;
  height: 14px;
}
.header-nav .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--paper);
  border: 1px solid var(--bone-3);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  min-width: 210px;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 200;
}
.header-nav .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--bone-3);
}
.header-nav .menu-item-has-children:hover .sub-menu,
.header-nav .menu-item-has-children:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.header-nav .sub-menu a {
  display: block;
  padding: 10px 20px;
  border-bottom: none;
  font-size: 12.5px;
  color: var(--ink-soft);
  transition: background var(--transition), color var(--transition);
}
.header-nav .sub-menu a:hover { color: var(--terracotta); background: var(--bone); }
.header-nav .sub-menu li:first-child a { border-radius: 12px 12px 0 0; }
.header-nav .sub-menu li:last-child  a { border-radius: 0 0 12px 12px; }
.header-nav .sub-menu li:only-child  a { border-radius: 12px; }

/* ── MOBILE NAV ─────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
}
.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--bone-3);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 1;
}
.mobile-nav__close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--bone-3);
  border-radius: 50%;
  font-size: 18px;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mobile-nav__close:hover { background: var(--bone-2); }

.mobile-nav__list {
  padding: 8px 0;
}
.mobile-nav__list--right { border-top: 1px dashed var(--bone-3); }

.mobile-nav__list li a {
  display: block;
  padding: 16px 28px;
  font-size: 1.5rem;
  font-family: var(--display);
  font-style: italic;
  color: var(--forest);
  border-bottom: 1px solid var(--bone-3);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav__list li a:hover,
.mobile-nav__list li a.active {
  background: var(--bone);
  color: var(--terracotta);
}

/* Sub-menu items indented in mobile overlay */
.mobile-nav__list .sub-menu { padding: 0; }
.mobile-nav__list .sub-menu li a {
  padding-left: 48px;
  font-size: 1.1rem;
  font-style: normal;
  opacity: 0.8;
}

.mobile-nav__book {
  margin: 24px 28px 0;
  justify-content: center;
}

.mobile-nav__contact {
  margin: 24px 28px 0;
  padding-top: 24px;
  border-top: 1px dashed var(--bone-3);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--forest);
  font-weight: 600;
}
.mobile-nav__contact a:hover { text-decoration: underline; }

body.nav-open { overflow: hidden; }

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 40, 30, 0.45);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.38s ease;
}
body.nav-open .mobile-nav-backdrop {
  display: block;
  opacity: 1;
}

/* ── MOBILE NAV SUB-MENUS ────────────────────────────────── */
.mobile-nav__list .sub-menu {
  display: none;
  padding: 0;
}
.mobile-nav__list .menu-item-has-children.is-expanded > .sub-menu {
  display: block;
}
.mobile-nav__sub-toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 56px;
  background: none;
  border: none;
  border-left: 1px solid var(--bone-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--forest);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}
.mobile-nav__sub-toggle:hover { background: var(--bone); color: var(--terracotta); }
.mobile-nav__list li { position: relative; }
.mobile-nav__list .menu-item-has-children > a { padding-right: 68px; }

/* ── HERO FEATURE ───────────────────────────────────────────── */
.hero-feature {
  background: var(--paper);
  padding: 0;
}
.hero-feature__photo {
  position: relative;
  height: 640px;
  overflow: hidden;
}
.hero-feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-feature__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.35) 100%);
}
.hero-feature__sun {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  transform: rotate(-8deg);
}
/* Angled overlay panel + brush — share rules with hero-slider */
.hero-feature__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: clamp(420px, 48%, 720px);
  background: linear-gradient(135deg,
    rgba(var(--panel-rgb), 0.92) 0%,
    rgba(var(--panel-rgb), 0.78) 55%,
    rgba(var(--panel-rgb), 0.58) 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 120px) 100%, 0 100%);
  filter: drop-shadow(18px 0 28px rgba(0,0,0,0.22));
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-feature__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
.hero-feature__panel-inner {
  padding: 0 10% 60px 7%;
  max-width: 100%;
  color: var(--bone);
  position: relative;
  z-index: 1;
}
.hero-feature__eyebrow {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: var(--bone);
  margin-bottom: 8px;
  opacity: 0.95;
}
.hero-feature__title {
  font-family: var(--hand);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 400;
  color: var(--bone);
  line-height: 1;
  letter-spacing: 0;
  margin: 0 0 22px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.18);
}
.hero-feature__title em { font-style: italic; }
.hero-feature__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--bone);
  margin: 0 0 24px;
  max-width: 36ch;
  opacity: 0.95;
}
.hero-feature__cta { margin-top: 4px; }

.hero-feature__brush {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  z-index: 3;
  pointer-events: none;
  display: block;
}
.hero-feature__brush-front { fill: var(--paper); }
.hero-feature__brush-back  { fill: var(--paper); opacity: 0.55; }

/* intro + 3-photo strip below hero */
.hero-intro {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  padding: 0 24px;
}
.hero-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.85;
}
.hero-intro__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--terracotta);
}
.photo-strip-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 0 48px 80px;
}
.photo-strip-3 .strip-photo {
  height: 260px;
  overflow: hidden;
}
.photo-strip-3 .strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease;
}
.photo-strip-3 .strip-photo:hover img { transform: scale(1.03); }

/* ── HERO SLIDER ─────────────────────────────────────────────── */
.hero-slider {
  background: var(--paper);
  padding: 0;
}
.hero-slider__stage {
  position: relative;
  height: 640px;
  overflow: hidden;
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.hero-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Depth: vignette + bottom-darkening gradient over the photo */
.hero-slider__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.35) 100%);
}
/* Angled overlay panel */
.hero-slider__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: clamp(420px, 48%, 720px);
  background: linear-gradient(135deg,
    rgba(var(--panel-rgb), 0.92) 0%,
    rgba(var(--panel-rgb), 0.78) 55%,
    rgba(var(--panel-rgb), 0.58) 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 120px) 100%, 0 100%);
  filter: drop-shadow(18px 0 28px rgba(0,0,0,0.22));
  display: flex;
  align-items: center;
  z-index: 2;
}
.hero-slider__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}
.hero-slider__panel-inner {
  padding: 0 10% 60px 7%;
  max-width: 100%;
  color: var(--bone);
  position: relative;
  z-index: 1;
}
.hero-slider__eyebrow {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: var(--bone);
  margin-bottom: 8px;
  opacity: 0.95;
}
.hero-slider__title {
  font-family: var(--hand);
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  font-weight: 400;
  color: var(--bone);
  line-height: 1;
  letter-spacing: 0;
  margin: 0 0 22px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.18);
}
.hero-slider__title em { font-style: italic; }
.hero-slider__body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--bone);
  margin: 0 0 24px;
  max-width: 36ch;
  opacity: 0.95;
}
.hero-slider__cta { margin-top: 4px; }

/* Brushy bottom edge */
.hero-slider__brush {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  z-index: 3;
  pointer-events: none;
  display: block;
}
.hero-slider__brush-front { fill: var(--paper); }
.hero-slider__brush-back  { fill: var(--paper); opacity: 0.55; }

/* Dot navigation */
.hero-slider__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.hero-slider__dot.is-active {
  background: #fff;
  width: 28px;
}

/* ── HERO CENTRED ────────────────────────────────────────────── */
.hero-centred {
  background: var(--paper);
  padding: 80px 48px 0;
  position: relative;
  overflow: hidden;
}
.hero-centred__clipart-left {
  position: absolute;
  top: 90px;
  left: 4%;
  transform: rotate(-8deg);
}
.hero-centred__clipart-right {
  position: absolute;
  top: 70px;
  right: 5%;
  transform: rotate(6deg);
}
.hero-centred__clipart-bottom {
  position: absolute;
  bottom: 200px;
  left: 8%;
  transform: rotate(8deg);
}
.hero-centred__text {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-centred__text h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
}
.hero-centred__text h1 em { font-style: italic; }
.hero-centred__text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--forest);
  max-width: 620px;
  margin: 28px auto 0;
  opacity: 0.85;
}
.hero-centred__text .btn { margin-top: 32px; }
.hero-centred__photo-grid {
  max-width: 1240px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
  padding: 0 48px 80px;
}
.hero-centred__photo-grid .grid-photo {
  height: 380px;
  overflow: hidden;
}
.hero-centred__photo-grid .grid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* ── CATEGORY CARDS ──────────────────────────────────────────── */
.category-row {
  padding: 64px 0 80px;
  background: var(--paper);
}
.category-row .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

/* Card is a fixed-height block; image fills it absolutely */
.category-card {
  display: block;
  text-decoration: none;
  position: relative;
  height: 420px;
  overflow: hidden;
}

/* Alternating background tones for no-image fallback */
.category-row .container a:nth-child(1) { background: var(--bone-2); }
.category-row .container a:nth-child(2) { background: var(--sage-pale); }
.category-row .container a:nth-child(3) { background: var(--bone-3); }
.category-row .container a:nth-child(4) { background: var(--ochre); }

/* Image fills card completely */
.category-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0, 0, 1);
}
.category-card:hover .category-card__img { transform: scale(1.06); }

/* Dark gradient overlay (only meaningful over images) */
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 18, 38, 0.72) 0%, rgba(10, 18, 38, 0.08) 55%, transparent 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}
/* Suppress gradient when no image is loaded — lighter tint only */
.category-card:not(:has(.category-card__img))::after {
  background: linear-gradient(to top, rgba(10, 18, 38, 0.12) 0%, transparent 60%);
}

/* Text pinned to bottom of card */
.category-card__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 32px;
  z-index: 2;
  text-align: left;
}

.category-card__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
/* Colour adapts: white over image, terracotta over colour card */
.category-card:has(.category-card__img) .category-card__sub { color: rgba(255,255,255,0.75); }
.category-card:not(:has(.category-card__img)) .category-card__sub { color: var(--terracotta); }

.category-card__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  white-space: nowrap;
}
.category-card:has(.category-card__img) .category-card__title { color: #fff; }
.category-card:not(:has(.category-card__img)) .category-card__title { color: var(--forest); }

/* Arrow appears inline on hover */
.category-card__title::after {
  content: ' →';
  font-style: normal;
  font-size: 0.75em;
  opacity: 0;
  margin-left: 4px;
  transition: opacity 0.25s ease;
  display: inline;
}
.category-card:hover .category-card__title::after { opacity: 1; }

/* ── STORY BLOCKS ────────────────────────────────────────────── */
.story-block {
  padding: 60px 0;
}
.story-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}
.story-block--reverse .story-block__image-wrap {
  grid-column: 2;
  grid-row: 1;
}
.story-block--reverse .story-block__text {
  grid-column: 1;
  grid-row: 1;
}
.story-block__image-wrap {
  padding: 40px 36px;
  position: relative;
  display: flex;
  align-items: stretch;
}
.story-block__photo {
  position: relative;
  background: #ffffff;
  padding: 14px 14px 52px;
  box-shadow: var(--shadow-deep);
  transform: rotate(-1.6deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  display: flex;
  flex-direction: column;
}
.story-block--reverse .story-block__photo {
  transform: rotate(1.6deg);
}
.story-block:hover .story-block__photo {
  transform: rotate(0deg);
}
.story-block__image {
  width: 100%;
  flex: 1 1 auto;
  min-height: 340px;
  object-fit: cover;
  display: block;
  background: var(--bone-3);
}
.story-block__caption {
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hand);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.005em;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.story-block__illus {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(-6deg);
  z-index: 2;
}
.story-block__text {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.story-block__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 520px;
}
.story-block__body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--forest);
  margin-top: 18px;
  opacity: 0.85;
  max-width: 560px;
}
.story-block__body p { margin: 0 0 12px; }
.story-block__body p:last-child { margin-bottom: 0; }
.story-block__text .btn { margin-top: 26px; }

/* Story block background variants */
.story-block.bg-paper  { background: var(--paper); }
.story-block.bg-bone   { background: var(--bone); }
.story-block.bg-bone-2 { background: var(--bone-2); }
.story-block.bg-sage   { background: var(--sage-pale); }

.story-block.bg-forest { background: var(--forest); }
.story-block.bg-forest .story-block__title { color: var(--bone); }
.story-block.bg-forest .story-block__body  { color: var(--sage-pale); opacity: 1; }
.story-block.bg-forest .eyebrow            { color: var(--ochre); }
.story-block.bg-forest .btn--forest        { background: var(--bone); color: var(--forest); }
.story-block.bg-forest .btn--forest:hover  { background: var(--ochre); color: var(--forest); }

.story-block.bg-ochre { background: var(--ochre); }
.story-block.bg-ochre .story-block__title { color: var(--forest-deep); }
.story-block.bg-ochre .story-block__body  { color: var(--forest-deep); opacity: 0.85; }
.story-block.bg-ochre .eyebrow            { color: var(--terracotta); }

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  background: var(--sage-pale);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-strip__clipart-l {
  position: absolute;
  top: 24px;
  left: 6%;
}
.stats-strip__clipart-r {
  position: absolute;
  bottom: 20px;
  right: 6%;
}
.stats-strip__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px 56px;
  text-align: center;
  position: relative;
}
.stats-strip__grid > * {
  flex: 0 1 200px;
  min-width: 140px;
}
.stats-item__number {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--forest);
  font-weight: 500;
  line-height: 1;
}
.stats-item__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.7;
  margin-top: 10px;
}

/* ── REVIEWS ─────────────────────────────────────────────────── */
.reviews {
  padding: 100px 0;
  background: var(--paper);
}
.reviews__head {
  text-align: center;
  margin-bottom: 52px;
}
.reviews__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin: 6px 0 0;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--bone);
  padding: 32px 28px 26px;
  border: 1px solid var(--bone-3);
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--ochre);
  font-size: 1.1rem;
}
.review-card__quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--forest);
  font-weight: 400;
}
.review-card__footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--bone-3);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.review-card__name {
  font-family: var(--hand);
  font-size: 1.5rem;
  color: var(--terracotta);
}
.review-card__stay {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--forest);
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.65;
}

/* ── BOOK CTA ────────────────────────────────────────────────── */
.book-cta {
  background: var(--ochre);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.book-cta__clipart-r {
  position: absolute;
  top: 44px;
  right: 7%;
  transform: rotate(8deg);
}
.book-cta__clipart-l {
  position: absolute;
  bottom: 36px;
  left: 5%;
  transform: rotate(-12deg);
}
.book-cta__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
.book-cta__eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.book-cta__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0;
}
.book-cta__title em { font-style: italic; }
.book-cta__body {
  font-size: 16.5px;
  color: var(--forest);
  max-width: 560px;
  margin: 24px auto 32px;
  line-height: 1.65;
  opacity: 0.85;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--bone-2);
  color: var(--forest);
  padding: 140px 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer__brush {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 90px;
  display: block;
  pointer-events: none;
  z-index: 1;
}
.site-footer__brush-front { fill: var(--paper); }
.site-footer__brush-back  { fill: var(--paper); opacity: 0.55; }
.site-footer > .container--narrow { position: relative; z-index: 2; }
.footer-sun {
  position: absolute;
  top: 120px;
  left: 5%;
  opacity: 0.85;
  z-index: 2;
}
.footer-seagull {
  position: absolute;
  top: 136px;
  right: 6%;
  z-index: 2;
}

/* ── FOOTER CLIPART ANIMATIONS ──────────────────────────────── */
@keyframes trn-sun-sway {
  0%, 70%, 100% { transform: rotate(0deg) scale(1); }
  15%  { transform: rotate(-13deg) scale(1.07); }
  35%  { transform: rotate(10deg) scale(0.95); }
  52%  { transform: rotate(-5deg) scale(1.03); }
  62%  { transform: rotate(3deg) scale(0.99); }
}
@keyframes trn-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}
.clipart-sun {
  animation: trn-sun-sway 7s ease-in-out infinite;
  transform-origin: 50% 50%;
  display: block;
}
.footer-seagull svg {
  animation: trn-float 5s ease-in-out infinite;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .clipart-sun, .footer-seagull svg { animation: none; }
}
.footer-newsletter {
  text-align: center;
  padding-bottom: 56px;
  border-bottom: 1px dashed var(--forest);
  position: relative;
}
.footer-newsletter .hand-note { margin-bottom: 4px; }
.footer-newsletter h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto;
}
.footer-email-form {
  display: inline-flex;
  background: var(--paper);
  border-radius: 999px;
  padding: 5px;
  align-items: center;
  margin-top: 24px;
  border: 1.5px solid var(--forest);
  max-width: 100%;
  width: 460px;
}
.footer-email-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--ink);
  min-width: 0;
}
.footer-email-form input::placeholder { color: var(--ash); }
.footer-email-form .btn { padding: 10px 20px; font-size: 11px; flex-shrink: 0; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 48px 0 40px;
}
.footer-col__title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 16px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--forest);
  opacity: 0.8;
  transition: opacity var(--transition);
}
.footer-col ul li a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px dashed var(--forest);
  text-align: center;
}
.footer-bottom .site-logo { margin: 0 auto 16px; display: inline-block; }
.footer-bottom .site-logo img { height: 52px; }
.footer-legal {
  font-size: 11.5px;
  color: var(--forest);
  opacity: 0.65;
  letter-spacing: 0.04em;
}
.footer-meta {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--forest);
  opacity: 0.7;
  letter-spacing: 0.03em;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 10px;
  align-items: center;
  justify-content: center;
}
.footer-meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.footer-meta a:hover { border-bottom-color: var(--forest); }
.footer-meta__sep { opacity: 0.5; }
.footer-credit a { font-weight: 700; }

/* ── COOKIE BAR ───────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 740px;
  margin: 0 auto;
  z-index: 200;
  background: var(--forest);
  color: var(--bone);
  padding: 18px 24px;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(46, 74, 132, 0.32);
  transform: translateY(calc(100% + 32px));
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-bar.is-shown { transform: translateY(0); }
.cookie-bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-bar__text {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  flex: 1 1 280px;
}
.cookie-bar__text a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar__text a:hover { color: var(--bone); }
.cookie-bar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cookie-bar { padding: 16px 18px; }
  .cookie-bar__inner { gap: 14px; }
  .cookie-bar__actions { width: 100%; justify-content: flex-end; }
}

/* ── PAGE HEADER BAND ────────────────────────────────────────── */
.page-header {
  background: var(--paper);
  padding: 70px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header__clipart-l {
  position: absolute;
  top: 52px;
  left: 5%;
  transform: rotate(-8deg);
}
.page-header__clipart-r {
  position: absolute;
  top: 44px;
  right: 6%;
  transform: rotate(6deg);
}
.page-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
}
.page-header h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 4px 0 0;
}
.page-header h1 em { font-style: italic; }
.page-header__body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--forest);
  max-width: 580px;
  margin: 20px auto 0;
  opacity: 0.85;
}

/* ── FIND US ──────────────────────────────────────────────────── */
.map-section {
  padding: 60px 0;
  background: var(--bone);
}
.map-section__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.map-placeholder {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, var(--sage-pale) 0%, var(--bone-3) 100%);
  border: 2px solid var(--forest);
  overflow: hidden;
}
.map-placeholder__pin {
  position: absolute;
  left: 40%;
  top: 52%;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.map-placeholder__label {
  padding: 4px 10px;
  background: var(--bone);
  border: 1.5px solid var(--forest);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--forest);
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.map-placeholder__compass {
  position: absolute;
  bottom: 14px;
  right: 14px;
}
.address-card {
  background: var(--paper);
  padding: 36px 32px;
  border: 1.5px solid var(--forest);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.address-card__title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--forest);
  line-height: 1.1;
}
.address-card__address {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--forest);
}
.address-card__block {
  padding-top: 12px;
  border-top: 1px dashed var(--bone-3);
}
.address-card__block-label {
  font-size: 10.5px;
  color: var(--terracotta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.address-card__block-val {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest);
}
.address-card__block-val--sm {
  font-family: var(--sans);
  font-size: 14px;
  font-style: normal;
}
.address-card__btns {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}
.address-card__btns .btn { flex: 1; justify-content: center; padding: 11px 14px; font-size: 11px; }

.getting-here {
  padding: 90px 0;
  background: var(--paper);
}
.getting-here__head {
  text-align: center;
  margin-bottom: 52px;
}
.getting-here__head h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--forest);
  margin-top: 6px;
}
.getting-here__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.travel-card__icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.travel-card__title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--forest);
}
.travel-card__body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--forest);
  opacity: 0.85;
  margin-top: 8px;
}

.landmarks {
  background: var(--bone);
  padding: 90px 0;
}
.landmarks__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}
.landmarks__intro h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.05;
  margin: 6px 0 20px;
}
.landmarks__intro p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.85;
}
.landmarks-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dashed var(--forest);
}
.landmarks-list__place {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.55rem;
  color: var(--forest);
}
.landmarks-list__time {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ── CONTACT ──────────────────────────────────────────────────── */
.contact-tiles {
  padding: 40px 0 80px;
  background: var(--paper);
}
.contact-tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.contact-tile {
  background: var(--bone);
  border: 1.5px solid var(--bone-3);
  border-radius: 16px;
  padding: 44px 36px;
  text-align: center;
}
.contact-tile__icon {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-tile__head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 12px 0 6px;
}
.contact-tile__value {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  color: var(--forest);
  line-height: 1.2;
  word-break: keep-all;
  overflow-wrap: normal;
}
.contact-tile__sub {
  font-size: 13.5px;
  color: var(--forest);
  opacity: 0.7;
  margin-top: 6px;
}
.contact-tile .btn { margin-top: 22px; }

.contact-body {
  background: var(--bone);
  padding: 90px 0;
}
.contact-body__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
.contact-form {
  background: var(--paper);
  padding: 44px;
  border: 1.5px solid var(--forest);
}
.contact-form h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.05;
  margin: 6px 0 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}
.form-field input,
.form-field select,
.form-field textarea {
  border: none;
  border-bottom: 1.5px solid var(--forest);
  background: transparent;
  padding: 8px 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--forest);
  outline: none;
  width: 100%;
}
.form-field select {
  border: 1.5px solid var(--forest);
  padding: 10px 12px;
  border-radius: 0;
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
}
.form-field textarea {
  border: 1.5px solid var(--forest);
  padding: 12px;
  resize: vertical;
  font-style: normal;
  font-family: var(--sans);
  font-size: 14px;
  min-height: 120px;
}

.contact-faq h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.1;
  margin: 6px 0 18px;
}
.faq-item {
  border-top: 1px dashed var(--forest);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  color: var(--terracotta);
  font-style: normal;
  font-size: 1.4rem;
  transition: transform 0.25s ease;
  font-family: var(--sans);
  font-weight: 400;
}
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.85;
  padding: 4px 0 18px;
}
.contact-faq__note {
  margin-top: 28px;
  padding-top: 16px;
  position: relative;
}

/* ── TOLCARNE ──────────────────────────────────────────────────── */
.breadcrumb {
  padding: 28px 0 0;
  background: var(--paper);
}
.breadcrumb__inner {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.7;
}
.breadcrumb__inner .current {
  color: var(--terracotta);
  font-weight: 700;
  opacity: 1;
}

.tol-hero {
  background: var(--paper);
  padding: 32px 0 0;
}
.tol-hero__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: flex-end;
}
.tol-hero__eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--terracotta);
  margin-bottom: 4px;
}
.tol-hero__title {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.tol-hero__title em { font-style: italic; }
.tol-hero__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--forest);
  opacity: 0.85;
  margin-top: 16px;
  max-width: 520px;
}
.tol-hero__specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.tol-hero__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tol-tag {
  padding: 5px 11px;
  background: var(--bone);
  border: 1px solid var(--forest);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
}
.tol-hero__price {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest);
}
.tol-hero__price strong { font-size: 2.2rem; font-weight: 400; }

.tol-gallery {
  background: var(--paper);
  padding: 36px 0 0;
}
.tol-gallery__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 12px;
}
.tol-gallery__grid .gal-photo {
  overflow: hidden;
  position: relative;
}
.tol-gallery__grid .gal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tol-gallery__grid .gal-photo:hover img { transform: scale(1.04); }
.tol-gallery__grid .gal-photo--main { grid-row: 1 / span 2; }
.gal-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  background: var(--terracotta);
  color: var(--bone);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}
.gal-more {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 14px;
  background: var(--bone);
  border: 1.5px solid var(--forest);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  cursor: pointer;
}
.gal-more:hover { background: var(--forest); color: var(--bone); }
.tol-gallery__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--forest);
  opacity: 0.65;
}
.tol-gallery__meta a {
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11.5px;
}
.tol-gallery__meta a:hover { text-decoration: underline; }
.tol-gallery__links { display: flex; gap: 18px; }

.tol-features {
  padding: 90px 0;
  background: var(--paper);
}
.tol-features__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 32px;
  flex-wrap: wrap;
}
.tol-features__head h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
}
.tol-features__head p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.85;
  max-width: 400px;
  margin: 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-cell {
  padding: 40px 36px;
  border-radius: 20px;
  background: var(--bone);
  display: flex;
  flex-direction: column;
}

/* Alternating colour blocks */
.feature-cell:nth-child(2),
.feature-cell:nth-child(5) {
  background: var(--forest);
}
.feature-cell:nth-child(4) {
  background: var(--ochre);
}

.feature-cell svg {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  opacity: 0.9;
}
/* Invert SVG icons on dark/gold backgrounds */
.feature-cell:nth-child(2) svg,
.feature-cell:nth-child(5) svg { filter: brightness(0) invert(1); opacity: 0.8; }
.feature-cell:nth-child(4) svg { filter: brightness(0); opacity: 0.35; }

.feature-cell__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  color: var(--forest);
  line-height: 1.08;
  margin: 20px 0 10px;
}
.feature-cell:nth-child(2) .feature-cell__title,
.feature-cell:nth-child(5) .feature-cell__title { color: var(--ochre); }
.feature-cell:nth-child(4) .feature-cell__title { color: var(--forest-deep); }

.feature-cell__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.feature-cell:nth-child(2) .feature-cell__desc,
.feature-cell:nth-child(5) .feature-cell__desc { color: rgba(216, 227, 242, 0.9); }
.feature-cell:nth-child(4) .feature-cell__desc { color: var(--forest); }

.tol-rooms {
  background: var(--bone);
  padding: 90px 0;
}
.tol-rooms__head {
  text-align: center;
  margin-bottom: 48px;
}
.tol-rooms__head h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.rooms-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
.rooms-grid[data-count="4"] { grid-template-columns: repeat(4, 1fr); }
.room-card {
  background: var(--paper);
  border: 1.5px solid var(--bone-3);
}
.room-card__img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}
.room-card__body {
  padding: 24px 24px 28px;
}
.room-card__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--terracotta);
}
.room-card__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 2rem);
  color: var(--forest);
  line-height: 1.05;
  margin-top: 2px;
}
.room-card__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.85;
  margin-top: 8px;
}

.checkin-section {
  padding: 100px 0 110px;
  background: var(--paper);
}
.checkin-section__head {
  text-align: center;
  margin-bottom: 56px;
}
.checkin-section__head h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--forest);
  margin: 8px 0 0;
}
.checkin-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.checkin-card {
  padding: 40px 40px 44px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}
.checkin-card.bg-forest { grid-column: 1; grid-row: 1; }
.checkin-card.bg-terra  { grid-column: 3; grid-row: 1; }
.checkin-card__label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(251, 244, 229, 0.6);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.checkin-card__time {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.015em;
  margin: 0;
}
.checkin-note {
  font-size: 15px;
  line-height: 1.65;
  color: var(--forest);
  opacity: 0.82;
  text-align: center;
  padding: 22px 24px 0;
  max-width: 380px;
  margin: 0 auto;
  grid-row: 2;
}
.checkin-note--in  { grid-column: 1; }
.checkin-note--out { grid-column: 3; }
.checkin-arrow {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--ochre);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--forest-deep);
  flex-shrink: 0;
  align-self: center;
  position: relative;
  z-index: 1;
  margin: 0 -10px;
  box-shadow: 0 2px 12px rgba(67, 101, 175, 0.2);
}

.booking-info {
  background: var(--bone);
  padding: 90px 0;
}
.booking-info__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.booking-info__intro h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 6px 0 18px;
}
.booking-info__intro p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.85;
}
.booking-info__intro .svg-caravan { margin-top: 24px; }
.booking-table li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--forest);
}
.booking-table__key {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-top: 2px;
}
.booking-table__val {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--forest);
}

.tol-cta {
  background: var(--terracotta);
  color: var(--bone);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tol-cta__clipart-l {
  position: absolute;
  bottom: 28px;
  left: 5%;
  transform: rotate(-8deg);
}
.tol-cta__clipart-r {
  position: absolute;
  top: 44px;
  right: 7%;
  transform: rotate(8deg);
}
.tol-cta__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
.tol-cta__eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ochre);
  margin-bottom: 6px;
}
.tol-cta__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.tol-cta__title em { font-style: italic; color: var(--ochre); }
.tol-cta__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cross-sell {
  padding: 90px 0;
  background: var(--paper);
}
.cross-sell__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.cross-sell__head h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--forest);
  margin: 6px 0 0;
}
.cross-sell__see-all {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.cross-sell__see-all:hover { text-decoration: underline; }
.cross-sell__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cross-sell__grid[data-count="4"] { grid-template-columns: repeat(4, 1fr); }
.cross-card {
  background: var(--bone);
  border: 1.5px solid var(--bone-3);
  text-decoration: none;
  display: block;
  color: inherit;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.cross-card:hover { box-shadow: var(--shadow-soft); }
.cross-card__img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.cross-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(67,101,175,0.12) 0%, rgba(247,195,58,0.08) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.cross-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.6s ease;
}
.cross-card:hover .cross-card__img { transform: scale(1.05); }
.cross-card__body {
  padding: 18px 18px 22px;
}
.cross-card__name {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.9rem;
  color: var(--forest);
  line-height: 1;
}
.cross-card__sub {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.65;
  margin-top: 4px;
}
.cross-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}
.cross-card__price {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--terracotta);
}
.cross-card__link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
}

/* ── LANDING: DOGS ───────────────────────────────────────────── */
.dogs-hero {
  background: var(--paper);
  padding: 24px 32px 0;
}
.dogs-hero__photo {
  position: relative;
  height: 560px;
  overflow: hidden;
}
.dogs-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dogs-hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 28%, rgba(44,74,62,0.55) 100%);
}
.dogs-hero__sun {
  position: absolute;
  top: 26px;
  left: 26px;
  z-index: 2;
  transform: rotate(-8deg);
}
.dogs-hero__text {
  position: absolute;
  bottom: 48px;
  left: 56px;
  z-index: 2;
  color: var(--bone);
}
.dogs-hero__text .eyebrow { color: var(--ochre); }
.dogs-hero__text h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  font-weight: 400;
  color: var(--bone);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  margin: 4px 0 20px;
}
.dogs-hero__text h1 em { font-style: italic; }

.dogs-perks {
  padding: 60px 0 72px;
  background: var(--paper);
}
.dogs-perks__head {
  text-align: center;
  margin-bottom: 40px;
}
.dogs-perks__head h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 400;
  color: var(--forest);
  margin: 6px 0 0;
}
.dogs-perks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.perk-card {
  background: var(--bone);
  padding: 28px 28px 30px;
  border: none;
  border-top: 3px solid var(--terracotta);
  border-radius: 4px;
  transition: background 0.4s ease, border-top-width 0.25s ease;
}
.perk-card:hover {
  background: var(--bone-2);
  border-top-width: 6px;
}
.perk-card:nth-child(3n+2) { border-top-color: var(--ochre); }
.perk-card:nth-child(3n+3) { border-top-color: var(--forest); }
.perk-card__title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.18;
  letter-spacing: -0.005em;
  margin: 0;
  padding-bottom: 16px;
  position: relative;
}
.perk-card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--ochre);
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.6, 0.05, 0.3, 1);
}
.perk-card:hover .perk-card__title::after { width: 64px; }
.perk-card:nth-child(3n+2) .perk-card__title::after { background: var(--terracotta); }
.perk-card:nth-child(3n+3) .perk-card__title::after { background: var(--ochre); }
.perk-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.82;
  margin: 16px 0 0;
}

.dogs-quote {
  background: var(--terracotta);
  color: var(--bone);
  padding: 90px 0;
  text-align: center;
}
.dogs-quote__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 48px;
}
.dogs-quote__stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--ochre);
}
.dogs-quote__text {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.35;
  margin: 0;
}
.dogs-quote__attribution {
  font-family: var(--hand);
  font-size: 1.7rem;
  color: var(--ochre);
  margin-top: 20px;
}

.dogs-cta {
  background: var(--ochre);
  color: var(--forest);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dogs-cta__clipart-l {
  position: absolute;
  bottom: 28px;
  left: 7%;
  transform: rotate(-10deg);
}
.dogs-cta__clipart-r {
  position: absolute;
  top: 44px;
  right: 7%;
  transform: rotate(10deg);
}
.dogs-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
.dogs-cta__eyebrow { color: var(--terracotta); }
.dogs-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 6px 0 22px;
}
.dogs-cta h2 em { font-style: italic; }

/* ── LANDING: MIDWEEK ─────────────────────────────────────────── */
.midweek-hero {
  background: var(--ochre);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.midweek-hero__clipart-l {
  position: absolute;
  top: 56px;
  left: 5%;
  transform: rotate(-12deg);
}
.midweek-hero__clipart-r {
  position: absolute;
  bottom: 52px;
  right: 7%;
  transform: rotate(8deg);
}
.midweek-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.midweek-hero__eyebrow { color: var(--terracotta); }
.midweek-hero__title {
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 6px 0 0;
}
.midweek-hero__title em { font-style: italic; }
.midweek-hero__body {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--forest);
  opacity: 0.85;
  margin-top: 20px;
  max-width: 460px;
}
.midweek-hero__btns {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.midweek-stamp {
  display: flex;
  justify-content: center;
}
.midweek-stamp__card {
  width: clamp(240px, 30vw, 300px);
  aspect-ratio: 300/360;
  padding: 12px;
  background: var(--paper);
  border: 3px dashed var(--forest);
  transform: rotate(-4deg);
  box-shadow: 0 28px 56px -16px rgba(0,0,0,0.28);
}
.midweek-stamp__inner {
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.midweek-stamp__save-label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 10px;
}
.midweek-stamp__pct {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(4rem, 10vw, 6.5rem);
  line-height: 0.9;
}
.midweek-stamp__pct sup { font-size: 0.5em; vertical-align: top; }
.midweek-stamp__sub {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.7rem);
  margin-top: 8px;
}
.midweek-stamp__code {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(251,244,229,0.5);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.midweek-included {
  padding: 90px 0;
  background: var(--paper);
}
.midweek-included__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}
.midweek-included__intro h2 {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.05;
  margin: 6px 0 0;
}
.midweek-included__intro .svg-caravan { margin-top: 24px; }
.included-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px dashed var(--forest);
}
.included-list__star { flex-shrink: 0; margin-top: 2px; }
.included-list__title {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--forest);
}
.included-list__detail {
  font-size: 13.5px;
  color: var(--forest);
  opacity: 0.65;
  margin-top: 2px;
}

.midweek-cta {
  background: var(--forest);
  color: var(--bone);
  padding: 90px 0;
  text-align: center;
}
.midweek-cta__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 48px;
}
.midweek-cta__eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ochre);
  margin-bottom: 6px;
}
.midweek-cta h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.midweek-cta h2 em { font-style: italic; color: var(--ochre); }

/* ══════════════════════════════════════════════════════════════
   BLOG
   ══════════════════════════════════════════════════════════════ */

/* ── Blog index header ───────────────────────────────────────── */
.blog-header { text-align: center; }
.blog-header__title {
  font: 500 clamp(2.4rem, 5vw, 3.6rem)/1.15 var(--display);
  font-style: italic;
  color: var(--forest);
  margin: 8px 0 0;
}
.blog-header__intro {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 18px;
  color: var(--ash);
  line-height: 1.65;
}

/* ── Magazine layout (top hero + stack) ─────────────────────── */
.blog-magazine { margin-bottom: 48px; }
.blog-magazine__top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  height: 560px;
  margin-bottom: 20px;
}
.blog-magazine__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 100%;
}
.post-card--hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  background: var(--forest-deep);
}
.post-card--hero__link {
  display: block;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.post-card--hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}
.post-card--hero:hover .post-card--hero__img { transform: scale(1.04); }
.post-card--hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,16,36,0.9) 0%, rgba(8,16,36,0.25) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 48px;
  color: white;
}
.post-card--hero__title {
  font: 500 clamp(1.9rem, 3vw, 3rem)/1.15 var(--display);
  font-style: italic;
  color: white;
  margin: 8px 0 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.post-card--hero__excerpt {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 500px;
}
.post-card--hero .post-card__cat { color: var(--ochre); margin-bottom: 6px; }
.post-card--hero .post-card__date { color: rgba(255,255,255,0.55); font-size: 12px; }
.post-card--stack {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  background: var(--forest-deep);
}
.post-card--stack__link {
  display: block;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.post-card--stack__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.6s ease;
}
.post-card--stack:hover .post-card--stack__img { transform: scale(1.05); }
.post-card--stack__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,16,36,0.88) 0%, rgba(8,16,36,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  color: white;
}
.post-card--stack__title {
  font: 500 1.3rem/1.25 var(--display);
  font-style: italic;
  color: white;
  margin: 6px 0 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.post-card--stack .post-card__cat { color: var(--ochre); margin-bottom: 2px; }
.post-card--stack .post-card__date { color: rgba(255,255,255,0.55); font-size: 11px; }

/* ── Blog post rows (image left · text right · stacked) ─────── */
.blog-rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
}
.blog-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: var(--bone);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition);
}
.blog-row:hover { box-shadow: var(--shadow-soft); }
.blog-row__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.blog-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.blog-row:hover .blog-row__img { transform: scale(1.04); }
.blog-row__body {
  padding: 36px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-row__title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--forest);
  line-height: 1.15;
  margin: 8px 0 14px;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}
.blog-row:hover .blog-row__title { color: var(--terracotta); }
.blog-row__title a { color: inherit; text-decoration: none; }
.blog-row__excerpt {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.75;
  margin-bottom: 24px;
}
.blog-row__foot {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}
.blog-row__date {
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ash);
}

/* ── Pagination trail (footprints + page links) ─────────────── */
.blog-pagination-wrap {
  text-align: center;
  margin-top: 56px;
}
.blog-trail {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
  pointer-events: none;
}
.blog-trail svg { max-width: 240px; height: auto; }

/* Shared cat label */
.post-card__cat {
  display: inline-block;
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

/* ── Pagination ──────────────────────────────────────────────── */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font: 700 13px/1 var(--sans);
  color: var(--forest);
  border: 2px solid var(--bone-3);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.page-numbers:hover,
.page-numbers.current {
  background: var(--forest);
  color: var(--bone);
  border-color: var(--forest);
}

/* ── Single post ─────────────────────────────────────────────── */
.post-single__back-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color var(--transition);
}
.post-single__back-link:hover { color: var(--forest); }
.post-single__header { text-align: center; }
.post-single__title {
  font: 500 clamp(2.2rem, 4.5vw, 3.6rem)/1.15 var(--display);
  font-style: italic;
  color: var(--forest);
  margin: 8px 0 16px;
}
.post-single__meta { font-size: 13px; color: var(--ash); }

.post-single__hero { padding: 0 0 8px; }
.post-single__img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
}

.post-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.post-content h2 {
  font: 500 1.9rem/1.2 var(--display);
  font-style: italic;
  color: var(--forest);
  margin: 48px 0 16px;
}
.post-content h3 {
  font: 700 1.15rem/1.3 var(--sans);
  color: var(--forest);
  margin: 36px 0 12px;
  letter-spacing: 0.02em;
}
.post-content p { margin: 0 0 24px; }
.post-content a { color: var(--terracotta); text-decoration: underline; }
.post-content ul,
.post-content ol { margin: 0 0 24px 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
  border-left: 4px solid var(--ochre);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--bone);
  border-radius: 0 16px 16px 0;
  font-style: italic;
  font-size: 1.1em;
  color: var(--forest);
}
.post-content img { border-radius: 12px; margin: 32px 0; width: 100%; }

.post-single__back { margin-top: 56px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container,
  .container--narrow,
  .container--text { padding: 0 32px; }

  .header-main-bar            { padding: 12px 40px; gap: 16px; }
  .site-logo img              { height: 96px; }
  .header-nav                 { padding: 12px 40px; }
  .header-nav__list           { gap: 28px; }
  .header-phone__number       { font-size: 24px; }
  .header-phone__label        { font-size: 16px; }
  .header-book                { font-size: 11px; padding: 9px 18px; }
  .header-nav a               { font-size: 12px; }

  .blog-magazine__top { height: 420px; }
  .blog-row { grid-template-columns: 300px 1fr; }

  .hero-slider__stage { height: 540px; }
  .hero-slider__panel { width: clamp(360px, 58%, 620px); }
  .hero-slider__panel-inner { padding: 0 12% 50px 6%; }
  .hero-slider__brush { height: 60px; }

  .hero-feature__photo { height: 540px; }
  .hero-feature__panel { width: clamp(360px, 58%, 620px); }
  .hero-feature__panel-inner { padding: 0 12% 50px 6%; }
  .hero-feature__brush { height: 60px; }
  .photo-strip-3 { padding: 0 32px 60px; gap: 10px; }
  .photo-strip-3 .strip-photo { height: 200px; }

  .hero-centred { padding: 64px 32px 0; }
  .hero-centred__photo-grid { padding: 0 32px 60px; }
  .hero-centred__photo-grid .grid-photo { height: 280px; }

  .category-row .container { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .category-card { height: 340px; }

  .story-block__text { padding: 24px 36px; }
  .story-block__title { font-size: clamp(1.6rem, 3vw, 2.6rem); }

  .stats-strip__clipart-l,
  .stats-strip__clipart-r { display: none; }

  .reviews__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .footer-links { gap: 32px; }

  /* find us */
  .map-section__grid { gap: 28px; }
  .getting-here__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .landmarks__grid { gap: 40px; }

  /* contact */
  .contact-tiles__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .contact-body__grid { gap: 36px; }
  .contact-form { padding: 32px; }

  /* tolcarne */
  .tol-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; }
  .tol-gallery__grid .gal-photo--main { grid-row: 1 / span 2; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { gap: 16px; }
  .booking-info__grid { gap: 36px; }

  /* dogs */
  .dogs-perks__grid { grid-template-columns: repeat(2, 1fr); }

  /* midweek */
  .midweek-hero__grid { gap: 32px; }
  .midweek-included__grid { gap: 36px; }
  .cross-sell__grid { gap: 14px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container,
  .container--narrow,
  .container--text { padding: 0 20px; }

  /* Header */
  .header-main-bar           { padding: 10px 20px; grid-template-columns: auto 1fr auto; gap: 12px; }
  .site-logo img             { height: 64px; }
  .header-phone__label       { display: none; }
  .header-phone__number      { font-size: 18px; }
  .header-nav                { display: none; }
  .header-book               { display: none; }
  .nav-toggle                { display: flex; }

  .blog-magazine__top { grid-template-columns: 1fr; height: auto; gap: 16px; }
  .post-card--hero { aspect-ratio: 4/3; height: auto; }
  .blog-magazine__stack { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .post-card--stack { aspect-ratio: 4/3; height: auto; }
  .post-card--hero__overlay { padding: 28px; }
  .blog-row { grid-template-columns: 1fr; }
  .blog-row__img-wrap { aspect-ratio: 16 / 9; }
  .blog-row__body { padding: 24px 24px 30px; }
  .post-single__img { aspect-ratio: 16 / 9; border-radius: 12px; }

  .hero-slider__stage { height: 520px; }
  .hero-slider__panel {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
    background: linear-gradient(180deg,
      rgba(var(--panel-rgb), 0.78) 0%,
      rgba(var(--panel-rgb), 0.55) 100%);
    align-items: flex-end;
  }
  .hero-slider__panel-inner { padding: 0 24px 80px; max-width: 100%; }
  .hero-slider__title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .hero-slider__body { max-width: 100%; font-size: 14px; }
  .hero-slider__brush { height: 50px; }

  /* Section spacing */
  .section    { padding: 60px 0; }
  .section--sm { padding: 40px 0; }
  .section--lg { padding: 80px 0; }

  /* Hero feature */
  .hero-feature__photo { height: 520px; }
  .hero-feature__sun { display: none; }
  .hero-feature__panel {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
    background: linear-gradient(180deg,
      rgba(var(--panel-rgb), 0.78) 0%,
      rgba(var(--panel-rgb), 0.55) 100%);
    align-items: flex-end;
  }
  .hero-feature__panel-inner { padding: 0 24px 80px; max-width: 100%; }
  .hero-feature__title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .hero-feature__body { max-width: 100%; font-size: 14px; }
  .hero-feature__brush { height: 50px; }
  .photo-strip-3 {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px 48px;
    gap: 8px;
  }
  .photo-strip-3 .strip-photo { height: 160px; }
  .photo-strip-3 .strip-photo:last-child { display: none; }

  /* Hero centred */
  .hero-centred { padding: 52px 20px 0; overflow: visible; }
  .hero-centred__clipart-left,
  .hero-centred__clipart-right,
  .hero-centred__clipart-bottom { display: none; }
  .hero-centred__photo-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 48px;
  }
  .hero-centred__photo-grid .grid-photo { height: 240px; }
  .hero-centred__photo-grid .grid-photo:nth-child(2),
  .hero-centred__photo-grid .grid-photo:nth-child(3) { display: none; }

  /* Category */
  .category-row .container { grid-template-columns: 1fr; gap: 2px; }
  .category-card { height: 260px; }

  /* Story blocks */
  .story-block { padding: 40px 0; }
  .story-block__inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .story-block--reverse .story-block__image-wrap,
  .story-block--reverse .story-block__text {
    grid-column: 1;
    grid-row: auto;
  }
  .story-block__image-wrap { padding: 24px 16px 16px; }
  .story-block__photo { padding: 10px 10px 42px; transform: rotate(-1deg); }
  .story-block--reverse .story-block__photo { transform: rotate(1deg); }
  .story-block__image { aspect-ratio: 16/9; min-height: 0; }
  .story-block__caption { font-size: 22px; height: 38px; bottom: 2px; }
  .story-block__illus { display: none; }
  .story-block__text { padding: 8px 0 0; }

  /* Stats */
  .stats-strip__grid { gap: 28px 36px; }
  .stats-strip { padding: 52px 0; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews { padding: 60px 0; }

  /* Book CTA */
  .book-cta { padding: 72px 0; }
  .book-cta__clipart-r,
  .book-cta__clipart-l { display: none; }
  .book-cta__inner { padding: 0 24px; }

  /* Footer */
  .footer-sun,
  .footer-seagull { display: none; }
  .site-footer { padding: 100px 0 28px; }
  .site-footer__brush { height: 60px; }
  .footer-newsletter h2 { font-size: clamp(1.2rem, 4vw, 1.8rem); }
  .footer-email-form { width: 100%; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-bottom .site-logo img { height: 44px; }

  /* Page header */
  .page-header { padding: 52px 0 36px; }
  .page-header__inner { padding: 0 20px; }
  .page-header__clipart-l,
  .page-header__clipart-r { display: none; }

  /* Find us */
  .map-section__grid { grid-template-columns: 1fr; }
  .map-placeholder { aspect-ratio: 4/3; }
  .address-card { padding: 28px 24px; }
  .getting-here__grid { grid-template-columns: repeat(2, 1fr); }
  .landmarks__grid { grid-template-columns: 1fr; gap: 32px; }

  /* Contact */
  .contact-tiles__grid { grid-template-columns: 1fr; }
  .contact-body__grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  /* Tolcarne */
  .tol-hero__grid { grid-template-columns: 1fr; gap: 20px; }
  .tol-hero__specs { align-items: flex-start; }
  .tol-hero__tags { justify-content: flex-start; }
  .tol-gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 180px 180px 180px 180px;
  }
  .tol-gallery__grid .gal-photo--main { grid-row: 1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr; }
  .checkin-section { padding: 64px 0 72px; }
  .checkin-section__head { margin-bottom: 36px; }
  .checkin-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }
  .checkin-card.bg-forest,
  .checkin-card.bg-terra,
  .checkin-note,
  .checkin-note--in,
  .checkin-note--out {
    grid-column: 1;
    grid-row: auto;
  }
  .checkin-card { padding: 32px 28px 36px; }
  .checkin-note { padding: 18px 8px 24px; max-width: none; }
  .checkin-arrow {
    display: flex;
    width: 52px;
    height: 52px;
    margin: 8px auto;
    transform: rotate(90deg);
    box-shadow: 0 2px 10px rgba(67, 101, 175, 0.2);
  }
  .booking-info__grid { grid-template-columns: 1fr; }
  .booking-info__intro .svg-caravan { display: none; }
  .booking-table li { grid-template-columns: 1fr; gap: 4px; }
  .tol-cta__clipart-l,
  .tol-cta__clipart-r { display: none; }
  .tol-cta__inner { padding: 0 24px; }
  .cross-sell__grid { grid-template-columns: 1fr; }
  .cross-sell__head { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Dogs landing */
  .dogs-hero { padding: 0; }
  .dogs-hero__photo { height: 440px; }
  .dogs-hero__text { left: 24px; right: 24px; }
  .dogs-hero__sun { display: none; }
  .dogs-perks__grid { grid-template-columns: 1fr; }
  .dogs-quote__inner { padding: 0 24px; }
  .dogs-cta__clipart-l,
  .dogs-cta__clipart-r { display: none; }
  .dogs-cta__inner { padding: 0 24px; }

  /* Midweek landing */
  .midweek-hero { padding: 64px 0; }
  .midweek-hero__clipart-l,
  .midweek-hero__clipart-r { display: none; }
  .midweek-hero__grid { grid-template-columns: 1fr; }
  .midweek-stamp { justify-content: flex-start; }
  .midweek-included__grid { grid-template-columns: 1fr; }
  .midweek-included__intro .svg-caravan { display: none; }
  .midweek-cta__inner { padding: 0 24px; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .site-logo img { height: 76px; }
  .hero-feature__photo { height: 380px; }
  .photo-strip-3 { grid-template-columns: 1fr; }
  .photo-strip-3 .strip-photo { height: 200px; }
  .photo-strip-3 .strip-photo:last-child { display: block; }
  .stats-strip__grid > * { flex: 0 1 45%; min-width: 130px; }
  .footer-links { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .tol-gallery__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .tol-gallery__grid .gal-photo { height: 220px; }
  .midweek-stamp__card { transform: none; }
}

/* ── STAYS FILTER TABS ──────────────────────────────────────── */
.stays-filter {
  background: var(--bone-2);
  border-bottom: 1px solid var(--bone-3);
  position: sticky;
  top: 0;
  z-index: 90;
}
.stays-filter .container { padding: 0 48px; }
.stays-filter__list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.stays-filter__list::-webkit-scrollbar { display: none; }
.stays-filter__tab {
  display: inline-block;
  padding: 14px 20px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}
.stays-filter__tab:hover { color: var(--forest); }
.stays-filter__tab--active {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

/* ── STAYS GROUPED SECTIONS ─────────────────────────────────── */
.stays-group {
  padding: 60px 0 20px;
  background: var(--paper);
}
.stays-group + .stays-group {
  padding-top: 20px;
  border-top: 1px dashed var(--bone-3);
}
.stays-group__head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stays-group__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--forest);
  margin: 0;
}
.stays-group__desc {
  font-size: 14px;
  color: var(--ash);
  flex: 1;
}
.stays-group__all {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--terracotta);
  margin-left: auto;
  white-space: nowrap;
}
.stays-group__all:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════
   SINGLE ACCOMMODATION
   ══════════════════════════════════════════════════════════════ */

/* ── HERO ───────────────────────────────────────────────────── */
.accom-hero {
  background: var(--paper);
  padding: 24px 32px 0;
}
.accom-hero__photo-wrap {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--bone-2);
}
.accom-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.accom-hero__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 32, 22, 0.78) 0%, rgba(15, 32, 22, 0.1) 50%, transparent 100%);
  pointer-events: none;
}
.accom-hero__copy {
  position: absolute;
  bottom: 40px;
  left: 48px;
  right: 48px;
  z-index: 2;
}
.accom-hero__eyebrow {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--ochre);
  margin-bottom: 8px;
}
.accom-hero__title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  color: var(--paper);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
}
.accom-hero__title em { font-style: italic; }

/* ── BOOKING ROW ────────────────────────────────────────────── */
.accom-book-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0 32px;
  border-bottom: 1px solid var(--bone-3);
}
.accom-book-row__tagline {
  font-size: 16px;
  line-height: 1.65;
  color: var(--forest);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 0 14px;
}
.accom-book-row__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.accom-book-row__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}
.accom-book-row__price {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--forest);
  white-space: nowrap;
}
.accom-book-row__price strong {
  font-size: 2.4rem;
  font-weight: 400;
}

/* ── GALLERY LIGHTBOX ───────────────────────────────────────── */
.gal-photo { cursor: pointer; }
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 13, 0.97);
  z-index: 310;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.lightbox.is-open { display: flex; }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  color: var(--paper);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox__stage {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 94vw;
  justify-content: center;
}
.lightbox__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-height: 80vh;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
.lightbox__prev,
.lightbox__next {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--paper);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox__counter {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .accom-hero { padding: 16px 20px 0; }
  .accom-hero__photo-wrap { height: 480px; }
}
@media (max-width: 768px) {
  .accom-hero { padding: 12px 12px 0; }
  .accom-hero__photo-wrap { height: 420px; }
  .accom-hero__copy { left: 24px; right: 24px; bottom: 28px; }
  .accom-book-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 28px;
  }
  .accom-book-row__right { align-items: flex-start; flex-direction: row; align-items: center; gap: 20px; }
  .lightbox__prev, .lightbox__next { width: 40px; height: 40px; font-size: 24px; }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed { opacity: 1; transform: none; }

/* Direction variants */
.reveal--left  { transform: translateX(-36px); }
.reveal--right { transform: translateX(36px); }
.reveal--left.revealed,
.reveal--right.revealed { transform: none; }

/* Stagger delays for grid children */
.reveal-d1 { transition-delay: 90ms; }
.reveal-d2 { transition-delay: 180ms; }
.reveal-d3 { transition-delay: 270ms; }
.reveal-d4 { transition-delay: 360ms; }
.reveal-d5 { transition-delay: 450ms; }

/* Don't animate if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── VIBRANT-MODE TOGGLE (preview UI) ──────────────────── */
.vibrant-toggle {
  position: fixed;
  right: 16px;
  bottom: 88px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 10px 12px;
  border-radius: 999px;
  background: #1A1A1A;
  color: #FBF4E5;
  font: 700 12px/1 var(--sans);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}
.vibrant-toggle:hover { transform: translateY(-2px); }
.vibrant-toggle__dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--ash);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.25);
  transition: background 0.2s ease;
}
:root.vibrant-mode .vibrant-toggle { background: var(--forest); }
:root.vibrant-mode .vibrant-toggle__dot { background: var(--ochre); }
@media (max-width: 768px) { .vibrant-toggle { bottom: 16px; right: 16px; padding: 8px 12px; font-size: 11px; } }
