:root {
  --blue-accent: #0f6f8f;
  --card-green: #083f0b;
  --cream: #f8f5e7;
  --divider: #d7e7d0;
  --green-accent: #f2d20a;
  --green-dark: #052b07;
  --green-deep: #0a6b08;
  --text-dark: #14351b;
  --text-gray: #3f4740;
  --text-light: #ffffff;
  --text-muted: #dbe9d3;
  --white: #ffffff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.nav-wrap {
  background: var(--cream);
  padding: 20px 24px 0;
}
.nav {
  align-items: center;
  background: var(--green-deep);
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1392px;
  min-height: 64px;
  padding: 16px 40px;
  position: relative;
}
.brand, .nav-links, .phone-chip { align-items: center; display: flex; }
.brand { gap: 14px; }
.brand-mark {
  border-radius: 999px;
  height: 34px;
  object-fit: cover;
  width: 34px;
}
.brand-name {
  color: var(--text-light);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}
.brand-sub, .nav-links a {
  color: var(--text-muted);
  font-size: 10px;
}
.nav-links { gap: 28px; }
.nav-links a { font-size: 14px; }
.nav-links .active { color: var(--text-light); font-weight: 600; }
.phone-chip {
  background: var(--white);
  border-radius: 999px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  padding: 8px 16px;
  white-space: nowrap;
}
.phone-chip svg { width: 14px; height: 14px; }
.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  background: var(--white);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 22px;
}

.hero {
  align-items: start;
  background: var(--cream);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 640px) minmax(420px, 620px);
  justify-content: center;
  padding: 40px 60px 64px;
}
.hero-copy { max-width: 640px; }
.badge {
  align-items: center;
  background: rgba(97, 206, 112, .16);
  border-radius: 999px;
  color: var(--green-deep);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 7px;
  line-height: 1;
  padding: 8px 12px;
}
.badge span {
  background: var(--green-accent);
  border-radius: 999px;
  height: 6px;
  width: 6px;
}
.badge.dark { background: rgba(255, 255, 255, .08); color: var(--text-muted); }
.hero h1 {
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: .98;
  margin: 24px 0 24px;
}
.hero h1 em {
  color: var(--green-deep);
  display: block;
  font-style: italic;
}
.hero p {
  color: var(--text-gray);
  font-size: 16px;
  max-width: 560px;
}
.actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.actions.center { justify-content: center; }
.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
  min-height: 48px;
  padding: 14px 24px;
}
.btn-primary { background: var(--green-deep); color: var(--text-light); }
.btn-outline { border: 1px solid var(--green-deep); color: var(--green-deep); }
.btn-soft { background: var(--green-accent); color: var(--green-dark); }
.btn-clear { border: 1px solid rgba(255,255,255,.55); color: var(--text-light); }
.hero-stats {
  align-items: center;
  color: var(--text-gray);
  display: flex;
  flex-wrap: wrap;
  gap: 20px 26px;
  margin-top: 40px;
}
.hero-stats strong {
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
}
.hero-stats span { font-size: 12px; }
.hero-stats b { color: var(--green-deep); font-weight: 800; }
.member-dots { display: flex; margin-left: 12px; }
.member-dots i {
  background: var(--green-deep);
  border-radius: 50%;
  display: block;
  height: 26px;
  margin-left: -7px;
  opacity: .95;
  width: 26px;
}
.member-dots i:nth-child(n+4) { background: var(--green-accent); }
.hero-media {
  height: 500px;
  max-width: 620px;
  position: relative;
  width: 100%;
}
.photo-main, .photo-overlap {
  box-shadow: 0 18px 55px rgba(20, 56, 34, .08);
  object-fit: cover;
  position: absolute;
}
.photo-main {
  border-radius: 24px;
  height: 460px;
  right: 100px;
  top: 10px;
  width: 380px;
}
.photo-overlap {
  border-radius: 20px;
  height: 290px;
  left: 0;
  top: 80px;
  width: 220px;
}
.play {
  align-items: center;
  background: var(--green-deep);
  border: 0;
  border-radius: 999px;
  color: var(--text-light);
  display: flex;
  height: 56px;
  justify-content: center;
  left: 300px;
  position: absolute;
  top: 10px;
  width: 56px;
}
.play svg { fill: currentColor; stroke: none; width: 24px; height: 24px; }
.play.small {
  background: var(--white);
  color: var(--green-deep);
  height: 44px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
}

