/* ============================================================
   HEATHER BRAE — Premium Luxury Hospitality Website
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --forest:        #1e2d1a;
  --forest-mid:    #2d4226;
  --forest-light:  #3d5a34;
  --sage:          #6b7f5e;
  --sage-light:    #8fa882;
  --cream:         #f7f3eb;
  --cream-warm:    #efe8d6;
  --cream-dark:    #e4d9c3;
  --stone:         #c8bca8;
  --stone-dark:    #9e9280;
  --charcoal:      #1a1a18;
  --text:          #2a2820;
  --text-mid:      #5a5648;
  --text-light:    #8a857a;
  --gold:          #c9a96e;
  --gold-light:    #dfc090;
  --gold-dark:     #a8884e;
  --white:         #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 70px rgba(0,0,0,0.15);
  --shadow-xl:  0 40px 100px rgba(0,0,0,0.20);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
.t-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.t-display {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.t-display--hero {
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  color: var(--white);
  font-weight: 300;
}
.t-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--forest);
}
.t-heading--sm {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}
.t-subheading {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.5;
}
.t-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  font-weight: 300;
}
.t-body--lg {
  font-size: 1.12rem;
  line-height: 1.9;
}
p { font-size: 1rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 1.4rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ──────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section--sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--lg { padding: clamp(6rem, 12vw, 11rem) 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

/* ── Gold Rule ───────────────────────────────────────────────── */
.gold-rule {
  width: 52px;
  height: 1px;
  background: var(--gold);
  display: block;
}
.gold-rule--center { margin: 1.6rem auto; }
.gold-rule--left { margin: 1.6rem 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: 1px solid transparent;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold::before { background: var(--gold-dark); }
.btn--gold:hover { color: var(--white); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white::before { background: rgba(255,255,255,0.12); }

.btn--outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline-dark::before { background: var(--forest); }
.btn--outline-dark:hover { color: var(--white); }

.btn--forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn--forest::before { background: var(--forest-mid); }
.btn--forest:hover { color: var(--white); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.btn-group--center { justify-content: center; }

/* ── Navigation ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.5s var(--ease-out), box-shadow 0.5s;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  max-width: 1440px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.40);
  transition: color 0.25s, text-shadow 0.25s;
}
.site-nav.scrolled .nav-link { color: var(--text); text-shadow: none; }
.nav-link:hover { color: var(--gold) !important; }
.nav-link--has-sub::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 5px;
  vertical-align: middle;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  min-width: 220px;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0s 0.28s;
  pointer-events: none;
}
/* Invisible bridge fills the 1rem gap so the cursor doesn't lose hover */
.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: -1rem;
  right: -1rem;
  height: 1.25rem;
}
/* JS-managed open state (mouse) */
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0s;
}
/* Keyboard open state (focus-within) */
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out), visibility 0s;
}
.nav-dropdown a {
  display: block;
  padding: 0.8rem 1.5rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--cream-warm);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--gold); padding-left: 2rem; }
.nav-dropdown a:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.nav-cta-btn {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.7rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  transition: all 0.3s;
}
.nav-cta-btn:hover { background: rgba(255,255,255,0.12); }
.site-nav.scrolled .nav-cta-btn {
  border-color: var(--forest);
  color: var(--forest);
}
.site-nav.scrolled .nav-cta-btn:hover {
  background: var(--forest);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}
.site-nav.scrolled .hamburger span { background: var(--forest); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s var(--ease-out);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { text-align: center; }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0;
  transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu-footer {
  position: absolute;
  bottom: 3rem;
  left: 0; right: 0;
  text-align: center;
}
.mobile-menu-footer p {
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero--medium { min-height: 75svh; justify-content: center; }
.hero--short  { min-height: 55svh; justify-content: center; }

/* Background layer — rich gradient + noise texture */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s var(--ease-out);
}
.hero-bg-img.loaded { transform: scale(1); }
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(8, 6, 4, 0.64) 0%,
      rgba(8, 6, 4, 0.30) 28%,
      rgba(8, 6, 4, 0.42) 55%,
      rgba(8, 6, 4, 0.86) 78%,
      rgba(8, 6, 4, 0.94) 100%
    );
}
/* Noise texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 12vw, 9rem) clamp(1.5rem, 5vw, 4rem) clamp(8rem, 14vw, 11rem);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-content--center {
  text-align: center;
  padding-bottom: clamp(5rem, 10vw, 8rem);
}
.hero-content--center .btn-group { justify-content: center; }
.hero-content--center .hero-lead { margin: 0 auto; }

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e8ca7e;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow--center {
  justify-content: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.5vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.40);
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.90);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.45);
}
.hero-lead {
  font-size: clamp(0.94rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.84);
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 1rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.40);
}
.hero-capacity {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.50);
  margin-bottom: 2.5rem;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Stats Banner ────────────────────────────────────────────── */
