/* ============================================
   175° East — Canopy-matched rebuild
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colours */
  --cream:      #FAF7F2;
  --white:      #ffffff;
  --charcoal:   #2C1F14;
  --body:       #6B5A4A;
  --salmon:     #A85F3E;
  --olive:      #8d963f;
  --sand:       #c4a97d;
  --sand-dark:  #a8894f;
  --light-line: #DDD4C2;
  --linen: #F5F0E8;
  --stone: #DDD4C2;

  /* Fonts */
  --heading:   'Playfair Display', Georgia, serif;
  --condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  /* Spacing scale (8px base) */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   32px;
  --space-xl:   48px;
  --space-2xl:  64px;
  --space-3xl:  80px;
  --space-hero: 120px;

  /* Section rhythm */
  --section-pad-lg: var(--space-2xl);   /* 64px — prominent sections */
  --section-pad:    var(--space-xl);    /* 48px — major sections */
  --section-pad-sm: var(--space-lg);    /* 32px — tighter sections */
  --side-pad:       var(--space-lg);    /* 32px — consistent horizontal padding */
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--heading);
  color: var(--body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* TOC anchor targets — suppress focus ring and offset for fixed nav */
h1[tabindex="-1"],
h2[tabindex="-1"],
h3[tabindex="-1"],
h4[tabindex="-1"] {
  outline: none !important;
  outline-offset: 0 !important;
  scroll-margin-top: 130px;
}
h1[tabindex="-1"]:focus,
h2[tabindex="-1"]:focus,
h3[tabindex="-1"]:focus,
h4[tabindex="-1"]:focus,
h1[tabindex="-1"]:focus-visible,
h2[tabindex="-1"]:focus-visible,
h3[tabindex="-1"]:focus-visible,
h4[tabindex="-1"]:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s;
}
.site-header.menu-open,
.site-header.scrolled {
  background: var(--white);
}
.site-header--light { background: var(--white); }

/* Logo as menu trigger */
.header-logo {
  background: none; border: none; cursor: pointer; padding: 0;
  display: flex; align-items: center;
  z-index: 1001; position: relative;
}
.header-logo img {
  height: 72px;
  transition: filter 0.3s, height 0.3s;
  filter: brightness(10) drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.site-header.scrolled  .header-logo img,
.site-header.menu-open .header-logo img,
.site-header--light    .header-logo img {
  filter: none;
  height: 64px;
}

/* ============================================================
   MENU — Canopy-style dropdown from top
   ============================================================ */
.nav-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  padding: 96px 40px 48px;
}
.nav-menu.open { display: block; }

.nav-menu ul {
  list-style: none;
  padding: 0; margin: 0;
}
.nav-menu ul li {
  border-bottom: 1px solid var(--light-line);
}
.nav-menu ul li:first-child { border-top: 1px solid var(--light-line); }
.nav-menu ul li a {
  display: block;
  font-family: var(--condensed);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--salmon);
  padding: 14px 0;
  transition: opacity 0.2s;
}
.nav-menu ul li a:hover { opacity: 0.7; }

.nav-book {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.nav-book:hover { color: var(--salmon); border-color: var(--salmon); }

/* Menu close area — clicking outside closes menu */
/* Hamburger button — visible top-right on all pages */
.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--charcoal);
  padding: 4px 8px;
  z-index: 1001;
  position: relative;
  line-height: 1;
  transition: color 0.2s;
}
.hamburger-btn:hover { color: var(--salmon); }
.site-header .hamburger-btn { color: var(--charcoal); }
/* On hero (transparent header), hamburger is white */
.site-header:not(.scrolled):not(.menu-open):not(.site-header--light) .hamburger-btn {
  color: rgba(255,255,255,0.9);
}

/* Submenu — expand/collapse */
.nav-has-sub { position: relative; }
.nav-toggle-sub {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--condensed);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--salmon);
  padding: 14px 0;
  display: block;
  width: 100%;
  text-align: left;
  transition: opacity 0.2s;
}
.nav-toggle-sub:hover { opacity: 0.7; }
.sub-arrow {
  display: inline-block;
  transition: transform 0.25s;
  margin-left: 6px;
  font-size: 0.85em;
}
.nav-toggle-sub[aria-expanded="true"] .sub-arrow { transform: rotate(180deg); }

.nav-sub {
  display: none;
  list-style: none;
  padding: 0 0 8px 20px;
  margin: 0;
  border-bottom: 1px solid var(--light-line);
}
.nav-sub.open { display: block; }
.nav-sub li { border-bottom: none; border-top: none; }
.nav-sub li a {
  font-size: 1.3rem;
  padding: 7px 0;
  color: var(--sand-dark);
  letter-spacing: 1px;
}
/* Override the general first-child border for the submenu parent border */
.nav-has-sub { border-bottom: none; }

.nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  z-index: 998;
}
.nav-backdrop.open { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: calc(100svh - 80px); min-height: 600px;
  display: flex; align-items: flex-start; justify-content: center;
  text-align: center; overflow: hidden;
  padding-top: 20vh;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 60%;
  filter: brightness(0.9);
}
.hero-bg--responsive {
  background-image: url('/images/medlands-golden-800.webp');
}
@media (min-width: 801px) {
  .hero-bg--responsive {
    background-image: url('/images/medlands-golden-1600.webp');
  }
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.hero-title-block {
  position: absolute;
  top: 22%;
  left: 0; right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-title-block h1 {
  font-family: var(--condensed);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}
.hero-tagline-block {
  position: absolute;
  bottom: 32%;
  left: 0; right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-tagline {
  font-family: var(--heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--white);
  opacity: 0.9;
  margin: 0;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: float 2.5s ease-in-out infinite;
}
.hero-scroll svg { width: 22px; stroke: rgba(255,255,255,0.7); }
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-7px); }
}

/* ============================================================
   INTRO BAND
   ============================================================ */
.section-intro {
  padding: var(--section-pad) var(--side-pad);
  text-align: center;
  background: var(--white);
}
.section-intro h2 {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 20px;
}
.section-intro p {
  font-family: var(--heading);
  font-size: 1.1rem;
  line-height: 1.85;
  max-width: 620px;
  margin: 0 auto;
  color: var(--body);
}

/* ============================================================
   HOUSES SECTION
   ============================================================ */
.section-houses {
  padding: var(--section-pad-lg) 0;
  background: var(--cream);
}
.section-houses .section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding: 0 var(--side-pad);
}
.section-houses .section-header h2 {
  font-family: var(--condensed);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.section-houses .section-header p {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--body);
  margin-top: 10px;
}