.statement, .testimonials, .news {
  background: var(--green-deep);
  color: var(--text-light);
  padding: 72px 60px;
}
.statement { padding-top: 64px; }
.statement-grid {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 520px;
  margin: 0 auto;
  max-width: 1320px;
}
.statement h2, .event-strip h2, .testimonials h2, .news h2, .cta h2 {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  margin: 24px 0 18px;
}
.statement p { color: var(--text-muted); max-width: 620px; }
.statement img {
  border-radius: 22px;
  height: 340px;
  object-fit: cover;
  width: 520px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 78px auto 0;
  max-width: 1260px;
}
.stats-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}
.stats-row span { color: var(--text-muted); display: block; margin-top: 8px; }

.programs, .faq {
  background: var(--cream);
  padding: 72px 60px;
}
.section-heading { margin: 0 auto 48px; max-width: 720px; text-align: center; }
.section-heading h2, .faq h2 {
  color: var(--text-dark);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1;
  margin: 24px 0 16px;
}
.section-heading p { color: var(--text-gray); margin: 0 auto; max-width: 650px; }
.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}
.program-card {
  background: var(--white);
  border-radius: 14px;
  min-height: 335px;
  padding: 36px;
}
.icon {
  align-items: center;
  background: rgba(97, 206, 112, .15);
  border-radius: 12px;
  color: var(--green-deep);
  display: flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.icon svg { width: 22px; height: 22px; }
.program-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.05;
  margin: 28px 0 16px;
}
.program-card p { color: var(--text-gray); min-height: 86px; }
.mini-btn {
  align-items: center;
  background: var(--green-deep);
  border-radius: 999px;
  color: var(--text-light);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
  padding: 10px 18px;
}

.event-strip {
  align-items: center;
  background: var(--green-dark);
  color: var(--text-light);
  display: flex;
  gap: 40px;
  padding: 48px 60px;
}
.event-strip > * { max-width: 1320px; }
.event-thumb {
  border-radius: 16px;
  height: 220px;
  overflow: hidden;
  position: relative;
  width: 320px;
}
.event-thumb img { height: 100%; object-fit: cover; width: 100%; }
.event-strip h2 { margin: 0 0 12px; }
.event-strip p, .testimonials p, .news time, .footer p, .footer a { color: var(--text-muted); }

.section-heading.light h2 { color: var(--text-light); }
.featured-quotes {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto 24px;
  max-width: 1320px;
}
.quote-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}
.quote {
  background: var(--card-green);
  border-radius: 14px;
  padding: 24px;
}
.quote.large { min-height: 225px; padding: 30px; }
.quote h3 {
  color: var(--text-light);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.2;
  margin: 8px 0 12px;
}
.quote.large h3 { font-size: 18px; }
.quote small, .stars { color: var(--green-accent); font-weight: 700; }
.person {
  align-items: center;
  color: var(--text-light);
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.person span {
  background: rgba(255,255,255,.25);
  border-radius: 999px;
  height: 34px;
  width: 34px;
}
.person small { color: var(--text-muted); display: block; font-weight: 400; margin-top: 2px; }

.news { border-top: 1px solid rgba(255,255,255,.08); }
.news-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 28px;
  max-width: 1320px;
}
.news h2 { margin-bottom: 0; }
.mini-btn.ghost { background: rgba(255,255,255,.08); }
.news-list {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 1320px;
}
.news-list a {
  align-items: center;
  background: var(--card-green);
  border-radius: 12px;
  display: grid;
  gap: 18px;
  grid-template-columns: 130px 1fr auto;
  min-height: 58px;
  padding: 12px 16px 12px 24px;
}
.news-list b {
  background: var(--green-accent);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 12px;
  padding: 8px 16px;
}

.faq {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 480px;
}
.faq-copy { max-width: 760px; }
.faq h2 { margin-bottom: 28px; }
.faq-list {
  border-top: 1px solid rgba(27, 58, 40, .13);
  max-width: 760px;
}
details {
  border-bottom: 1px solid rgba(27, 58, 40, .13);
  padding: 17px 0;
}
summary {
  color: var(--text-dark);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding-right: 30px;
  position: relative;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  color: var(--text-gray);
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
}
details[open] summary::after { content: "-"; }
details p { color: var(--text-gray); margin: 12px 0 0; max-width: 620px; }
.faq > img {
  border-radius: 24px;
  height: 520px;
  object-fit: cover;
  width: 480px;
}

