/* =============================================================
   Holistic Wellness Initiative — Shared Stylesheet
   Theme: Sage & Soul
   Fonts: Fraunces (display) + DM Sans (body) via Google Fonts
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=DM+Sans:ital,opsz,wght@0,9..40,300..900;1,9..40,300..900&display=swap');

/* ── Reset ────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Design Tokens ────────────────────────────────────────── */

:root {
  /* Colors — OKLCH, all neutrals tinted toward sage hue */
  --cream:        oklch(97%   0.008  92);
  --cream-alt:    oklch(93.5% 0.012  88);
  --sage-pale:    oklch(91%   0.04  148);
  --sage-light:   oklch(76%   0.075 148);
  --sage:         oklch(54%   0.10  148);
  --sage-dark:    oklch(40%   0.08  148);
  --sage-deep:    oklch(24%   0.045 148);
  --warm:         oklch(74%   0.10   68);
  --warm-mid:     oklch(68%   0.10   65);
  --warm-light:   oklch(90%   0.06   80);
  --text:         oklch(24%   0.025  55);
  --text-mid:     oklch(46%   0.025  55);
  --text-light:   oklch(66%   0.020  55);
  --white:        oklch(99%   0.003  92);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Type scale */
  --sz-xs:   0.75rem;
  --sz-sm:   0.875rem;
  --sz-base: 1rem;
  --sz-md:   1.125rem;
  --sz-lg:   1.30rem;
  --sz-xl:   1.625rem;
  --sz-2xl:  clamp(1.75rem, 3vw, 2.25rem);
  --sz-3xl:  clamp(2.1rem,  5vw, 3.25rem);
  --sz-4xl:  clamp(2.6rem,  7vw, 4.5rem);
  --sz-hero: clamp(3rem,    8vw, 6rem);

  /* Spacing (4-pt grid) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radii */
  --r-sm:   6px;
  --r-md:   14px;
  --r-lg:   28px;
  --r-xl:   52px;
  --r-full: 9999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-w: 1100px;
  --nav-h: 72px;
}

/* ── Base ─────────────────────────────────────────────────── */

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--sz-base);
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* ── Accessibility ────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -200%;
  left: var(--sp-4);
  z-index: 9999;
  background: var(--sage);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: var(--sz-sm);
  transition: top 0.2s;
}

.skip-link:focus {
  top: var(--sp-4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── Layout ───────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.page-body {
  padding-top: var(--nav-h);
}

/* ── Navigation ───────────────────────────────────────────── */

.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid oklch(90% 0.015 148);
  transition: box-shadow 0.3s var(--ease-out);
}

.nav.scrolled {
  box-shadow: 0 2px 24px oklch(0% 0 0 / 0.07);
}

.nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav__links a {
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
  padding-block: var(--sp-1);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sage);
  border-radius: var(--r-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--sage-dark);
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__links a:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Nav CTA pill */
.nav__cta {
  background: var(--sage) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.25rem !important;
  border-radius: var(--r-full) !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav__cta::after { display: none !important; }

.nav__cta:hover {
  background: var(--sage-dark) !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: background 0.2s;
}

.nav__toggle:hover {
  background: var(--sage-pale);
}

.nav__toggle:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    inset-block-start: var(--nav-h);
    inset-inline: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    padding: var(--sp-2) var(--sp-6) var(--sp-8);
    border-bottom: 1px solid oklch(90% 0.015 148);
    box-shadow: 0 8px 32px oklch(0% 0 0 / 0.08);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s var(--ease-out), opacity 0.3s;
    pointer-events: none;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__links li { width: 100%; }

  .nav__links a {
    display: block;
    padding-block: var(--sp-4);
    font-size: var(--sz-md);
    border-bottom: 1px solid oklch(92% 0.01 92);
  }

  .nav__cta {
    margin-top: var(--sp-4) !important;
    display: inline-block;
    border-bottom: none !important;
  }
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--sz-base);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease-out), background 0.2s, box-shadow 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--sage);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(40% 0.08 148 / 0.28);
}

