/* ─────────────────────────────────────────────────────────
   Next Move Academy — Design System
   Dark green + gold | Lora display + Inter body
   ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colors from logo */
  --green-deep: #0F3D2E;        /* primary brand */
  --green-darker: #0A2A1F;
  --green-light: #1B5E47;
  --gold: #D4A017;               /* primary accent */
  --gold-light: #E8C46A;
  --gold-soft: rgba(212, 160, 23, 0.12);
  --gold-border: rgba(212, 160, 23, 0.32);

  /* Surfaces */
  --cream: #FAF7F0;
  --cream-2: #F2EDE0;
  --paper: #FFFFFF;
  --ink: #0E1714;
  --ink-soft: #2A3530;
  --muted: #6B7872;
  --faint: #A6ADA9;
  --line: rgba(15, 61, 46, 0.14);
  --line-soft: rgba(15, 61, 46, 0.07);

  /* Type */
  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --container: 1200px;
  --container-narrow: 880px;
  --radius: 6px;
  --radius-lg: 14px;

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

html { scroll-behavior: smooth; }
html, body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--green-darker); }

/* ── HEADINGS ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--green-deep);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow--green { color: var(--green-deep); }

/* ── LAYOUT ───────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }
section { padding: clamp(56px, 8vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }

/* ── HEADER / NAV ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 247, 240, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 240, 0.96);
  box-shadow: 0 1px 0 rgba(15, 61, 46, .06), 0 12px 30px -20px rgba(15, 61, 46, .12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img { width: 44px; height: auto; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.01em;
  line-height: 1.05;
}
.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: color .25s var(--ease);
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--green-deep);
}
.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  background: var(--green-deep);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.nav-cta:hover { background: var(--green-darker); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--green-deep);
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--cream);
    padding: 12px 18px 18px;
    border-bottom: 1px solid var(--line);
    gap: 0;
  }
  .site-header.is-open .nav-links a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--line-soft);
  }
  .site-header.is-open .nav-cta {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
  }
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 11vw, 140px);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 75% 25%, rgba(212, 160, 23, 0.18), transparent 70%),
    radial-gradient(45% 50% at 15% 90%, rgba(232, 196, 106, 0.10), transparent 70%);
  z-index: -1;
}
/* Full-bleed background-photo variant */
.hero--bg {
  min-height: clamp(560px, 78vh, 760px);
  display: flex;
  align-items: center;
  background-color: var(--green-deep);
  background-image:
    linear-gradient(90deg, rgba(15, 61, 46, 0.94) 0%, rgba(15, 61, 46, 0.84) 32%, rgba(15, 61, 46, 0.45) 62%, rgba(15, 61, 46, 0.10) 100%),
    linear-gradient(180deg, rgba(15, 61, 46, 0.25) 0%, rgba(15, 61, 46, 0.50) 100%),
    url("../assets/hero-bg.webp");
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}
.hero--bg::before { display: none; }
.hero--bg::after { display: none; }
.hero--bg .hero-content {
  max-width: 620px;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero--bg {
    background-image:
      linear-gradient(180deg, rgba(15, 61, 46, 0.55) 0%, rgba(15, 61, 46, 0.78) 55%, rgba(15, 61, 46, 0.92) 100%),
      url("../assets/hero-bg-portrait.webp");
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-content h1 {
  color: var(--cream);
  font-weight: 500;
  margin: 18px 0 22px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-lede {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(250, 247, 240, 0.82);
  max-width: 52ch;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-fork {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-fork-svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
}
.hero-image {
  display: block;
  width: 100%;
  max-width: 760px;
  position: relative;
  /* Photo has a baked-in alpha feather; CSS only sizes it. */
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-fork { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--gold);
  color: var(--green-darker);
  box-shadow: 0 6px 20px -8px rgba(212, 160, 23, .55);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 247, 240, 0.34);
}
.btn-secondary:hover {
  background: rgba(250, 247, 240, 0.08);
  border-color: rgba(250, 247, 240, 0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--paper); border-color: var(--green-deep); }
.btn-dark {
  background: var(--green-deep);
  color: var(--cream);
}
.btn-dark:hover { background: var(--green-darker); transform: translateY(-2px); }

/* ── SECTION HEADER ──────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.section-head h2 { margin: 12px 0 14px; }
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}
.section-head--left {
  text-align: left;
  margin-left: 0;
}

/* ── HOME: PILLARS ────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -30px rgba(15, 61, 46, .25);
  border-color: var(--gold-border);
}
.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.25rem;
}
.pillar h3 {
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-weight: 500;
}
.pillar p {
  color: var(--muted);
  font-size: 0.96rem;
}
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }

/* ── ABOUT BLOCK ──────────────────────────────────────── */
.about-section {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-deep);
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-decor {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 90px; height: 90px;
  background: var(--gold);
  border-radius: 50%;
  z-index: -1;
}
.about-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-text p strong { color: var(--green-deep); }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }

/* ── OUTCOMES ─────────────────────────────────────────── */
.outcomes-section {
  background: var(--green-deep);
  color: var(--cream);
}
.outcomes-section h2 { color: var(--cream); }
.outcomes-section .section-head p { color: rgba(250, 247, 240, .76); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.outcome {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  background: rgba(250, 247, 240, 0.04);
  border: 1px solid rgba(250, 247, 240, 0.10);
  border-radius: var(--radius);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.outcome:hover {
  background: rgba(250, 247, 240, 0.06);
  border-color: var(--gold-border);
}
.outcome-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.18);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.outcome-icon svg { width: 18px; height: 18px; }
.outcome p {
  font-size: 0.95rem;
  color: rgba(250, 247, 240, 0.92);
  line-height: 1.5;
}

/* ── SERVICES PAGE ────────────────────────────────────── */
.tier-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}
.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}
.tier:hover {
  border-color: var(--gold-border);
  box-shadow: 0 30px 60px -40px rgba(15, 61, 46, .35);
}
.tier--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
  position: relative;
}
.tier--featured::before {
  content: "Most Chosen";
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--gold);
  color: var(--green-darker);
  padding: 4px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}
