/* ─────────────────────────────────────────────
   Design tokens
───────────────────────────────────────────── */
:root {
  --green-dark:   #34402F;
  --green-mid:    #93A07E;
  --cream-bg:     #F4EEDF;
  --cream-light:  #FBF8F0;
  --cream-border: #E4DAC8;
  --cream-tag:    #EDE4D2;
  --terracotta:   #B4623B;
  --terracotta-dk:#8A3F1E;
  --brown-text:   #2A241E;
  --brown-mid:    #4F463B;
  --brown-muted:  #6F6353;
  --brown-subtle: #8A7A66;
  --gold-warm:    #E9C9A0;
  --gold-amber:   #8A6A47;
  --strip-bg:     #2A241E;
  --font-serif:   'Newsreader', Georgia, serif;
  --font-sans:    'Hanken Grotesk', system-ui, sans-serif;
  --font-hand:    'Caveat', cursive;
  --radius-sm:    10px;
  --radius-md:    14px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --radius-pill:  999px;
  --shadow-card:  0 14px 38px rgba(42,36,30,0.09);
  --shadow-hero:  0 18px 50px rgba(42,36,30,0.30);
  --max-w:        1180px;
}

/* ─────────────────────────────────────────────
   Base reset
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--brown-text);
  background: var(--cream-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }
::selection { background: var(--terracotta); color: #fff; }

/* ─────────────────────────────────────────────
   Layout helpers
───────────────────────────────────────────── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 70px 28px 30px;
}
.section--lodges { padding-top: 90px; }
.section--last   { padding-bottom: 90px; }

/* ─────────────────────────────────────────────
   Typography
───────────────────────────────────────────── */
.section-tag {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.05;
}
.section-heading--center { text-align: center; max-width: 20ch; margin: 0 auto; }

/* ─────────────────────────────────────────────
   Buttons
───────────────────────────────────────────── */
.btn-primary {
  background: var(--terracotta);
  color: #FBF8F0;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: #9e552f; }
.btn-primary--full { width: 100%; padding: 15px; font-size: 16px; border-radius: var(--radius-md); }

.btn-outline {
  background: none;
  color: var(--green-dark);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.btn-outline:hover { border-color: var(--brown-muted); }

.btn-dark {
  background: var(--green-dark);
  color: #F3EBDC;
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-weight: 600;
  font-size: 14.5px;
  cursor: pointer;
}
.btn-dark:hover { background: #2a3424; }

.btn-light {
  background: #FBF8F0;
  color: var(--terracotta-dk);
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px 34px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  flex: none;
}
.btn-light:hover { background: #f0ebe0; }

/* ─────────────────────────────────────────────
   Tags
───────────────────────────────────────────── */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: var(--cream-tag);
  color: #4A4034;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: var(--radius-pill);
}

/* ─────────────────────────────────────────────
   Header
───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244,238,223,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-border);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 13px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-btn {
  display: flex;
  align-items: baseline;
  gap: 9px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}
.logo-wordmark {
  font-family: var(--font-hand);
  font-size: 33px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 0.9;
}
.logo-wordmark--light { color: var(--gold-warm); font-size: 32px; }
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-amber);
  font-weight: 600;
  padding-bottom: 3px;
}
.logo-sub--light { color: #9A8E7C; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14.5px;
  color: var(--brown-text);
  padding: 0;
  text-decoration: none;
  font-family: inherit;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--terracotta); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone { font-size: 14.5px; color: var(--brown-muted); text-decoration: none; font-weight: 500; }
.header-phone:hover { color: var(--brown-text); }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown-text);
  border-radius: 2px;
}
.mobile-menu {
  border-top: 1px solid var(--cream-border);
  padding: 16px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-link {
  display: block;
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  color: var(--brown-text);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--cream-border);
}
.mobile-phone { color: var(--brown-muted); font-weight: 600; border-bottom: none; }

/* ─────────────────────────────────────────────
   Hero
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,36,30,0.12) 0%, rgba(42,36,30,0.18) 45%, rgba(42,36,30,0.66) 100%);
}
.hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 28px 56px;
  color: #FBF8F0;
}
.hero-location {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #F0E6D2;
  margin-bottom: 14px;
}
.hero-heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(52px, 7vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  max-width: 15ch;
  text-shadow: 0 1px 30px rgba(42,36,30,0.3);
}
.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  max-width: 50ch;
  margin-bottom: 30px;
  color: #F3EBDC;
}

/* Search bar */
.search-bar {
  background: #FBF8F0;
  border-radius: var(--radius-lg);
  padding: 9px;
  display: flex;
  align-items: stretch;
  gap: 4px;
  max-width: 780px;
  box-shadow: var(--shadow-hero);
}
.search-field {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 16px;
  cursor: pointer;
}
.search-field--narrow { flex: 0.9; }
.search-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-amber);
  font-weight: 700;
}
.search-input {
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--brown-text);
  padding: 0;
  width: 100%;
  cursor: pointer;
}
.search-input:focus { outline: none; }
.search-divider { width: 1px; background: var(--cream-border); margin: 8px 0; }
.search-btn {
  flex: none;
  background: var(--green-dark);
  color: #FBF8F0;
  border: none;
  border-radius: var(--radius-md);
  padding: 0 28px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}