.btn--outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage-light);
}

.btn--outline:hover {
  background: var(--sage-pale);
  border-color: var(--sage);
  transform: translateY(-2px);
}

.btn--warm {
  background: var(--warm);
  color: var(--text);
  border-color: transparent;
}

.btn--warm:hover {
  background: var(--warm-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px oklch(74% 0.10 68 / 0.35);
}

.btn--light {
  background: var(--white);
  color: var(--sage-dark);
  border-color: transparent;
}

.btn--light:hover {
  background: var(--sage-pale);
  transform: translateY(-2px);
}

/* ── Section Labels ───────────────────────────────────────── */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--sp-4);
}

.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sage);
  border-radius: var(--r-full);
  flex-shrink: 0;
}

/* ── Wave Dividers ────────────────────────────────────────── */

.wave {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave svg {
  display: block;
  width: 100%;
}

/* ── Hero (homepage) ──────────────────────────────────────── */

.hero {
  background: var(--cream);
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-16);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  padding-block: var(--sp-20) var(--sp-16);
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: var(--sz-hero);
  font-weight: 600;
  font-style: italic;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.01em;
}

.hero__heading em {
  color: var(--sage);
  font-style: italic;
}

.hero__text {
  font-size: var(--sz-lg);
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: var(--sp-10);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.hero__visual {
  position: relative;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--r-xl) var(--r-xl) var(--r-xl) var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sage-pale);
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.hero__image-wrap:hover img {
  transform: scale(1.03);
}

.hero__accent-circle {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 140px;
  height: 140px;
  background: var(--warm-light);
  border-radius: 50%;
  z-index: -1;
}

.hero__badge {
  position: absolute;
  top: var(--sp-8);
  right: -16px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: 0 8px 32px oklch(0% 0 0 / 0.10);
  max-width: 190px;
  z-index: 2;
}

.hero__badge-label {
  font-size: var(--sz-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  margin-bottom: var(--sp-1);
}

.hero__badge-text {
  font-size: var(--sz-sm);
  color: var(--text-mid);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: var(--sp-12);
    gap: var(--sp-10);
  }

  .hero__visual { order: -1; }

  .hero__image-wrap {
    aspect-ratio: 16 / 9;
    border-radius: var(--r-lg);
  }

  .hero__badge {
    right: var(--sp-4);
    top: var(--sp-4);
  }

  .hero__content { max-width: 100%; }
  .hero__text { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero__badge { display: none; }
}

/* ── Intro Section ────────────────────────────────────────── */

.intro {
  background: var(--sage-pale);
  padding-block: var(--sp-24);
}

.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.intro__image-frame {
  position: relative;
}

.intro__image-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--sage-light);
}

.intro__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro__dot {
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 72px;
  height: 72px;
  background: var(--warm);
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
}

.intro__text h2 {
  font-family: var(--font-display);
  font-size: var(--sz-3xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--sp-6);
}

.intro__text p {
  font-size: var(--sz-md);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  max-width: 52ch;
}

.intro__text p:last-of-type {
  margin-bottom: var(--sp-8);
}

@media (max-width: 768px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .intro__image-wrap {
    aspect-ratio: 16 / 10;
  }
}

/* ── Program Pillars (homepage) ───────────────────────────── */

.pillars {
  background: var(--cream-alt);
  padding-block: var(--sp-24);
}

.pillars__header {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}

.pillars__header h2 {
  font-family: var(--font-display);
  font-size: var(--sz-3xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--sp-4);
}

.pillars__header p {
  font-size: var(--sz-md);
  color: var(--text-mid);
  line-height: 1.65;
}

.pillars__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 270px 270px;
  gap: var(--sp-5);
}

.pillar {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--sage-pale);
}

