/* CLAYMORPHISM — Soft 3D clay cards */
:root {
  --bg: #F0F0FF;
  --surface: #FFFFFF;
  --text: #1C1C4E;
  --primary: #3B82F6;
  --accent: #7C3AED;
  --muted: #6B7280;
  --border: #C4C4F4;
  --intro-bg: #E8E8FF;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --clay-shadow: 6px 6px 0 var(--accent);
  --clay-radius: 20px;
}

*, *::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(--primary); 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: 4px 4px 0 var(--accent); border-radius: 0 0 var(--clay-radius) var(--clay-radius);
  margin: 0 1rem;
}
.nav-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--text); 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(--accent) !important; color: #FFFFFF !important;
  padding: 0.5rem 1.5rem; border-radius: 12px; font-weight: 700 !important;
  box-shadow: 3px 3px 0 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 — clay framed image */
.hero-clay {
  max-width: 900px; margin: 2rem auto; padding: 0 2rem;
}
.hero-clay-frame {
  border-radius: 24px; overflow: hidden;
  box-shadow: 8px 8px 0 var(--accent), 12px 12px 0 var(--primary);
}
.hero-image-placeholder {
  width: 100%; height: 400px;
  background: linear-gradient(135deg, var(--intro-bg), var(--border));
}
.hero-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.hero-clay-title {
  max-width: 900px; margin: 2rem auto; padding: 0 2rem;
}
.hero-clay-card {
  background: var(--surface); border-radius: var(--clay-radius); padding: 2rem;
  box-shadow: var(--clay-shadow);
}
.hero-clay-card h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--text); margin-bottom: 0.5rem;
}

.geo-block {
  max-width: 900px; margin: 2rem auto; padding: 0 2rem;
}
.geo-clay {
  background: var(--intro-bg); border-radius: var(--clay-radius); padding: 2rem;
  box-shadow: var(--clay-shadow);
}
.geo-clay p { margin-bottom: 1rem; }

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

/* BODY — clay cards stacked */
.content-sections { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.content-section {
  background: var(--surface); border-radius: var(--clay-radius); padding: 2rem;
  box-shadow: var(--clay-shadow); margin-bottom: 2rem;
}
.content-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.content-section p { margin-bottom: 1rem; }
.section-image { width: 100%; margin: 1rem 0; border-radius: 12px; }

.explore-section {
  max-width: 900px; margin: 2rem auto; padding: 2rem; border-radius: var(--clay-radius);
  background: var(--intro-bg); box-shadow: var(--clay-shadow);
}
.explore-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.explore-section iframe { width: 100%; margin-bottom: 1.5rem; border-radius: 12px; }

.serving-area { max-width: 900px; margin: 2rem auto; padding: 2rem; }
.serving-area h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; 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: 700; margin-bottom: 1.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-grid img {
  width: 100%; height: 200px; object-fit: cover; border-radius: 16px;
  box-shadow: 4px 4px 0 var(--accent);
}

.faq-section { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.faq-section h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.faq-card {
  background: var(--surface); border-radius: 16px; margin-bottom: 1rem;
  box-shadow: 4px 4px 0 var(--border); overflow: hidden;
}
.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(--text); cursor: pointer; text-align: left; padding: 1rem 1.5rem;
}
.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 1.5rem 1rem; }

.site-footer {
  background: var(--intro-bg); color: var(--text); padding: 3rem 2rem; margin-top: 3rem;
  border-radius: var(--clay-radius) var(--clay-radius) 0 0;
  box-shadow: 0 -4px 0 var(--accent);
}
.footer-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; 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(--text); font-weight: 600; }
.footer-contact { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }
.footer-social a { color: var(--accent); margin: 0 0.5rem; }
.footer-bottom { font-size: 0.8rem; color: var(--muted); margin-top: 1rem; }

.footer-quick-links { max-width: 900px; margin: 2rem auto; padding: 2rem; border-top: 2px solid var(--border); }
.footer-quick-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.footer-quick-links a { font-size: 0.85rem; padding: 0.3rem 0.8rem; background: var(--surface); border-radius: 12px; box-shadow: 3px 3px 0 var(--border); }

.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: 700; margin: 2rem 0 1rem; }
.privacy-content p { margin-bottom: 1rem; }

.about-embed { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.address-block {
  padding: 1.5rem; background: var(--surface); border-radius: var(--clay-radius);
  box-shadow: var(--clay-shadow); margin-bottom: 1.5rem; text-align: center;
}

.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) {
  .site-nav { margin: 0; border-radius: 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); padding: 1rem; gap: 0.8rem; border-radius: 0 0 16px 16px; box-shadow: 4px 4px 0 var(--accent); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-image-placeholder { height: 260px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
