/* CREATIVE — Diagonal/angled sections */
:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --text: #0A0A0A;
  --primary: #0A0A0A;
  --accent: #E63946;
  --muted: #555555;
  --border: #E0E0E0;
  --intro-bg: #FFF5F5;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', 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; overflow-x: hidden; }
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(--bg); position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
}
.nav-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; 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: 500; }
.nav-cta {
  background: var(--accent) !important; color: #FFFFFF !important;
  padding: 0.5rem 1.5rem; border-radius: 6px; font-weight: 700 !important;
  transform: rotate(-2deg); display: inline-block;
}
.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 — diagonal clip bottom */
.hero-diagonal {
  position: relative; min-height: 500px; display: flex; align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  overflow: hidden;
}
.hero-diagonal img, .hero-image-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  background: linear-gradient(135deg, var(--intro-bg), var(--border));
}
.hero-diagonal::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.hero-diagonal-content {
  position: relative; z-index: 2; padding: 3rem; max-width: 700px;
}
.hero-diagonal-content h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; color: #FFFFFF; margin-bottom: 1rem; line-height: 1.1;
}
.hero-diagonal-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

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

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

/* BODY — alternating angled sections */
.content-sections { max-width: 100%; }
.content-band {
  padding: 4rem 2rem 5rem;
  position: relative;
}
.content-band:nth-child(even) {
  background: var(--intro-bg);
  clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.content-band-inner { max-width: 900px; margin: 0 auto; }
.content-band h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem;
}
.content-band p { margin-bottom: 1rem; }
.section-image { width: 100%; margin: 1rem 0; border-radius: 4px; }

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

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

.gallery-section { max-width: 1000px; margin: 2rem auto; padding: 0 2rem; }
.gallery-section h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.gallery-masonry { columns: 3; column-gap: 1rem; }
.gallery-masonry img { width: 100%; margin-bottom: 1rem; break-inside: avoid; border-radius: 4px; }

.faq-section { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.faq-section h2 { font-family: var(--font-display); font-size: 1.5rem; 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; color: var(--accent); }
.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 {
  background: var(--primary); color: #FFFFFF; padding: 3rem 2rem; margin-top: 3rem;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  padding-top: 5rem;
}
.footer-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 0.5rem; }
.footer-nav { list-style: none; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav a { color: rgba(255,255,255,0.7); }
.footer-nav a:hover { color: #FFFFFF; }
.footer-contact { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-social a { color: var(--accent); margin-right: 0.75rem; }
.footer-bottom { max-width: 900px; margin: 2rem auto 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.footer-quick-links { max-width: 900px; 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: 2.5rem; 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: 900px; margin: 2rem auto; padding: 0 2rem; }
.address-block { padding: 1.5rem; background: var(--intro-bg); border-left: 4px solid var(--accent); margin-bottom: 1.5rem; }

.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: 0.8rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-diagonal { min-height: 350px; clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }
  .content-band:nth-child(even) { clip-path: none; }
  .gallery-masonry { columns: 2; }
  .site-footer { clip-path: none; padding-top: 3rem; }
}