/* 3-column card grid */
.houses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 32px;
  margin-bottom: 24px;
}

/* House card */
.house-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
}
.house-card:hover .campsite-image img { transform: scale(1.04); }
.house-card:hover .view-label { opacity: 1; }

/* Image wrapper */
.campsite-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.campsite-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* Hover overlay */
.view-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.house-card:hover .view-overlay { opacity: 1; }
.view-label {
  font-family: var(--condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 8px 20px;
}

/* Card text */
.card-text {
  padding: var(--space-sm) 0 var(--space-md);
}
.card-name {
  font-family: var(--condensed);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 4px;
}
.card-meta {
  font-family: var(--heading);
  font-size: 0.9rem;
  color: var(--body);
  margin-bottom: 4px;
}
.card-price {
  font-family: var(--heading);
  font-size: 0.9rem;
  color: var(--body);
}
.card-price strong {
  color: var(--charcoal);
}

/* Full-width whole estate card */
.house-card-wide {
  grid-column: 1 / -1;
}
.house-card-wide .campsite-image {
  aspect-ratio: 21/8;
}

/* ============================================================
   INNER PAGE HERO  (used on all sub-pages)
   ============================================================ */
.page-hero {
  padding: var(--space-hero) var(--side-pad) var(--space-lg);
  background: var(--white);
  border-bottom: 1px solid var(--light-line);
}
.page-hero--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  border-bottom: none;
  min-height: 380px;
  display: flex;
  align-items: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}
.page-hero .section-label {
  display: block;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--condensed);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.page-hero .page-lead {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--body);
  max-width: 640px;
  width: 100%;
  text-align: center;
  margin: 0.5rem auto 0;
  display: block;
}

/* ============================================================
   GENERAL PAGE CONTENT SECTIONS
   ============================================================ */
.content-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.content-section.alt { background: var(--cream); }
.content-section.dark {
  background: var(--stone);
  color: var(--body);
}
.content-section.dark h2 { color: var(--charcoal); }

.content-inner { max-width: 720px; padding: 0 40px; }
.content-inner h2 {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.content-inner p {
  font-family: var(--heading);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1em;
}

/* Section eyebrow label — refined overline above headings */
.section-label {
  font-family: var(--condensed);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: var(--space-xs);
  line-height: 1;
  display: block;
}

/* Item list rows (directions, area etc) */
.item-list { list-style: none; }
.item-list li {
  display: flex; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-line);
  font-family: var(--heading);
  font-size: 0.95rem; line-height: 1.65;
}
.item-list li:first-child { border-top: 1px solid var(--light-line); }
.item-list .item-name {
  font-family: var(--condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  flex-shrink: 0;
  min-width: 140px;
}

/* Numbered steps */
.steps-list { list-style: none; counter-reset: steps; }
.steps-list li {
  counter-increment: steps;
  display: flex; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-line);
  font-family: var(--heading);
  font-size: 0.95rem; line-height: 1.65;
  align-items: flex-start;
}
.steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 0.8rem; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* Contact blocks */
.contact-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--light-line);
}
.contact-block:first-child { border-top: 1px solid var(--light-line); }
.contact-label {
  font-family: var(--condensed);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 4px;
}
.contact-value {
  font-family: var(--heading);
  font-size: 1.1rem;
  color: var(--charcoal);
}
a.contact-value:hover { color: var(--salmon); }

/* CTA band */
.cta-band {
  padding: var(--section-pad-lg) var(--side-pad);
  text-align: center;
  background: var(--stone);
  color: var(--charcoal);
}
.cta-band h2 {
  font-family: var(--condensed);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.cta-band p {
  font-family: var(--heading); font-style: italic;
  font-size: 1.1rem; opacity: 0.8;
  max-width: 480px; margin: 0 auto 32px;
}
.btn {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--charcoal); color: var(--white); }
.btn-dark {
  border-color: var(--salmon); color: var(--salmon);
}
.btn-dark:hover { background: var(--salmon); color: var(--white); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-list { max-width: 640px; margin: 0 auto; }
.review-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--light-line);
  text-align: center;
}
.review-item:last-child { border-bottom: none; }
.review-stars { color: var(--olive); font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 18px; }
.review-item blockquote {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.review-author {
  font-family: var(--condensed);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--body);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 640px; }
.faq-item { border-bottom: 1px solid var(--light-line); }
.faq-question {
  width: 100%; text-align: left;
  background: none; border: none; cursor: pointer;
  padding: 20px 36px 20px 0;
  font-family: var(--condensed);
  font-size: 1rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--charcoal);
  position: relative; line-height: 1.4;
}
.faq-question::after {
  content: '+'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 300; color: var(--salmon);
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  font-family: var(--heading);
  font-size: 0.95rem; line-height: 1.75; color: var(--body);
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 22px; }
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { padding-left: 1.25rem; margin-top: 0.5rem; }
.faq-answer ul li { margin-bottom: 0.35rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--cream);
  padding: var(--section-pad) var(--side-pad) var(--section-pad-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: left;
}
.footer-col h4 {
  font-family: var(--condensed);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  font-family: var(--heading);
  font-size: 0.95rem;
  color: var(--body);
  display: block;
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--salmon); }
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--light-line);
  padding-top: 32px;
}
.footer-logo { height: 52px; margin: 0 auto 16px; }
.footer-copy {
  font-family: var(--condensed);
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--body);
}

/* ============================================================
   MOBILE STICKY BOOK
   ============================================================ */
