:root {
  --black: #090909;
  --black-soft: #151515;
  --gold: #c6a447;
  --gold-dark: #9d7d2e;
  --gold-light: #ead897;
  --cream: #f7f3e8;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #171717;
  --muted: #656158;
  --line: #ded6c3;
  --line-dark: rgba(234, 216, 151, 0.25);
  --green: #173b27;
  --green-soft: #eaf1ec;
  --shadow: 0 18px 55px rgba(20, 16, 7, 0.12);
  --shadow-soft: 0 10px 30px rgba(20, 16, 7, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--black); color: var(--white); }
.section-green { background: var(--green); color: var(--white); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  color: #000;
  background: var(--gold-light);
  border-radius: 8px;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 9, .96);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
}
.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 260px;
  text-decoration: none;
}
.brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  padding: 3px;
  background: #fff;
}
.brand-kicker {
  display: block;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.brand-name {
  display: block;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex-wrap: wrap;
}
.site-nav a {
  padding: 9px 9px;
  color: #e9e4d7;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-light);
  background: rgba(255,255,255,.07);
  outline: none;
}
.site-nav .nav-cta {
  margin-left: 7px;
  min-width: 112px;
  padding: 10px 17px;
  white-space: nowrap;
  flex: 0 0 auto;
  color: #0b0b0b;
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  box-shadow: 0 8px 20px rgba(198, 164, 71, .22);
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #0b0b0b;
  background: #f3e5ae;
  border-color: #f3e5ae;
  box-shadow: 0 12px 26px rgba(198, 164, 71, .3);
  transform: translateY(-1px);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold-light);
  color: #0b0b0b;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(198, 164, 71, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(198, 164, 71, .28); }
.btn-dark { background: var(--black); color: var(--white); box-shadow: none; }
.btn-outline { color: var(--black); background: transparent; border-color: #b8ad93; box-shadow: none; }
.btn-outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.38); box-shadow: none; }
.btn-small { min-height: 42px; padding: 9px 15px; font-size: 12px; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(198,164,71,.25), transparent 31%),
    radial-gradient(circle at 80% 20%, rgba(23,59,39,.55), transparent 34%),
    linear-gradient(135deg, #090909 12%, #17140d 55%, #0d1711 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 58px;
  padding: 84px 0 72px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}
