/* CORPORATE — B2B card grid design */
:root {
  --bg: #F0F4F8;
  --surface: #FFFFFF;
  --text: #1F2D3D;
  --primary: #1A56DB;
  --accent: #1A56DB;
  --muted: #6B7280;
  --border: #D1D5DB;
  --intro-bg: #EBF5FB;
  --font-display: 'Poppins', 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(--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: 0 1px 3px rgba(0,0,0,0.08);
}
.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: 500; }
.nav-cta { background: var(--primary) !important; color: #FFFFFF !important; padding: 0.5rem 1.5rem; border-radius: 6px; font-weight: 600 !important; font-size: 0.9rem !important; }
.nav-cta:hover { opacity: 0.9; text-decoration: none; }
.gbp-button { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--primary) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* HERO — solid blue gradient banner */
.hero-banner {
  background: linear-gradient(135deg, #1A56DB, #2563EB);
  padding: 4rem 2rem;
  text-align: center;
}
.hero-banner h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: #FFFFFF; margin-bottom: 1rem;
}
.hero-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto 1.5rem; }
.hero-cta { display: inline-block; background: #FFFFFF; color: var(--primary); padding: 0.75rem 2rem; border-radius: 6px; font-weight: 600; }
.hero-cta:hover { text-decoration: none; opacity: 0.95; }

/* FEATURE CARDS — 3-col grid */
.feature-cards {
  max-width: 1100px; margin: -2rem auto 2rem; padding: 0 2rem; position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  padding: 2rem; box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-align: center;
}
.feature-card i { color: var(--primary); margin-bottom: 1rem; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--muted); }

.geo-block { max-width: 900px; margin: 2rem auto; padding: 2rem; background: var(--surface); border-radius: 8px; border: 1px solid var(--border); }
.geo-block p { margin-bottom: 1rem; }

.embed-cluster { max-width: 900px; 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: 1.5rem; border-radius: 6px; }

.content-sections { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.content-section { padding: 2rem 0; border-bottom: 1px solid var(--border); }
.content-section h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; color: var(--text); }
.content-section p { margin-bottom: 1rem; }
.section-image { width: 100%; margin: 1rem 0; border-radius: 6px; }

.explore-section { max-width: 900px; margin: 2rem auto; padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }
.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; border-radius: 6px; }

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

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

.faq-section { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.faq-section h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.faq-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; 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: 1rem; font-weight: 500;
  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: #111827; color: #D1D5DB; padding: 3rem 2rem; margin-top: 3rem;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
}
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; color: #FFFFFF; margin-bottom: 0.5rem; }
.footer-grid h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; color: #9CA3AF; }
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.4rem; }
.footer-grid a { color: #D1D5DB; font-size: 0.9rem; }
.footer-grid a:hover { color: #FFFFFF; }
.footer-social { margin-top: 0.5rem; }
.footer-social a { color: #9CA3AF; margin-right: 0.75rem; }
.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid #374151; font-size: 0.85rem; color: #6B7280;
}

.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; background: var(--surface); border-radius: 8px; }
.privacy-content h1 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 2rem; }
.privacy-content h2 { font-family: var(--font-display); font-size: 1.3rem; 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-radius: 8px; font-size: 0.95rem; 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(--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; }
  .feature-cards { grid-template-columns: 1fr; margin-top: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