.mobile-book-btn {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: #6B5B45; color: var(--white);
  text-align: center; padding: 15px;
  font-family: var(--condensed);
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* Desktop hero text positions */
@media (min-width: 769px) {
  .hero-title-block { top: 22%; }
  .hero-tagline-block { bottom: 32%; }
  .hero-find-stay { bottom: 14%; }
}

@media (max-width: 768px) {
  .mobile-book-btn { display: block; }
  body { padding-bottom: 52px; }

  .nav-menu ul li a { font-size: 1.6rem; }
  .nav-menu { padding: 88px 28px 40px; }

  .hero-title-block h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-title-block { top: 18%; }
  .hero-tagline-block { bottom: 28%; }
  .hero-find-stay { bottom: 12%; }

  .houses-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 28px;
  }
  .house-card-wide { grid-column: auto; }
  .house-card-wide .campsite-image { aspect-ratio: 4/3; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .content-inner { padding: 0 20px; }
  .cta-band { padding: var(--section-pad-sm) 24px; }
  .page-hero-content { padding: 32px 24px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .houses-grid { padding: 0 24px; gap: 16px; }
}

/* ── Summer photo strip ── */
.section-summer {
  padding: 0;
  background: var(--charcoal);
}
.summer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px;
  gap: 3px;
}
.summer-img {
  overflow: hidden;
}
.summer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.summer-img:hover img {
  transform: scale(1.04);
}
.summer-img--wide {
  /* already handled by grid-template-columns */
}
@media (max-width: 700px) {
  .summer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .summer-img--wide {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }

.lead {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.7;
}

/* ============================================================
   BUTTONS — unified
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--salmon);
  color: var(--white);
  border: 2px solid var(--salmon);
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: transparent; color: var(--salmon); }

.btn-book {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--white);
  color: var(--charcoal);
  border: 2px solid var(--white);
  transition: background 0.2s, color 0.2s;
}
.btn-book:hover { background: transparent; color: var(--white); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: var(--space-md) 0 var(--space-xl);
  background: var(--cream);
}
.contact-container {
  max-width: 640px;
  padding: 0 var(--side-pad);
}
.contact-link {
  font-family: var(--heading);
  font-size: 0.9rem;
  color: var(--body);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-link:hover { color: var(--salmon); }
.contact-divider { margin: 0 var(--space-xs); color: var(--body); }

.book-direct-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.book-direct-list {
  margin: var(--space-md) 0 var(--space-lg);
}
.book-direct-item {
  font-family: var(--heading);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  padding: 14px 0;
  border-bottom: 1px solid var(--light-line);
}
.book-direct-item:first-child { border-top: 1px solid var(--light-line); }

/* ============================================================
   DIRECTIONS PAGE
   ============================================================ */
.directions-section {
  padding: var(--space-lg) 0;
  background: var(--white);
}
.directions-section.directions-alt { background: var(--cream); }
.directions-container {
  max-width: 760px;
  padding: 0 var(--side-pad);
}

/* Sub-section H2 for directions, area, etc. */
.directions-section h2,
.area-section h2 {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}
.directions-section h3,
.area-section h3 {
  font-family: var(--condensed);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.travel-list { margin-top: var(--space-md); }
.travel-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--light-line);
  font-family: var(--heading);
  font-size: 0.95rem;
  line-height: 1.75;
}
.travel-item:first-child { border-top: 1px solid var(--light-line); }
.travel-label {
  display: block;
  font-family: var(--condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}

.route-block { margin-bottom: var(--space-sm); }
.route-divider {
  font-family: var(--heading);
  font-style: italic;
  color: var(--body);
  text-align: center;
  margin: var(--space-xs) 0;
  font-size: 0.95rem;
  opacity: 0.7;
}

.directions-steps {
  list-style: decimal;
  padding-left: var(--space-md);
  font-family: var(--heading);
  font-size: 0.95rem;
  line-height: 1.75;
}
.directions-steps li { padding: 6px 0; }

.house-locations {
  margin-top: var(--space-md);
}
.house-location {
  display: flex;
  gap: var(--space-md);
  padding: 14px 0;
  border-bottom: 1px solid var(--light-line);
  align-items: baseline;
}
.house-location:first-child { border-top: 1px solid var(--light-line); }
.house-location-name {
  font-family: var(--condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  min-width: 160px;
  flex-shrink: 0;
}
.house-location-desc {
  font-family: var(--heading);
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.6;
}

.directions-help {
  padding: var(--space-lg) var(--side-pad);
  background: var(--cream);
  text-align: center;
}
.directions-help h2 {
  font-family: var(--condensed);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-xs);
}
.directions-help p {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--body);
  margin-bottom: var(--space-lg);
}
.help-contacts {
  display: flex;
  gap: var(--space-xl);
  justify-content: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.help-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.help-name {
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--body);
}
.help-number {
  font-family: var(--heading);
  font-size: 1.1rem;
  color: var(--charcoal);
  transition: color 0.2s;
}
.help-contact:hover .help-number { color: var(--salmon); }

/* ============================================================
   THE AREA PAGE
   ============================================================ */
.area-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.area-section.area-alt { background: var(--cream); }
.area-section.area-dark {
  background: var(--stone);
  color: var(--body);
}
.area-section.area-dark h2 { color: var(--charcoal); }
.area-section.area-dark p  { color: var(--body); }
.area-container {
  max-width: 760px;
  padding: 0 var(--side-pad);
}
.area-section p {
  font-family: var(--heading);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1em;
}
.area-list { margin-top: var(--space-xs); }
.area-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--light-line);
  align-items: baseline;
}
.area-item:first-child { border-top: 1px solid var(--light-line); }
.area-item-name {
  font-family: var(--condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  min-width: 140px;
  flex-shrink: 0;
}
.area-item-desc {
  font-family: var(--heading);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--body);
}
.area-guide-callout {
  border: 1px solid var(--light-line);
  border-radius: 4px;
  padding: var(--space-md) var(--space-lg);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
}
.area-guide-callout__label {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.area-guide-callout__desc {
  font-family: var(--heading);
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.area-quote {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--body);
  max-width: 640px;
  margin: var(--space-md) auto 0;
  border-left: 2px solid var(--salmon);
  padding-left: var(--space-md);
  text-align: left;
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.reviews-section.reviews-alt { background: var(--cream); }
.reviews-container {
  max-width: 800px;
  padding: 0 var(--side-pad);
  margin: 0 auto;
}
.reviews-section h2 {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--light-line);
}
.review-card {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--light-line);
}
.review-card:last-child { border-bottom: none; }
.review-card blockquote {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
}
.review-card .review-stars { margin-bottom: var(--space-sm); }

.reviews-cta {
  padding: var(--section-pad) var(--side-pad);
  background: var(--stone);
  color: var(--charcoal);
  text-align: center;
}
.reviews-cta h2 {
  font-family: var(--condensed);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}