.cta {
  align-items: center;
  background: var(--green-deep);
  color: var(--text-light);
  display: flex;
  height: 400px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.cta > img, .cta-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}
.cta > img { object-fit: cover; opacity: .24; }
.cta-overlay { background: rgba(4, 121, 43, .78); }
.cta-content { max-width: 650px; padding: 0 24px; position: relative; z-index: 1; }
.cta h2 { margin: 0 0 18px; }
.cta p { color: rgba(255,255,255,.74); margin: 0 auto; max-width: 560px; }

.footer {
  background: var(--green-dark);
  color: var(--text-light);
  padding: 56px 60px 32px;
}
.footer-top {
  display: grid;
  gap: 56px;
  grid-template-columns: 1.6fr .55fr .75fr 1fr;
  margin: 0 auto;
  max-width: 1320px;
}
.footer-logo {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}
.footer-logo img {
  border-radius: 999px;
  height: 36px;
  object-fit: cover;
  width: 36px;
}
.footer-logo b { font-family: var(--serif); }
.footer-brand p { max-width: 320px; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  align-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  display: flex;
  font-size: 11px;
  height: 28px;
  justify-content: center;
  width: 28px;
}
.footer h3 { font-size: 13px; margin: 0 0 18px; }
.footer-top a { display: block; margin: 0 0 12px; }
.newsletter p { max-width: 280px; }
.newsletter label {
  align-items: center;
  background: rgba(255,255,255,.07);
  border-radius: 999px;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 4px 4px 4px 16px;
}
.newsletter span { color: var(--text-muted); font-size: 13px; }
.newsletter button {
  background: var(--green-accent);
  border: 0;
  border-radius: 999px;
  color: var(--green-dark);
  font: 700 13px var(--sans);
  padding: 10px 20px;
}
.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  margin: 50px auto 0;
  max-width: 1320px;
  padding-top: 26px;
}
.footer-bottom div { display: flex; gap: 24px; }

@media (max-width: 980px) {
  .nav { border-radius: 28px; padding: 16px 22px; }
  .nav-toggle { display: flex; }
  .nav-links {
    background: var(--green-dark);
    border-radius: 18px;
    display: none;
    flex-direction: column;
    left: 16px;
    padding: 18px;
    position: absolute;
    right: 16px;
    top: 74px;
    z-index: 5;
  }
  .nav.open .nav-links { display: flex; }
  .phone-chip { display: none; }
  .hero, .statement-grid, .faq {
    grid-template-columns: 1fr;
  }
  .hero { padding: 42px 24px 56px; }
  .hero h1 { font-size: 48px; }
  .hero-media { height: 450px; margin: 0 auto; max-width: 540px; }
  .photo-main { right: 10px; }
  .statement, .programs, .testimonials, .news, .faq, .footer { padding-left: 24px; padding-right: 24px; }
  .statement img, .faq > img { width: 100%; }
  .cards, .featured-quotes, .quote-grid, .footer-top { grid-template-columns: 1fr; }
  .event-strip { align-items: flex-start; flex-direction: column; padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 640px) {
  .nav-wrap { padding: 12px 12px 0; }
  .brand { gap: 14px; }
  .hero h1, .statement h2, .event-strip h2, .testimonials h2, .news h2, .section-heading h2, .faq h2, .cta h2 {
    font-size: 34px;
  }
  .hero-media { height: 350px; }
  .photo-main { height: 320px; right: 0; width: 70%; }
  .photo-overlap { height: 210px; width: 43%; }
  .play { left: 58%; }
  .stats-row { gap: 26px; grid-template-columns: 1fr; margin-top: 44px; }
  .program-card { min-height: auto; padding: 28px; }
  .event-thumb { width: 100%; }
  .news-head, .footer-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
  .news-list a { grid-template-columns: 1fr auto; }
  .news-list time { grid-column: 1 / -1; }
  .cta { height: 360px; }
}
