/* ===================================================
   THE TAUBE FARM — Complete Style Sheet v2
   Aesthetic: Rustic Elegance · Warm Editorial
   Fonts: Cormorant Garamond (display) + Jost (body)
   Mobile-first responsive design
   =================================================== */

:root {
  --cream:        #F5F0E8;
  --warm-white:   #FAF8F3;
  --barn-red:     #7A3028;
  --barn-red-lt:  #9A4038;
  --earth:        #3D2B1F;
  --earth-mid:    #5A3D2B;
  --gold:         #C9A96E;
  --gold-lt:      #E4C99A;
  --gold-pale:    #F0E6D0;
  --sage:         #7A8C6E;
  --text-dk:      #2A1F14;
  --text-md:      #5A4A3A;
  --text-lt:      #8A7A6A;
  --border:       #DDD0BC;
  --border-lt:    #EDE5D8;

  --ff-display:   'Cormorant Garamond', Georgia, serif;
  --ff-body:      'Jost', system-ui, sans-serif;

  --nav-h:        72px;
  --max-w:        1240px;
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --dur:          0.32s;
  --radius:       2px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--text-dk);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 7vw, 5.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
p  { font-size: 1rem; line-height: 1.8; color: var(--text-md); }

.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 1.5px solid transparent;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border-radius: var(--radius);
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--barn-red);
  color: var(--cream);
  border-color: var(--barn-red);
}
.btn-primary:hover {
  background: var(--barn-red-lt);
  border-color: var(--barn-red-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(122,48,40,0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
}
.btn-ghost:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--cream);
}
.btn-outline {
  background: transparent;
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}
.btn-outline:hover {
  background: var(--gold-lt);
  color: var(--earth);
  transform: translateY(-2px);
}
.btn-airbnb {
  background: var(--barn-red);
  color: var(--cream);
  border-color: var(--barn-red);
}
.btn-airbnb:hover {
  background: var(--barn-red-lt);
  border-color: var(--barn-red-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(122,48,40,0.25);
}
.btn-lg { padding: 1rem 2.6rem; font-size: 0.8rem; }
.btn-full { width: 100%; }

/* Primary-styled stay button (hero) — matches Inquire About Events but uses gold tint */
.btn-stay {
  background: var(--gold-lt);
  color: var(--earth);
  border-color: var(--gold-lt);
}
.btn-stay:hover {
  background: color-mix(in srgb, var(--gold-lt) 85%, black 15%);
  border-color: color-mix(in srgb, var(--gold-lt) 85%, black 15%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(58,44,30,0.14);
}

/* ─────────────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-h);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
#navbar.transparent { background: transparent; }
#navbar.scrolled,
#navbar.solid { background: var(--earth); box-shadow: 0 2px 24px rgba(42,31,20,0.28); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo { display: flex; flex-direction: column; gap: 0.1rem; }
.logo-main {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--gold-lt);
  font-family: var(--ff-body);
  font-weight: 300;
  text-transform: uppercase;
}

.logo-address {
  font-size: 0.9rem;
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 0.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links li a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.82);
  transition: color var(--dur);
  padding: 0.25rem 0;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}
.nav-links li a:hover { color: var(--cream); }
.nav-links li a:hover::after { width: 100%; }
.nav-cta {
  background: var(--barn-red) !important;
  color: var(--cream) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: var(--radius) !important;
  opacity: 1 !important;
}
.nav-cta:hover { background: var(--barn-red-lt) !important; }
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 9100;
  -webkit-tap-highlight-color: transparent;
  min-width: 40px; min-height: 40px;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--dur) var(--ease), opacity var(--dur);
  transform-origin: center;
}
.nav-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 8900;
  pointer-events: none;
}
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42,31,20,0);
  transition: background 0.4s var(--ease);
}
.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(300px, 86vw);
  height: 100%;
  background: var(--earth);
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.drawer-header {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(245,240,232,0.08);
}
.drawer-logo {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--cream);
}
.mobile-drawer.open { pointer-events: all; }
.mobile-drawer.open .drawer-backdrop { background: rgba(42,31,20,0.65); }
.mobile-drawer.open .drawer-panel { transform: translateX(0); }

.drawer-nav {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.drawer-nav a {
  display: block;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(245,240,232,0.07);
  transition: color var(--dur), padding-left var(--dur);
}
.drawer-nav a:hover { color: var(--cream); padding-left: 0.5rem; }
.drawer-nav a:last-child { border-bottom: none; }
.drawer-cta-link {
  margin-top: 1.5rem;
  background: var(--barn-red) !important;
  color: var(--cream) !important;
  text-align: center;
  padding: 0.9rem !important;
  border-radius: var(--radius);
  border: none !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em;
  font-size: 0.75rem !important;
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.08);
}
.drawer-footer p { font-size: 0.78rem; color: rgba(245,240,232,0.4); margin-bottom: 0.2rem; }
.drawer-footer a { color: var(--gold-lt); font-size: 0.84rem; }
.drawer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}
.drawer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,240,232,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur) var(--ease);
  border-radius: var(--radius);
}
.drawer-social a:hover { border-color: var(--gold); background: rgba(201,169,110,0.12); }
.drawer-social svg { width: 16px; height: 16px; fill: rgba(245,240,232,0.7); }

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(42,31,20,0.75) 0%, rgba(42,31,20,0.42) 55%, rgba(42,31,20,0.68) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 820px;
  animation: fadeUp 1s 0.2s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-family: var(--ff-body);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.hero-headline { color: var(--cream); margin-bottom: 1.2rem; }
.hero-headline em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(245,240,232,0.78);
  margin-bottom: 2.2rem;
  font-weight: 300;
  font-family: var(--ff-body);
}
.hero-ctas { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-location {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.9);
  font-family: var(--ff-body);
  font-weight: 400;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,0.32);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Positioning / Story section */
.positioning {
  padding: 6rem 1.5rem;
  background: var(--cream);
}

/* Dual-split: make 'Learn More' outline buttons more visible and premium */
.dual-split .btn-outline {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
  border-width: 2px;
  padding: 0.9rem 2.2rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.dual-split .btn-outline:hover {
  background: var(--gold-lt);
  color: var(--earth);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: var(--gold-lt);
}

@media (max-width: 700px) {
  .dual-split .btn-outline {
    width: 100%;
    padding: 0.85rem 1rem;
  }
}



/* v3-style sage outline variant (Farmhouse Learn More) */
.dual-split .btn-outline--sage {
  border-color: var(--sage);
  color: var(--sage);
}
.dual-split .btn-outline--sage:hover {
  background: var(--sage);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
/* Specific colors for the two Dual Split 'Learn More' buttons */
.btn-outline--farmhouse {
  color: var(--earth);
  border-color: var(--earth);
}
.btn-outline--farmhouse:hover {
  background: var(--earth);
  color: var(--cream);
  border-color: var(--earth);
}

.btn-outline--barn {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}
.btn-outline--barn:hover {
  background: var(--gold-lt);
  color: var(--earth);
  border-color: var(--gold-lt);
}

.positioning-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.positioning-text h2 {
  font-size: 2.4rem;
  margin: 1rem 0 1.5rem;
}

.positioning-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.positioning-features {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  font-weight: 500;
}

.positioning-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .positioning-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .positioning {
    padding: 4rem 1.25rem;
  }
}
.hero-scroll span {
  display: block;
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, transparent, var(--gold-lt));
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%,60% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ─────────────────────────────────────────────────
   DUAL SPLIT
───────────────────────────────────────────────── */
.dual-split { display: grid; grid-template-columns: 1fr 1fr; }
.split-card { display: flex; flex-direction: column; }
.split-card--barn { background: var(--earth); }
.split-img-wrap { height: 380px; overflow: hidden; }
.split-img-wrap img { transition: transform 0.7s var(--ease); }
.split-card:hover .split-img-wrap img { transform: scale(1.05); }
.split-body { padding: 3rem 3.5rem; flex: 1; display: flex; flex-direction: column; gap: 1.1rem; }
.split-card--barn .split-label,
.split-card--barn h2,
.split-card--barn .feature-list li { color: var(--cream); }
.split-card--barn p { color: rgba(245,240,232,0.7); }
.split-card--barn .btn-outline { border-color: var(--gold); color: var(--gold); }
.split-card--barn .btn-outline:hover { background: var(--gold); color: var(--earth); }
.split-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-family: var(--ff-body); }
.feature-list { display: flex; flex-direction: column; gap: 0.4rem; }
.feature-list li { font-size: 0.88rem; color: var(--text-md); display: flex; align-items: center; gap: 0.6rem; }
.feature-list li::before { content: '—'; color: var(--gold); font-size: 0.75rem; }

/* ─────────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────────── */
.stats-bar {
  background: var(--barn-red);
  padding: 2.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 0.8rem 3rem; }
.stat-num { display: block; font-family: var(--ff-display); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 300; color: var(--cream); line-height: 1; margin-bottom: 0.35rem; }
.stat-label { display: block; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.65); font-family: var(--ff-body); }
.stat-divider { width: 1px; height: 50px; background: rgba(245,240,232,0.2); }

/* ─────────────────────────────────────────────────
   STORY
───────────────────────────────────────────────── */
.story { padding: 6rem 1.5rem; background: var(--cream); }
.story-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-text { display: flex; flex-direction: column; gap: 1.3rem; }
.story-text h2 { color: var(--earth); }
.story-gallery { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 210px 210px; gap: 0.8rem; }
.story-img { overflow: hidden; border-radius: 1px; }
.story-img img { transition: transform 0.6s var(--ease); }
.story-img:hover img { transform: scale(1.05); }
.story-img--1 { grid-column: 1; grid-row: 1; }
.story-img--2 { grid-column: 2; grid-row: 1 / 3; }
.story-img--3 { grid-column: 1; grid-row: 2; }

/* ─────────────────────────────────────────────────
   OCCASIONS
───────────────────────────────────────────────── */
.occasions { padding: 6rem 1.5rem; background: var(--warm-white); }
.occasions-header { text-align: center; max-width: 580px; margin: 0 auto 3.5rem; }
.occasions-header h2 { color: var(--earth); }
.occasions-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.occasion-card { padding: 2.2rem 1.8rem; border: 1px solid var(--border-lt); text-align: center; display: flex; flex-direction: column; gap: 0.9rem; transition: all var(--dur) var(--ease); background: var(--warm-white); }
.occasion-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 18px 48px rgba(42,31,20,0.07); }
.occasion-icon { font-size: 1.7rem; color: var(--gold); }
.occasion-card h3 { font-size: 1.35rem; color: var(--earth); }
.occasion-card p { font-size: 0.88rem; }