.reviews-cta p {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--body);
  margin: 0 auto var(--space-md);
  max-width: 480px;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.section-faq {
  padding: var(--space-lg) var(--side-pad) var(--section-pad);
  background: var(--white);
}
.section-faq .faq-list {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.faq-section-title {
  max-width: 720px;
  margin: 2.5rem auto 0.75rem;
  font-family: var(--condensed);
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--salmon);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-line);
  scroll-margin-top: 140px;
}
.faq-toc {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: var(--cream, #FAF7F2);
  width: 100%;
  margin: 0;
  padding: 0.75rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  border-bottom: 1px solid var(--stone, #DDD4C2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-toc a {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--salmon);
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: var(--condensed);
  letter-spacing: 0.5px;
  color: var(--salmon);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.faq-toc a:hover {
  background: var(--salmon);
  color: #fff;
}
.faq-cta {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  background: var(--cream, #faf8f5);
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--body);
}
.faq-cta a { color: var(--salmon); font-weight: 600; }

/* ============================================================
   RESPONSIVE — sub-pages
   ============================================================ */
@media (max-width: 768px) {
  .directions-help { padding: var(--section-pad-sm) var(--space-md); }
  .help-contacts { gap: var(--space-lg); }
  .house-location { flex-direction: column; gap: var(--space-xs); }
  .house-location-name { min-width: unset; }
  .area-item { flex-direction: column; gap: 4px; }
  .area-item-name { min-width: unset; }
  .reviews-container { padding: 0 var(--space-md); }
  .area-container { padding: 0 var(--space-md); }
  .directions-container { padding: 0 var(--space-md); }
  .contact-container { padding: 0 var(--space-md); }
}

/* ============================================================
   GENERAL SUB-PAGE H2  (catches any section h2 not specifically
   targeted by a section-class rule above)
   ============================================================ */
.book-direct-section h2,
.contact-section h2 {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}
/* ============================================================
   STYLE.CSS ADDITIONS — append to end of existing style.css
   175° East — v2 additions
   ============================================================ */


/* ============================================================
   HERO — CTA button addition
   ============================================================ */
.btn-hero {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.8);
  transition: background 0.25s, border-color 0.25s;
  margin-top: 8px;
}
.btn-hero:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* Hero lower Find Your Stay — plain text, no box */
.hero-find-stay {
  position: absolute;
  bottom: 14%;
  left: 0; right: 0;
  z-index: 2;
  text-align: center;
}
.btn-hero-text {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  border: none;
  padding: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  transition: opacity 0.2s;
}
.btn-hero-text:hover {
  opacity: 0.75;
}


/* ============================================================
   INTRO STATS BAND
   ============================================================ */
.intro-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--light-line);
}
.intro-stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--condensed);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--body);
  margin-top: 4px;
}
@media (max-width: 540px) {
  .intro-stats {
    gap: var(--space-lg);
    flex-wrap: wrap;
  }
  .stat-num { font-size: 2.2rem; }
}


/* ============================================================
   WHOLE ESTATE — improved card text layout
   ============================================================ */
.whole-estate-wrap {
  padding: 0 32px;
}
.card-text-wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.card-price-block {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}
.card-cta-pill {
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 6px 16px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .whole-estate-wrap { padding: 0 20px; }
  .card-text-wide { flex-direction: column; align-items: flex-start; gap: var(--space-xs); }
  .card-price-block { flex-direction: column; align-items: flex-start; gap: 6px; }
}


/* ============================================================
   BOOK DIRECT BAND (homepage)
   ============================================================ */
.book-direct-band {
  background: var(--stone);
  padding: var(--space-2xl) var(--side-pad);
}
.book-direct-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}
.book-direct-text h2 {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.book-direct-text p {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--body);
}
.book-direct-band .btn-primary {
  background: var(--cta-primary);
  color: var(--white);
  border-color: var(--cta-primary);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 1rem;
  padding: 0.85rem 2rem;
}
.book-direct-band .btn-primary:hover {
  background: transparent;
  color: var(--cta-primary);
}
@media (max-width: 640px) {
  .book-direct-inner { flex-direction: column; text-align: center; }
  .book-direct-band .btn-primary { width: 100%; text-align: center; }
}


/* ============================================================
   INDIVIDUAL HOUSE PAGE — hero
   ============================================================ */
.house-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  background-size: cover;
  background-position: center 40%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.house-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.15) 50%,
    rgba(0,0,0,0.05) 100%
  );
}
.house-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: var(--space-2xl) var(--side-pad);
  max-width: 860px;
  margin-top: -8vh;
}
.house-hero-content h1 {
  font-family: var(--condensed);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--white);
}
.house-hero-tagline {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.1rem;
  opacity: 0.88;
  margin-bottom: var(--space-md);
}
.house-hero-meta {
  font-family: var(--condensed);
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.house-hero-meta strong { color: var(--white); }
.meta-sep { opacity: 0.5; }

.btn-house-hero {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  background: var(--white);
  color: var(--charcoal);
  border: 2px solid var(--white);
  transition: background 0.2s, color 0.2s;
}
.btn-house-hero:hover {
  background: transparent;
  color: var(--white);
}

/* Whole Estate hero — "Check Availability" pinned bottom-left */
.estate-avail-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 3;
}

/* ============================================================
   INDIVIDUAL HOUSE PAGE — body / features
   ============================================================ */
.house-body {
  padding: var(--space-3xl) var(--side-pad);
  background: var(--white);
}
.house-body-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.house-description p {
  font-family: var(--heading);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--body);
}
.house-features h3 {
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}
.feature-list {
  list-style: none;
  padding: 0; margin: 0;
}
.feature-list li {
  font-family: var(--heading);
  font-size: 0.95rem;
  color: var(--body);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-line);
  padding-left: 18px;
  position: relative;
}
.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-size: 0.8rem;
}
@media (max-width: 768px) {
  .house-body-inner { grid-template-columns: 1fr; }
}


/* ============================================================
   INDIVIDUAL HOUSE PAGE — photo gallery
   ============================================================ */
.house-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
@media (max-width: 768px) {
  .house-gallery { grid-template-columns: repeat(2, 1fr); }
  .house-gallery .gallery-item:last-child { display: none; }
}
@media (max-width: 480px) {
  .house-gallery { grid-template-columns: 1fr; }
}


/* ============================================================
   INDIVIDUAL HOUSE PAGE — booking section
   ============================================================ */
.house-book {
  padding: var(--space-3xl) var(--side-pad);
  background: var(--cream);
  border-top: 1px solid var(--light-line);
}
.lodgify-widget-wrap {
  max-width: 700px;
  margin: var(--space-xl) auto var(--space-md);
  border: 1px solid var(--light-line);
  background: var(--white);
  padding: var(--space-lg);
}
.book-direct-note {
  font-family: var(--heading);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--body);
  margin-top: var(--space-md);
}
.book-direct-note a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ============================================================
   INDIVIDUAL HOUSE PAGE — estate cross-sell CTA
   ============================================================ */
