/* Forest Feast & Blackpool Farm House — shared styles */
:root {
  --forest: #1F3A2B;
  --forest-deep: #16291E;
  --mist: #F4F1E8;
  --sand: #E8E1CF;
  --line: #DAD4C3;
  --ink: #1C2A21;
  --text: #3E4B40;
  --muted: #55624F;
  --spice: #9A5A1E;
  --leaf-soft: #E3EBDC;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--mist); color: var(--ink); font-family: var(--sans); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--forest); }
a:hover { color: var(--spice); }
:focus-visible { outline: 3px solid var(--spice); outline-offset: 3px; }
h1, h2, h3 { font-family: var(--serif); color: var(--forest); font-weight: 600; margin: 0; line-height: 1.08; }

.wrap { width: min(1180px, 100% - 40px); margin-inline: auto; }
.kicker { color: var(--spice); font-weight: 700; font-size: 0.95rem; margin: 0 0 12px; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 26px; border-radius: 999px; font-weight: 700; text-decoration: none; border: 1.5px solid var(--forest); }
.btn-solid { background: var(--forest); color: var(--mist); }
.btn-solid:hover { background: var(--forest-deep); color: var(--mist); }
.btn-line { color: var(--forest); background: transparent; }
.btn-line:hover { background: var(--forest); color: var(--mist); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 10; background: var(--mist); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand b { font-family: var(--serif); font-size: 1.35rem; display: block; line-height: 1; }
.brand small { color: var(--muted); font-size: 0.8rem; }
.nav { display: flex; gap: 28px; align-items: center; font-weight: 500; }
.nav a { text-decoration: none; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--forest); border-radius: 10px; min-height: 44px; padding: 0 14px; font: inherit; color: var(--forest); cursor: pointer; }

/* Hero — full screen image */
.hero-full { position: relative; min-height: 100vh; min-height: 100svh; display: grid; align-items: end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-full::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,41,30,0.55) 0%, rgba(22,41,30,0.25) 35%, rgba(22,41,30,0.88) 100%); }
.hero-inner { position: relative; z-index: 1; padding: 0 0 clamp(48px, 8vh, 96px); }
.hero-inner .kicker { color: #F0C98E; }
.hero-full h1 { color: var(--mist); font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 22px; max-width: 18ch; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero-full p { font-size: 1.15rem; color: #E7EBE2; max-width: 34rem; margin: 0 0 28px; }
.hero-full .btn-solid { background: var(--mist); color: var(--forest); border-color: var(--mist); }
.hero-full .btn-solid:hover { background: #fff; color: var(--forest); }
.hero-full .btn-line { color: var(--mist); border-color: rgba(244,241,232,0.7); }
.hero-full .btn-line:hover { background: var(--mist); color: var(--forest); }
.hero-full .hero-meta { color: #D8DED2; }
.hero-full .hero-meta strong { color: var(--mist); }
.hero-full .hero-meta a { color: var(--mist); }
.hero-full .hero-meta a:hover { color: #F0C98E; }

/* Google rating band */
:root { --g-blue: #4285F4; --g-red: #EA4335; --g-yellow: #FBBC05; --g-green: #34A853; }
.reviews { position: relative; background: #fff; border-bottom: 1px solid var(--line); padding: 36px 0; }
.reviews::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--g-blue) 0 25%, var(--g-red) 25% 50%, var(--g-yellow) 50% 75%, var(--g-green) 75% 100%); }
.g-dots { display: inline-flex; gap: 4px; margin-right: 8px; vertical-align: middle; }
.g-dots i { width: 7px; height: 7px; border-radius: 50%; }
.g-dots i:nth-child(1) { background: var(--g-blue); }
.g-dots i:nth-child(2) { background: var(--g-red); }
.g-dots i:nth-child(3) { background: var(--g-yellow); }
.g-dots i:nth-child(4) { background: var(--g-green); }
.btn-google { background: var(--g-blue); color: #fff; border-color: var(--g-blue); }
.btn-google:hover { background: #2B6FE0; border-color: #2B6FE0; color: #fff; }
.reviews-in { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 6vw, 72px); }
.g-score { display: flex; align-items: center; gap: 16px; }
.g-score > strong { font-family: var(--serif); font-size: clamp(3.4rem, 7vw, 5.4rem); line-height: 0.9; color: var(--forest); }
.g-stars { color: var(--g-yellow); font-size: 1.3rem; letter-spacing: 2px; }
.reviews small { display: block; color: var(--muted); font-size: 0.92rem; }
.g-count > strong { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--forest); display: block; line-height: 1; margin-bottom: 4px; }
.reviews .btn { margin-left: auto; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 26px; color: var(--text); font-size: 0.95rem; }
.hero-meta strong { color: var(--forest); }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 520px; }
.photo-grid > :first-child { grid-row: span 2; }

.photo { background: #C9D3BD; border-radius: 26px; overflow: hidden; display: flex; align-items: flex-end; padding: 18px; font-size: 0.85rem; color: var(--forest); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo:has(img) { padding: 0; }
.photo.warm { background: #DCC9A8; color: #4A3515; }
.photo.sage { background: #B4C2A6; }
.photo img.focus-bottom { object-position: center bottom; }

/* Facts strip */
.facts { background: var(--forest); color: var(--mist); padding: 38px 0; }
.facts .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.facts h3 { color: var(--mist); font-size: 1.4rem; margin-bottom: 4px; }
.facts p { margin: 0; color: #C7D2C0; font-size: 0.92rem; }

/* Statement band */
.statement { background: var(--sand); padding: 88px 0; text-align: center; }
.statement h2 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); margin-bottom: 20px; }
.statement p { color: var(--text); font-size: 1.2rem; max-width: 46rem; margin: 0 auto; }

/* Farm walk */
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; height: 460px; }
.photo-pair > :first-child { margin-top: 36px; }
.photo-pair > :last-child { margin-bottom: 36px; }

/* Farmacy */
.farmacy { background: var(--forest); color: var(--mist); padding: 96px 0; }
.farmacy h2 { color: var(--mist); font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 20px; }
.farmacy p { color: #C7D2C0; font-size: 1.05rem; margin: 0 0 16px; max-width: 36rem; }
.farmacy .kicker { color: #E7BE83; }
.farmacy .photo { height: 460px; background: #2A4735; }
.farmacy .fine { font-size: 0.95rem; color: #A9B8A4; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 24px; }
.pill { border: 1px solid rgba(244, 241, 232, 0.35); border-radius: 999px; padding: 8px 16px; font-size: 0.92rem; }

/* Gallery */
.gallery-block { padding-top: 80px; padding-bottom: 40px; }
.gallery-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 32px; }
.gallery-head p { color: var(--text); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; grid-auto-rows: 240px; }
.shot { padding: 0; border: 0; border-radius: 22px; overflow: hidden; background: #C9D3BD; cursor: zoom-in; display: block; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.shot:hover img { transform: scale(1.04); }
.shot.wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 50; background: rgba(22, 41, 30, 0.94); display: grid; place-items: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; width: auto; border-radius: 18px; }
.lb-close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(244, 241, 232, 0.5); background: transparent; color: var(--mist); font-size: 1.8rem; line-height: 1; cursor: pointer; }
.lb-close:hover { background: rgba(244, 241, 232, 0.15); }

/* Sections */
section.block { padding: 96px 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.block h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 20px; }
.block p { color: var(--text); font-size: 1.05rem; margin: 0 0 16px; max-width: 36rem; }
.tall-photo { height: 520px; }

.chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px; }
.chip b { display: block; color: var(--forest); }
.chip span { color: var(--muted); font-size: 0.9rem; }

/* Menu + QR */
.menu-panel { background: var(--sand); border-radius: 36px; padding: 64px; }
.steps { list-style: none; padding: 0; margin: 8px 0 26px; display: grid; gap: 12px; }
.steps li { display: flex; align-items: center; gap: 12px; }
.steps li::before { counter-increment: step; content: counter(step); width: 32px; height: 32px; border-radius: 50%; background: var(--forest); color: var(--mist); display: grid; place-items: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.steps { counter-reset: step; }
.qr-card { background: #fff; border-radius: 28px; padding: 34px; text-align: center; max-width: 360px; margin-inline: auto; box-shadow: 0 20px 50px rgba(31, 58, 43, 0.14); }
.qr-card h3 { font-size: 1.6rem; margin-bottom: 18px; }
.qr-card img, .qr-card canvas { width: 240px; height: 240px; margin: 0 auto 14px; }
.qr-card small { color: var(--muted); word-break: break-all; }

/* Farm house */
.farm-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 40px; }
.farm-photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; height: 340px; margin-bottom: 16px; }
.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 16px; }
.book-bar { background: var(--forest); color: var(--mist); border-radius: 22px; padding: 24px 30px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.book-bar .btn-solid { background: var(--mist); color: var(--forest); border-color: var(--mist); }
.book-bar .btn-line { color: var(--mist); border-color: var(--mist); }
.book-bar .btn-line:hover { background: var(--mist); color: var(--forest); }

/* Visit */
.details { display: grid; gap: 16px; }
.details strong { display: block; color: var(--forest); }
.map { border: 0; width: 100%; height: 440px; border-radius: 28px; background: #CFD8C4; }

/* Footer */
.site-footer { background: var(--forest-deep); color: #C7D2C0; padding: 52px 0; }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
.site-footer b { font-family: var(--serif); font-size: 1.6rem; color: var(--mist); display: block; }
.foot-brand { display: flex; align-items: center; gap: 18px; max-width: 30rem; }
.foot-logo { width: 118px; height: 118px; border-radius: 18px; flex-shrink: 0; }
.site-footer a { color: var(--mist); text-decoration: none; margin-left: 24px; }

/* Responsive */
@media (max-width: 900px) {
  .split, .farm-head { grid-template-columns: 1fr; gap: 36px; }
  .hero-full { min-height: 88vh; min-height: 88svh; }
  .reviews .btn { margin-left: 0; width: 100%; }
  .photo-grid { height: 380px; }
  .gallery-head { grid-template-columns: 1fr; gap: 20px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-block { padding-top: 56px; }
  .photo-pair { height: 320px; }
  .photo-pair > :first-child, .photo-pair > :last-child { margin: 0; }
  .farmacy { padding: 64px 0; }
  .farmacy .photo { height: 320px; }
  .statement { padding: 64px 0; }
  .tall-photo { height: 340px; }
  .facts .wrap, .amenities { grid-template-columns: repeat(2, 1fr); }
  .farm-photos { grid-template-columns: 1fr 1fr; height: auto; }
  .farm-photos .photo { height: 200px; }
  .menu-panel { padding: 36px 22px; border-radius: 26px; }
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--mist); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav-toggle { display: inline-flex; align-items: center; }
  section.block { padding: 64px 0; }
}
@media (max-width: 520px) {
  .facts .wrap, .amenities, .chips { grid-template-columns: 1fr; }
  .site-footer a { margin: 0 20px 0 0; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
