:root {
  --green: #0F3027;
  --green-2: #164739;
  --green-soft: #EAF1EE;
  --gold: #B8924A;
  --gold-2: #C49E4F;
  --ink: #101112;
  --text: #42464B;
  --muted: #697386;
  --line: #DFE4E8;
  --panel: #F6F7F8;
  --white: #FFFFFF;
  --footer: #070808;
  --shadow: 0 24px 60px rgba(15, 48, 39, .12);
  --radius: 16px;
  --container: 1200px;
}

* { box-sizing: border-box; }

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 4000;
  transform: translateY(-150%);
  background: var(--green);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(15, 48, 39, .1);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 24px rgba(15, 48, 39, .04);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  color: var(--green);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -.02em;
  font-weight: 800;
}

.brand span span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .68rem;
  line-height: 1;
  letter-spacing: .02em;
}

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #303235;
  font-size: .8rem;
  margin-left: auto;
}

.links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .2s ease;
}

.links a:hover,
.links a.active {
  color: var(--green);
}

.back-link {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: transparent;
  color: var(--green);
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--green);
  color: var(--white);
}

.button.gold {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.button.gold:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--green);
}

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .25s ease, opacity .25s ease;
}

body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  padding: 116px 0 84px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 72%, #F6F7F8 100%);
}

.hero .container {
  max-width: 1040px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero h1,
.section h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.65rem, 6vw, 4.55rem);
  line-height: 1.06;
  letter-spacing: -.07em;
  font-weight: 800;
}

.hero h1 em,
.section h2 em {
  color: var(--green);
  font-style: normal;
}

.intro {
  max-width: 650px;
  margin: 22px 0 0;
  color: #687286;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: 106px 0;
  background: var(--white);
}

.section.alt {
  background: var(--panel);
}

.split {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 80px;
  align-items: start;
}

.copy {
  color: #555;
  font-size: 1rem;
}

.copy p {
  margin: 0 0 20px;
}

.quote {
  margin: 26px 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
  color: #666;
  font-style: italic;
  background: var(--white);
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 28px 0;
}

.vision-mission article,
.card,
.plan,
.form,
.info-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.vision-mission article {
  padding: 22px;
}

.vision-mission h3 {
  margin: 0 0 10px;
  color: var(--green);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-grid,
.faq-grid,
.story-grid,
.update-grid,
.service-list-grid {
  display: grid;
  gap: 22px;
}

.program-grid,
.service-list-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-grid,
.story-grid,
.update-grid {
  grid-template-columns: repeat(2, 1fr);
}

.program-card,
.faq-card,
.story-card,
.update-card,
.service-detail {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 28px;
}

.program-card,
.service-detail {
  min-height: 250px;
}

.program-card h3,
.faq-card h3,
.story-card h3,
.update-card h3,
.service-detail h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.program-card p,
.faq-card p,
.story-card p,
.update-card p,
.service-detail p {
  margin: 0;
  color: var(--muted);
}

.program-card ul,
.service-detail ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: #4f5861;
  display: grid;
  gap: 8px;
  font-size: .92rem;
}

.program-card li,
.service-detail li,
.info-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.program-card li::before,
.service-detail li::before,
.info-card li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-size: .68rem;
  font-weight: 900;
  margin-top: 2px;
}

.tag {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.statement {
  padding: 42px;
  border-radius: 22px;
  background: var(--green);
  color: var(--white);
}

.statement h2 {
  color: var(--white);
}

.statement p {
  color: rgba(255,255,255,.76);
  margin: 18px 0 0;
}

.statement ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.statement li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.statement li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(212, 178, 115, .18);
  color: var(--gold-2);
  font-size: .68rem;
  font-weight: 900;
  margin-top: 2px;
}

.card {
  min-height: 210px;
  padding: 30px 28px;
  background: #F8F9FA;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(15, 48, 39, .14);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.card p {
  margin: 0;
  color: #687286;
  font-size: .94rem;
}

.card:hover p {
  color: rgba(255,255,255,.75);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan {
  position: relative;
  padding: 36px 32px 32px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
}

.plan.featured {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: scale(1.02);
}

.plan > p:first-child {
  margin: 0;
  color: #7A8190;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
}

.featured > p:first-child {
  color: rgba(255,255,255,.5);
}

.plan h3 {
  margin: 16px 0 10px;
  font-size: 1.45rem;
  letter-spacing: -.04em;
}

.plan ul {
  list-style: none;
  padding: 28px 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  color: #4D4D4D;
}

.featured ul {
  border-top-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
}

.plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .92rem;
}

.plan li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  margin-top: 2px;
}

.featured li::before {
  background: rgba(255,255,255,.17);
  color: var(--white);
}

.plan .button {
  margin-top: auto;
  width: 100%;
}

.featured .button {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--white);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) 1fr;
  gap: 36px;
  align-items: center;
}

.media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.poster {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(15,48,39,.08);
  max-width: 460px;
}

.poster img {
  width: 100%;
  cursor: zoom-in;
  object-fit: contain;
  background: #F7F8F9;
}

.poster.large img {
  aspect-ratio: 853 / 1280;
}

.poster.small img {
  aspect-ratio: 853 / 1280;
}

.form {
  padding: 44px 40px 40px;
  box-shadow: 0 10px 20px rgba(15,48,39,.04);
}