/* FAQ Section */
.house-faq {
  padding: var(--section-pad-lg) 0;
  background: #faf9f7;
}
.house-faq h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1a1a1a;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e8e4df;
  padding: 0;
}
.faq-item:first-child {
  border-top: 1px solid #e8e4df;
}
.faq-item summary {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 1.25rem 2rem 1.25rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: #A85F3E;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  margin: 0 0 1.25rem;
  color: #4a4a4a;
  line-height: 1.7;
  font-size: 0.97rem;
}
.faq-item a { color: #A85F3E; }

.house-estate-cta {
  padding: var(--space-3xl) var(--side-pad);
  background: var(--white);
  border-top: 1px solid var(--light-line);
  text-align: center;
}
.house-estate-cta h2 {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.house-estate-cta p {
  font-family: var(--heading);
  font-size: 1rem;
  color: var(--body);
  max-width: 540px;
  margin: 0 auto var(--space-xl);
}


/* ============================================================
   CONTACT PAGE — form layout
   ============================================================ */
.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  max-width: 1100px;
  padding: var(--space-3xl) var(--side-pad);
  align-items: start;
}
.contact-form-col h2,
.contact-details-col h2 {
  font-family: var(--condensed);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}
.contact-form-intro {
  font-family: var(--heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--body);
  margin-bottom: var(--space-lg);
}

/* Form fields */
.enquiry-form { width: 100%; }
.house-checkboxes { display: flex; flex-direction: column; gap: 10px; padding: 4px 0; }
.checkbox-label { display: flex; align-items: center; gap: 10px; font-family: var(--heading); font-size: 0.95rem; color: var(--charcoal); cursor: pointer; }
.checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--salmon); cursor: pointer; flex-shrink: 0; }
.form-row { margin-bottom: var(--space-md); }
.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label:not(.checkbox-label) {
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.required { color: var(--salmon); }
.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  font-family: var(--heading);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--light-line);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--charcoal);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234a4a4a' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}
.btn-form-submit {
  font-family: var(--condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 48px;
  background: var(--salmon);
  color: var(--white);
  border: 2px solid var(--salmon);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  margin-top: var(--space-xs);
}
.btn-form-submit:hover {
  background: transparent;
  color: var(--salmon);
}

/* Honeypot hidden field */
.hidden { display: none; }

/* Contact details side column */
.contact-details-col {
  padding-top: 0;
  position: sticky;
  top: 100px;
  align-self: start;
}
.book-direct-reasons {
  margin-top: var(--space-lg);
  padding-top: 0;
  border-top: none;
}
.book-direct-reasons h3 {
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}
.book-direct-reasons ul {
  list-style: none;
  padding: 0; margin: 0;
}
.book-direct-reasons li {
  font-family: var(--heading);
  font-size: 0.95rem;
  color: var(--body);
  padding: 8px 0;
  border-bottom: 1px solid var(--light-line);
}

@media (max-width: 900px) {
  .contact-form-wrap {
    grid-template-columns: 1fr;
    padding: var(--space-2xl) var(--side-pad);
  }
  .contact-details-col { padding-top: 0; border-top: 1px solid var(--light-line); padding-top: var(--space-xl); }
  .form-row-half { grid-template-columns: 1fr; }
}
/* ============================================================
   WHOLE ESTATE PAGE — append to end of style.css
   ============================================================ */

.estate-book-section {
  background: var(--cream);
  padding: var(--space-3xl) 0;
}
.estate-book-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.estate-section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.estate-section-header h2 {
  font-family: var(--condensed);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.estate-section-header p {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--body);
  max-width: 580px;
  margin: 0 auto;
}

/* ── Shared date picker ── */
.shared-dates {
  background: var(--white);
  border: 1px solid var(--light-line);
  padding: 28px 32px;
  margin-bottom: var(--space-xs);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: start;
}
.shared-dates .apply-dates-btn {
  margin-top: 22px;
}
.shared-dates .field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shared-dates label {
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
}
.shared-dates input[type="date"] {
  font-family: var(--heading);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--light-line);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.shared-dates input[type="date"]:focus { border-color: var(--charcoal); }
.apply-dates-btn {
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 13px 28px;
  background: var(--salmon);
  color: var(--white);
  border: 2px solid var(--salmon);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.apply-dates-btn:hover { background: transparent; color: var(--salmon); }
.dates-note {
  grid-column: 1 / -1;
  font-family: var(--heading);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--sand);
  margin-top: -8px;
}

/* ── Calendars strip ── */
.calendars-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: var(--space-lg);
}
.calendar-col {
  background: var(--white);
  border: 1px solid var(--light-line);
  padding: 20px;
}
.cal-label {
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}
.cal-placeholder {
  height: 200px;
  background: var(--cream);
  border: 1px dashed var(--light-line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cal-placeholder span {
  font-family: var(--condensed);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
}

/* ── Divider ── */
.estate-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: var(--space-lg);
}
.estate-divider::before,
.estate-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-line);
}
.estate-divider span {
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sand);
  white-space: nowrap;
}

/* ── Three house form columns ── */
/* Field-group styling (estate form) — consistent with form-group */
.field-group { margin-bottom: 14px; }
.field-group label {
  display: block;
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.field-group input,
.field-group select,
.field-group textarea {
  font-family: var(--heading);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--light-line);
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--charcoal); }
.field-group textarea { resize: vertical; min-height: 60px; }
.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234a4a4a' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

.estate-form { width: 100%; }
.houses-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}
.house-col {
  background: var(--white);
  padding: 24px 20px 28px;
  border: 1px solid var(--light-line);
  border-radius: 2px;
}
.house-col-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-line);
}
.house-col-name {
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 3px;
}
.house-col-capacity {
  font-family: var(--heading);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--body);
}
.house-col-price {
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 4px;
}

/* ── Price estimate block ── */
.price-estimate {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--cream);
  border-left: 2px solid var(--olive);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-height: 60px;
}
.price-estimate .est-label {
  font-family: var(--condensed);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
}
.price-estimate .est-amount {
  font-family: var(--condensed);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
}
.price-estimate .est-note {
  font-family: var(--heading);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--body);
}

