:root {
  --green-darkest: #0a2e1f;
  --green-dark: #0d3d2b;
  --green: #145c40;
  --green-mid: #1d7a54;
  --green-light: #c8e6d9;
  --green-pale: #edf6f0;
  --gold: #c4952a;
  --gold-light: #f0d28a;
  --gold-pale: #fdf6e7;
  --cream: #faf7f2;
  --cream-dark: #f0ebe0;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5a6370;
  --text-light: #8a9299;
  --border: rgba(20,92,64,.15);
  --shadow: 0 4px 24px rgba(10,46,31,.08);
  --shadow-lg: 0 12px 48px rgba(10,46,31,.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: color-mix(in srgb, var(--green-darkest) 97%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,149,42,.25);
  box-shadow: 0 2px 20px rgba(0,0,0,.16);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 240px; }
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  padding: 2px;
}
.brand strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.1;
}
.brand small {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav { display: flex; justify-content: center; gap: 6px; }
.nav-item { position: relative; }
.nav-item > a, .main-nav a {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 8px 13px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-item:hover > a, .main-nav a:hover {
  color: var(--gold-light);
  background: rgba(196,149,42,.12);
}
.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: var(--transition);
}
.submenu::before { content: ""; position: absolute; left: 18px; top: -6px; width: 12px; height: 12px; background: var(--white); transform: rotate(45deg); border-left: 1px solid var(--border); border-top: 1px solid var(--border); }
.nav-item:hover .submenu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.submenu a { color: var(--text-muted); padding: 10px 12px; }
.submenu a:hover { color: var(--green-dark); background: var(--green-pale); }
.search {
  display: flex;
  align-items: center;
  border: 1px solid rgba(196,149,42,.35);
  border-radius: 999px;
  padding: 0 8px 0 12px;
  background: rgba(255,255,255,.06);
}
.search input { width: 118px; border: 0; outline: 0; background: transparent; color: #fff; padding: 9px 4px; font: inherit; font-size: 13px; }
.search input::placeholder { color: rgba(255,255,255,.52); }
.search button, .nav-toggle { border: 0; background: none; color: var(--gold-light); cursor: pointer; }
.language { display: flex; gap: 5px; align-items: center; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 700; }
.language a { color: var(--gold-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font: 700 14px/1 var(--font-body);
  letter-spacing: .01em;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold { background: var(--gold); color: var(--green-darkest); }
.btn-gold:hover { background: #d9a63a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,149,42,.3); }
.btn-light { color: white; background: transparent; border-color: rgba(255,255,255,.36); }
.btn-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.hero-slider {
  position: relative;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  background: var(--green-darkest);
}
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(21,92,64,.62) 0%, transparent 60%),
    radial-gradient(ellipse at 18% 82%, rgba(196,149,42,.1) 0%, transparent 52%);
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 9vh clamp(20px, 7vw, 92px);
  opacity: 0;
  transition: opacity .55s ease;
  background:
    linear-gradient(90deg, rgba(10,46,31,.93), rgba(10,46,31,.72), rgba(10,46,31,.22)),
    var(--hero) center/cover;
}
.hero-slide.is-active { opacity: 1; position: relative; }
.hero-content { position: relative; z-index: 2; max-width: 830px; color: white; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  background: rgba(196,149,42,.15);
  border: 1px solid rgba(196,149,42,.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-content h1 {
  margin: 22px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}
.hero-content p { max-width: 680px; margin: 0; color: rgba(255,255,255,.7); font-size: clamp(16px, 2vw, 20px); line-height: 1.75; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.slider-dots { position: absolute; z-index: 3; left: clamp(20px, 7vw, 92px); bottom: 32px; display: flex; gap: 10px; }
.slider-dots button { width: 42px; height: 4px; border: 0; border-radius: 999px; background: rgba(255,255,255,.3); cursor: pointer; }
.slider-dots .is-active { background: var(--gold); }

.section { padding: clamp(76px, 9vw, 112px) clamp(20px, 7vw, 92px); background: var(--white); }
.section.soft { background: var(--cream); }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: clamp(30px, 6vw, 78px); align-items: center; }
.section-head { max-width: 780px; margin-bottom: 38px; }
.section-head span, .page-hero span, .cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-head span::before { content: ""; display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-head h2, .cta h2 {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--green-darkest);
}
.section-head p { margin: 0; color: var(--text-muted); font-size: 15.5px; line-height: 1.8; }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 12px; color: var(--green-dark); font-weight: 700; }
.image-tile { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); background: var(--cream); }
.image-tile img { width: 100%; height: 480px; object-fit: cover; }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 clamp(20px, 7vw, 92px);
  padding: 32px;
  background: var(--green-darkest);
  color: #fff;
  border-radius: var(--radius-lg);
  transform: translateY(-32px);
  box-shadow: var(--shadow-lg);
}
.stats-band div { text-align: center; padding: 10px 18px; }
.stats-band div + div { border-left: 1px solid rgba(196,149,42,.22); }
.stats-band strong, .stats-band em { color: var(--gold); font-family: var(--font-display); font-size: clamp(34px, 5vw, 58px); font-weight: 700; font-style: normal; line-height: 1; }
.stats-band span { display: block; margin-top: 8px; color: rgba(255,255,255,.58); font-size: 12px; letter-spacing: .05em; }

.cards { display: grid; gap: 28px; }
.cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.program-card, .post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.program-card:hover, .post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.program-card img, .post-card img { width: 100%; height: 250px; object-fit: cover; }
.program-card div, .post-card div { padding: 26px 28px 30px; }
.program-card span, .post-card span { color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.program-card h3, .post-card h3 { margin: 8px 0 10px; color: var(--green-darkest); font-family: var(--font-display); font-size: 30px; font-weight: 700; line-height: 1.1; }
.program-card p, .post-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.75; }
.program-card b { display: inline-flex; margin-top: 4px; color: var(--gold); font-size: 13px; letter-spacing: .06em; }

.page-hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  padding: 160px clamp(20px, 7vw, 92px) 78px;
  color: white;
  background:
    linear-gradient(90deg, rgba(10,46,31,.94), rgba(10,46,31,.66), rgba(10,46,31,.2)),
    var(--hero, radial-gradient(ellipse at 72% 35%, rgba(21,92,64,.75), transparent 60%), var(--green-darkest)) center/cover;
}
.page-hero.compact {
  min-height: 46vh;
  background:
    radial-gradient(ellipse at 70% 35%, rgba(21,92,64,.72), transparent 60%),
    var(--green-darkest);
}
.page-hero div { max-width: 900px; }
.page-hero span, .cta span { color: var(--gold-light); }
.page-hero h1 {
  margin: 12px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 600;
  line-height: 1.03;
}
.page-hero p { max-width: 780px; color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.8; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-grid div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  color: var(--text-muted);
}
.feature-grid i { color: var(--gold); margin-top: 5px; }
.clean-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.clean-list li { position: relative; padding: 14px 16px 14px 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--cream); color: var(--text-muted); }
.clean-list li::before { content: ""; position: absolute; left: 12px; top: 23px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.filters button { border: 1px solid var(--border); background: var(--white); color: var(--green-dark); border-radius: 999px; padding: 10px 16px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.filters .is-active, .filters button:hover { background: var(--green-dark); color: white; border-color: var(--green-dark); }
.masonry { columns: 3 260px; column-gap: 18px; }
.gallery-item { display: inline-block; width: 100%; margin: 0 0 18px; padding: 0; border: 1px solid var(--border); background: #fff; text-align: left; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); cursor: pointer; transition: var(--transition); }
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gallery-item span, .gallery-item b { display: block; padding: 0 16px; }
.gallery-item span { padding-top: 14px; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gallery-item b { padding-bottom: 16px; color: var(--green-darkest); }

.faq { max-width: 900px; }
.faq details { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; padding: 18px 22px; transition: var(--transition); }
.faq details[open] { border-color: var(--green-light); }
.faq summary { cursor: pointer; font-weight: 700; color: var(--green-darkest); }
.faq p { color: var(--text-muted); font-size: 14.5px; }
.pricing { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pricing div { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.pricing .featured { border-color: var(--gold); box-shadow: 0 4px 24px rgba(196,149,42,.18); }
.pricing h3 { margin: 0 0 10px; font-family: var(--font-display); color: var(--green-darkest); font-size: 28px; }
.pricing strong { display: block; color: var(--green-dark); font-family: var(--font-display); font-size: 38px; line-height: 1; }
.pricing p { color: var(--text-muted); }
.table-wrap { overflow: auto; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 16px; text-align: left; border-bottom: 1px solid var(--border); }
th { background: var(--green-pale); color: var(--green-dark); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.article { max-width: 1040px; margin: 0 auto; padding: 74px 20px; }
.article > img { width: 100%; max-height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.article-body { max-width: 780px; margin: 36px auto; }
.article-body > span { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article h1 { color: var(--green-darkest); font-family: var(--font-display); font-size: clamp(38px, 5vw, 64px); line-height: 1.05; }
.lead { color: var(--text-muted); font-size: 19px; }
.share { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.share a { padding: 9px 13px; border: 1px solid var(--border); border-radius: 8px; color: var(--green-dark); font-weight: 700; }

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(ellipse at 82% 40%, rgba(21,92,64,.58), transparent 60%),
    var(--green-darkest);
  color: #fff;
  padding: 56px clamp(20px, 7vw, 92px);
}
.cta h2 { color: #fff; margin-top: 8px; }
.cta p { color: rgba(255,255,255,.62); max-width: 720px; }
.footer { background: color-mix(in srgb, var(--green-darkest) 42%, black); color: rgba(255,255,255,.6); padding: 60px clamp(20px, 7vw, 92px) 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.1fr; gap: 42px; margin-bottom: 42px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: var(--gold); font-family: var(--font-display); font-size: 26px; font-weight: 700; }
.footer-brand img { width: 46px; height: 46px; border-radius: 10px; object-fit: contain; background: #fff; padding: 5px; }
.footer h3 { color: var(--gold); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer p, .footer a { color: rgba(255,255,255,.58); font-size: 13.5px; line-height: 1.75; }
.footer a { display: block; margin: 9px 0; transition: var(--transition); }
.footer a:hover { color: var(--gold); }
.social { display: flex; gap: 10px; }
.social a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.08); margin: 0; }
.copyright { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; color: rgba(255,255,255,.38); font-size: 12.5px; }

.nav-toggle { display: none; font-size: 22px; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 20px; background: rgba(0,0,0,.78); backdrop-filter: blur(4px); }
.lightbox img { max-height: 90vh; border-radius: var(--radius); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; padding: 0 20px; }
  .nav-toggle { display: block; }
  .main-nav { display: none; grid-column: 1 / -1; flex-direction: column; align-items: stretch; padding: 18px 0 24px; }
  .main-nav.is-open { display: flex; }
  .nav-item > a, .main-nav a { padding: 13px 16px; font-size: 16px; }
  .submenu { position: static; min-width: 0; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; margin: 4px 0 8px 16px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); }
  .submenu::before { display: none; }
  .submenu a { color: rgba(255,255,255,.72); }
  .submenu a:hover { color: var(--gold-light); background: rgba(196,149,42,.12); }
  .search, .language, .site-header > .btn { display: none; }
  .hero-slider { min-height: 760px; }
  .split, .cards.two, .cards.three, .stats-band, .feature-grid, .pricing, .footer-grid { grid-template-columns: 1fr; }
  .stats-band { transform: none; margin: 0; border-radius: 0; }
  .stats-band div + div { border-left: 0; border-top: 1px solid rgba(196,149,42,.22); }
  .cta { display: block; }
}

@media (max-width: 560px) {
  .brand { min-width: 0; }
  .brand small { display: none; }
  .brand strong { font-size: 15px; }
  .hero-content h1, .page-hero h1 { font-size: 38px; }
  .section { padding: 58px 18px; }
  .hero-slide { padding: 80px 18px 96px; }
  .page-hero { min-height: 540px; padding: 130px 18px 54px; }
  .program-card img, .post-card img { height: 210px; }
  .program-card h3, .post-card h3 { font-size: 26px; }
}