/* ─────────────────────────────────────────────────
   GALLERY PREVIEW
───────────────────────────────────────────────── */
.gallery-preview { padding: 6rem 1.5rem; background: var(--cream); }
.gallery-preview-header { text-align: center; margin-bottom: 2.8rem; }
.gallery-preview-header h2 { color: var(--earth); }
.gallery-grid-home { max-width: var(--max-w); margin: 0 auto 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 280px; gap: 0.7rem; }
.ghome-item { overflow: hidden; position: relative; }
.ghome-item img { transition: transform 0.6s var(--ease); }
.ghome-item:hover img { transform: scale(1.06); }
.ghome-item--tall { grid-row: 1 / 3; }
.ghome-item--wide { grid-column: 2 / 4; }
.gallery-preview-cta { text-align: center; }

/* ─────────────────────────────────────────────────
   REVIEWS SECTION
───────────────────────────────────────────────── */
.reviews-section { padding: 7rem 1.5rem; background: var(--warm-white); }
.reviews-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.reviews-header h2 { color: var(--earth); }

.reviews-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  padding: 2.5rem;
  background: var(--cream);
  border: 1px solid var(--border-lt);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}
.rating-big { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.rating-num { font-family: var(--ff-display); font-size: 5rem; font-weight: 300; color: var(--earth); line-height: 1; }
.rating-stars { display: flex; gap: 3px; color: var(--gold); font-size: 1.1rem; margin-top: 0.2rem; }
.rating-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-lt); }
.rating-divider { width: 1px; height: 70px; background: var(--border); }
.rating-cats { display: flex; flex-direction: column; gap: 0.8rem; }
.rating-cat { display: flex; align-items: center; gap: 0.8rem; font-size: 0.82rem; color: var(--text-md); }
.rating-bar-wrap { width: 130px; height: 3px; background: var(--border-lt); border-radius: 2px; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 2px; }
.rating-val { font-size: 0.78rem; color: var(--text-lt); min-width: 26px; text-align: right; }

