/* ═══════════════════════════════════════════════════════════════════════════
   Yellow Bird Farmhouse
   Design: Boutique Hill-Resort · Photography-First · Warm Luxury
   Palette: Sage · Cream · Sun-Yellow · Deep Teal · Ink
═══════════════════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --cream:      #F9F5EE;
  --cream2:     #F1EBE0;
  --sand:       #E4D9C8;
  --sage:       #7A9E87;
  --sage-d:     #5C7D69;
  --sage-l:     #A8C4B0;
  --sage-bg:    #EEF4F0;
  --teal:       #1F7A6E;
  --teal-d:     #155E55;
  --teal-l:     #3AA396;
  --teal-bg:    #E6F3F2;
  --yellow:     #F4C430;
  --yellow-d:   #D4A817;
  --yellow-l:   #FADA6E;
  --yellow-bg:  #FEF9E7;
  --ink:        #1A1F1E;
  --ink2:       #2E3635;
  --charcoal:   #4B5250;
  --muted:      #8A9490;
  --white:      #FFFFFF;
  --green-ok:   #2D7A46;
  --red-no:     #C0392B;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 999px;

  --sh-sm:  0 1px 6px  rgba(26,31,30,.06);
  --sh-md:  0 4px 24px rgba(26,31,30,.10);
  --sh-lg:  0 12px 56px rgba(26,31,30,.14);
  --sh-xl:  0 24px 80px rgba(26,31,30,.18);

  --ease: cubic-bezier(.4,0,.2,1);
  --t: .32s var(--ease);

  --nav-h: 72px;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Type ───────────────────────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 600;
}
h1 { font-size: clamp(3.2rem, 7.5vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h3 { font-size: 1.3rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }
h4 { font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
em, i.serif { font-style: italic; color: var(--teal); }
p { line-height: 1.75; }

/* ── Util ───────────────────────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.visually-hidden { position:absolute; width:1px; height:1px; clip:rect(0,0,0,0); overflow:hidden; }

/* ── Section labels ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}
.section-title { margin-bottom: 16px; }
.section-lead {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--r-full);
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(244,196,48,.35);
}
.btn-primary:hover {
  background: var(--yellow-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,196,48,.45);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(31,122,110,.25);
}
.btn-teal:hover {
  background: var(--teal-d);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.28);
}
.btn-outline {
  border: 1.5px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,.30);
}
.btn-wa:hover {
  background: #1DAA56;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 38px; font-size: .95rem; }

/* ══════════════════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--t), box-shadow var(--t);
}
.site-nav.scrolled {
  background: rgba(26,31,30,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-bird {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: .01em;
}
.logo-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 1px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 6px 14px;
  border-radius: var(--r-full);
  transition: var(--t);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* Book CTA */
.nav-book {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: var(--t);
  box-shadow: 0 2px 12px rgba(244,196,48,.35);
}
.nav-book:hover {
  background: var(--yellow-d);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: rgba(255,255,255,.85);
  transition: color var(--t);
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-nav .m-book {
  margin-top: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-style: normal;
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 32px;
  border-radius: var(--r-full);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════════════
   HERO — Full-bleed cinematic
══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.04);
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,20,18,.82) 0%,
    rgba(15,20,18,.45) 45%,
    rgba(15,20,18,.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 clamp(24px, 5vw, 96px) clamp(56px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: heroUp .9s var(--ease) .2s both;
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

.hero-place {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(3.2rem, 8vw, 7rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 22px;
  max-width: 820px;
}
.hero-title em { color: var(--yellow-l); font-style: italic; }
.hero-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  border-radius: var(--r-full);
}
.hero-badge i { color: var(--yellow); font-size: .72rem; }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll pill */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: clamp(24px, 5vw, 96px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: heroBounce 2s ease-in-out infinite .6s;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), rgba(255,255,255,0));
}
@keyframes heroBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ══════════════════════════════════════════════════════════════════════════
   TICKER STRIP
══════════════════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--teal);
  overflow: hidden;
  padding: 0;
  height: 52px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}
