/* ENTERPRISE — Dark teal with orange accent */
:root {
  --bg: #EDEADE;
  --surface: #FFFFFF;
  --text: #111827;
  --primary: #072C2C;
  --accent: #FF5F03;
  --muted: #4B5563;
  --border: #C8C4B8;
  --intro-bg: #D8D5CC;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Ubuntu', 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(--primary); position: sticky; top: 0; z-index: 100;
}
.nav-brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #FFFFFF; text-decoration: none; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-links { display: flex; list-style: none; gap: 1.5rem; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.nav-links a:hover { color: #FFFFFF; }
.nav-cta { background: var(--accent) !important; color: #000000 !important; padding: 0.5rem 1.5rem; border-radius: 4px; font-weight: 600 !important; }
.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; color: #FFFFFF; }

/* HERO — full-bleed dark teal with diagonal stripes */
.hero-enterprise {
  background: var(--primary);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
  padding: 5rem 2rem;
  min-height: 500px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  max-width: 100%;
}
.hero-enterprise-inner { max-width: 900px; margin: 0 auto; width: 100%; }
.hero-enterprise h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: #FFFFFF; text-transform: uppercase; line-height: 1.1; margin-bottom: 0.5rem;
}
.hero-underline { width: 80px; height: 4px; background: var(--accent); margin-bottom: 1.5rem; }
.hero-enterprise p { color: rgba(255,255,255,0.75); font-size: 1.15rem; margin-bottom: 2rem; max-width: 600px; }
.hero-cta { display: inline-block; background: var(--accent); color: #000000; padding: 0.85rem 2rem; border-radius: 4px; font-weight: 700; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-cta:hover { text-decoration: none; opacity: 0.9; }

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

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

/* BODY — alternating image+text rows */
.content-sections { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.content-section { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.content-section h2 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 1rem; color: var(--primary);
  border-left: 4px solid var(--accent); padding-left: 1rem;
}
.content-section p { margin-bottom: 1rem; }
.section-image { width: 100%; margin: 1rem 0; }

.explore-section { max-width: 900px; margin: 2rem auto; padding: 2rem; background: var(--primary); color: #FFFFFF; }
.explore-section h2 { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; 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; text-transform: uppercase; 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; text-transform: uppercase; 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; }
.gallery-grid img:hover { opacity: 0.8; }

.faq-section { max-width: 900px; margin: 2rem auto; padding: 0 2rem; }
.faq-section h2 { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; margin-bottom: 1.5rem; }
.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 p { padding: 0.5rem 0 1rem; }

.site-footer {
  background: var(--primary); color: rgba(255,255,255,0.7); padding: 3rem 2rem; margin-top: 3rem;
}
.footer-cols { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; color: #FFFFFF; text-transform: uppercase; margin-bottom: 0.5rem; }
.footer-cols h4 { font-family: var(--font-display); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; color: var(--accent); }
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 0.4rem; }
.footer-cols a { color: rgba(255,255,255,0.7); }
.footer-cols a:hover { color: #FFFFFF; }
.footer-social { margin-top: 0.5rem; }
.footer-social a { color: rgba(255,255,255,0.7); margin-right: 0.75rem; }
.footer-bottom { max-width: 900px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.85rem; }

.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: 2rem; text-transform: uppercase; margin-bottom: 2rem; }
.privacy-content h2 { font-family: var(--font-display); font-size: 1.2rem; text-transform: uppercase; 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: 5px 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(--primary); padding: 1rem; gap: 0.8rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero-enterprise { padding: 3rem 1.5rem; min-height: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
}
