/*
  Design rationale: Deep warm forest-floor green anchors the site in Lily Farm's lush 1.6-hectare landscape; warm honey-amber accent echoes the afternoon sun filtering through the bamboo canopy and the glow of the bonfire.
  Heading: Cardo — classical humanist serif with warmth and heritage, befitting a 9-year Airbnb Superhost farmhouse brand
  Body: Lato — open, humanist, and family-friendly; maximises readability across diverse guest demographics
*/

/* ─── 1. Reset & Custom Properties ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #131e10;
  --bg-alt:      #1c2b18;
  --accent:      #c4974a;
  --highlight:   #dbb066;
  --cream:       #f4f0e0;
  --cream-dim:   rgba(244,240,224,0.65);
  --accent-dim:  rgba(196,151,74,0.14);
  --border:      rgba(196,151,74,0.22);
  --ff-display:  'Cardo', Georgia, serif;
  --ff-body:     'Lato', system-ui, sans-serif;
  --nav-h:       72px;
  --radius:      6px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--cream); font-family: var(--ff-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── 2. Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; font-weight: 700; font-family: var(--ff-body); }
p  { color: var(--cream-dim); }
.label {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
}
.section-tag { margin-bottom: 0.5rem; }
.section-title { margin-bottom: 1rem; }
.section-lead { color: var(--cream-dim); max-width: 640px; }

/* ─── 3. Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.6rem; border-radius: var(--radius);
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.04em; cursor: pointer; transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: var(--highlight); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--dark); }

/* ─── 4. Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  height: var(--nav-h); display: flex; align-items: center;
  padding: 0 2rem; transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { background: var(--dark); box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; margin-right: auto;
}
.nav-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-family: var(--ff-display); font-size: 1.1rem; color: var(--cream); line-height: 1.2; }
.nav-logo-text span { display: block; font-size: 0.72rem; color: var(--accent); letter-spacing: 0.08em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream); opacity: 0.85; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); }
.nav-cta { margin-left: 1.5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: var(--dark); flex-direction: column; align-items: center;
  justify-content: center; gap: 2.5rem;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a { font-family: var(--ff-display); font-size: 2rem; color: var(--cream); transition: color var(--transition); }
.mobile-overlay a:hover { color: var(--accent); }
.mobile-overlay .btn { margin-top: 1rem; }

/* ─── 5. Hero (homepage) ────────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  background: var(--dark) center center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,8,0.55) 0%, rgba(10,20,8,0.35) 50%, rgba(10,20,8,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; max-width: 860px; }
.hero-content .label { margin-bottom: 1rem; font-size: 0.8rem; }
.hero-content h1 { color: var(--cream); margin-bottom: 0.75rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-tagline { font-size: clamp(1rem, 2vw, 1.3rem); color: var(--cream); opacity: 0.85; margin-bottom: 2rem; font-family: var(--ff-display); font-style: italic; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem; z-index: 2;
  color: var(--cream); opacity: 0.6; font-size: 0.75rem; letter-spacing: 0.1em;
}
.scroll-indicator .line { width: 1px; height: 40px; background: var(--accent); }

/* ─── 6. Features Strip ─────────────────────────────────────────────────────── */
.features-strip {
  background: var(--accent); padding: 2rem;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
}
.feature-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1rem 2rem; flex: 1; min-width: 200px;
  border-right: 1px solid rgba(19,30,16,0.2);
}
.feature-item:last-child { border-right: none; }
.feature-icon { width: 32px; height: 32px; flex-shrink: 0; color: var(--dark); margin-top: 2px; }
.feature-item h4 { color: var(--dark); font-size: 0.95rem; margin-bottom: 0.15rem; }
.feature-item p { color: rgba(19,30,16,0.75); font-size: 0.82rem; line-height: 1.4; }