.search-btn:hover { background: #2a3424; }

/* ─────────────────────────────────────────────
   Trust strip
───────────────────────────────────────────── */
.trust-strip {
  background: var(--green-dark);
  padding: 22px 28px;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.trust-handwriting {
  font-family: var(--font-hand);
  font-size: 30px;
  color: var(--gold-warm);
  line-height: 1;
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: #55624C;
  flex: none;
}
.trust-text { font-size: 15px; color: #C9C2B0; }

/* ─────────────────────────────────────────────
   Lodge cards
───────────────────────────────────────────── */
.lodges-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.lodges-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--brown-muted);
  max-width: 38ch;
}
.lodge-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.lodge-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lodge-card__img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.lodge-card__img { width: 100%; height: 100%; object-fit: cover; }
.lodge-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(52,64,47,0.92);
  color: #F3EBDC;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}
.lodge-card__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lodge-card__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 6px;
}
.lodge-card__meta {
  font-size: 14px;
  color: var(--gold-amber);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.lodge-card__desc {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--brown-muted);
  margin-bottom: 22px;
}
.lodge-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lodge-card__price { font-size: 15px; color: var(--brown-text); }
.price-num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
}
.price-unit { color: var(--brown-subtle); }

/* ─────────────────────────────────────────────
   Feature cards
───────────────────────────────────────────── */
.features-header { text-align: center; margin-bottom: 44px; }
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-light);
  border: 1px solid var(--cream-border);
}
.feature-card__img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.feature-card__img { width: 100%; height: 100%; object-fit: cover; }
.feature-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__placeholder-icon { font-size: 48px; }
.feature-card__body { padding: 22px 22px 24px; }
.feature-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 23px;
  margin-bottom: 8px;
}
.feature-card__desc { font-size: 15px; line-height: 1.6; color: var(--brown-muted); }

/* ─────────────────────────────────────────────
   Area section
───────────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.area-img-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.area-img { width: 100%; height: 100%; object-fit: cover; }
.area-content .section-heading { font-size: 40px; margin-bottom: 18px; }
.area-desc { font-size: 17px; line-height: 1.65; color: #5C5145; margin-bottom: 24px; }

/* ─────────────────────────────────────────────
   Book direct band
───────────────────────────────────────────── */
.band {
  background: var(--terracotta);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  color: #FBF3E9;
}
.band__text { max-width: 30ch; }
.band__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.05;
  margin-bottom: 12px;
  color: #FFF7EE;
}
.band__sub { font-size: 17px; line-height: 1.55; color: #F4DDCB; }

/* ─────────────────────────────────────────────
   Lodge page
───────────────────────────────────────────── */
.lodge-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 30px 28px 0;
}
.back-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown-muted);
  font-size: 14px;
  padding: 0;
  margin-bottom: 22px;
  font-family: inherit;
}
.back-btn:hover { color: var(--brown-text); }

.lodge-page__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.lodge-page__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 54px;
  line-height: 1;
  margin-bottom: 6px;
}
.lodge-page__location { font-size: 15.5px; color: var(--brown-muted); }

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 172px;
  gap: 10px;
  margin-bottom: 54px;
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.photo-grid__main { grid-column: span 2; grid-row: span 2; }
.photo-grid__wide { grid-column: span 2; }
.photo-grid__sm   { grid-column: span 1; }

/* Lodge layout */
.lodge-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 54px;
  align-items: start;
  padding-bottom: 80px;
}