.pillar--large {
  grid-row: 1 / 3;
}

.pillar__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.pillar:hover .pillar__image {
  transform: scale(1.05);
}

.pillar__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(24% 0.045 148 / 0.88) 0%,
    oklch(24% 0.045 148 / 0.25) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-8);
}

.pillar--small .pillar__overlay {
  padding: var(--sp-6);
}

.pillar__tag {
  display: inline-block;
  background: oklch(99% 0.003 92 / 0.15);
  color: oklch(97% 0.008 92 / 0.9);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid oklch(99% 0.003 92 / 0.18);
  width: fit-content;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: var(--sz-xl);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.pillar--large .pillar__title {
  font-size: var(--sz-2xl);
  margin-bottom: var(--sp-3);
}

.pillar__desc {
  font-size: var(--sz-sm);
  color: oklch(97% 0.008 92 / 0.78);
  line-height: 1.55;
}

.pillar--small .pillar__desc {
  display: none;
}

.pillars__cta {
  text-align: center;
  margin-top: var(--sp-12);
}

@media (max-width: 768px) {
  .pillars__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 300px 240px 240px;
  }

  .pillar--large {
    grid-row: auto;
  }

  .pillar--small .pillar__desc {
    display: block;
  }
}

/* ── Testimonial Section ──────────────────────────────────── */

.testimonial-section {
  background: var(--sage-deep);
  padding-block: var(--sp-24);
}

.testimonial-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.testimonial__mark {
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 0.7;
  color: var(--sage-light);
  opacity: 0.35;
  user-select: none;
  padding-top: var(--sp-4);
  flex-shrink: 0;
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--sp-5);
}

.testimonial__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--warm);
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: var(--sz-xl);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: oklch(91% 0.04 148);
  margin-bottom: var(--sp-8);
  max-width: 66ch;
}

.testimonial__attribution {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.testimonial__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--sage-dark);
  flex-shrink: 0;
  border: 2px solid oklch(91% 0.04 148 / 0.2);
}

.testimonial__name {
  font-size: var(--sz-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-1);
}

.testimonial__role {
  font-size: var(--sz-sm);
  color: oklch(91% 0.04 148 / 0.65);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .testimonial-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .testimonial__mark {
    font-size: 5rem;
    line-height: 1;
  }

  .testimonial__quote {
    font-size: var(--sz-lg);
  }
}

/* ── CTA Band ─────────────────────────────────────────────── */

.cta-band {
  background: var(--sage-pale);
  padding-block: var(--sp-24);
  text-align: center;
}

.cta-band .container {
  max-width: 680px;
}

.cta-band .section-label {
  justify-content: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--sz-3xl);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.cta-band p {
  font-size: var(--sz-md);
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: var(--sp-8);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
}

/* ── Page Hero (inner pages) ──────────────────────────────── */

.page-hero {
  background: var(--sage-deep);
  padding-block: var(--sp-20) var(--sp-16);
  text-align: center;
}

.page-hero .section-label {
  color: var(--sage-light);
  justify-content: center;
}

.page-hero .section-label::before {
  background: var(--sage-light);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--sz-4xl);
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  color: var(--white);
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.01em;
}

.page-hero__lead {
  font-size: var(--sz-lg);
  color: oklch(91% 0.04 148 / 0.82);
  line-height: 1.6;
  max-width: 54ch;
  margin-inline: auto;
}

/* ── About: Story Section ─────────────────────────────────── */

.story-section {
  background: var(--cream);
  padding-block: var(--sp-24);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.story-images {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-8));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.story-images img {
  border-radius: var(--r-md);
  object-fit: cover;
  width: 100%;
}

.story-images img:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 10;
}

.story-images img:nth-child(2),
.story-images img:nth-child(3) {
  aspect-ratio: 1;
}

.story-text h2 {
  font-family: var(--font-display);
  font-size: var(--sz-3xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--sp-8);
}