/* ── Guest details row ── */
.guest-details-row {
  background: var(--white);
  border: 1px solid var(--light-line);
  border-top: none;
  padding: 28px 28px 32px;
  margin-bottom: 2px;
}
.guest-details-row h3 {
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.guest-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.guest-fields .field-group { margin-bottom: 0; }
.occasion-field { grid-column: 1 / -1; }

/* ── Total + submit bar ── */
.total-summary {
  background: #4a4035;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #3a3028;
}
.total-left { flex: 1; }
.total-label {
  font-family: var(--condensed);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.total-amount {
  font-family: var(--condensed);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}
.total-nights {
  font-family: var(--heading);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
.total-breakdown {
  font-family: var(--condensed);
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.submit-btn {
  font-family: var(--condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 48px;
  background: #6B5B45;
  color: var(--white);
  border: 2px solid #6B5B45;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.submit-btn:hover { background: transparent; color: #6B5B45; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .shared-dates { grid-template-columns: 1fr 1fr; padding: 20px; }
  .shared-dates .apply-dates-btn { grid-column: 1 / -1; margin-top: 0; }
  .calendars-strip { grid-template-columns: 1fr; gap: 8px; }
  .houses-columns { grid-template-columns: 1fr; gap: 12px; }
  .guest-fields { grid-template-columns: 1fr 1fr; }
  .occasion-field { grid-column: 1 / -1; }
  .total-summary { flex-direction: column; align-items: flex-start; }
  .submit-btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .guest-fields { grid-template-columns: 1fr; }
}

/* ============================================================
   LIVE REVIEWS PLACEHOLDER
   ============================================================ */
.live-reviews-placeholder {
  background: var(--cream);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--light-line);
}
.live-reviews-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.live-reviews-header h2 {
  font-family: var(--condensed);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.live-reviews-header p {
  font-family: var(--heading);
  font-style: italic;
  color: var(--body);
}
.live-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: var(--space-md);
}
.live-review-source {
  background: var(--white);
  border: 1px solid var(--light-line);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.source-logo {
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 4px;
}
.airbnb-logo { background: #FF5A5F; color: white; }
.vrbo-logo   { background: #1C5FA3; color: white; }
.google-logo { background: #4285F4; color: white; }
.source-rating {
  font-family: var(--condensed);
  font-size: 1rem;
  color: var(--charcoal);
  letter-spacing: 1px;
}
.source-rating span {
  font-weight: 700;
}
.source-count {
  font-family: var(--heading);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--sand);
  min-height: 1.2em;
}
.source-link {
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  text-decoration: none;
  margin-top: 4px;
}
.source-link:hover { text-decoration: underline; }
.placeholder-note {
  text-align: center;
  font-family: var(--heading);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--sand);
  margin-top: var(--space-sm);
}
@media (max-width: 640px) {
  .live-reviews-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* ================================================================
   THE PIGEON POST — Blog styles
   ================================================================ */

/* Blog listing page */
.blog-listing { padding: var(--section-pad) 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 40px;
}
.blog-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.blog-card-image-link { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-image-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image-link img { transform: scale(1.03); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.blog-card h2 { font-family: var(--condensed); font-size: 1.45rem; font-weight: 700; color: var(--charcoal); margin: 0 0 10px; line-height: 1.2; }
.blog-card h2 a { color: inherit; }
.blog-card h2 a:hover { color: var(--salmon); }
.blog-card-excerpt { font-family: var(--heading); font-size: 0.9rem; color: var(--body); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.blog-card-read { font-family: var(--condensed); font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--salmon); }

/* Post meta pills */
.post-category {
  font-family: var(--condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--salmon);
}
.post-date {
  font-family: var(--heading);
  font-size: 0.8rem;
  color: var(--sand);
}

/* Post hero */
.post-hero {
  padding: 100px 0 40px;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.post-hero-inner { max-width: 720px; text-align: center; margin: 0 auto; }
.post-back {
  font-family: var(--condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-block;
  margin-bottom: 20px;
}
.post-back:hover { color: var(--salmon); }
.post-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 14px; }
.post-hero h1 {
  font-family: var(--condensed);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin: 0 0 16px;
}
.post-subtitle {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.6;
  max-width: 620px;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto;
}

/* Post hero image */
.post-hero-image { width: 100%; height: 520px; overflow: hidden; }
.post-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* Post body — two-column on desktop */
.post-body { padding: var(--space-xl) 0; }
.post-body .container { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }
.post-content {
  font-family: var(--heading);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--body);
}
.post-content h2 {
  font-family: var(--condensed);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 2em 0 0.5em;
}
.post-content h3 {
  font-family: var(--condensed);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 1.5em 0 0.4em;
}
.post-content p { margin: 0 0 1.2em; }
.post-content a { color: var(--salmon); text-decoration: underline; }
.post-content ul, .post-content ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.post-content li { margin-bottom: 0.4em; }
.post-content blockquote {
  border-left: 3px solid var(--salmon);
  margin: 1.5em 0;
  padding: 0.5em 1.2em;
  font-style: italic;
  color: var(--charcoal);
}
.post-content strong { color: var(--charcoal); }
.post-content hr { border: none; border-top: 1px solid rgba(0,0,0,0.1); margin: 2em 0; }

/* Sidebar */
.post-sidebar { position: sticky; top: 100px; }
.post-cta-card {
  background: var(--stone);
  color: var(--charcoal);
  padding: 28px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.post-cta-card h3 { font-family: var(--condensed); font-size: 1.2rem; color: var(--charcoal); margin: 0 0 8px; }
.post-cta-card p { font-family: var(--heading); font-size: 0.85rem; color: var(--body); margin: 0 0 16px; line-height: 1.5; }
.post-tags { font-family: var(--heading); font-size: 0.8rem; }
.post-tag {
  display: inline-block;
  background: var(--cream);
  border-radius: 2px;
  padding: 2px 8px;
  margin: 2px 2px 2px 0;
  font-size: 0.75rem;
}

/* Post footer */
.post-footer { padding: 40px 0; background: var(--cream); border-top: 1px solid rgba(0,0,0,0.07); }
.post-sources { margin-bottom: 24px; }
.post-sources h4 { font-family: var(--condensed); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--sand); margin: 0 0 8px; }
.post-sources ul { list-style: none; padding: 0; margin: 0; }
.post-sources li { margin-bottom: 4px; }
.post-sources a { font-family: var(--heading); font-size: 0.85rem; color: var(--salmon); text-decoration: underline; }
.post-back-bottom { font-family: var(--condensed); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--olive); }
.post-back-bottom:hover { color: var(--salmon); }

/* Responsive */
@media (max-width: 860px) {
  .post-body .container { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   PIGEON POST BLOG — additional styles (March 2026)
   ================================================================ */

/* Post meta top bar */
.post-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: 8px;
}
.post-date {
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--body);
  opacity: 0.6;
}

/* Post lead */
.post-lead {
  font-family: var(--heading);
  font-size: 1.15rem;
  color: var(--body);
  line-height: 1.7;
  max-width: 680px;
  margin: var(--space-sm) auto 0;
}

/* Override grid for posts without a sidebar */
.post-body .container {
  display: block;
  max-width: 740px;
}

/* Post CTA block */
.post-cta {
  margin: var(--space-2xl) 0 var(--space-lg);
}
.post-cta-inner {
  background: var(--stone);
  color: var(--charcoal);
  padding: var(--space-xl);
  border-radius: 4px;
  text-align: center;
}
.post-cta-inner h3 {
  font-family: var(--condensed);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 var(--space-sm);
}
.post-cta-inner p {
  font-family: var(--heading);
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 var(--space-md);
}

/* Post footer nav */
.post-footer-nav {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--light-line);
}
.post-back-link {
  font-family: var(--condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--olive);
}
.post-back-link:hover { color: var(--salmon); }

/* Sources — h3 variant */
.post-sources h3 {
  font-family: var(--condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sand);
  margin: var(--space-xl) 0 var(--space-sm);
}

/* Blog card image (alias for image-link) */
.blog-card-image {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.03); }

/* Blog card title override */
.blog-card-title {
  font-family: var(--condensed);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 10px;
  line-height: 1.2;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--salmon); }

/* Footer blog link */
.footer-blog-link {
  font-family: var(--condensed) !important;
  font-weight: 700 !important;
  color: var(--salmon) !important;
  letter-spacing: 0.5px;
}
.footer-blog-link:hover { opacity: 0.8; }

/* ================================================================
   CORPORATE RETREATS PAGE
   ================================================================ */

/* Retreat photo strip */
.retreat-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: var(--space-2xl) 0;
  border-radius: 10px;
  overflow: hidden;
}
.retreat-photo-item {
  height: 220px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 640px) {
  .retreat-photo-strip { grid-template-columns: 1fr; }
  .retreat-photo-item { height: 200px; }
}

.page-hero-dark {
  background: #2c2419;
  padding: 120px 0 60px;
}
.page-hero-dark h1 { color: var(--white); font-family: var(--condensed); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.1; }
.page-hero-dark .section-label { color: var(--salmon); }
.page-hero-dark .page-lead { color: rgba(255,255,255,0.75); }

.section-body { padding: var(--section-pad) 0; }
.container-narrow { max-width: 900px; margin: 0 auto; }

.retreat-intro { font-family: var(--heading); font-size: 1.05rem; line-height: 1.8; color: var(--body); margin-bottom: 48px; }
.retreat-intro p + p { margin-top: 1em; }
.retreat-intro a { color: var(--salmon); }

.retreat-divider { border: none; border-top: 1px solid rgba(0,0,0,0.1); margin: 48px 0; }

/* Two partner cards */
.retreat-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 48px; }
@media (max-width: 760px) { .retreat-two-col { grid-template-columns: 1fr; } }

.retreat-partner-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.08);
}
.retreat-partner-card--mason { background: var(--stone); color: var(--charcoal); }
.retreat-partner-card--mason h2 { color: var(--charcoal); }
.retreat-partner-card--mason .retreat-list { color: var(--body); }
.retreat-partner-card--mason .retreat-list li::before { color: var(--salmon); }
.retreat-partner-card--mason p { color: var(--body); }

.partner-label { font-family: var(--condensed); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--salmon); margin-bottom: 6px; }
.retreat-partner-card h2 { font-family: var(--condensed); font-size: 1.6rem; font-weight: 700; color: var(--charcoal); margin: 0 0 12px; }
.retreat-partner-card p { font-family: var(--heading); font-size: 0.9rem; line-height: 1.6; color: var(--body); margin-bottom: 16px; }

