:root {
  --forest: #26382a;
  --forest-2: #2f4a34;
  --moss: #5b7a52;
  --sand: #efe6d6;
  --cream: #faf6ee;
  --ink: #23281f;
  --muted: #6a6a5f;
  --amber: #c98a3e;
  --amber-2: #e7c98a;
  --white: #ffffff;

  --font-display: 'Zodiak', Georgia, serif;
  --font-body: 'General Sans', system-ui, sans-serif;

  --wrap: 1160px;
  --radius: 16px;
  --shadow: 0 18px 50px -22px rgba(30, 40, 25, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--forest); }
h3 { font-size: 1.4rem; color: var(--forest); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 0.7rem;
}
.eyebrow.light { color: var(--amber-2); }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 58ch; }
.lede.light { color: rgba(255,255,255,0.85); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--forest-2); color: var(--cream);
  padding: 0.72em 1.4em; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem;
  border: 1.5px solid var(--forest-2);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--forest); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 0.9em 1.8em; font-size: 1.05rem; }
.btn-sm { padding: 0.55em 1.1em; font-size: 0.9rem; }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--cream); }
.btn-ghost.light { color: var(--forest); border-color: #fff; background: #fff; }
.btn-ghost.light:hover { background: var(--cream); color: var(--forest); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 246, 238, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(38, 56, 42, 0.08);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--forest-2); }
.brand-name { font-family: var(--font-display); font-size: 1.28rem; font-weight: 700; color: var(--forest); }
.nav { margin-left: auto; display: flex; gap: 26px; }
.nav a { font-size: 0.95rem; font-weight: 500; color: var(--ink); transition: color .2s; }
.nav a:hover { color: var(--amber); }
.header-inner .btn-sm { flex-shrink: 0; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: .3s; }
.mobile-nav { display: flex; flex-direction: column; padding: 8px 24px 20px; gap: 4px; background: var(--cream); border-bottom: 1px solid rgba(38,56,42,0.08); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 10px 0; font-weight: 500; border-bottom: 1px solid rgba(38,56,42,0.06); }

/* Hero */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,28,18,0.25) 0%, rgba(20,28,18,0.30) 40%, rgba(20,28,18,0.86) 100%); }
.hero-content { position: relative; color: var(--cream); padding-bottom: clamp(48px, 8vw, 96px); max-width: 1000px; }
.hero-content .eyebrow { color: var(--amber-2); }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); color: var(--cream); margin-bottom: 1rem; }
.hero-sub { font-size: 1.18rem; color: rgba(255,255,255,0.9); max-width: 56ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

/* Sections */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-alt { background: var(--sand); }
.section-dark { background: var(--forest); color: var(--cream); }
.section-dark h2 { color: var(--cream); }
.section-head { max-width: 62ch; margin-bottom: 48px; }
.section-head .lede { margin-top: 0.6rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 56px; align-items: center; }
.about-grid p { margin-bottom: 1rem; color: #40463a; }
.stats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stats li {
  background: var(--cream); border: 1px solid rgba(38,56,42,0.1);
  border-radius: var(--radius); padding: 22px 20px; text-align: center;
}
.stat-num { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--forest); }
.stat-label { display: block; font-size: 0.9rem; color: var(--muted); margin-top: 4px; }

/* Feature split */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }
.feature-body h3 { margin-bottom: 1rem; font-size: 1.6rem; }

.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; color: #40463a; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--moss);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* Cards */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(38,56,42,0.09); box-shadow: 0 10px 30px -20px rgba(30,40,25,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { aspect-ratio: 3/2; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { color: var(--muted); font-size: 0.98rem; }