.lodge-content__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 32px;
  margin-bottom: 16px;
}
.lodge-content__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--brown-mid);
  margin-bottom: 16px;
}
.lodge-content__body:last-of-type { margin-bottom: 40px; }
.lodge-content__subtitle {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 25px;
  margin-bottom: 18px;
}
.lodge-content__subtitle--sm { font-size: 21px; margin-bottom: 14px; }
.lodge-content__note { font-size: 14.5px; line-height: 1.6; color: var(--brown-muted); margin-bottom: 44px; }

/* Bedroom grid */
.bedroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.bedroom-card {
  background: var(--cream-light);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: 18px;
}
.bedroom-card__floor {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-amber);
  font-weight: 700;
  margin-bottom: 6px;
}
.bedroom-card__name { font-size: 16px; color: var(--brown-text); font-weight: 600; }

/* Amenity list */
.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin-bottom: 44px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 0;
  border-bottom: 1px solid #EAE1CF;
  font-size: 15px;
  color: #3F362C;
}
.amenity__dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--green-mid);
  flex: none;
  transform: rotate(45deg);
}

/* Dogs box */
.dogs-box {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  color: #E7E1D2;
  margin-bottom: 36px;
}
.dogs-box__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 10px;
  color: #F3EBDC;
}
.dogs-box__body { font-size: 15.5px; line-height: 1.65; margin-bottom: 14px; color: #CDC6B5; }
.dogs-box__highlight { color: var(--gold-warm); font-weight: 600; }
.dogs-box__link { font-size: 14.5px; color: var(--gold-warm); text-decoration: none; font-weight: 600; }
.dogs-box__link:hover { text-decoration: underline; }

/* Notes list */
.notes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 40px;
}
.notes-list li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--brown-muted);
  padding-left: 18px;
  position: relative;
}
.notes-list li::before { content: '·'; position: absolute; left: 0; color: var(--terracotta); }

/* ─────────────────────────────────────────────
   Booking sidebar
───────────────────────────────────────────── */
.booking-sidebar {
  position: sticky;
  top: 88px;
  background: var(--cream-light);
  border: 1px solid var(--cream-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.sidebar-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 4px;
}
.sidebar-price {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--brown-text);
}
.sidebar-per { font-size: 15px; color: var(--brown-subtle); }
.sidebar-min-badge {
  font-size: 12.5px;
  color: var(--gold-amber);
  font-weight: 600;
  background: var(--cream-tag);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}

.sidebar-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0 14px;
}
.sidebar-date-field {
  border: 1.5px solid #E0D5C0;
  border-radius: 11px;
  padding: 10px 13px;
}
.sidebar-date-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-amber);
  font-weight: 700;
  margin-bottom: 3px;
}
.sidebar-date-val { font-size: 14.5px; color: var(--brown-text); font-weight: 500; }

/* Calendar */
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-nav__btn {
  background: none;
  border: 1px solid #E0D5C0;
  border-radius: 8px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  color: var(--brown-muted);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.cal-nav__btn:hover { border-color: var(--brown-muted); }
.cal-nav__btn:disabled { opacity: 0.35; cursor: default; }
.cal-nav__label {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--brown-text);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}
.cal-dow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #A89A85;
}