.story-text p {
  font-size: var(--sz-base);
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: var(--sp-5);
}

.story-text p:last-child { margin-bottom: 0; }

.story-pull {
  font-family: var(--font-display);
  font-size: var(--sz-xl);
  font-style: italic;
  color: var(--sage-dark);
  line-height: 1.4;
  margin-block: var(--sp-8);
  padding-left: var(--sp-6);
  border-left: 3px solid var(--sage-light);
}

@media (max-width: 900px) {
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-images {
    position: static;
  }

  .story-images img:first-child {
    aspect-ratio: 16 / 9;
  }
}

/* ── About: Mission/Vision ────────────────────────────────── */

.mission-vision {
  background: var(--sage-pale);
  padding-block: var(--sp-24);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.mv-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-10);
}

.mv-card__icon {
  width: 52px;
  height: 52px;
  background: var(--sage-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
}

.mv-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: var(--sz-2xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-4);
}

.mv-card p {
  font-size: var(--sz-md);
  color: var(--text-mid);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .mv-grid { grid-template-columns: 1fr; }
}

/* ── About: Parkrose / Grant Highlight ───────────────────── */

.highlight-section {
  background: var(--cream-alt);
  padding-block: var(--sp-24);
}

.highlight-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.highlight-layout.flip .highlight-image { order: 2; }
.highlight-layout.flip .highlight-content { order: 1; }

.highlight-image-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sage-pale);
}

.highlight-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.highlight-image-wrap:hover img {
  transform: scale(1.03);
}

.highlight-content h2 {
  font-family: var(--font-display);
  font-size: var(--sz-2xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--sp-5);
}

.highlight-content p {
  font-size: var(--sz-base);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.highlight-content p:last-child { margin-bottom: 0; }

.highlight-tag {
  display: inline-block;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}

@media (max-width: 768px) {
  .highlight-layout,
  .highlight-layout.flip {
    grid-template-columns: 1fr;
  }

  .highlight-layout.flip .highlight-image,
  .highlight-layout.flip .highlight-content {
    order: unset;
  }
}

/* ── Programs Page: Intro ─────────────────────────────────── */

.programs-intro {
  background: var(--cream);
  padding-block: var(--sp-24);
}

.programs-intro .container {
  max-width: 760px;
  text-align: center;
}

.programs-intro h2 {
  font-family: var(--font-display);
  font-size: var(--sz-3xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--sp-6);
}

.programs-intro p {
  font-size: var(--sz-md);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.programs-intro p:last-child { margin-bottom: 0; }

/* ── Programs: Individual Program Sections ────────────────── */

.program-block {
  padding-block: var(--sp-24);
}

.program-block:nth-child(odd) {
  background: var(--cream-alt);
}

.program-block:nth-child(even) {
  background: var(--cream);
}

.program-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.program-layout.reversed .program-image { order: 2; }
.program-layout.reversed .program-content { order: 1; }

.program-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sage-pale);
}

.program-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.program-image-wrap:hover img {
  transform: scale(1.04);
}

.program-image-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 90px;
  height: 90px;
  background: var(--warm-light);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.program-content h2 {
  font-family: var(--font-display);
  font-size: var(--sz-2xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--sp-4);
}

.program-content p {
  font-size: var(--sz-base);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.program-content p:last-child { margin-bottom: 0; }

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: var(--sz-sm);
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  margin-top: var(--sp-5);
}

.partner-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .program-layout,
  .program-layout.reversed {
    grid-template-columns: 1fr;
  }

  .program-layout.reversed .program-image,
  .program-layout.reversed .program-content {
    order: unset;
  }
}

/* ── Programs: Community Partners ─────────────────────────── */

.partners-section {
  background: var(--sage-deep);
  padding-block: var(--sp-24);
}

.partners-section .section-label {
  color: var(--sage-light);
}

.partners-section .section-label::before {
  background: var(--sage-light);
}