.ticker-item i { color: var(--yellow); font-size: .7rem; }
.ticker-dot {
  color: rgba(255,255,255,.3);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   INTRO — SPLIT
══════════════════════════════════════════════════════════════════════════ */
.intro {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.intro-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.ip-big {
  grid-column: 1 / -1;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--sh-lg);
}
.ip-big img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ip-big:hover img { transform: scale(1.04); }
.ip-sm {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-md);
}
.ip-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ip-sm:hover img { transform: scale(1.05); }
.ip-stat {
  background: var(--teal);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 12px;
  gap: 4px;
}
.ip-tall {
  grid-column: 1 / -1;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/7;
  box-shadow: var(--sh-md);
}
.ip-tall img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transition: transform .7s var(--ease); }
.ip-tall:hover img { transform: scale(1.04); }
.ip-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
}
.ip-unit {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.8);
  text-align: center;
  line-height: 1.4;
}

.intro-copy { display: flex; flex-direction: column; }
.intro-copy .section-lead { max-width: 100%; }
.intro-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  line-height: 1.5;
}
.intro-list li i {
  color: var(--teal);
  margin-top: 3px;
  font-size: .82rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   HIGHLIGHTS — Staggered grid
══════════════════════════════════════════════════════════════════════════ */
.highlights {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--ink);
}
.highlights .eyebrow { color: var(--yellow); }
.highlights .eyebrow::before { background: var(--teal-l); }
.highlights .section-title { color: var(--white); }
.highlights .section-lead { color: rgba(255,255,255,.6); }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.hl-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 40px 32px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.hl-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.hl-card:hover { background: rgba(255,255,255,.07); }
.hl-card:hover::before { transform: scaleX(1); }
.hl-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(244,196,48,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.2rem;
  color: var(--yellow);
  transition: var(--t);
}
.hl-card:hover .hl-icon {
  background: var(--yellow);
  color: var(--ink);
}
.hl-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.2);
  letter-spacing: .08em;
  display: block;
  margin-bottom: 10px;
}
.hl-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.hl-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════════════
   GALLERY — Mosaic
══════════════════════════════════════════════════════════════════════════ */
.gallery {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream2);
}
.gallery-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
}
.gm-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}
.gm-item.wide  { grid-column: span 2; }
.gm-item.tall  { grid-row: span 2; }
.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gm-item:hover img { transform: scale(1.06); }
.gm-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,20,18,.75) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px 18px;
  opacity: 0;
  transition: opacity var(--t);
}
.gm-item:hover .gm-caption { opacity: 1; }
.gm-caption span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,12,12,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lb-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lbImg {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--r-md);
  object-fit: contain;
  box-shadow: var(--sh-xl);
}
.lb-cap {
  margin-top: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  text-align: center;
  letter-spacing: .04em;
}
.lb-close {
  position: fixed;
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.lb-close:hover { background: rgba(255,255,255,.22); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.22); }

/* ══════════════════════════════════════════════════════════════════════════
   AMENITIES
══════════════════════════════════════════════════════════════════════════ */
.amenities {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
}
.am-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.am-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--sand);
  transition: var(--t);
}
.am-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.am-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.am-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.am-card ul { display: flex; flex-direction: column; gap: 7px; }
.am-card ul li {
  font-size: .88rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 9px;
}
.am-card ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   PERFECT FOR
══════════════════════════════════════════════════════════════════════════ */
.for-who {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--sage-bg);
}
.fw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.fw-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  border-top: 3px solid var(--sage);
  transition: var(--t);
}
.fw-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-top-color: var(--teal);
}
.fw-emoji {
  font-size: 2rem;
  margin-bottom: 14px;
}
.fw-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.fw-card p { font-size: .88rem; color: var(--charcoal); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════════════════
   LOCATION
══════════════════════════════════════════════════════════════════════════ */
.location {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 56px;
}
.loc-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
}
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.dist-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.dist-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sand);
}
.dist-item:last-child { border-bottom: none; }
.dist-ico {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .82rem;
  flex-shrink: 0;
}
.dist-text { flex: 1; }
.dist-text strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1px;
}
.dist-text span { font-size: .78rem; color: var(--muted); }
.dist-badge {
  background: var(--sage-bg);
  color: var(--teal-d);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.delivery-row {
  background: var(--teal-bg);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.delivery-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal-d);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.delivery-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.delivery-chips span {
  background: var(--white);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink2);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.loc-panel { display: flex; flex-direction: column; }

.map-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 10px 22px;
  border-radius: var(--r-full);
  transition: var(--t);
}
.map-cta:hover { background: var(--teal); color: var(--white); }