.reviews-grid {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--cream);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--border-lt);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.review-card:hover { box-shadow: 0 12px 40px rgba(42,31,20,0.08); transform: translateY(-3px); }
.review-stars { display: flex; gap: 3px; color: var(--gold); font-size: 0.88rem; }
.review-text {
  font-size: 0.91rem;
  color: var(--text-md);
  line-height: 1.78;
  flex: 1;
  position: relative;
  padding-top: 0.5rem;
}
.review-text::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  position: absolute;
  top: 0.8rem; left: -0.3rem;
  opacity: 0.5;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border-lt);
  padding-top: 0.9rem;
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--earth);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--gold-lt);
  flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: 0.84rem; color: var(--text-dk); font-weight: 500; }
.review-author-info span { font-size: 0.74rem; color: var(--text-lt); }

.reviews-airbnb-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
}
.airbnb-badge-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-lt);
}
.airbnb-icon { color: #FF5A5F; font-size: 1rem; }
.reviews-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.reviews-cta p { font-size: 0.82rem; color: var(--text-lt); }

/* ─────────────────────────────────────────────────
   TESTIMONIAL
───────────────────────────────────────────────── */
.testimonial { background: var(--earth); padding: 6rem 1.5rem; }
.testimonial-inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.quote-mark { font-family: var(--ff-display); font-size: 5rem; color: var(--gold); line-height: 0.5; margin-bottom: 0.5rem; }
blockquote { font-family: var(--ff-display); font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-style: italic; color: var(--cream); line-height: 1.5; }
cite { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-family: var(--ff-body); font-style: normal; }

/* ─────────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────────── */
.final-cta { padding: 7rem 1.5rem; text-align: center; background: var(--warm-white); position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%); pointer-events: none; }
.final-cta-inner { position: relative; max-width: 580px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.4rem; align-items: center; }
.final-cta h2 { color: var(--earth); }
.cta-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: center; }

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.footer { background: var(--text-dk); color: var(--cream); }
.footer-top { max-width: var(--max-w); margin: 0 auto; padding: 5rem 2rem 4rem; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-logo-text { font-family: var(--ff-display); font-size: 1.8rem; color: var(--cream); line-height: 1; margin-bottom: 0.2rem; }
.footer-tagline { font-size: 0.8rem; color: var(--gold-lt); letter-spacing: 0.08em; font-style: italic; font-family: var(--ff-display); }
.footer-brand p { font-size: 0.84rem; color: rgba(245,240,232,0.5); line-height: 1.65; }
.footer-brand a { color: var(--gold-lt); transition: color var(--dur); }
.footer-brand a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 0.6rem; margin-top: 0.4rem; }
.social-icon { width: 38px; height: 38px; border: 1px solid rgba(245,240,232,0.15); display: flex; align-items: center; justify-content: center; transition: all var(--dur) var(--ease); border-radius: var(--radius); }
.social-icon:hover { background: rgba(245,240,232,0.06); }
.social-icon svg { width: 16px; height: 16px; fill: rgba(245,240,232,0.6); transition: fill var(--dur); }
.social-icon.facebook:hover { border-color: #4267B2; background: rgba(66,103,178,0.1); }
.social-icon.facebook:hover svg { fill: #4267B2; }
.social-icon.instagram:hover { border-color: #E1306C; background: rgba(225,48,108,0.1); }
.social-icon.instagram:hover svg { fill: #E1306C; }

.footer-col h4 { font-family: var(--ff-body); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col li a { font-size: 0.84rem; color: rgba(245,240,232,0.5); transition: color var(--dur); }
.footer-col li a:hover { color: rgba(245,240,232,0.9); }
.footer-col li span { font-size: 0.84rem; color: rgba(245,240,232,0.4); }
.footer-col .airbnb-link { color: #FF5A5F !important; }
.footer-col .airbnb-link:hover { color: #ff7a7e !important; }

.footer-divider { max-width: var(--max-w); margin: 0 auto; height: 1px; background: rgba(245,240,232,0.07); }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.footer-bottom p { font-size: 0.72rem; color: rgba(245,240,232,0.28); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.72rem; color: rgba(245,240,232,0.28); transition: color var(--dur); }
.footer-bottom-links a:hover { color: rgba(245,240,232,0.55); }

/* ─────────────────────────────────────────────────
   INNER PAGES
───────────────────────────────────────────────── */
.page-hero { height: 55vh; min-height: 400px; position: relative; display: flex; align-items: flex-end; padding-bottom: 3.5rem; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,31,20,0.92) 0%, rgba(42,31,20,0.25) 60%); }
.page-hero-content { position: relative; z-index: 2; padding: 0 2rem; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.page-hero-content .eyebrow { color: var(--gold-lt); }
.page-hero-content h1 { color: var(--cream); font-size: clamp(2.1rem, 5vw, 3.8rem); }

.page-content { max-width: var(--max-w); margin: 0 auto; padding: 4.5rem 2rem; }
.section-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; margin-bottom: 5rem; }
.section-2col.reverse { direction: rtl; }
.section-2col.reverse > * { direction: ltr; }
.col-img { height: 460px; overflow: hidden; }
.col-img img { transition: transform 0.7s var(--ease); }
.col-img:hover img { transform: scale(1.04); }
.col-text { display: flex; flex-direction: column; gap: 1.2rem; padding-top: 0.5rem; }
.col-text h2 { color: var(--earth); }

.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin-top: 0.5rem; }
.amenity { padding: 1rem 1.2rem; background: var(--cream); border-left: 3px solid var(--gold); font-size: 0.84rem; color: var(--text-md); line-height: 1.4; }
.section-full { background: var(--cream); padding: 4rem 2rem; margin: 0 -2rem 4.5rem; }
.section-full-inner { max-width: var(--max-w); margin: 0 auto; }

/* AIRBNB CTA BOX */
.airbnb-cta-box { background: linear-gradient(135deg, var(--earth) 0%, #2A1F14 100%); padding: 4rem 3rem; text-align: center; margin-bottom: 4.5rem; position: relative; overflow: hidden; }
.airbnb-logo-row { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 1.2rem; }
.airbnb-logo-row svg { width: 30px; height: 30px; fill: #FF5A5F; }
.airbnb-logo-row span { font-family: var(--ff-display); font-size: 1.3rem; color: var(--cream); font-style: italic; }
.airbnb-cta-box h2 { color: var(--cream); margin-bottom: 0.8rem; }
.airbnb-cta-box p { color: rgba(245,240,232,0.7); max-width: 500px; margin: 0 auto 2rem; }
.airbnb-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Data note */
.data-note { background: var(--cream); border-left: 3px solid var(--gold); padding: 1.1rem 1.5rem; font-size: 0.83rem; color: var(--text-lt); margin-bottom: 3rem; }
.data-note strong { color: var(--text-md); }

/* GALLERY PAGE */
.gallery-full { max-width: var(--max-w); margin: 0 auto; padding: 2rem 2rem 1rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.gf-item { position: relative; overflow: hidden; cursor: pointer; }
.gf-item img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s var(--ease); display: block; }
.gf-item:hover img { transform: scale(1.06); }
.gf-overlay { position: absolute; inset: 0; background: rgba(42,31,20,0); display: flex; align-items: flex-end; padding: 1rem; transition: background var(--dur) var(--ease); }
.gf-item:hover .gf-overlay { background: rgba(42,31,20,0.45); }
.gf-cap { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); font-family: var(--ff-body); opacity: 0; transform: translateY(6px); transition: all var(--dur) var(--ease); }
.gf-item:hover .gf-cap { opacity: 1; transform: translateY(0); }

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; max-width: var(--max-w); margin: 0 auto; padding: 5rem 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info h2 { color: var(--earth); }
.contact-detail { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-detail-label { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-family: var(--ff-body); }
.contact-detail a, .contact-detail p { font-size: 1rem; color: var(--text-md); }
.contact-detail a:hover { color: var(--barn-red); }
.info-card { background: var(--cream); padding: 1.8rem; border-left: 3px solid var(--gold); }
.info-card h3 { color: var(--earth); font-size: 1.3rem; margin-bottom: 0.6rem; }
.info-card p { font-size: 0.88rem; }
.contact-form-box { background: var(--cream); padding: 3rem; }
.contact-form-box h3 { font-family: var(--ff-display); font-size: 2rem; color: var(--earth); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-md); margin-bottom: 0.4rem; font-family: var(--ff-body); }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border); background: var(--warm-white); font-family: var(--ff-body); font-size: 0.95rem; color: var(--text-dk); outline: none; transition: border-color var(--dur), box-shadow var(--dur); border-radius: var(--radius); -webkit-appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238A7A6A' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.78rem; color: var(--text-lt); margin-top: 1rem; line-height: 1.6; }
.form-success { display: none; padding: 2.5rem; background: var(--sage); text-align: center; margin-top: 1rem; }
.form-success p:first-child { font-family: var(--ff-display); font-size: 1.6rem; color: var(--cream); margin-bottom: 0.5rem; }
.form-success p { color: rgba(255,255,255,0.82); font-size: 0.9rem; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }

/* ─────────────────────────────────────────────────
   RESPONSIVE — Tablet ≤1024px
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 1.4rem; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .dual-split { grid-template-columns: 1fr; }
  .split-img-wrap { height: 300px; }
  .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .story-gallery { grid-template-rows: 180px 180px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .section-2col { grid-template-columns: 1fr; gap: 2.5rem; }
  .section-2col.reverse { direction: ltr; }
  .col-img { height: 340px; }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
}

/* ─────────────────────────────────────────────────
   RESPONSIVE — Mobile ≤768px
───────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 280px; }

  .split-body { padding: 2rem 1.5rem; }

  .stats-bar { flex-direction: row; flex-wrap: wrap; }
  .stat { padding: 0.8rem 1.2rem; flex: 1 1 calc(50% - 2rem); min-width: 100px; }
  .stat-divider { display: none; }

  .story-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px; grid-auto-rows: 180px; }
  .story-img--2 { grid-row: auto; }

  .gallery-grid-home { grid-template-columns: 1fr 1fr; grid-template-rows: 170px 170px 170px; }
  .ghome-item--tall { grid-row: auto; }
  .ghome-item--wide { grid-column: 1 / 3; }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-rating-bar { flex-direction: column; gap: 1.5rem; }
  .rating-divider { display: none; }

  .occasions-grid { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2.5rem; }
  .footer-top .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.2rem 1.5rem; }
  .footer-bottom-links { justify-content: center; }

  .cta-actions { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
  .cta-actions .btn { width: 100%; }

  .airbnb-cta-box { padding: 2.5rem 1.5rem; }
  .airbnb-cta-btns { flex-direction: column; align-items: center; }
  .airbnb-cta-btns .btn { width: 100%; max-width: 300px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.8rem 1.5rem; }
  .page-content { padding: 3rem 1.2rem; }
  .section-full { margin: 0 -1.2rem 3rem; padding: 3rem 1.2rem; }
  .amenities-grid { grid-template-columns: 1fr; }

  .gallery-full { grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 1.5rem; }
  .gf-item img { height: 200px; }
}

/* ─────────────────────────────────────────────────
   RESPONSIVE — Small ≤480px
───────────────────────────────────────────────── */
@media (max-width: 480px) {
  h2 { font-size: 1.7rem; }
  .occasions-grid { grid-template-columns: 1fr; }
  .gallery-full { grid-template-columns: 1fr; }
  .gf-item img { height: 240px; }
  .gallery-grid-home { grid-template-columns: 1fr; }
  .ghome-item--wide { grid-column: auto; }
  .ghome-item { height: 210px; }
  .stat { flex: 1 1 100%; }
  .story-gallery { grid-template-columns: 1fr; }
}


/* ============================================
   LIGHTBOX (Facebook-style image viewer)
   Used on Gallery + other pages with [data-lightbox]
   ============================================ */
.lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.lightbox.open{ display:block; }

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.85);
}

.lightbox-inner{
  position:relative;
  height:100%;
  width:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  padding:72px 16px 18px;
  gap:10px;
  pointer-events:none; /* enable click-through except controls */
}

.lightbox-img-wrap{
  max-width:min(1100px, 92vw);
  max-height:72vh;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,0.55);
  background:rgba(12,12,12,0.35);
  pointer-events:auto;
  cursor:zoom-out;
}

.lightbox-img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  transform:translateZ(0);
}

.lightbox-img.loading{
  filter:blur(10px);
  opacity:0.6;
}

.lightbox-caption{
  pointer-events:auto;
  max-width:min(1100px, 92vw);
  margin:0;
  color:rgba(255,255,255,0.92);
  font-size:0.95rem;
  text-align:center;
  line-height:1.35;
}

.lightbox-counter{
  pointer-events:auto;
  margin:0;
  color:rgba(255,255,255,0.7);
  font-size:0.85rem;
}

.lightbox-close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(20,20,20,0.55);
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
}
.lightbox-close svg{
  width:20px;height:20px;
  stroke:rgba(255,255,255,0.9);
  stroke-width:2.2;
  fill:none;
  stroke-linecap:round;
}
.lightbox-close:hover{ background:rgba(30,30,30,0.75); }

.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:46px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.18);
  background:rgba(20,20,20,0.5);
  display:grid;
  place-items:center;
  cursor:pointer;
  z-index:2;
}
.lightbox-prev{ left:18px; }
.lightbox-next{ right:18px; }
.lightbox-nav svg{
  width:22px;height:22px;
  stroke:rgba(255,255,255,0.9);
  stroke-width:2.5;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.lightbox-nav:hover{ background:rgba(30,30,30,0.75); }

@media (max-width: 520px){
  .lightbox-inner{ padding-top:64px; }
  .lightbox-img-wrap{ max-height:66vh; border-radius:14px; }
  .lightbox-prev{ left:10px; }
  .lightbox-next{ right:10px; }
  .lightbox-nav{ width:42px;height:42px; }
}