.partners-section h2 {
  font-family: var(--font-display);
  font-size: var(--sz-3xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.partners-section > .container > .partners-lead {
  font-size: var(--sz-md);
  color: oklch(91% 0.04 148 / 0.75);
  line-height: 1.65;
  margin-bottom: var(--sp-12);
  max-width: 52ch;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-4);
}

.partner-card {
  background: oklch(99% 0.003 92 / 0.06);
  border: 1px solid oklch(99% 0.003 92 / 0.10);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-8);
  transition: background 0.2s, transform 0.2s var(--ease-out);
}

.partner-card:hover {
  background: oklch(99% 0.003 92 / 0.10);
  transform: translateY(-3px);
}

.partner-card h3 {
  font-family: var(--font-display);
  font-size: var(--sz-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.partner-card p {
  font-size: var(--sz-sm);
  color: oklch(91% 0.04 148 / 0.65);
  line-height: 1.5;
}

/* ── Programs: Grant Section ──────────────────────────────── */

.grant-section {
  background: var(--warm-light);
  padding-block: var(--sp-24);
}

.grant-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.grant-image-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 2 / 1;
  background: var(--sage-pale);
}

.grant-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.grant-tag {
  display: inline-block;
  background: var(--warm);
  color: var(--text);
  font-size: var(--sz-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}

.grant-content h2 {
  font-family: var(--font-display);
  font-size: var(--sz-2xl);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: var(--sp-5);
}

.grant-content p {
  font-size: var(--sz-base);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

.grant-content p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  .grant-layout { grid-template-columns: 1fr; }
}

/* ── Contact Page ─────────────────────────────────────────── */

.contact-section {
  background: var(--cream);
  padding-block: var(--sp-24);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: var(--sz-3xl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: var(--sp-5);
}

.contact-info > p {
  font-size: var(--sz-md);
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: var(--sp-10);
  max-width: 46ch;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--sage-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-label {
  font-size: var(--sz-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  margin-bottom: var(--sp-1);
}

.contact-item-value {
  font-size: var(--sz-md);
  font-weight: 500;
  color: var(--text);
}

.contact-item-value a {
  transition: color 0.2s;
}

.contact-item-value a:hover {
  color: var(--sage);
  text-decoration: underline;
}

.contact-image-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sage-pale);
  margin-bottom: var(--sp-6);
}

.contact-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camp-card {
  background: var(--sage-pale);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
}

.camp-card h3 {
  font-family: var(--font-display);
  font-size: var(--sz-xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-3);
}

.camp-card p {
  font-size: var(--sz-base);
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ── Location Band ────────────────────────────────────────── */

.location-band {
  background: var(--sage-pale);
  padding-block: var(--sp-16);
  text-align: center;
}

.location-band h2 {
  font-family: var(--font-display);
  font-size: var(--sz-2xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--sp-3);
}

.location-band p {
  font-size: var(--sz-md);
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Footer ───────────────────────────────────────────────── */

.site-footer {
  background: var(--sage-deep);
  color: var(--white);
  padding-block: var(--sp-16) var(--sp-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid oklch(99% 0.003 92 / 0.08);
  margin-bottom: var(--sp-8);
}

.footer-brand img {
  height: 38px;
  width: auto;
  margin-bottom: var(--sp-4);
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: var(--sz-sm);
  color: oklch(91% 0.04 148 / 0.55);
  line-height: 1.65;
  max-width: 34ch;
}

.footer-col h4 {
  font-size: var(--sz-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: oklch(91% 0.04 148 / 0.45);
  margin-bottom: var(--sp-4);
}

.footer-col a {
  display: block;
  font-size: var(--sz-sm);
  color: oklch(91% 0.04 148 / 0.7);
  padding-block: var(--sp-1);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: var(--sz-xs);
  color: oklch(91% 0.04 148 / 0.35);
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

/* ── Scroll Reveal ────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ── Reduced Motion ───────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}