/* ─── 7. Offerings Grid ─────────────────────────────────────────────────────── */
.offerings-section { padding: 5rem 2rem; }
.offerings-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
  max-width: 1200px; margin: 3rem auto 0;
}
.offering-tile {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius); cursor: pointer; border: 1px solid var(--border);
}
.offering-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offering-tile:hover img { transform: scale(1.06); }
.offering-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,8,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem;
}
.offering-tile-overlay .label { color: var(--accent); margin-bottom: 0.25rem; }
.offering-tile-overlay h4 { color: var(--cream); font-size: 1rem; font-family: var(--ff-display); font-weight: 400; }

/* Offerings page filter grid */
.filter-btn-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.2rem; border-radius: 100px; border: 1px solid var(--border);
  font-family: var(--ff-body); font-size: 0.85rem; font-weight: 700;
  background: transparent; color: var(--cream-dim); cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }

/* ─── 8. Brand Teaser ────────────────────────────────────────────────────────── */
.brand-teaser { padding: 5rem 2rem; background: var(--bg-alt); }
.brand-teaser-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.brand-teaser-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.brand-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-teaser-copy { }
.brand-teaser-copy p { margin-bottom: 1rem; }
.brand-teaser-copy .btn { margin-top: 1.5rem; }

/* ─── 9. Stats Row ───────────────────────────────────────────────────────────── */
.stats-row { background: var(--accent); padding: 3rem 2rem; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1100px; margin: 0 auto; }
.stat-item { text-align: center; padding: 1rem; border-right: 1px solid rgba(19,30,16,0.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--ff-display); font-size: 2.8rem; color: var(--dark); font-weight: 700; line-height: 1; }
.stat-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(19,30,16,0.7); margin-top: 0.4rem; }

/* ─── 10. Review Cards ───────────────────────────────────────────────────────── */
.reviews-section { padding: 5rem 2rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1100px; margin: 3rem auto 0; }
.review-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--accent); }
.review-stars svg { width: 16px; height: 16px; }
.review-text { font-size: 0.95rem; color: var(--cream-dim); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.review-author { font-size: 0.82rem; font-weight: 700; color: var(--accent); letter-spacing: 0.06em; }
.review-platform { font-size: 0.75rem; color: var(--cream-dim); margin-top: 0.2rem; }

/* ─── 11. Social CTA ─────────────────────────────────────────────────────────── */
.social-cta { background: var(--bg-alt); padding: 4rem 2rem; text-align: center; }
.social-cta h2 { margin-bottom: 0.75rem; }
.social-cta p { margin-bottom: 2rem; }
.platform-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.4rem; border-radius: var(--radius);
  background: var(--accent-dim); border: 1px solid var(--border);
  font-size: 0.88rem; font-weight: 700; color: var(--cream);
  transition: var(--transition); cursor: pointer;
}
.platform-btn:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.platform-btn svg { width: 18px; height: 18px; }

/* ─── 12. Social Feed Grid ───────────────────────────────────────────────────── */
.social-feed { padding: 5rem 2rem; }
.social-feed-grid {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 0.5rem;
  max-width: 1200px; margin: 2.5rem auto 0;
}
.feed-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feed-item:hover img { transform: scale(1.08); }

/* ─── 13. Footer ─────────────────────────────────────────────────────────────── */
.footer { background: rgba(0,0,0,0.35); border-top: 1px solid var(--border); padding: 4rem 2rem 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  max-width: 1200px; margin: 0 auto; padding-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.footer-logo-text { font-family: var(--ff-display); font-size: 1rem; }
.footer-tagline { font-size: 0.88rem; color: var(--cream-dim); margin-bottom: 1.2rem; max-width: 260px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--border);
  color: var(--cream); transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--cream-dim); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 0.5rem; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.88rem; color: var(--cream-dim); }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.2rem 0;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: var(--cream-dim); }
.footer-badges { display: flex; gap: 0.75rem; }
.badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 100px;
  background: var(--accent-dim); border: 1px solid var(--border); color: var(--accent);
}

