/* CLEAN — Ultra-minimal, split hero */
:root {
  --bg: #FFFFFF;
  --surface: #F9FAFB;
  --text: #111111;
  --primary: #111111;
  --accent: #2563EB;
  --muted: #6B7280;
  --border: #E5E7EB;
  --intro-bg: #F3F4F6;
  --font-display: 'Epilogue', sans-serif;
  --font-body: 'Mulish', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.8; font-size: 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem; background: var(--bg); position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
}
.nav-brand { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--primary); text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.nav-links a:hover { color: var(--primary); }
.gbp-button { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--accent) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* HERO — 50/50 split */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 420px;
}
.hero-text-side {
  display: flex; flex-direction: column; justify-content: center; padding: 3rem;
}
.hero-text-side h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: var(--primary); line-height: 1.15; margin-bottom: 1rem;
}
.hero-text-side p { color: var(--muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
.hero-cta-link { color: var(--accent); font-weight: 600; font-size: 1rem; }
.hero-image-side { overflow: hidden; }
.hero-image-side img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-placeholder {
  width: 100%; height: 100%; min-height: 420px;
  background: linear-gradient(135deg, var(--surface), var(--border));
}

.geo-block { max-width: 720px; margin: 3rem auto; padding: 0 2rem; }
.geo-block p { margin-bottom: 1rem; }

.embed-cluster { max-width: 720px; margin: 2rem auto; padding: 0 2rem; }
.embed-cluster h3 { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.5rem; font-weight: 500; }
.embed-cluster iframe { width: 100%; border: 1px solid var(--border); margin-bottom: 1.5rem; }

.content-sections { max-width: 720px; margin: 0 auto; padding: 0 2rem; }
.content-section { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.content-section:last-child { border-bottom: none; }
.content-section h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem;
}
.content-section p { margin-bottom: 1rem; }
.section-image { width: 100%; margin: 1.5rem 0; }

.explore-section { max-width: 720px; margin: 2rem auto; padding: 2rem; background: var(--surface); }
.explore-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; }
.explore-section iframe { width: 100%; margin-bottom: 1.5rem; }

.serving-area { max-width: 720px; margin: 2rem auto; padding: 2rem; }
.serving-area h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 1rem; }

.gallery-section { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.gallery-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid img {
  width: 100%; height: 220px; object-fit: cover;
  transition: opacity 0.3s;
}
.gallery-grid img:hover { opacity: 0.85; }

.faq-section { max-width: 720px; margin: 2rem auto; padding: 0 2rem; }
.faq-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 1.5rem; }
.faq-card { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
  background: none; border: none; font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  color: var(--text); cursor: pointer; text-align: left; padding: 1rem 0;
}
.faq-question i { transition: transform 0.3s; }
.faq-card.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--muted); }
.faq-answer p { padding: 0.5rem 0 1rem; }

.site-footer {
  border-top: 1px solid var(--border); padding: 1.5rem 2rem; margin-top: 3rem;
}
.footer-bar {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-brand { font-family: var(--font-display); font-size: 1rem; font-weight: 800; }
.footer-nav { list-style: none; display: flex; gap: 1.5rem; }
.footer-nav a { color: var(--muted); font-size: 0.85rem; }
.footer-contact { font-size: 0.85rem; color: var(--muted); }
.footer-social a { color: var(--muted); margin-left: 0.5rem; }
.footer-bottom { font-size: 0.8rem; color: var(--muted); }

.footer-quick-links { max-width: 720px; margin: 2rem auto; padding: 2rem; border-top: 1px solid var(--border); }
.footer-quick-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-quick-links a { font-size: 0.85rem; color: var(--muted); }

.privacy-content { max-width: 720px; margin: 0 auto; padding: 3rem 2rem; }
.privacy-content h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 2rem; }
.privacy-content h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin: 2rem 0 1rem; }
.privacy-content p { margin-bottom: 1rem; }

.about-embed { max-width: 720px; margin: 2rem auto; padding: 0 2rem; }
.address-block { padding: 1.5rem; background: var(--surface); margin-bottom: 1.5rem; font-size: 0.95rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.content-image { margin: 1.5rem 0; }
.content-image img { width: 100%; border-radius: 4px; }
.lead-para { font-size: 1.1rem; font-weight: 500; }
.cta-link { display: inline-block; color: var(--accent); font-weight: 600; }
.directions-list { list-style: none; padding: 0; }
.directions-list li { margin-bottom: 0.5rem; }
.directions-list a { color: var(--accent); }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); padding: 1rem; border-bottom: 1px solid var(--border); gap: 0.8rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-image-placeholder { min-height: 260px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bar { flex-direction: column; text-align: center; }
}