/* ════════════════════════════════════════════════════════
   OPEN HANDS PATHWAYS
   Typefaces: Playfair Display (headings) · Lato (UI/body)
   ════════════════════════════════════════════════════════ */

:root {
  --ink:        #151914;
  --muted:      #5d655b;
  --paper:      #f7f8f1;
  --wash:       #eef1e7;
  --white:      #fffdf8;
  --forest:     #26392f;
  --gold:       #8d6d37;
  --gold-light: #cbb778;
  --line:       #d7ddce;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Lato', ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Grain — organic paper warmth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.033;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Staggered hero entrance */
.pin-stage .kicker      { animation: fadeUp 0.65s var(--ease) 0.05s both; }
.pin-stage h1           { animation: fadeUp 0.70s var(--ease) 0.14s both; }
.pin-stage .hero-lede   { animation: fadeUp 0.65s var(--ease) 0.26s both; }
.pin-stage .actions     { animation: fadeUp 0.65s var(--ease) 0.36s both; }
.pin-stage .hero-note   { animation: fadeUp 0.60s var(--ease) 0.48s both; }
.pin-stage .image-system{ animation: fadeUp 0.90s var(--ease) 0.10s both; }

/* ── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4.8vw, 70px);
  pointer-events: none;
}
.nav a { pointer-events: auto; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--forest);
  display: inline-grid;
  place-items: center;
  color: var(--gold-light);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(38, 57, 47, 0.12);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.84);
  padding: 6px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(21, 25, 20, 0.08);
}
.nav-links a {
  border-radius: 7px;
  padding: 8px 12px;
  color: rgba(21, 25, 20, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover {
  background: rgba(38, 57, 47, 0.07);
  color: var(--ink);
}
.nav-links .cta {
  background: var(--forest);
  color: white;
  box-shadow: 0 2px 8px rgba(38, 57, 47, 0.28);
}
.nav-links .cta:hover {
  background: #1e2e25;
  box-shadow: 0 4px 16px rgba(38, 57, 47, 0.38);
}

/* ── HERO / PIN-STAGE ───────────────────────────────── */
.pin-stage {
  position: relative;
  min-height: 130svh;
  background: var(--wash);
}

.hero {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  padding: 112px clamp(22px, 5vw, 74px) 52px;
}

.home .hero { background: var(--wash); }
.launch .hero,
.momentum .hero {
  grid-template-columns: minmax(0, 1fr);
  background: linear-gradient(90deg,
      rgba(247, 248, 242, 0.99),
      rgba(247, 248, 242, 0.88),
      rgba(247, 248, 242, 0.42)),
    var(--hero-image) center / cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.kicker,
.section-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin-top: 20px;
  max-width: 900px;
  font-size: clamp(50px, 6.8vw, 108px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.hero-lede {
  margin-top: 28px;
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(17px, 1.75vw, 21px);
  line-height: 1.64;
}

/* ── BUTTONS ────────────────────────────────────────── */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 0 22px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: background 0.2s, transform 0.2s var(--ease), box-shadow 0.2s;
}
.button:hover { transform: translateY(-2px); }
.primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 2px 12px rgba(38, 57, 47, 0.26);
}
.primary:hover {
  background: #1e2e25;
  box-shadow: 0 6px 24px rgba(38, 57, 47, 0.36);
}
.secondary {
  border: 1.5px solid rgba(38, 57, 47, 0.2);
  background: rgba(255, 253, 248, 0.82);
  color: var(--forest);
}
.secondary:hover {
  background: rgba(255, 253, 248, 1);
  border-color: rgba(38, 57, 47, 0.38);
  box-shadow: 0 4px 16px rgba(38, 57, 47, 0.08);
}

/* ── HERO TRUST NOTES ───────────────────────────────── */
.hero-note {
  margin-top: 64px;
  display: grid;
  max-width: 840px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  border-top: 1px solid rgba(38, 57, 47, 0.18);
  padding-top: 22px;
}
.hero-note p {
  color: rgba(21, 25, 20, 0.58);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.58;
}

/* ── IMAGE SYSTEM ───────────────────────────────────── */
.image-system {
  position: relative;
  min-height: 660px;
}
.image-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 10px;
  background: #ddd;
  box-shadow:
    0 28px 70px rgba(38, 57, 47, 0.15),
    0 4px 16px rgba(38, 57, 47, 0.08);
}
.image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.image-card.one   { inset: 4% 6% 26% 12%; }
.image-card.two   { right: 0; bottom: 8%; width: 48%; height: 36%; }
.image-card.three { display: none; }
.image-card-quote {
  background: rgba(255, 253, 248, 0.96);
  border-color: rgba(38, 57, 47, 0.10);
}
.image-card-quote.subtle { background: rgba(247, 248, 241, 0.97); }
.quote-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px;
}
.quote-eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.quote-copy {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--forest);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.stamp {
  position: absolute;
  right: 9%;
  top: 6%;
  z-index: 3;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(38, 57, 47, 0.18);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--forest);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.42;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 28px rgba(38, 57, 47, 0.1);
}