/* ─── 14. Page Hero (inner pages) ─────────────────────────────────────────── */
.page-hero {
  position: relative; height: 480px; background-image: var(--page-hero-bg);
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding-top: var(--nav-h);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,20,8,0.6) 0%, rgba(10,20,8,0.5) 60%, rgba(10,20,8,0.85) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 1.5rem; }
.page-hero-content h1 { color: var(--cream); margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(244,240,224,0.8); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ─── 15. About Page ─────────────────────────────────────────────────────────── */
.about-origin { padding: 5rem 2rem; }
.about-origin-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-origin-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.about-origin-img img { width: 100%; height: 100%; object-fit: cover; }
.about-origin-copy p { margin-bottom: 1.2rem; }

.philosophy-section { padding: 5rem 2rem; background: var(--bg-alt); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1100px; margin: 3rem auto 0; }
.philosophy-card {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.philosophy-icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: 1rem; }
.philosophy-card h3 { margin-bottom: 0.75rem; }
.philosophy-card p { font-size: 0.92rem; }

.values-section { padding: 5rem 2rem; }
.values-list { max-width: 800px; margin: 3rem auto 0; }
.value-item { display: flex; gap: 2rem; align-items: flex-start; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.value-item:last-child { border-bottom: none; }
.value-num { font-family: var(--ff-display); font-size: 2.5rem; color: var(--border); line-height: 1; flex-shrink: 0; min-width: 60px; }
.value-content h4 { margin-bottom: 0.5rem; color: var(--cream); }
.value-content p { font-size: 0.92rem; }

.timeline-section { padding: 5rem 2rem; background: var(--bg-alt); }
.timeline { max-width: 800px; margin: 3rem auto 0; position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -2.5rem; top: 0.4rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--dark);
}
.timeline-date { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; color: var(--accent); text-transform: uppercase; margin-bottom: 0.4rem; }
.timeline-item h4 { color: var(--cream); margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.9rem; }

.about-cta { padding: 5rem 2rem; }
.about-cta-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-cta-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-copy p { margin-bottom: 1.5rem; }
.about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── 16. Rooms / Offerings Page ─────────────────────────────────────────────── */
.disclaimer-bar { background: var(--accent-dim); border-bottom: 1px solid var(--border); padding: 0.75rem 2rem; text-align: center; }
.disclaimer-bar p { font-size: 0.85rem; color: var(--cream-dim); margin: 0; }
.disclaimer-bar a { color: var(--accent); font-weight: 700; }

.category-tiles-section { padding: 4rem 2rem; }
.category-tiles-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; max-width: 1200px; margin: 3rem auto 0; }
.category-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; border: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.category-tile:hover { transform: translateY(-4px); }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-tile:hover img { transform: scale(1.06); }
.category-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,8,0.92) 0%, rgba(10,20,8,0.3) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.category-tile-overlay .label { margin-bottom: 0.4rem; }
.category-tile-overlay h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 0.3rem; }
.category-tile-overlay .item-count { font-size: 0.78rem; color: rgba(244,240,224,0.6); }

.category-section { padding: 4rem 2rem; }
.category-section:nth-child(even) { background: var(--bg-alt); }
.category-section-inner { max-width: 1200px; margin: 0 auto; }
.category-section-header { margin-bottom: 2.5rem; }
.category-section-header p { max-width: 640px; }

/* Room within category section */
.room-block { margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--border); }
.room-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.room-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.room-gallery-wide { grid-template-columns: 2fr 1fr; }
.room-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); }
.room-gallery .span-col { grid-column: span 1; }
.room-info h3 { margin-bottom: 0.75rem; }
.room-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.room-badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.25rem 0.65rem; border-radius: 100px; text-transform: uppercase;
}
.badge-signature { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-new { background: rgba(94,158,107,0.14); color: #79bb88; border: 1px solid rgba(94,158,107,0.3); }
.badge-bestseller { background: rgba(219,176,102,0.15); color: var(--highlight); border: 1px solid rgba(219,176,102,0.3); }

.item-list { margin-top: 1.5rem; }
.item-entry { padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.item-entry:last-child { border-bottom: none; }
.item-entry-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.4rem; }
.item-entry h4 { color: var(--cream); }
.item-entry p { font-size: 0.9rem; }

/* ─── 17. Gallery Page ────────────────────────────────────────────────────────── */
.gallery-section { padding: 3rem 2rem; }
.gallery-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.gallery-group { margin-bottom: 4rem; }
.gallery-group-header { margin-bottom: 1.5rem; }
.gallery-group-header h3 { margin-bottom: 0.25rem; }
.gallery-group-header .date-label { font-size: 0.78rem; color: var(--accent); font-weight: 700; letter-spacing: 0.08em; }
.masonry-grid {
  columns: 4; column-gap: 0.75rem;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 0.75rem;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  display: block; position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.96); display: none;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--cream); font-size: 2rem;
  cursor: pointer; line-height: 1; opacity: 0.8; transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--accent-dim); border: 1px solid var(--border); color: var(--cream);
  font-size: 1.5rem; cursor: pointer; width: 48px; height: 48px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); color: var(--dark); }
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.85rem; color: var(--cream-dim);
}