.retreat-list { list-style: none; padding: 0; margin: 0 0 20px; font-family: var(--heading); font-size: 0.88rem; color: var(--body); }
.retreat-list li { padding: 5px 0 5px 18px; position: relative; border-bottom: 1px solid rgba(0,0,0,0.06); line-height: 1.5; }
.retreat-partner-card--mason .retreat-list li { border-bottom-color: rgba(0,0,0,0.08); }
.retreat-list li::before { content: '→'; position: absolute; left: 0; color: var(--olive); font-size: 0.8rem; }
.retreat-link { font-family: var(--condensed); font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--salmon); }

/* Uses grid */
.retreat-uses h2 { font-family: var(--condensed); font-size: 1.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: 24px; }
.retreat-uses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
@media (max-width: 760px) { .retreat-uses-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .retreat-uses-grid { grid-template-columns: 1fr; } }

.retreat-use-card { background: var(--white); border: 1px solid rgba(0,0,0,0.08); border-radius: 4px; padding: 24px; }
.retreat-use-icon { font-size: 1.5rem; margin-bottom: 10px; }
.retreat-use-card h3 { font-family: var(--condensed); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin: 0 0 8px; }
.retreat-use-card p { font-family: var(--heading); font-size: 0.85rem; line-height: 1.6; color: var(--body); margin: 0; }

/* Logistics */
.retreat-logistics h2 { font-family: var(--condensed); font-size: 1.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: 24px; }
.retreat-logistics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 48px; }
@media (max-width: 600px) { .retreat-logistics-grid { grid-template-columns: 1fr; } }
.retreat-logistics-grid h3 { font-family: var(--condensed); font-size: 1rem; font-weight: 700; color: var(--charcoal); margin: 0 0 8px; }
.retreat-logistics-grid p { font-family: var(--heading); font-size: 0.88rem; line-height: 1.6; color: var(--body); }
.retreat-logistics-grid a { color: var(--salmon); }

/* CTA block */
.retreat-cta-block { background: var(--stone); color: var(--charcoal); border-radius: 4px; padding: 48px; text-align: center; }
.retreat-cta-block h2 { font-family: var(--condensed); font-size: 1.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.retreat-cta-block p { font-family: var(--heading); font-size: 0.95rem; color: var(--body); margin-bottom: 24px; }

/* HOME PAGE — Corporate retreats card */
.corporate-retreat-wrap { margin-top: 20px; }
.house-card-corporate {
  background: var(--charcoal);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 180px;
}
/* Earthy/natural variant */
.house-card-corporate--earthy {
  background: #4a3f35;
}
.house-card-corporate--earthy .corporate-card-name { color: var(--cream); }
.house-card-corporate--earthy .corporate-card-meta { color: rgba(251,245,240,0.75); }
.house-card-corporate:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.corporate-card-image { flex: 0 0 340px; height: 260px; overflow: hidden; }
.corporate-card-image img { width: 100%; height: 100%; object-fit: cover; }
.corporate-card-body { flex: 1; padding: 32px 40px; }
.corporate-card-eyebrow { font-family: var(--condensed); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--salmon); margin-bottom: 8px; }
.corporate-card-name { font-family: var(--condensed); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 10px; }
.corporate-card-meta { font-family: var(--heading); font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 16px; }
.corporate-card-cta { font-family: var(--condensed); font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--salmon); }
@media (max-width: 700px) {
  .house-card-corporate { flex-direction: column; }
  .corporate-card-image { flex: none; width: 100%; height: 200px; }
  .corporate-card-body { padding: 24px; }
}