/* ── FULL-PAGE SECTIONS ─────────────────────────────── */
.pages { position: relative; }
.page {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 96px clamp(22px, 5vw, 74px);
}
.page.alt { background: var(--white); }
.page.dark {
  background: var(--forest);
  color: white;
  position: relative;
  overflow: hidden;
}
/* Atmospheric depth for dark sections */
.page.dark::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 88% 22%, rgba(203, 183, 120, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 45% 65% at 12% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 55%);
}
.page.dark p,
.page.dark li { color: rgba(255, 255, 255, 0.72); }
.page.dark .section-label { color: var(--gold-light); }

h2 {
  margin-top: 16px;
  max-width: 720px;
  font-size: clamp(38px, 5.4vw, 78px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.018em;
}
.copy {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.page-heading .copy { margin-top: 22px; }

/* ── TILES ──────────────────────────────────────────── */
.tiles { display: grid; gap: 14px; }
.tile {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.90);
  padding: clamp(24px, 3.2vw, 40px);
  transition: box-shadow 0.24s, transform 0.22s var(--ease), border-color 0.2s;
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(38, 57, 47, 0.12);
  border-color: rgba(38, 57, 47, 0.18);
}
.tile h3 {
  max-width: 460px;
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
}
.tile p {
  margin-top: 16px;
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

/* ── STEPS ──────────────────────────────────────────── */
.steps,
.trust-list { border-top: 1px solid currentColor; }
.page.dark .steps { border-color: rgba(255, 255, 255, 0.14); }
.step,
.trust-list li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  border-bottom: 1px solid currentColor;
  padding: 30px 0;
}
.page.dark .step { border-color: rgba(255, 255, 255, 0.14); }

/* Large italic numeral — the typographic moment */
.num {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold-light);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.75;
  padding-top: 2px;
}
.step h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.step p {
  margin-top: 8px;
  max-width: 650px;
  font-size: 15px;
  line-height: 1.68;
}

/* ── TRUST LIST ─────────────────────────────────────── */
.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-color: var(--line);
}
.trust-list li {
  grid-template-columns: 1fr;
  color: var(--ink);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 2.1vw, 27px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.01em;
  border-color: var(--line);
  padding: 24px 0;
}
.compact-list li {
  font-size: clamp(16px, 1.75vw, 22px);
  line-height: 1.48;
}

/* ── FAQ ────────────────────────────────────────────── */
.faq-list { display: grid; gap: 18px; }
.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
}
.faq-item h3 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: white;
}
.faq-item p {
  margin-top: 10px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.68;
}

/* ── FINAL CTA ──────────────────────────────────────── */
.final {
  background: linear-gradient(90deg,
      rgba(247, 248, 242, 0.99),
      rgba(247, 248, 242, 0.88),
      rgba(247, 248, 242, 0.52)),
    url("/ohp-mountain-path.jpg") center / cover;
}