.stats-band {
  background: var(--forest);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── Section Intros ──────────────────────────────────────────── */
.section-intro { margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-intro--center { text-align: center; }
.section-intro--center .gold-rule { margin: 1.6rem auto; }

/* ── Image + Text Split ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.split--reverse .split-image { order: 2; }
.split--reverse .split-text  { order: 1; }

.split-image { position: relative; }
.split-image-frame {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.split-image-frame--landscape { aspect-ratio: 5/4; }
.split-image-frame img,
.split-image-frame .img-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.split-image-frame:hover img,
.split-image-frame:hover .img-ph { transform: scale(1.04); }

/* Offset accent box behind image */
.split-image::before {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 70%;
  height: 70%;
  border: 1px solid var(--cream-dark);
  z-index: -1;
}
.split--reverse .split-image::before {
  right: auto;
  left: -1.5rem;
}

/* ── Image Placeholder System ────────────────────────────────── */
.img-ph {
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: var(--forest-mid);
  width: 100%;
  height: 100%;
}
.img-ph-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Rich gradient placeholders for different contexts */
.img-ph--exterior    { background: linear-gradient(135deg, #1e3412 0%, #3a5a24 50%, #2a4a18 100%); }
.img-ph--kitchen     { background: linear-gradient(135deg, #3a2810 0%, #5a3a18 50%, #4a2c10 100%); }
.img-ph--bedroom     { background: linear-gradient(135deg, #2a2a3a 0%, #3a3a5a 50%, #2a2c44 100%); }
.img-ph--garden      { background: linear-gradient(135deg, #1a3020 0%, #2a5030 50%, #1e3a24 100%); }
.img-ph--hottub      { background: linear-gradient(135deg, #1a2a3a 0%, #2a4a5a 50%, #1e3448 100%); }
.img-ph--dining      { background: linear-gradient(135deg, #2a1a10 0%, #4a2a18 50%, #3a2010 100%); }
.img-ph--teesdale    { background: linear-gradient(135deg, #1a3a1a 0%, #2a5a2a 50%, #1e441e 100%); }
.img-ph--celebration { background: linear-gradient(135deg, #3a2a10 0%, #5a4a20 50%, #4a3418 100%); }
.img-ph--corporate   { background: linear-gradient(135deg, #1a1a2a 0%, #2a2a4a 50%, #1e1e38 100%); }
.img-ph--walking     { background: linear-gradient(135deg, #1a2a1a 0%, #2a4a2a 50%, #1e361e 100%); }

/* ── Audience Cards ──────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.audience-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.audience-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.audience-card-img .img-ph,
.audience-card-img img { transition: transform 0.7s var(--ease-out); }
.audience-card:hover .audience-card-img .img-ph { transform: scale(1.06); }
.audience-card:hover .audience-card-img img { transform: scale(1.22); }
.audience-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  display: block;
  transform: scale(1.15);
}
.audience-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 18%,
    rgba(10,20,8,0.52) 52%,
    rgba(8,16,6,0.92) 100%
  );
  z-index: 1;
  transition: opacity 0.4s;
}
.audience-card:hover .audience-card-img::after { opacity: 0.88; }
.audience-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.5rem 2rem 2rem;
}
.audience-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}
.audience-card-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height 0.45s var(--ease-out), opacity 0.32s 0.08s, margin-bottom 0.4s;
}
.audience-card:hover .audience-card-body p {
  max-height: 6rem;
  opacity: 1;
  margin-bottom: 1rem;
}
.audience-card-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}
.audience-card:hover .audience-card-link { gap: 0.9rem; }
.audience-card-link::after { content: '→'; }

/* ── Feature Icons ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2.5rem;
}
.feature-item { text-align: center; }
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream-dark);
  color: var(--gold);
  transition: all 0.3s;
}
.feature-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.feature-item:hover .feature-icon {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--gold-light);
}
.feature-item h4 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ── House Amenities Editorial Grid ─────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 3.5rem;
  margin-top: 4rem;
}
.amenity-item {
  padding-left: 1.5rem;
  border-left: 1px solid var(--cream-dark);
  transition: border-color 0.35s;
}
.amenity-item:hover { border-left-color: var(--gold); }
.amenity-item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}
.amenity-item p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
}

/* ── Gallery Mosaic ──────────────────────────────────────────── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 4px;
}
.gallery-cell {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-cell .img-ph,
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-cell:hover .img-ph,
.gallery-cell:hover img { transform: scale(1.07); }
/* Layout */
.gallery-cell:nth-child(1)  { grid-column: 1 / 6;  grid-row: 1 / 3; }
.gallery-cell:nth-child(2)  { grid-column: 6 / 9;  grid-row: 1 / 2; }
.gallery-cell:nth-child(3)  { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-cell:nth-child(4)  { grid-column: 6 / 10; grid-row: 2 / 3; }
.gallery-cell:nth-child(5)  { grid-column: 10 / 13;grid-row: 2 / 4; }
.gallery-cell:nth-child(6)  { grid-column: 1 / 5;  grid-row: 3 / 4; }
.gallery-cell:nth-child(7)  { grid-column: 5 / 8;  grid-row: 3 / 4; }
.gallery-cell:nth-child(8)  { grid-column: 8 / 10; grid-row: 3 / 4; }

/* Gallery overlay */
.gallery-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,20,8,0);
  transition: background 0.3s;
}
.gallery-cell:hover::after { background: rgba(10,20,8,0.15); }
.gallery-cell-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  transition: color 0.3s;
}
.gallery-cell:hover .gallery-cell-label { color: rgba(255,255,255,0.7); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.testimonial {
  background: var(--cream);
  padding: 2.5rem;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── CTA Sections ────────────────────────────────────────────── */
.cta-block {
  background: var(--forest);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.cta-block p { color: rgba(255,255,255,0.65); max-width: 580px; margin: 0 auto; }
.cta-block .btn-group { justify-content: center; }

/* ── Bedroom Cards ───────────────────────────────────────────── */
.bedroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.bedroom-card {
  border: 1px solid var(--cream-dark);
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.bedroom-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.bedroom-card:hover { border-color: transparent; box-shadow: var(--shadow-md); }
.bedroom-card:hover::before { width: 100%; }
.bedroom-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.bedroom-card h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.bedroom-card .sleeps {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.2rem;
  display: block;
}
.bedroom-card ul { }
.bedroom-card ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--cream-warm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 300;
}
.bedroom-card ul li:last-child { border-bottom: none; }
.bedroom-card ul li::before {
  content: '';
  width: 4px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Location Cards ──────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.location-card {
  padding: 2rem;
  border-left: 2px solid var(--cream-dark);
  transition: border-color 0.3s;
}
.location-card:hover { border-color: var(--gold); }
.location-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.location-card p { font-size: 0.9rem; margin: 0; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.6rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest);
  transition: color 0.25s;
}
.faq-btn:hover { color: var(--gold-dark); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); border-color: var(--gold); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding-bottom: 1.8rem; }
.faq-answer-inner p { font-size: 0.95rem; margin: 0; }

/* ── Enquiry Form ────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field--full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  padding: 0.9rem 1.1rem;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  appearance: none;
}
.form-input::placeholder { color: var(--stone-dark); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--sage);
  background: var(--white);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7f5e' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.8rem;
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit-wrap { padding-top: 0.5rem; }
.form-submit-wrap .btn { width: 100%; justify-content: center; font-size: 0.78rem; padding: 1.1rem; }

.form-thanks {
  display: none;
  text-align: center;
  padding: 3rem;
  background: var(--cream);
}
.form-thanks h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 1rem;
}

/* ── Availability Placeholder ────────────────────────────────── */
.avail-widget {
  background: var(--cream);
  border: 1px dashed var(--sage-light);
  padding: 3rem 2rem;
  text-align: center;
}
.avail-widget p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin: 0;
}

/* ── Gallery Page ────────────────────────────────────────────── */
.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--cream-dark);
  background: transparent;
  color: var(--text-mid);
  transition: all 0.25s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.gallery-page-grid {
  columns: 3;
  column-gap: 6px;
}
.gallery-page-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-page-item .img-ph,
.gallery-page-item img {
  transition: transform 0.5s var(--ease-out);
  display: block; width: 100%; height: auto;
}
.gallery-page-item:hover .img-ph,
.gallery-page-item:hover img { transform: scale(1.04); }
.gallery-page-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,20,8,0);
  transition: background 0.4s;
  pointer-events: none;
}
.gallery-page-item:hover::after { background: rgba(10,20,8,0.42); }
.gallery-page-label {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0);
  transition: color 0.3s;
  pointer-events: none;
}
.gallery-page-item:hover .gallery-page-label { color: rgba(255,255,255,0.9); }
.gallery-page-item:nth-child(3n+1) .img-ph  { aspect-ratio: 4/3;  height: auto; }
.gallery-page-item:nth-child(3n+2) .img-ph  { aspect-ratio: 3/4;  height: auto; }
.gallery-page-item:nth-child(3n+3) .img-ph  { aspect-ratio: 16/9; height: auto; }

/* ── Lightbox ────────────────────────────────────────────────── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lb-overlay.open { display: flex; }
.lb-box { max-width: 900px; width: 92%; position: relative; }
.lb-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.lb-close:hover { background: rgba(255,255,255,0.1); }
.lb-media .img-ph { aspect-ratio: 16/9; height: auto; }
.lb-caption { color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 1rem 0; text-align: center; }

/* ── Pull Quote ──────────────────────────────────────────────── */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--forest);
  line-height: 1.4;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 3rem;
}
.pull-quote::before,
.pull-quote::after {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  line-height: 1;
}
.pull-quote::before { content: '\201C'; top: -0.5rem; left: 0; }
.pull-quote::after  { content: '\201D'; bottom: -2rem; right: 0; }

/* ── Dark section ────────────────────────────────────────────── */
.section--dark {
  background: var(--charcoal);
}
.section--dark .t-heading,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}
.section--dark p,
.section--dark .t-body { color: rgba(255,255,255,0.65); }
.section--dark .t-eyebrow { color: var(--gold-light); }
.section--dark .gold-rule { background: rgba(201,169,110,0.4); }

/* ── Cream section ───────────────────────────────────────────── */
.section--cream { background: var(--cream); }
.section--cream-warm { background: var(--cream-warm); }

/* ── Forest section ──────────────────────────────────────────── */
.section--forest {
  background: var(--forest);
}
.section--forest .t-heading,
.section--forest h2,
.section--forest h3,
.section--forest h4 { color: var(--white); }
.section--forest p { color: rgba(255,255,255,0.65); }
.section--forest .t-eyebrow { color: var(--gold-light); }
.section--forest .gold-rule { background: rgba(201,169,110,0.35); }
.section--forest ul li { color: rgba(255,255,255,0.65) !important; }
.section--forest ul li::before { background: var(--gold) !important; }

/* ── Feature list ────────────────────────────────────────────── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  border-bottom: 1px solid var(--cream-warm);
}
.feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.feature-list--cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-list--cols-1 { grid-template-columns: 1fr; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
  padding: clamp(5rem, 8vw, 7rem) 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p:first-child { margin-top: 0; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 300px; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  margin-top: 1rem;
  display: block;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
}
.footer-col ul { }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── Scroll Reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.60s; }
.reveal-delay-6 { transition-delay: 0.72s; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .gallery-mosaic { display: none; }
  .gallery-mosaic + .gallery-mosaic-mobile { display: grid; }
  /* Show descriptions on tablet — no reliable hover on touch */
  .audience-card-body p {
    max-height: 6rem;
    opacity: 1;
    margin-bottom: 1rem;
  }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split--reverse .split-image { order: 0; }
  .split--reverse .split-text  { order: 0; }
  .split-image::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta-btn { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  /* No hover on touch — always show description */
  .audience-card-body p {
    max-height: 6rem;
    opacity: 1;
    margin-bottom: 1rem;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: 1; }
  .gallery-page-grid { columns: 2; }
  .feature-list--cols-3 { grid-template-columns: repeat(2, 1fr); }
  .bedroom-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .gallery-page-grid { columns: 1; }
  .features-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; gap: 2rem; }
  .bedroom-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .pull-quote { padding: 1rem; font-size: 1.3rem; }
  .pull-quote::before, .pull-quote::after { display: none; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

/* ── Page-specific overrides ─────────────────────────────────── */
.page-hero-bg--family    { background: linear-gradient(160deg, #0f2208 0%, #1e3a12 50%, #2a5018 100%); }
.page-hero-bg--celebration { background: linear-gradient(160deg, #2a1408 0%, #4a2a10 50%, #3a1e08 100%); }
.page-hero-bg--corporate { background: linear-gradient(160deg, #0a0e1a 0%, #141e30 50%, #0e1828 100%); }
.page-hero-bg--wellness  { background: linear-gradient(160deg, #0a140a 0%, #162416 50%, #1a2e1a 100%); }
.page-hero-bg--sporting  { background: linear-gradient(160deg, #1a0e04 0%, #2e1a08 50%, #241408 100%); }
.page-hero-bg--walking   { background: linear-gradient(160deg, #0a180a 0%, #122412 50%, #0e1e0e 100%); }

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up          { animation: fadeUp 1s var(--ease-out) both; }
.anim-fade-up.delay-1  { animation-delay: 0.2s; }
.anim-fade-up.delay-2  { animation-delay: 0.4s; }
.anim-fade-up.delay-3  { animation-delay: 0.6s; }

/* ── Misc ────────────────────────────────────────────────────── */
::selection { background: var(--gold); color: var(--white); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