h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: -.025em; }
h1 { margin-top: 18px; font-size: clamp(46px, 6.3vw, 80px); max-width: 790px; }
h2 { font-size: clamp(34px, 4.1vw, 55px); }
h3 { font-size: 23px; }
.hero-copy > p {
  max-width: 730px;
  margin: 25px 0 0;
  color: #ddd8ca;
  font-size: clamp(18px, 2vw, 21px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-statline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line-dark);
}
.hero-stat {
  min-height: 108px;
  padding: 20px;
  background: rgba(12,12,12,.84);
}
.hero-stat strong { display: block; color: var(--gold-light); font-size: 29px; line-height: 1; }
.hero-stat span { display: block; margin-top: 8px; color: #d4cdbb; font-size: 12px; line-height: 1.4; }
.hero-media { position: relative; }
.hero-image {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  box-shadow: 0 32px 80px rgba(0,0,0,.42);
}
.hero-image img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.68));
}
.hero-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--white);
}
.hero-caption b { display: block; font-size: 18px; }
.hero-caption span { color: #e5ddc8; font-size: 13px; }
.hero-badge {
  position: absolute;
  z-index: 3;
  right: -18px;
  top: -30px;
  width: 138px;
  height: 138px;
  padding: 7px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-tools { position: relative; z-index: 5; margin-top: -38px; }
.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tool-card {
  min-height: 166px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.tool-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: var(--shadow); }
.tool-label { color: var(--gold-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.tool-card h3 { margin-top: 10px; font-size: 21px; }
.tool-card p { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.tool-arrow { display: inline-block; margin-top: 14px; color: var(--gold-dark); font-weight: 900; }

.section-head { max-width: 880px; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker { color: var(--gold-dark); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-dark .kicker, .section-green .kicker { color: var(--gold-light); }
.section-head h2 { margin-top: 12px; }
.section-head p, .lead { color: var(--muted); font-size: 18px; }
.section-dark .section-head p, .section-green .section-head p, .section-dark .lead, .section-green .lead { color: #d9d4c8; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}
.image-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #eee;
}
.image-panel img { width: 100%; min-height: 520px; height: 100%; object-fit: cover; }
.copy-panel h2 { margin-top: 12px; }
.copy-panel > p { color: var(--muted); font-size: 18px; }
.mission-box {
  margin-top: 28px;
  padding: 26px;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--cream);
}
.mission-box strong { display: block; margin-bottom: 6px; color: var(--gold-dark); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.mission-box p { margin: 0; font-size: 17px; }

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  min-height: 275px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.step-number { color: var(--gold); font-size: 42px; font-weight: 950; line-height: 1; }
.step-card h3 { margin-top: 22px; }
.step-card p { margin: 12px 0 0; color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(20, 16, 7, .045);
}
.info-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--gold-light);
  background: var(--black);
  font-size: 22px;
}
.info-card p { margin: 12px 0 0; color: var(--muted); }

.event-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}
.flyer-frame {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: #0d0d0d;
  box-shadow: 0 26px 60px rgba(0,0,0,.32);
}
.flyer-frame img { width: 100%; max-height: 690px; object-fit: contain; }

.program-flyer-section { max-width: 1040px; }
.program-flyer-section .section-head { max-width: 820px; margin-left: auto; margin-right: auto; }
.program-flyer-section .section-head p { color: #d9d4c8; }
.program-flyer-frame {
  display: block;
  max-width: 900px;
  margin: 38px auto 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: #0d0d0d;
  box-shadow: 0 26px 60px rgba(0,0,0,.32);
}
.program-flyer-frame img { display: block; width: 100%; height: auto; }
.event-copy h2 { margin: 12px 0 16px; }
.event-copy > p { color: #d9d4c8; font-size: 17px; }
.event-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
}
.meta-card {
  padding: 15px 17px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}
.meta-card b { display: block; color: var(--gold-light); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.meta-card span { display: block; margin-top: 4px; color: var(--white); font-size: 14px; }
.event-note { padding: 18px; border-radius: 14px; color: #e8e1d0; background: rgba(198,164,71,.1); border: 1px solid var(--line-dark); }

.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.impact-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.impact-value { color: var(--gold-dark); font-size: clamp(42px, 5vw, 64px); font-weight: 950; line-height: .95; }
.impact-card h3 { margin-top: 20px; }
.impact-card p { color: var(--muted); }

.calendar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.calendar-card {
  padding: 25px;
  border-top: 4px solid var(--gold);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.calendar-card h3 { font-size: 20px; }
.calendar-card p { color: var(--muted); font-size: 14px; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #111;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-card img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; transition: transform .35s ease; }
.gallery-card::after {
  content: "View image";
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.72);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
}
.gallery-card:hover img { transform: scale(1.045); }
.gallery-card:hover::after, .gallery-card:focus-visible::after { opacity: 1; transform: none; }

.leader-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.leader-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.leader-photo { height: 300px; background: var(--cream); }
.leader-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.leader-copy { padding: 24px; }
.leader-copy p { margin: 7px 0 0; color: var(--gold-dark); font-weight: 800; }

.support-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 38px;
  align-items: start;
}
.support-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.support-action {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.support-action h3 { font-size: 18px; }
.support-action p { color: var(--muted); font-size: 14px; }
.tax-card {
  padding: 30px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--black);
}
.tax-card b { color: var(--gold-light); }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.tier-card {
  min-height: 232px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.tier-price { margin: 12px 0; color: var(--gold-dark); font-size: 28px; font-weight: 950; }
.tier-card p { color: var(--muted); font-size: 14px; }

.referral-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 44px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(125deg, #12301f, #1c4a31 55%, #0f271a);
  box-shadow: var(--shadow);
}
.referral-band h2 { margin-top: 10px; }
.referral-band p { max-width: 760px; color: #d9e6dc; font-size: 17px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 46px; }
.contact-details {
  padding: 30px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--black);
}
.contact-details a { color: var(--gold-light); text-decoration: none; }
.contact-details p { color: #ddd6c5; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}
.contact-card p { margin: 4px 0 0; color: var(--muted); }
.contact-card a { color: var(--gold-dark); font-weight: 900; text-decoration: none; }

.site-footer { padding: 42px 0; color: #d9d2c1; background: #050505; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 70px; height: 70px; padding: 3px; border-radius: 50%; background: #fff; object-fit: contain; }
.footer-brand strong { display: block; color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; align-content: flex-start; justify-content: flex-end; gap: 10px 18px; }
.footer-links a { color: var(--gold-light); font-size: 13px; text-decoration: none; }
.footer-bottom { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #a9a293; font-size: 12px; }

.floating-referral {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(0,0,0,.94);
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1120px, 92vw); max-height: 88vh; border-radius: 14px; }
.lightbox-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #000;
  background: var(--gold-light);
  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .site-nav { gap: 0; }
  .site-nav a { font-size: 11px; padding: 8px 7px; }
  .tool-grid, .calendar-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1160px) {
  html { scroll-padding-top: 82px; }
  .nav-shell { min-height: 76px; }
  .brand-logo { width: 54px; height: 54px; }
  .brand { min-width: 0; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    max-height: calc(100vh - 76px);
    overflow: auto;
    display: none;
    padding: 20px 22px 28px;
    color: #fff;
    background: #0b0b0b;
    border-top: 1px solid var(--line-dark);
    box-shadow: 0 30px 50px rgba(0,0,0,.35);
  }
  .site-nav.open { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .site-nav a { padding: 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; font-size: 13px; }
  .site-nav .nav-cta { margin-left: 0; }
  .hero-grid, .split, .event-feature, .support-intro, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-top: 70px; }
  .hero-media { max-width: 720px; }
  .hero-badge { right: 14px; top: -34px; }
  .quick-tools { margin-top: -24px; }
  .step-grid, .card-grid, .impact-grid, .tier-grid, .leader-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .referral-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 30px, var(--max)); }
  .section { padding: 68px 0; }
  .brand-kicker { font-size: 8px; }
  .brand-name { font-size: 14px; }
  .site-nav.open { grid-template-columns: 1fr; }
  h1 { font-size: clamp(43px, 14vw, 62px); }
  h2 { font-size: clamp(31px, 10vw, 44px); }
  .hero-grid { gap: 46px; padding: 62px 0 58px; }
  .hero-actions .btn { width: 100%; }
  .hero-statline, .tool-grid, .step-grid, .card-grid, .impact-grid, .calendar-grid, .gallery-grid, .leader-grid, .support-actions, .tier-grid { grid-template-columns: 1fr; }
  .hero-image, .hero-image img { min-height: 360px; }
  .hero-badge { width: 105px; height: 105px; top: -22px; }
  .tool-card { min-height: 0; }
  .image-panel img { min-height: 380px; }
  .event-meta { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card img { min-height: 280px; }
  .leader-photo { height: 340px; }
  .referral-band { padding: 30px 24px; }
  .contact-card { grid-template-columns: 1fr; }
  .floating-referral { right: 12px; bottom: 12px; }
  .floating-referral .btn { min-height: 42px; padding: 9px 13px; font-size: 11px; }
}
