:root {
  --teal: #1f4a4a;
  --teal-dark: #143232;
  --green: #6b8f3a;
  --green-dark: #3f6b3f;
  --mustard: #e0a83f;
  --cream: #faf7f0;
  --text: #22322f;
  --text-light: #5a675f;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(20, 50, 50, 0.12);
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; color: var(--teal); line-height: 1.2; margin: 0 0 0.5em; }

h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); text-align: center; }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; color: var(--text-light); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: #fff;
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 10px; top: 10px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--mustard); color: var(--teal-dark); }
.btn-primary:hover { background: #cf9530; transform: translateY(-1px); }
.btn-outline { border-color: var(--teal); color: var(--teal); background: transparent; }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(31, 74, 74, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.brand-name { font-family: Georgia, serif; font-weight: 700; color: var(--teal); font-size: 1.2rem; }
.site-nav { display: none; align-items: center; gap: 22px; font-weight: 600; font-size: 0.95rem; }
.site-nav a:hover { color: var(--green-dark); }
.nav-phone { color: var(--teal); }
.btn-nav { display: none; }

@media (min-width: 860px) {
  .site-nav { display: flex; }
  .btn-nav { display: inline-block; }
}

/* Hero */
.hero {
  padding: 40px 0 50px;
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.hero-sub { font-size: 1.05rem; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.hero-badges { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 0.85rem; color: var(--green-dark); font-weight: 600; }
.hero-badges li::before { content: "✓ "; color: var(--green); }
.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (min-width: 860px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}

/* Sections */
.section { padding: 56px 0; }
.section-lead { text-align: center; max-width: 60ch; margin: 0 auto 32px; }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 700px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green);
}
.card h3 { color: var(--teal); }
.card p { margin: 0; }

.why { background: #fff; }
.checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.checklist li { padding-left: 28px; position: relative; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px; height: 20px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
}

.events-list h3 { text-align: center; }
.grid-3.tight { gap: 10px; }
.pill {
  display: block;
  text-align: center;
  background: var(--cream);
  border: 1px solid rgba(31,74,74,0.15);
  color: var(--teal);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
}

/* CTA banner */
.cta-banner {
  background: var(--teal);
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 50ch; margin-left: auto; margin-right: auto; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 6px 20px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal);
  padding: 14px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 1.3rem;
  color: var(--mustard);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding-bottom: 16px; margin: 0; }

/* Footer */
.site-footer { background: var(--teal-dark); color: rgba(255,255,255,0.85); padding: 40px 0 10px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 700px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand { display: flex; gap: 12px; align-items: flex-start; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.footer-brand strong { color: #fff; }
.footer-brand a { color: var(--mustard); }
.footer-contact p, .footer-links a { margin: 0 0 8px; display: block; }
.footer-contact a { color: #fff; }
.footer-links a:hover, .footer-brand a:hover { text-decoration: underline; }
.footer-bottom { text-align: center; font-size: 0.8rem; padding: 16px 0; color: rgba(255,255,255,0.55); }

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: block;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--mustard);
  color: var(--teal-dark);
  text-align: center;
  font-weight: 700;
  padding: 14px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
@media (min-width: 860px) {
  .mobile-sticky-cta { display: none; }
}
@media (max-width: 859px) {
  body { padding-bottom: 58px; }
}