.gallery-cta { padding: 4rem 2rem; background: var(--bg-alt); text-align: center; }
.gallery-cta h2 { margin-bottom: 0.75rem; }
.gallery-cta p { margin-bottom: 2rem; }
.gallery-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── 18. Contact Page ────────────────────────────────────────────────────────── */
.contact-section { padding: 5rem 2rem; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1100px; margin: 0 auto;
}
.contact-block { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.contact-block:last-child { border-bottom: none; }
.contact-block-title { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; }
.contact-block-title svg { width: 20px; height: 20px; color: var(--accent); }
.contact-block-title h4 { color: var(--cream); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-block p, .contact-block a { font-size: 0.95rem; color: var(--cream-dim); }
.contact-block a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td { padding: 0.45rem 0; font-size: 0.9rem; color: var(--cream-dim); }
.hours-table td:first-child { font-weight: 700; color: var(--cream); width: 120px; }
.hours-table tr.peak td { color: var(--accent); }

.contact-form-wrap { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; color: var(--accent); margin-bottom: 0.4rem; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem 1rem; color: var(--cream);
  font-family: var(--ff-body); font-size: 0.95rem; transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: #e55; }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#formSuccess { display: none; text-align: center; padding: 2rem; }
#formSuccess svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 1rem; }
#formSuccess h3 { margin-bottom: 0.5rem; }
#formSuccess p { font-size: 0.92rem; }

.map-placeholder {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 3rem 2rem; text-align: center; margin-top: 2rem;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1rem; }
.map-placeholder h4 { margin-bottom: 0.5rem; }
.map-placeholder p { font-size: 0.9rem; margin-bottom: 1rem; }

/* ─── 19. FAQ Accordion ───────────────────────────────────────────────────────── */
.faq-section { padding: 5rem 2rem; background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; cursor: pointer; gap: 1rem;
}
.faq-question h4 { font-size: 1rem; color: var(--cream); font-weight: 700; }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding-bottom: 1.4rem; font-size: 0.95rem; color: var(--cream-dim); line-height: 1.8; }

/* ─── 20. Scroll-to-Top Button ───────────────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--dark);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { transform: translateY(-3px); }
#scrollTop svg { width: 20px; height: 20px; }

/* ─── 21. Fade-in Animation ─────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ─── 22. Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .offerings-grid { grid-template-columns: repeat(3,1fr); }
  .category-tiles-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-bottom: 1px solid rgba(19,30,16,0.2); }
  .stat-item:nth-child(2), .stat-item:last-child { border-right: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .room-gallery { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 3; }
  .social-feed-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .brand-teaser-inner, .about-origin-inner, .about-cta-inner, .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-origin-img { aspect-ratio: 4/3; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .features-strip { flex-direction: column; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(19,30,16,0.2); }
  .feature-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 2; }
  .category-tiles-grid { grid-template-columns: 1fr 1fr; }
  .room-gallery { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .offerings-grid { grid-template-columns: 1fr; }
  .social-feed-grid { grid-template-columns: repeat(3,1fr); }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .category-tiles-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .hero-actions { flex-direction: column; align-items: center; }
  .page-hero { height: 360px; }
}