.tier-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green-light));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.tier-icon svg { width: 28px; height: 28px; }
.tier-body .tier-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.tier-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.tier-body .tier-tag {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.tier-body ul {
  list-style: none;
  display: grid;
  gap: 6px;
}
.tier-body ul li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}
.tier-body ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.tier-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green-deep);
  line-height: 1;
}
.tier-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.tier-price del {
  color: var(--faint);
  font-size: 1.1rem;
  margin-right: 8px;
}
.tier-promo {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 820px) {
  .tier { grid-template-columns: 1fr; gap: 18px; }
  .tier-cta { align-items: flex-start; text-align: left; }
}

/* ── EVENTS ───────────────────────────────────────────── */
.event-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  margin-bottom: 28px;
}
.event-image {
  position: relative;
  background: var(--cream-2);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-body {
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.event-date svg { width: 16px; height: 16px; }
.event-body h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.event-meta {
  display: grid;
  gap: 10px;
  margin: 16px 0 24px;
}
.event-meta div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.event-meta svg {
  width: 18px; height: 18px;
  color: var(--green-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.event-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
}
@media (max-width: 820px) {
  .event-card { grid-template-columns: 1fr; }
  .event-image { min-height: 240px; }
}

/* ── BOOKING / SCHEDULER ──────────────────────────────── */
.scheduler-section {
  background: var(--cream-2);
}
.scheduler-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 56px);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.scheduler-card h3 { margin-bottom: 12px; }
.scheduler-card p { color: var(--muted); margin-bottom: 28px; }

.calendar-frame,
.calendly-inline-widget {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  min-height: 760px;
}

/* Booking fallback card — shown when no Calendly event-type URL is set yet */
.booking-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 28px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(15, 61, 46, 0.25);
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.06), rgba(250, 247, 240, 0.6));
  gap: 14px;
  min-height: 360px;
}
.booking-fallback__icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(15, 61, 46, 0.18);
}
.booking-fallback h4 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--green-deep);
  margin: 4px 0 0;
}
.booking-fallback p {
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 0 12px;
}