/* Video */
.video-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-credit { margin-top: 14px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.video-credit a { color: var(--amber-2); text-decoration: underline; }

/* Location */
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.address { font-size: 1.1rem; margin: 0.4rem 0 1.4rem; color: var(--forest); font-weight: 500; }
.location-grid .ticks { margin-bottom: 1.6rem; }
.map-frame { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* CTA */
.section-cta { background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 60%, var(--moss) 140%); color: var(--cream); text-align: center; }
.section-cta h2 { color: var(--cream); margin-bottom: 0.6rem; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact-inner .lede { margin: 0 auto 2rem; }

/* Footer */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.8); padding: 48px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
.footer-inner .brand-name { color: var(--cream); display: block; margin-bottom: 6px; }
.footer-inner p { font-size: 0.92rem; max-width: 40ch; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-weight: 600; color: var(--amber-2); }
.footer-fine { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); }
.footer-fine p { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 860px) {
  .nav { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .header-inner .btn-sm { display: none; }
  .about-grid, .feature-split, .location-grid { grid-template-columns: 1fr; gap: 32px; }
  .cards { grid-template-columns: 1fr; }
  .feature-media { order: -1; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 84vh; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Google reviews ---- */
.reviews-summary { display: flex; justify-content: center; margin-bottom: 42px; }
.rating-badge {
  background: var(--cream); border: 1px solid rgba(38,56,42,0.12);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px 34px; text-align: center; max-width: 440px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.rating-num { font-family: var(--font-display); font-size: 3.2rem; line-height: 1; color: var(--forest); }
.rating-stars svg { display: block; }
.rating-count { color: var(--muted); font-size: 0.96rem; }
.rating-badge .btn-sm { margin-top: 4px; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(38,56,42,0.10); box-shadow: var(--shadow);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: #e7a725; font-size: 1.05rem; letter-spacing: 2px; }
.review-stars .star-empty { color: #d9d2c4; }
.review-card blockquote { font-size: 1.02rem; line-height: 1.55; color: var(--ink); }
.review-card figcaption { margin-top: auto; display: flex; flex-direction: column; }
.review-name { font-weight: 600; color: var(--forest); }
.review-src { color: var(--muted); font-size: 0.85rem; }

/* ---- Guest welcome page ---- */
.guest-hero { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; }
.guest-hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.guest-hero .hero-content { position: relative; color: #fff; padding-top: 90px; padding-bottom: 60px; max-width: 1000px; }
.guest-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); margin: 0.3rem 0 0.8rem; }
.guest-hero .hero-sub { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 620px; }

.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.info-card {
  background: var(--white); border: 1px solid rgba(38,56,42,0.10);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px 24px; display: flex; flex-direction: column; gap: 10px;
}
.info-card.highlight { background: var(--forest-2); color: #fff; }
.info-card.highlight h3, .info-card.highlight .big-line a { color: #fff; }
.info-card.highlight p { color: rgba(255,255,255,0.9); }
.info-card p { color: var(--muted); font-size: 0.98rem; }
.info-card .big-line { font-family: var(--font-display); font-size: 1.9rem; margin: 2px 0; }
.info-card .big-line a { color: var(--forest); }
.info-card .btn-sm { align-self: flex-start; margin-top: 4px; }
.section-alt .info-card { background: var(--cream); }

.dir-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; }
.dir-item {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid rgba(38,56,42,0.10);
  border-radius: 12px; padding: 15px 20px;
}
.section-alt .dir-item { background: var(--cream); }
.dir-item.urgent { border-color: rgba(201,138,62,0.5); background: #fbf3e6; }
.section-alt .dir-item.urgent { background: #fbf3e6; }
.dir-label { font-weight: 500; color: var(--ink); font-size: 0.98rem; }
.dir-num { font-family: var(--font-display); font-size: 1.35rem; color: var(--forest); white-space: nowrap; }
.dir-num.small { font-family: var(--font-body); font-size: 0.92rem; color: var(--muted); text-align: right; }
.dir-item.urgent .dir-num { color: var(--amber); }

.house-notes { max-width: 760px; }
.house-notes li { margin-bottom: 12px; font-size: 1.02rem; }

/* ---- Email lines ---- */
.contact-email { margin-top: 16px; }
.contact-email a { color: var(--amber-2); font-size: 1.05rem; text-decoration: underline; text-underline-offset: 3px; }
.contact-email a:hover { color: #fff; }
.card-email a { color: #fff; font-size: 0.95rem; text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.footer-contact a[href^="mailto"] { word-break: break-word; }

/* light button on dark card */
.btn-light { background: var(--amber-2); color: var(--forest); border: none; }
.btn-light:hover { background: #fff; }

.card-sub { font-size: 0.95rem; color: var(--forest); font-weight: 500; }
.card-sub a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }

/* allow the descriptive (non-number) values to wrap */
.dir-num.small { white-space: normal; }
.dir-note { flex-direction: column; align-items: flex-start; gap: 4px; }
.dir-note .dir-num.small { text-align: left; }

/* ---- Legal / info pages (privacy, booking terms) ---- */
.legal-page main { padding-top: 90px; }
.legal-hero { background: var(--forest); color: var(--cream); padding: 56px 0 40px; }
.legal-hero .eyebrow { color: var(--amber-2); }
.legal-hero h1 { color: var(--cream); font-size: clamp(2rem, 4.5vw, 3rem); margin: 0.3rem 0 0.4rem; }
.legal-hero p.lede { color: rgba(255,255,255,0.85); max-width: 60ch; }
.legal-body { padding: clamp(48px, 7vw, 84px) 0; }
.legal-body .prose { max-width: 720px; }
.legal-body h2 { font-family: var(--font-display); color: var(--forest); font-size: 1.45rem; margin: 2rem 0 0.6rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink); line-height: 1.7; }
.legal-body p { margin-bottom: 1rem; }
.legal-body ul { margin: 0 0 1rem 1.1rem; }
.legal-body li { margin-bottom: 0.5rem; }
.legal-body a { color: var(--forest); text-decoration: underline; font-weight: 600; }
.legal-body .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.6rem; }
.legal-body .callout { background: var(--sand); border-left: 4px solid var(--amber); border-radius: 8px; padding: 16px 20px; margin: 1.4rem 0; }
.legal-body .callout p:last-child { margin-bottom: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 10px; }
.footer-links a { color: var(--amber-2); font-weight: 600; font-size: 0.9rem; }

/* ---- How booking works (contact CTA) ---- */
.how-booking { list-style: none; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin: 26px auto 12px; padding: 0; width: max-content; max-width: 100%; text-align: left; }
.how-booking li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.92); font-size: 1rem; }
.how-booking li span { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--amber); color: var(--forest); font-weight: 700; font-size: 0.85rem; flex: none; }
.cta-terms { font-size: 0.9rem; margin-top: 4px; }
.cta-terms a { color: var(--amber-2); text-decoration: underline; font-weight: 600; }

/* ---- Reviews: leave a review link ---- */
.review-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---- FAQ ---- */
#faq .faq-list { max-width: 760px; margin: 32px auto 0; }
.faq-item { border-bottom: 1px solid rgba(38,56,42,0.14); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative; font-family: var(--font-display); font-size: 1.12rem; color: var(--forest); font-weight: 500; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--amber); line-height: 1; transition: transform 0.2s ease; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--ink); line-height: 1.7; padding: 0 0 20px; margin: 0; max-width: 68ch; }
.faq-item p a { color: var(--forest); font-weight: 600; text-decoration: underline; }
