/* BENTO — Mosaic bento grid design */
:root {
  --bg: #FFF5E6;
  --surface: #FFFFFF;
  --text: #111827;
  --primary: #1E1E1E;
  --accent: #80A1C1;
  --muted: #6B7280;
  --border: #E5D8C8;
  --intro-bg: #FAE8D0;
  --font-display: 'Lexend', sans-serif;
  --font-body: 'Lexend', 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.7; 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;
  border-bottom: 1px solid var(--border);
}
.nav-brand { font-size: 1.2rem; 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.85rem; font-weight: 500; }
.gbp-button { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--accent) !important; font-weight: 600 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* HERO — bento grid layout */
.hero-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: 1100px;
  margin: 1.5rem auto;
  padding: 0 2rem;
}
.hero-bento-image {
  grid-column: 1;
  grid-row: 1 / 3;
  border-radius: 16px;
  overflow: hidden;
  min-height: 380px;
}
.hero-bento-image img, .hero-image-placeholder {
  width: 100%; height: 100%; object-fit: cover;
  background: linear-gradient(135deg, var(--intro-bg), var(--border));
}
.hero-bento-title {
  grid-column: 2;
  grid-row: 1;
  background: var(--intro-bg);
  border-radius: 16px;
  padding: 2rem;
  display: flex; align-items: center;
}
.hero-bento-title h1 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
}
.hero-bento-info {
  grid-column: 2;
  grid-row: 2;
  background: var(--accent);
  border-radius: 16px;
  padding: 1.5rem;
  color: #FFFFFF;
  display: flex; flex-direction: column; justify-content: center; gap: 0.5rem;
}
.hero-bento-info a { color: #FFFFFF; font-weight: 600; }

.geo-block { max-width: 1100px; margin: 2rem auto; padding: 0 2rem; }
.geo-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.geo-tile {
  background: var(--surface); border-radius: 12px; padding: 1.5rem;
  border: 1px solid var(--border);
}
.geo-tile p { margin-bottom: 0.5rem; }

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

/* BODY — bento tiles */
.content-sections { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bento-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.bento-tile.wide { grid-column: span 2; }
.bento-tile:nth-child(odd) { background: var(--intro-bg); }
.bento-tile h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.8rem; }
.bento-tile p { margin-bottom: 0.8rem; font-size: 0.95rem; }
.section-image { width: 100%; margin: 1rem 0; border-radius: 12px; }

.explore-section { max-width: 1100px; margin: 2rem auto; padding: 0 2rem; }
.explore-bento { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.explore-bento > div { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem; }
.explore-bento h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; grid-column: 1 / -1; }
.explore-bento iframe { width: 100%; border-radius: 8px; }

.serving-area { max-width: 1100px; margin: 2rem auto; padding: 2rem; background: var(--surface); border-radius: 16px; border: 1px solid var(--border); }
.serving-area h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }

.gallery-section { max-width: 1100px; margin: 2rem auto; padding: 0 2rem; }
.gallery-section h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.gallery-bento {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 0.75rem;
}
.gallery-bento img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.gallery-bento img:first-child { grid-row: span 2; }

.faq-section { max-width: 1100px; margin: 2rem auto; padding: 0 2rem; }
.faq-section h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1rem; }
.faq-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 0.75rem; 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: 0.95rem; 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(--primary); color: rgba(255,255,255,0.7); padding: 2rem; margin-top: 3rem;
}
.footer-bento {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-brand { font-size: 1.2rem; font-weight: 700; color: #FFFFFF; }
.footer-nav { list-style: none; display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.footer-nav a:hover { color: #FFFFFF; }
.footer-contact { font-size: 0.85rem; }
.footer-social a { color: rgba(255,255,255,0.7); margin-right: 0.5rem; }
.footer-bottom { max-width: 1100px; margin: 1rem auto 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.8rem; text-align: center; }

.footer-quick-links { max-width: 1100px; margin: 2rem auto; padding: 2rem; border-top: 1px solid var(--border); }
.footer-quick-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-quick-links a { font-size: 0.85rem; padding: 0.3rem 0.8rem; background: var(--surface); border-radius: 8px; border: 1px solid var(--border); }

.privacy-content { max-width: 720px; margin: 0 auto; padding: 3rem 2rem; }
.privacy-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: 2rem; }
.privacy-content h2 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 1rem; }
.privacy-content p { margin-bottom: 1rem; }

.about-embed { max-width: 1100px; margin: 2rem auto; padding: 0 2rem; }
.address-block { padding: 1.5rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; 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) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); padding: 1rem; border-bottom: 1px solid var(--border); gap: 0.8rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-bento { grid-template-columns: 1fr; }
  .hero-bento-image { min-height: 250px; }
  .geo-tiles { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-tile.wide { grid-column: span 1; }
  .explore-bento { grid-template-columns: 1fr; }
  .gallery-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-bento img:first-child { grid-row: span 1; }
}