/* ── GALLERY ──────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1 / 1;
  background: var(--green-deep);
  color: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  border: 1px dashed var(--gold-border);
  font-size: 0.88rem;
  line-height: 1.4;
  opacity: 0.8;
}
.gallery-item svg { width: 28px; height: 28px; margin-bottom: 10px; opacity: 0.6; }

/* ── FORMS ────────────────────────────────────────────── */
.form-section {
  background: var(--paper);
}
.form-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  max-width: 720px;
  margin: 0 auto;
}
.form-row { display: grid; gap: 6px; margin-bottom: 18px; }
.form-row.two-col { grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row.two-col { grid-template-columns: 1fr; } }
.form-row label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green-deep);
  text-transform: uppercase;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row .hint {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.form-actions small {
  color: var(--muted);
  font-size: 0.82rem;
}
.form-success {
  background: rgba(15, 61, 46, .06);
  border: 1px solid var(--green-deep);
  color: var(--green-deep);
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  display: none;
  margin-bottom: 18px;
}
.form-success.is-visible { display: block; }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.checkbox-row input { width: auto; margin-top: 4px; }

/* ── PAGE HEADER (interior) ───────────────────────────── */
.page-hero {
  background: var(--green-deep);
  color: var(--cream);
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 80% 20%, rgba(212,160,23,.16), transparent 70%),
    radial-gradient(50% 60% at 20% 90%, rgba(232,196,106,.08), transparent 70%);
  z-index: -1;
}
.page-hero h1 {
  color: var(--cream);
  margin: 14px auto 18px;
  max-width: 18ch;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  color: rgba(250, 247, 240, .82);
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── MEET US (founder) ────────────────────────────────── */
.founder-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.founder-photo {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-deep);
}
.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}
.founder-prose p {
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.founder-prose p strong { color: var(--green-deep); font-weight: 600; }
.founder-prose .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--green-deep);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
}
.founder-prose .signoff {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--green-deep);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.founder-prose .signoff strong { font-style: normal; display: block; margin-top: 4px; }
@media (max-width: 880px) {
  .founder-hero { grid-template-columns: 1fr; }
  .founder-photo { position: static; max-width: 380px; margin: 0 auto; }
}

/* ── BELIEFS / VALUES ─────────────────────────────────── */
.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.belief {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
}
.belief-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1;
}
.belief h3 {
  margin: 12px 0 10px;
  font-family: var(--font-display);
}
.belief p { color: var(--muted); font-size: 0.96rem; }
@media (max-width: 800px) { .beliefs-grid { grid-template-columns: 1fr; } }

/* ── CONTACT CHANNELS ─────────────────────────────────── */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.channel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.channel:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}
.channel-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.channel-icon svg { width: 20px; height: 20px; }
.channel h4 { color: var(--green-deep); margin-bottom: 4px; }
.channel a { color: var(--ink-soft); font-size: 0.95rem; transition: color .2s var(--ease); }
.channel a:hover { color: var(--gold); }
@media (max-width: 800px) { .channel-grid { grid-template-columns: 1fr; } }

/* ── PARTNERSHIP HIGHLIGHT ────────────────────────────── */
.partnership-section {
  background: linear-gradient(135deg, var(--green-deep), var(--green-darker));
  color: var(--cream);
}
.partnership-section h2 { color: var(--cream); }
.partnership-section .section-head p { color: rgba(250, 247, 240, .8); }
.partnership-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 40px;
}
.partnership-type {
  background: rgba(250, 247, 240, 0.05);
  border: 1px solid rgba(250, 247, 240, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.partnership-type h4 {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.partnership-type p {
  color: rgba(250, 247, 240, 0.82);
  font-size: 0.95rem;
}
@media (max-width: 700px) { .partnership-types { grid-template-columns: 1fr; } }

/* ── CTA STRIP ────────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  color: var(--green-darker);
  padding: 48px 0;
  text-align: center;
}
.cta-strip h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--green-darker);
  margin-bottom: 8px;
}
.cta-strip p { margin-bottom: 22px; color: rgba(14, 23, 20, 0.72); }
.cta-strip .btn-dark { box-shadow: 0 8px 24px -10px rgba(0,0,0,.3); }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--green-darker);
  color: rgba(250, 247, 240, 0.72);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { width: 56px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 32ch; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 0.92rem;
  padding: 4px 0;
  color: rgba(250, 247, 240, 0.72);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(250, 247, 240, 0.5);
}
.footer-bottom .motto {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── REVEAL ON SCROLL ─────────────────────────────────── */
/* Subtle on-scroll fade-in. Elements remain visible by default; JS only
   adds the hidden state for elements not yet in viewport on first paint. */
.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal.reveal-pending { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