.cal-cells {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cal-week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-day {
  height: 36px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-family: var(--font-sans);
  border: none;
  border-radius: 9px;
  background: transparent;
  color: var(--brown-text);
  cursor: pointer;
  padding: 0;
  transition: background 0.1s;
}
.cal-day:hover:not(:disabled):not(.cal-day--sel) { background: #f0ebe0; }
.cal-day:disabled { color: #CABFAB; text-decoration: line-through; cursor: not-allowed; }
.cal-day--range { background: #ECE3CF; border-radius: 0; color: var(--brown-text); }
.cal-day--sel { background: var(--green-dark) !important; color: #FBF8F0; font-weight: 600; }
.cal-day--empty { visibility: hidden; }

.cal-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 4px;
  font-size: 11.5px;
  color: #8A7A66;
}
.cal-legend__item { display: flex; align-items: center; gap: 6px; }
.cal-legend__swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}
.cal-legend__swatch--sel   { background: var(--green-dark); }
.cal-legend__swatch--range { background: #ECE3CF; }
.cal-legend__swatch--booked { background: #fff; border: 1px solid #E0D5C0; }

.sidebar-divider { border: none; border-top: 1px solid #EAE1CF; margin: 16px 0; }
.sidebar-section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-amber);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Add-ons */
.addon-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.addon {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
.addon__box {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border: 1.5px solid #CDBFA6;
  background: transparent;
  transition: background 0.12s, border-color 0.12s;
  font-size: 12px;
  color: #FBF8F0;
  line-height: 1;
}
.addon__box--on { border-color: var(--green-dark); background: var(--green-dark); }
.addon__label { flex: 1; font-size: 14.5px; color: #3F362C; }
.addon__price { font-size: 14px; color: var(--brown-subtle); font-weight: 600; }

/* Price breakdown */
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  color: #5C5145;
  margin-bottom: 8px;
}
.price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 6px 0 16px;
}
.price-total-label { font-size: 16px; font-weight: 600; color: var(--brown-text); }
.price-total-amt {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--brown-text);
}

/* Book button */
.btn-book {
  width: 100%;
  border: none;
  border-radius: var(--radius-md);
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  background: #D9CDB7;
  color: #8A7A66;
  transition: background 0.15s, color 0.15s;
}
.btn-book--active {
  background: var(--terracotta);
  color: #FBF8F0;
  cursor: pointer;
}
.btn-book--active:hover { background: #9e552f; }

.booking-confirm {
  background: var(--green-dark);
  color: var(--gold-warm);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.5;
}
.sidebar-disclaimer {
  font-size: 12.5px;
  color: var(--brown-subtle);
  text-align: center;
  margin-top: 11px;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   Group upsell
───────────────────────────────────────────── */
.group-upsell {
  background: var(--cream-tag);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.group-upsell__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 6px;
  color: var(--brown-text);
}
.group-upsell__body {
  font-size: 15.5px;
  line-height: 1.6;
  color: #5C5145;
  max-width: 60ch;
}

/* ─────────────────────────────────────────────
   Enquire section
───────────────────────────────────────────── */
.enquire-section {
  background: var(--green-dark);
  padding: 70px 28px;
}
.enquire-inner {
  max-width: 700px;
  margin: 0 auto;
}
.enquire-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 42px;
  color: #F3EBDC;
  margin-bottom: 10px;
}
.enquire-sub { font-size: 16px; color: #A89E8C; margin-bottom: 36px; line-height: 1.6; }

.enquire-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: #C9C0B0;
  letter-spacing: 0.02em;
}
.form-optional { font-weight: 400; color: #8A8070; }
.form-input {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: #F3EBDC;
  transition: border-color 0.15s;
}
.form-input::placeholder { color: #6E6558; }
.form-input:focus { outline: none; border-color: var(--gold-warm); }
select.form-input option { background: var(--green-dark); color: #F3EBDC; }
.form-textarea { resize: vertical; min-height: 120px; }

.form-status { font-size: 14px; color: var(--gold-warm); margin-top: 4px; min-height: 20px; }

/* ─────────────────────────────────────────────
   Footer
───────────────────────────────────────────── */
.site-footer { background: var(--strip-bg); color: #C9C0B0; }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 28px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-logo { display: flex; align-items: baseline; gap: 9px; margin-bottom: 14px; }
.footer-about { font-size: 15px; line-height: 1.65; color: #A89E8C; max-width: 34ch; }
.footer-col-heading {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7E7361;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-address { font-size: 14.5px; line-height: 1.7; color: #BDB4A2; }
.footer-contact { font-size: 14.5px; line-height: 1.9; color: #BDB4A2; }
.footer-link { color: #BDB4A2; text-decoration: none; }
.footer-link:hover { color: #F3EBDC; }
.footer-link--accent { color: var(--gold-warm); }
.footer-bar { border-top: 1px solid #3D362D; }
.footer-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 28px;
  font-size: 12.5px;
  color: #7E7361;
}

/* ─────────────────────────────────────────────
   Responsive
───────────────────────────────────────────── */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  .lodge-cards        { grid-template-columns: 1fr; }
  .feature-cards      { grid-template-columns: 1fr 1fr; }
  .area-grid          { grid-template-columns: 1fr; gap: 32px; }
  .lodge-layout       { grid-template-columns: 1fr; }
  .booking-sidebar    { position: static; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .photo-grid         { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; }
  .form-row           { grid-template-columns: 1fr; }
}

/* ── Mobile (≤ 680px) ── */
@media (max-width: 680px) {
  /* Layout */
  .section              { padding: 50px 16px 20px; }
  .section--lodges      { padding-top: 56px; }
  .section--last        { padding-bottom: 60px; }

  /* Header */
  .main-nav, .header-actions { display: none; }
  .mobile-menu-btn      { display: flex; }
  .header-inner         { padding: 12px 16px; }
  .mobile-menu          { padding: 12px 16px 16px; }

  /* Mobile nav touch targets */
  .mobile-nav-link      { padding: 13px 0; font-size: 15px; }

  /* Hero */
  .hero                 { min-height: 70vh; align-items: flex-end; }
  .hero-content         { padding: 0 16px 32px; }
  .hero-location        { font-size: 11px; margin-bottom: 10px; }
  .hero-heading         { font-size: 42px; margin-bottom: 14px; }
  .hero-sub             { font-size: 16px; margin-bottom: 22px; max-width: 100%; }

  /* Search bar — stack vertically */
  .search-bar           { flex-direction: column; padding: 6px; border-radius: var(--radius-md); }
  .search-field         { padding: 8px 12px; flex: none; }
  .search-field--narrow { flex: none; }
  .search-divider       { width: auto; height: 1px; margin: 0 6px; }
  .search-input         { font-size: 16px; } /* prevent iOS auto-zoom */
  .search-btn           { padding: 13px 20px; border-radius: 10px; justify-content: center; }

  /* Typography */
  .section-heading      { font-size: 30px; }
  .section-heading--center { max-width: 100%; }

  /* Trust strip */
  .trust-strip          { padding: 18px 16px; }
  .trust-divider        { display: none; }
  .trust-inner          { flex-direction: column; gap: 10px; }
  .trust-handwriting    { font-size: 24px; }
  .trust-text           { font-size: 13px; }

  /* Lodges header */
  .lodges-header        { flex-direction: column; gap: 14px; margin-bottom: 24px; }
  .lodges-sub           { max-width: 100%; font-size: 15px; }

  /* Lodge cards */
  .lodge-card__name     { font-size: 26px; }

  /* Feature cards */
  .feature-cards        { grid-template-columns: 1fr; }
  .features-header      { margin-bottom: 28px; }

  /* Area section */
  .area-content .section-heading { font-size: 30px; }
  .area-desc            { font-size: 15px; }

  /* Band */
  .band                 { flex-direction: column; text-align: center; padding: 36px 24px; border-radius: var(--radius-lg); }
  .band__heading        { font-size: 30px; }
  .band__sub            { font-size: 15px; }

  /* Lodge page */
  .lodge-page           { padding: 20px 16px 0; }
  .back-btn             { padding: 10px 0; margin-bottom: 14px; } /* bigger touch target */
  .lodge-page__name     { font-size: 34px; }
  .lodge-page__header   { flex-direction: column; align-items: flex-start; }

  /* Photo grid — 2 col mosaic */
  .photo-grid           { grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; gap: 6px; margin-bottom: 32px; }
  .photo-grid__main     { grid-column: span 2; grid-row: span 2; }
  .photo-grid__wide     { grid-column: span 2; }

  /* Lodge content */
  .lodge-content__title  { font-size: 24px; }
  .lodge-content__body   { font-size: 16px; }
  .lodge-content__subtitle { font-size: 20px; }
  .bedroom-grid          { grid-template-columns: 1fr; }
  .amenity-list          { grid-template-columns: 1fr; }
  .dogs-box              { padding: 22px 20px; }
  .dogs-box__title       { font-size: 20px; }

  /* Group upsell */
  .group-upsell          { padding: 22px 20px; flex-direction: column; }

  /* Booking sidebar */
  .booking-sidebar       { padding: 20px 16px; }
  .sidebar-price         { font-size: 28px; }
  .cal-day               { height: 38px; font-size: 13px; }

  /* Form inputs — 16px prevents iOS zoom */
  .form-input            { font-size: 16px; padding: 14px 14px; }

  /* Enquire */
  .enquire-section       { padding: 50px 16px; }
  .enquire-title         { font-size: 32px; }

  /* Footer */
  .footer-inner          { grid-template-columns: 1fr; padding: 40px 16px 28px; gap: 28px; }
  .footer-bar-inner      { padding: 16px 16px; }
}

/* ── Small phones (≤ 400px) ── */
@media (max-width: 400px) {
  .hero                 { min-height: 85vh; }
  .hero-heading         { font-size: 36px; }
  .logo-wordmark        { font-size: 27px; }
  .section-heading      { font-size: 27px; }
  .band__heading        { font-size: 26px; }
  .photo-grid           { grid-auto-rows: 110px; }
  .sidebar-dates        { grid-template-columns: 1fr; }
}
