/* REFINED — Numbered section layout, professional */
:root {
  --bg: #F8F6F2;
  --surface: #FFFFFF;
  --text: #2C2C2C;
  --primary: #1E3A5F;
  --accent: #4A90D9;
  --muted: #7A8A99;
  --border: #DFE6ED;
  --intro-bg: #EBF0F7;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Nunito', 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.75;
  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: 0.8rem 2rem;
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.nav-links { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
.nav-links a { color: var(--text); font-size: 0.9rem; font-weight: 600; }
.nav-cta {
  background: var(--primary) !important;
  color: #FFFFFF !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-size: 0.85rem !important;
}
.nav-cta:hover { opacity: 0.9; text-decoration: none; }
.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 — image with dark gradient overlay, white text on top */
.hero-overlay {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-overlay-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.hero-overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hero-overlay-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
  max-width: 900px;
}
.hero-overlay-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-overlay-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

.geo-block {
  max-width: 860px;
  margin: 2.5rem auto;
  padding: 2rem;
  background: var(--intro-bg);
  border-radius: 6px;
}
.geo-block p { margin-bottom: 1rem; }

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

/* BODY — numbered sections */
.content-sections {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}
.content-section {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.section-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  padding-top: 0.2rem;
}
.section-main h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--primary);
}
.section-main p { margin-bottom: 0.8rem; }
.section-image { width: 100%; margin: 1rem 0; border-radius: 4px; }

.explore-section {
  max-width: 860px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.explore-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.explore-section iframe { width: 100%; margin-bottom: 1.5rem; }
.explore-section h3 { font-family: var(--font-display); font-size: 1.1rem; margin: 1.5rem 0 0.5rem; color: var(--primary); }
.explore-section h4 { font-size: 0.9rem; color: var(--muted); margin: 1rem 0 0.4rem; }

.serving-area { max-width: 860px; margin: 2rem auto; padding: 2rem; }
.serving-area h2 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1rem; color: var(--primary); }

.gallery-section { max-width: 860px; margin: 2rem auto; padding: 0 2rem; }
.gallery-section h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--primary); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: 4px; }

.faq-section { max-width: 860px; margin: 2rem auto; padding: 0 2rem 2rem; }
.faq-section h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--primary); }
.faq-card { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.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: 600; color: var(--primary); cursor: pointer;
  text-align: left; padding: 0.5rem 0;
}
.faq-question::after { content: '+'; font-size: 1.2rem; font-weight: 400; flex-shrink: 0; transition: transform 0.3s; }
.faq-card.open .faq-question::after { content: '\2013'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0.5rem 0 1rem; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

.site-footer {
  background: var(--primary);
  color: #FFFFFF;
  padding: 3rem 2rem;
  margin-top: 3rem;
}
.footer-cols {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }
.footer-cols a { color: rgba(255,255,255,0.7); }
.footer-cols a:hover { color: #FFFFFF; }
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 0.4rem; }
.footer-cols h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-social { margin-top: 0.5rem; }
.footer-social a { color: rgba(255,255,255,0.7); margin-right: 0.75rem; }
.footer-bottom {
  max-width: 860px; margin: 2rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

.footer-quick-links { max-width: 860px; 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; }

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

.about-embed { max-width: 860px; margin: 2rem auto; padding: 0 2rem; }
.address-block {
  padding: 1.5rem; background: var(--intro-bg); border-left: 4px solid var(--primary);
  font-size: 0.95rem; margin-bottom: 1.5rem; border-radius: 0 4px 4px 0;
}

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

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); padding: 1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1); gap: 0.8rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-overlay { min-height: 300px; }
  .content-section { grid-template-columns: 1fr; }
  .section-number { font-size: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
}