.apply-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 980px;
}
.apply-path-card {
  border: 1px solid rgba(38, 57, 47, 0.14);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.84);
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: box-shadow 0.22s, transform 0.22s var(--ease);
}
.apply-path-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(38, 57, 47, 0.1);
}
.apply-path-card h3 {
  margin-top: 12px;
  color: var(--forest);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.apply-path-card p {
  margin-top: 8px;
  color: rgba(21, 25, 20, 0.66);
  font-size: 14px;
  line-height: 1.58;
}

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  padding: 36px clamp(22px, 5vw, 74px);
  border-top: 1px solid var(--line);
  background: var(--white);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.footer p { margin: 0; }
.footer a { color: var(--muted); transition: color 0.18s; }
.footer a:hover { color: var(--ink); }

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.testimonial-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  border: 1px solid rgba(38, 57, 47, 0.11);
  border-radius: 20px;
  padding: 28px;
  background: rgba(247, 248, 242, 0.72);
  box-shadow: 0 12px 36px rgba(38, 57, 47, 0.07);
  transition: box-shadow 0.24s, transform 0.22s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(38, 57, 47, 0.12);
}
.testimonial-card.featured {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(38, 57, 47, 0.18);
}
.testimonial-card blockquote {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.48;
  letter-spacing: -0.008em;
  color: inherit;
}
.testimonial-card:not(.featured) blockquote { color: var(--ink); }
.testimonial-card figcaption {
  margin-top: 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.testimonial-card.featured figcaption { color: var(--gold-light); }
.testimonial-note {
  margin-top: 22px;
  max-width: 820px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ── PRICING ────────────────────────────────────────── */
.investment { background: var(--wash); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.pricing-card {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(38, 57, 47, 0.12);
  border-radius: 20px;
  padding: 28px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 14px 40px rgba(38, 57, 47, 0.07);
  transition: box-shadow 0.24s, transform 0.22s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(38, 57, 47, 0.12);
}
.pricing-card.featured {
  border-color: rgba(141, 109, 55, 0.48);
  background: var(--white);
  transform: translateY(-10px);
  box-shadow: 0 28px 72px rgba(38, 57, 47, 0.15);
}
.pricing-card.featured:hover { transform: translateY(-13px); }
.pricing-badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-kicker {
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pricing-card h3 {
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.pricing-card p:last-child {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}
.pricing-note {
  margin-top: 22px;
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ── TRUST PROOF ────────────────────────────────────── */
.trust-proof { background: var(--white); }
.trust-proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.trust-proof-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 72px rgba(38, 57, 47, 0.15);
  background: rgba(38, 57, 47, 0.08);
}
.trust-proof-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.trust-proof-copy .copy { margin-top: 18px; }
.trust-proof-notes {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.trust-proof-notes p {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

/* ── AEO ANSWER CARDS ───────────────────────────────── */
.answer-card {
  background: var(--white);
  border: 1px solid rgba(41, 51, 42, 0.14);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(24, 31, 24, 0.14);
}
.answer-card h3,
.page.dark .answer-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.answer-card p,
.page.dark .answer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── BLOG ───────────────────────────────────────────── */
.blog-index { min-height: auto; align-items: start; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}
.blog-card {
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(41, 51, 42, 0.10);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 14px 38px rgba(24, 31, 24, 0.07);
  transition: box-shadow 0.24s, transform 0.22s var(--ease);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(24, 31, 24, 0.12);
}
.blog-card h3 {
  margin: 8px 0 12px;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.blog-card a { color: inherit; text-decoration: none; }
.blog-card a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
.blog-card p:last-child { color: var(--muted); font-size: 15px; line-height: 1.58; }
.blog-article {
  max-width: 880px;
  margin: 0 auto;
  padding: 132px 22px 86px;
}
.blog-article h1 { margin: 0 0 24px; }
.article-body {
  margin-top: 48px;
  display: grid;
  gap: 18px;
}
.article-body h2 {
  font-size: clamp(30px, 4.8vw, 52px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 28px 0 0;
}
.article-body p,
.article-cta p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.74;
}
.article-cta {
  margin-top: 48px;
  padding: 30px;
  border-radius: 22px;
  background: rgba(247, 248, 242, 0.94);
  border: 1px solid rgba(41, 51, 42, 0.10);
}

/* ── APPLY FORM ─────────────────────────────────────── */
.apply-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 132px 22px 86px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 34px;
  align-items: start;
}
.apply-intro h1 { margin-top: 0; }
.notice-card,
.fit-form {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(41, 51, 42, 0.11);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(24, 31, 24, 0.08);
}
.notice-card {
  padding: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.notice-card strong { color: var(--ink); }
.fit-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.fit-form label,
.form-checks legend {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}
.fit-form label span,
.form-note { color: var(--muted); font-weight: 400; }
.fit-form input,
.fit-form select,
.fit-form textarea {
  width: 100%;
  border: 1.5px solid rgba(41, 51, 42, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.fit-form input:focus,
.fit-form select:focus,
.fit-form textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(38, 57, 47, 0.08);
}
.fit-form textarea { resize: vertical; }
.form-checks {
  border: 1.5px solid rgba(41, 51, 42, 0.12);
  border-radius: 16px;
  padding: 16px;
}
.fit-form .check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 400;
  color: var(--muted);
  font-size: 14px;
}
.fit-form .check input { width: auto; margin-top: 4px; }
.form-note { margin: -4px 0 0; font-size: 13px; line-height: 1.5; }

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  html, body { max-width: 100%; overflow-x: hidden; }

  .nav { padding: 12px 14px; gap: 10px; }
  .brand { min-width: 0; gap: 8px; font-size: 13px; line-height: 1.1; }
  .brand span:last-child { max-width: 142px; white-space: normal; }
  .nav-links { flex: 0 0 auto; padding: 5px; }
  .nav-links a:not(.cta) { display: none; }
  .nav-links .cta {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    font-size: 12px;
  }

  .pin-stage { min-height: auto; }
  .hero {
    position: relative;
    top: auto;
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    align-items: start;
    gap: 28px;
    padding: 92px 20px 46px;
  }
  .launch .hero,
  .momentum .hero { background-position: 58% center; }
  .hero-copy { width: 100%; max-width: 100%; padding-bottom: 0; }
  h1 {
    max-width: 100%;
    font-size: clamp(40px, 13vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.015em;
  }
  h2 {
    max-width: 100%;
    font-size: clamp(32px, 10.5vw, 48px);
    line-height: 1.01;
    letter-spacing: -0.012em;
  }
  .hero-lede, .copy {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.64;
  }
  .actions { gap: 10px; }
  .button { width: 100%; }

  .image-system {
    order: -1;
    width: 100%;
    min-height: 300px;
    margin-top: 0;
  }
  .image-card.one { inset: 0 0 28px 0; }
  .image-card.two {
    right: 10px;
    bottom: 0;
    width: min(58%, 230px);
    height: 42%;
  }
  .image-card.three, .stamp { display: none; }
  .quote-card { padding: 16px; }
  .quote-copy { font-size: 15px; }

  .hero-note,
  .page,
  .testimonial-grid,
  .pricing-grid,
  .trust-proof-grid,
  .apply-path { grid-template-columns: minmax(0, 1fr); }
  .hero-note { margin-top: 30px; gap: 12px; }
  .page {
    min-height: auto;
    gap: 28px;
    align-content: start;
    align-items: start;
    padding: 76px 20px;
  }
  .page-heading, .tiles, .steps, .trust-list,
  .faq-list, .testimonial-grid, .pricing-grid,
  .trust-proof-grid, .apply-path {
    width: 100%;
    max-width: 100%;
  }
  .tile { min-height: auto; padding: 24px; }
  .tile h3 { font-size: clamp(26px, 9vw, 38px); line-height: 1.02; }
  .num { font-size: 32px; }
  .step, .trust-list li { grid-template-columns: minmax(0, 1fr); gap: 8px; }

  .testimonial-card, .pricing-card {
    min-height: auto;
    border-radius: 16px;
    padding: 22px;
  }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-2px); }
  .pricing-badge { margin-bottom: 8px; }
  .pricing-card h3 { margin-top: 12px; font-size: clamp(34px, 11vw, 46px); }
  .trust-proof-photo { border-radius: 18px; }
  .trust-proof-photo img { max-height: 420px; aspect-ratio: 4 / 3; }
  .final {
    background: linear-gradient(180deg,
        rgba(247, 248, 242, 0.99),
        rgba(247, 248, 242, 0.94),
        rgba(247, 248, 242, 0.84)),
      url("/ohp-mountain-path.jpg") center / cover;
  }
  .apply-path-card { padding: 18px; }
  .footer {
    padding: 32px 20px;
  }
  .blog-grid { grid-template-columns: minmax(0, 1fr); }
  .blog-article { padding: 104px 20px 68px; }
  .apply-page { grid-template-columns: minmax(0, 1fr); padding: 104px 20px 68px; }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .fit-form { padding: 22px; }
}

@media (max-width: 430px) {
  .brand span:last-child { max-width: 112px; }
  .hero { padding-inline: 18px; }
  .page { padding-inline: 18px; }
}