/* ══════════════════════════════════════════════════════════════════════════
   RULES
══════════════════════════════════════════════════════════════════════════ */
.rules {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream2);
}
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.rules-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  border: 1px solid var(--sand);
}
.rules-box-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.rules-box-head i {
  font-size: 1.2rem;
  color: var(--teal);
}
.rules-box-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.rules-ul { display: flex; flex-direction: column; gap: 10px; }
.rules-ul li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .88rem;
  line-height: 1.5;
}
.rules-ul li i { margin-top: 2px; font-size: .82rem; flex-shrink: 0; }
.r-yes i { color: var(--green-ok); }
.r-no  i { color: var(--red-no); }
.rules-note {
  margin-top: 20px;
  background: var(--yellow-bg);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.rules-note i { color: var(--yellow-d); margin-top: 3px; flex-shrink: 0; }
.rules-note p { font-size: .83rem; color: var(--charcoal); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════════════════
   HOST
══════════════════════════════════════════════════════════════════════════ */
.host-section {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--sage-bg);
}
.host-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 24px;
}
.host-photos-col { display: flex; flex-direction: column; gap: 16px; }
.host-portrait-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--sh-lg);
}
.host-portrait-wrap img { width: 100%; height: 100%; object-fit: cover; }
.funny-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--sand);
}
.funny-img-wrap {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}
.funny-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.funny-info {
  padding: 14px 18px;
}
.funny-info strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.funny-info span {
  font-size: .78rem;
  color: var(--muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.funny-info .funny-paw {
  display: block;
  margin-top: 4px;
  font-size: .85rem;
}

.host-bio-col { display: flex; flex-direction: column; }
.host-name {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  margin-bottom: 6px;
}
.host-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.host-bio-col > p {
  font-size: .97rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 16px;
}
.host-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 8px;
}
.host-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--sand);
  color: var(--ink2);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-full);
}
.host-tags span i { color: var(--sage-d); font-size: .7rem; }

/* ══════════════════════════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════════════════════════ */
.faq {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
}
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 0;
}
.faq-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.faq-sticky .section-lead { margin-bottom: 28px; }

.fq-list { display: flex; flex-direction: column; }
.fq-item {
  border-bottom: 1px solid var(--sand);
}
.fq-btn {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  color: var(--ink);
  transition: color var(--t);
}
.fq-btn:hover { color: var(--teal); }
.fq-btn[aria-expanded="true"] { color: var(--teal); }
.fq-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--muted);
  flex-shrink: 0;
  transition: var(--t);
}
.fq-btn[aria-expanded="true"] .fq-ico {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.fq-body {
  display: none;
  padding: 0 0 22px;
  font-size: .92rem;
  color: var(--charcoal);
  line-height: 1.75;
}
.fq-item.open .fq-body { display: block; }

/* ══════════════════════════════════════════════════════════════════════════
   BOOK CTA
══════════════════════════════════════════════════════════════════════════ */
.book-cta {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}
.book-bg {
  position: absolute;
  inset: 0;
}
.book-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.book-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15,20,18,.88) 0%,
    rgba(15,20,18,.65) 60%,
    rgba(15,20,18,.45) 100%
  );
}
.book-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}
.book-content .eyebrow { color: var(--yellow); }
.book-content .eyebrow::before { background: var(--teal-l); }
.book-h {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.05;
}
.book-h em { color: var(--yellow-l); }
.book-sub {
  font-size: .97rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}