/* ── Multiple Houses selector ── */
.house-selector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
@media (max-width: 640px) { .house-selector-grid { grid-template-columns: 1fr; } }

.house-select-card {
  border: 2px solid var(--light-line);
  border-radius: 6px;
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  user-select: none;
  position: relative;
}
.house-select-card.selected {
  border-color: #C17B5C;
  background: #fdf8f5;
}
.house-select-card.deselected {
  opacity: 0.5;
}
.house-select-card .check-indicator {
  position: absolute;
  top: 12px; right: 12px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--light-line);
  background: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: white;
}
.house-select-card.selected .check-indicator {
  background: #C17B5C;
  border-color: #C17B5C;
}
.house-select-name { font-family: var(--condensed); font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal); margin-bottom: 8px; padding-right: 28px; }
.house-select-meta { font-family: var(--heading); font-size: 0.82rem; color: var(--body); line-height: 1.6; }
.house-select-price { font-family: var(--condensed); font-size: 0.9rem; font-weight: 700; color: #C17B5C; margin-top: 8px; }

.houses-summary-bar {
  background: var(--stone, #E8E0D0);
  border-radius: 6px;
  padding: 16px 24px;
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.summary-item { font-family: var(--condensed); font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--charcoal); }
.summary-item span { color: #C17B5C; margin-left: 8px; }

.min-houses-msg {
  font-family: var(--heading);
  font-size: 0.85rem;
  color: #C17B5C;
  text-align: center;
  min-height: 20px;
  margin-bottom: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}
.min-houses-msg.visible { opacity: 1; }

/* Book page */
.book-house-section { padding: var(--section-pad-sm) 0; border-bottom: 1px solid var(--stone, #E8E0D0); }
.book-house-section:last-of-type { border-bottom: none; }
.book-house-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: stretch;
}
.book-house-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
}
.book-house-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.book-house-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.book-house-name { font-family: var(--condensed); font-size: 1.4rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--charcoal); margin: 0; }
.book-house-stats { font-family: var(--heading); font-size: 0.9rem; color: var(--body); margin: 0 0 4px; }
.book-house-link { font-family: var(--condensed); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--charcoal); text-decoration: none; margin-bottom: 16px; display: inline-block; }
.book-house-link:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .book-house-card { grid-template-columns: 1fr; }
  .book-house-photo { height: 220px; }
}

/* ============================================================
   MAILING LIST BAND
   ============================================================ */
.mailing-list-band {
  background: var(--stone);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
}
.mailing-list-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.mailing-list-text h2 {
  font-family: var(--condensed);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.mailing-list-text p {
  font-family: var(--heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.5;
}
.mailing-list-form {
  flex: 1;
  min-width: 280px;
}
/* Hide MailerLite default heading and description */
.ml-embedded .ml-form-embedWrapper .ml-form-embedHeader,
.ml-embedded .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent,
.ml-embedded h4,
.ml-embedded p:not(.ml-error) {
  display: none !important;
}
/* Clean up the form wrapper */
.ml-embedded .ml-form-embedWrapper {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.ml-embedded .ml-form-embedBody {
  padding: 0 !important;
}
.ml-embedded .ml-form-fieldRow {
  display: flex !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.ml-embedded input[type=email] {
  background: var(--white) !important;
  border: 1px solid var(--light-line) !important;
  color: var(--charcoal) !important;
  border-radius: 4px !important;
  font-family: var(--heading) !important;
  font-size: 0.9rem !important;
  padding: 10px 14px !important;
  height: 42px !important;
  flex: 1 !important;
}
.ml-embedded input[type=email]::placeholder {
  color: var(--body) !important;
  opacity: 0.6 !important;
}
.ml-embedded button[type=submit] {
  background: var(--salmon) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 4px !important;
  font-family: var(--condensed) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
  height: 42px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}
.ml-embedded button[type=submit]:hover {
  background: var(--charcoal) !important;
}
@media (max-width: 768px) {
  .mailing-list-inner { flex-direction: column; gap: 20px; }
  .mailing-list-form { width: 100%; }
}

/* ============================================================
   FOOTER MAILERLITE STRIP
   ============================================================ */
.footer-mailerlite {
  background: var(--linen);
  border-top: 1px solid var(--light-line);
  padding: 1rem 0;
}
.footer-mailerlite-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-mailerlite-label {
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
}
.footer-mailerlite .ml-embedded {
  flex: 1;
  min-width: 240px;
}

/* ============================================================
   CUSTOM MAILERLITE FORM
   ============================================================ */
.ml-custom-form { width: 100%; }
.ml-custom-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ml-custom-form input[type=email] {
  flex: 1;
  min-width: 200px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--light-line);
  border-radius: 4px;
  font-family: var(--heading);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
}
.ml-custom-form input[type=email]::placeholder { color: var(--body); opacity: 0.6; }
.ml-custom-form input[type=email]:focus { outline: none; border-color: var(--salmon); }
.ml-custom-form button[type=submit] {
  height: 42px;
  padding: 0 24px;
  background: var(--salmon);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.ml-custom-form button[type=submit]:hover { background: var(--charcoal); }
.ml-custom-success { color: var(--salmon); font-family: var(--heading); font-style: italic; font-size: 0.9rem; margin-top: 8px; }
.ml-custom-error { color: #c0392b; font-family: var(--heading); font-size: 0.85rem; margin-top: 8px; }
/* Footer form overrides */
.footer-mailerlite .ml-custom-form input[type=email] {
  background: var(--white);
  border-color: var(--light-line);
}

/* ============================================================
   HOUSE LAYOUT SECTION
   ============================================================ */
.house-layouts {
  padding: var(--space-3xl) 0;
  background: var(--white);
  border-top: 1px solid var(--light-line);
}
.house-layout-item {
  max-width: 760px;
  margin: 0 auto var(--space-2xl);
}
.house-layout-item:last-child {
  margin-bottom: 0;
}
.house-layout-item .section-label {
  margin-bottom: var(--space-md);
}
.house-layout-item img {
  width: 100%;
  height: auto;
  display: block;
}
.layout-note {
  font-family: var(--heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--body);
  margin-top: var(--space-sm);
}

/* ============================================================
   LODGIFY GLOBAL COLOUR OVERRIDE
   ============================================================ */
:root {
  --ldg-bnb-color-primary: #A85F3E;
  --ldg-bnb-button-background: #A85F3E;
}
