:root {
  --forest: #0d2b28;
  --forest-soft: #123a35;
  --teal: #2aada0;
  --teal-light: #a8cec8;
  --lime: #9dc84b;
  --cream: #f4faf8;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--forest);
  color: var(--white);
  font-family: "Outfit", sans-serif;
  line-height: 1.7;
}
a { color: inherit; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(157, 200, 75, 0.16);
  background: rgba(13, 43, 40, 0.96);
}
.brand {
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
}
.header-link {
  color: var(--lime);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero, .section, .breadcrumbs, .site-footer {
  width: min(1040px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.breadcrumbs {
  padding-top: 1.4rem;
  color: var(--teal-light);
  font-size: 0.8rem;
}
.breadcrumbs a { text-decoration-color: rgba(168, 206, 200, 0.45); }
.hero {
  padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6.5rem);
  text-align: center;
}
.eyebrow, .section-label {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
h1, h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 1.08;
}
h1 {
  max-width: 850px;
  margin: 1rem auto 1.4rem;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
}
h1 em, h2 em { color: var(--lime); font-style: italic; }
.hero-copy {
  max-width: 700px;
  margin: 0 auto 2.2rem;
  color: var(--teal-light);
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.button {
  display: inline-block;
  padding: 0.9rem 1.5rem;
  background: var(--lime);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.online-note { margin-top: 1rem; color: var(--teal-light); font-size: 0.78rem; }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section + .section { border-top: 1px solid rgba(157, 200, 75, 0.13); }
.section h2 {
  max-width: 720px;
  margin: 0.7rem 0 1.2rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.section-intro { max-width: 760px; color: var(--teal-light); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  background: rgba(157, 200, 75, 0.18);
}
.card { padding: 2rem; background: var(--forest-soft); }
.card h3 { margin: 0 0 0.65rem; font-size: 1rem; }
.card p { margin: 0; color: var(--teal-light); font-size: 0.9rem; }
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}
.location-link {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(157, 200, 75, 0.25);
  color: var(--teal-light);
  text-decoration: none;
}
.location-link:hover { border-color: var(--lime); color: var(--lime); }
.region-group + .region-group { margin-top: 3rem; }
.region-title { margin: 0; color: var(--white); font-size: 1.15rem; }
.faq details { padding: 1.2rem 0; border-bottom: 1px solid rgba(157, 200, 75, 0.13); }
.faq summary { cursor: pointer; color: var(--white); font-weight: 500; }
.faq p { max-width: 760px; color: var(--teal-light); }
.cta-panel {
  padding: clamp(2.5rem, 7vw, 4.5rem);
  border: 1px solid rgba(157, 200, 75, 0.25);
  background: rgba(42, 173, 160, 0.08);
  text-align: center;
}
.cta-panel h2 { margin-inline: auto; }
.cta-panel p { max-width: 650px; margin: 0 auto 1.8rem; color: var(--teal-light); }
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(157, 200, 75, 0.13);
  color: var(--teal-light);
  font-size: 0.78rem;
  text-align: center;
}
.site-footer a { color: var(--lime); }
@media (max-width: 760px) {
  .cards, .location-grid { grid-template-columns: 1fr; }
  .site-header { align-items: flex-start; }
  .brand { font-size: 1.1rem; }
}