.book-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.book-note {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
}

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: clamp(56px, 8vw, 96px) 0 0;
}
.footer-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo { margin-bottom: 18px; }
.fl-yellow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--yellow);
}
.fl-farm {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}
.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: var(--t);
}
.footer-social a:hover {
  background: var(--yellow);
  color: var(--ink);
}

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: color var(--t);
}
.footer-col a:hover { color: var(--yellow); }
.footer-col .foot-addr {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  margin-top: 4px;
}
.footer-col .foot-addr i { color: var(--sage); margin-top: 3px; flex-shrink: 0; font-size: .8rem; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bar span {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ══════════════════════════════════════════════════════════════════════════
   STEAL THESE MOMENTS
══════════════════════════════════════════════════════════════════════════ */
.moments {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--ink);
}
.moments-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.moments-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0;
}
.moments-title em { color: var(--yellow-l); }
.moments-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.moment-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.moment-item:last-child { border-bottom: none; }
.moment-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  margin-top: 2px;
}
.moment-item p {
  font-size: .97rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .moments-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   LETTER FROM HOSTS
══════════════════════════════════════════════════════════════════════════ */
.host-letter {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--cream2);
}
.letter-card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  box-shadow: var(--sh-lg);
  text-align: center;
  position: relative;
  border-top: 4px solid var(--yellow);
}
.letter-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--yellow);
  line-height: .6;
  margin-bottom: 24px;
  opacity: .35;
}
.letter-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.letter-sign {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.letter-sign span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .08em;
}
.letter-sign strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--teal);
}

/* ══════════════════════════════════════════════════════════════════════════
   FUNNY PET WIDGET
══════════════════════════════════════════════════════════════════════════ */
.funny-section {
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--sage-bg);
}
.funny-strip {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.funny-photo-wrap {
  height: 380px;
  overflow: hidden;
  flex-shrink: 0;
}
.funny-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform .7s var(--ease);
}
.funny-strip:hover .funny-photo-wrap img { transform: scale(1.04); }
.funny-strip-copy {
  padding: 40px 48px 40px 0;
  display: flex;
  flex-direction: column;
}
.funny-strip-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 14px;
}
.funny-strip-desc {
  font-size: .97rem;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 520px;
}
.funny-strip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.funny-strip-tags span {
  background: var(--sage-bg);
  border: 1px solid var(--sage-l);
  color: var(--sage-d);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-full);
}

@media (max-width: 768px) {
  .funny-strip {
    grid-template-columns: 1fr;
  }
  .funny-photo-wrap {
    height: 280px;
    width: 100%;
  }
  .funny-strip-copy {
    padding: 28px 28px 36px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 600;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--t);
}
.back-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.back-top:hover { background: var(--teal-d); transform: translateY(-3px); }

/* ══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hl-grid         { grid-template-columns: repeat(2, 1fr); }
  .am-grid         { grid-template-columns: repeat(2, 1fr); }
  .fw-grid         { grid-template-columns: repeat(2, 1fr); }
  .loc-grid        { grid-template-columns: 1fr; }
  .host-grid       { grid-template-columns: 1fr; gap: 40px; }
  .host-photos-col { flex-direction: row; gap: 16px; }
  .host-portrait-wrap { flex: 1; max-width: 280px; }
  .funny-card      { flex: 1; }
  .faq-layout      { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky      { position: static; }
  .footer-body     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .nav-burger { display: flex; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-photos { order: -1; position: static; }
  .hl-grid     { grid-template-columns: 1fr; }
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gm-item.wide { grid-column: span 2; }
  .gm-item.tall { grid-row: span 1; }
  .am-grid  { grid-template-columns: 1fr; }
  .fw-grid  { grid-template-columns: 1fr 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .host-grid  { grid-template-columns: 1fr; }
  .host-photos-col { flex-direction: column; }
  .host-portrait-wrap { max-width: 100%; }
  .footer-body { grid-template-columns: 1fr; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .gallery-intro { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 13vw, 3.6rem); }
  .fw-grid { grid-template-columns: 1fr; }
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gm-item.wide { grid-column: span 1; }
  .book-actions { flex-direction: column; }
  .book-actions .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
