/* ELEGANT — Luxury editorial, text-first */
:root {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --text: #1A1A2E;
  --primary: #1A1A2E;
  --accent: #C9A84C;
  --muted: #888888;
  --border: #EBEBEB;
  --intro-bg: #F5F3EF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', 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.9;
  font-size: 1rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV — ultra-thin border bottom */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--primary);
  text-decoration: none;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.nav-cta {
  border: 1px solid var(--primary);
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--primary); color: #FFFFFF; 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 — no image, centered text, gold rule */
.hero-text {
  text-align: center;
  padding: 120px 2rem 60px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.hero-rule {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}
.hero-intro {
  font-style: italic;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* GEO BLOCK */
.geo-block {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}
.geo-block p { margin-bottom: 1rem; }
.geo-block p:first-child { font-size: 1.1rem; }

/* SECTION SEPARATOR */
.section-sep {
  text-align: center;
  color: var(--border);
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  margin: 2.5rem 0;
}

/* EMBED CLUSTER */
.embed-cluster {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 2rem;
}
.embed-cluster h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: var(--muted);
}
.embed-cluster iframe { width: 100%; border: none; margin-bottom: 1.5rem; }

/* BODY — centered narrow column, editorial */
.content-sections {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
}
.content-section {
  padding: 2rem 0;
}
.content-section h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--primary);
}
.content-section p { margin-bottom: 1rem; }
.content-section p:first-of-type { font-size: 1.1rem; }

.section-image { width: 100%; margin: 1.5rem 0; }

/* EXPLORE */
.explore-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--intro-bg);
}
.explore-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-align: center;
}
.explore-section iframe { width: 100%; margin-bottom: 1.5rem; }
.explore-section h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  margin: 1rem 0 0.5rem;
  color: var(--muted);
}
.explore-section h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  margin: 1rem 0 0.5rem;
  color: var(--muted);
}

/* SERVING AREA */
.serving-area {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  text-align: center;
}
.serving-area h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

/* GALLERY — 2-col portrait */
.gallery-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 2rem;
}
.gallery-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* FAQ */
.faq-section {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 2rem;
}
.faq-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-align: center;
}
.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: 500;
  color: var(--primary); cursor: pointer; text-align: left; padding: 0.5rem 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-inner { padding: 0.5rem 0 1rem; }

/* FOOTER — minimal white, top border */
.site-footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.footer-nav { list-style: none; display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-nav a { color: var(--muted); font-size: 0.85rem; }
.footer-contact { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }
.footer-social { margin-bottom: 1rem; }
.footer-social a { color: var(--muted); margin: 0 0.5rem; }
.footer-bottom { font-size: 0.8rem; color: var(--muted); }

.footer-quick-links {
  max-width: 700px; 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; justify-content: center; }
.footer-quick-links a { font-size: 0.85rem; }

.privacy-content { max-width: 700px; margin: 0 auto; padding: 3rem 2rem; }
.privacy-content h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; margin-bottom: 2rem; text-align: center; }
.privacy-content h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; margin: 2rem 0 1rem; }
.privacy-content p { margin-bottom: 1rem; }

.about-embed { max-width: 700px; margin: 2rem auto; padding: 0 2rem; }
.address-block {
  text-align: center; padding: 1.5rem; border: 1px solid var(--border);
  font-size: 0.95rem; margin-bottom: 1.5rem;
}

/* Content image wrapper */
.content-image { margin: 1.5rem 0; }
.content-image img { width: 100%; }

/* CTA link */
.cta-link {
  display: inline-block; padding: 0.6rem 1.4rem;
  background: var(--accent); color: var(--surface);
  font-size: 0.9rem; letter-spacing: 0.04em;
  text-decoration: none; margin: 0.5rem 0;
}
.cta-link:hover { opacity: 0.85; text-decoration: none; }

.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(--bg); padding: 1rem; border-bottom: 1px solid var(--border); gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-text { padding: 60px 1.5rem 40px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