.form label {
  display: grid;
  gap: 8px;
  color: #171717;
  font-size: .78rem;
  font-weight: 800;
}

.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #F9FAFB;
  color: var(--ink);
  padding: 0 14px;
  outline: 0;
}

.form textarea {
  min-height: 80px;
  padding-top: 12px;
  resize: vertical;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: rgba(15,48,39,.45);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(15,48,39,.08);
}

.form input[type="file"] {
  border-style: dashed;
  padding-top: 10px;
}

.consent {
  display: grid !important;
  grid-template-columns: 14px 1fr;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: .84rem !important;
  line-height: 1.7;
}

.consent input {
  width: 14px;
  height: 14px;
  min-height: 14px;
  margin-top: 5px;
  accent-color: var(--green);
}

.info-card {
  padding: 28px;
  background: var(--green-soft);
  color: var(--green);
}

.info-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.fee-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 9px;
  background: var(--green);
  color: var(--white);
  font-size: .85rem;
}

.footer {
  background: var(--footer);
  color: var(--white);
  padding: 70px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #8F989F;
  font-size: .9rem;
}

.footer-inner p {
  margin: 0;
}

.viewer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,.82);
}

.viewer.open { display: flex; }

.viewer img {
  max-width: min(94vw, 860px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.viewer button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 640px) and (max-width: 899px) {
  .container { width: min(100% - 44px, 900px); }
  body { padding-top: 68px; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }
  .menu-toggle { display: inline-flex; }
  .menu-toggle {
    position: fixed;
    top: 12px;
    right: 22px;
    display: inline-flex !important;
    background: var(--green-soft);
    color: var(--green);
    box-shadow: 0 8px 20px rgba(15,48,39,.08);
    z-index: 2000;
  }
  .links {
    position: fixed;
    left: 24px;
    right: 24px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  body.menu-open .links { display: flex; }
  .links a { padding: 14px 10px; width: 100%; }
  .links .button { width: 100%; }
  .back-link { display: block; }
  .split,
  .media-grid { grid-template-columns: 1fr; gap: 48px; }
  .grid,
  .plan-grid,
  .program-grid,
  .service-list-grid,
  .faq-grid,
  .story-grid,
  .update-grid { grid-template-columns: repeat(2, 1fr); }
  .statement ul { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
}

@media (max-width: 639px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body { padding-top: 68px; }
  .container { width: calc(100vw - 32px); }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }
  .nav-inner {
    min-height: 68px;
    padding-right: 0;
    justify-content: flex-start;
    gap: 12px;
  }
  .brand strong { font-size: .98rem; }
  .menu-toggle { display: inline-flex; }
  .menu-toggle {
    position: fixed;
    top: 12px;
    right: 16px;
    display: inline-flex !important;
    background: var(--green-soft);
    color: var(--green);
    box-shadow: 0 8px 20px rgba(15,48,39,.08);
    z-index: 2000;
  }
  .menu-toggle {
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: 12px !important;
    right: 16px !important;
    z-index: 5000 !important;
  }
  .links {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    height: calc(100dvh - 68px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px 20px 120px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--line);
    z-index: 1900;
  }
  body.menu-open .links { display: flex; }
  .links a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    width: 100%;
  }
  .links .button {
    margin-top: 18px;
    width: 100%;
  }
  .back-link { display: block; }
  .hero {
    padding: 64px 0 54px;
    overflow: hidden;
  }
  .hero h1,
  .section h2 {
    max-width: 100%;
    font-size: clamp(1.95rem, 7.4vw, 2.35rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
    word-break: normal;
  }
  .intro {
    max-width: 100%;
    font-size: .98rem;
    line-height: 1.72;
  }
  .section { padding: 76px 0; }
  .split,
  .grid,
  .plan-grid,
  .program-grid,
  .service-list-grid,
  .faq-grid,
  .story-grid,
  .update-grid,
  .media-grid,
  .media-stack,
  .vision-mission,
  .form .row { grid-template-columns: 1fr; }
  .statement { padding: 28px 22px; }
  .statement ul { grid-template-columns: 1fr; }
  .plan.featured { transform: none; }
  .form { padding: 26px 20px; }
  .button { width: 100%; }
  .program-card,
  .faq-card,
  .story-card,
  .update-card,
  .service-detail,
  .card,
  .plan {
    padding: 22px;
    min-width: 0;
  }
  .eyebrow {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }
  .footer-inner { flex-direction: column; }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .container { width: min(100% - 56px, 1040px); }
  .links { gap: 12px; font-size: .76rem; }
  .button { padding: 0 18px; }
  .hero { padding: 98px 0 76px; }
  .split { gap: 54px; }
  .service-list-grid,
  .faq-grid,
  .story-grid,
  .update-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { gap: 42px; }
}

@media (max-width: 899px) {
  .menu-toggle {
    display: inline-flex !important;
    position: absolute;
    top: 12px;
    right: 16px;
    background: var(--green-soft);
    color: var(--green);
    box-shadow: 0 8px 20px rgba(15,48,39,.08);
    z-index: 3000;
  }
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none !important;
  }
}

html.is-mobile-nav .menu-toggle {
  display: inline-flex !important;
  position: fixed;
  top: 12px;
  right: 16px;
  flex: 0 0 44px;
  margin-left: 0;
  background: var(--green-soft);
  color: var(--green);
  box-shadow: 0 8px 20px rgba(15,48,39,.08);
  z-index: 3000;
}
