/* ======================
   RESET & BASE
   ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F5F0E9;
  --bg-alt: #EDE7DA;
  --green: #3D4F39;
  --green-light: #5A7560;
  --terracotta: #C4703C;
  --terracotta-light: #D4875A;
  --ivory: #FDF9F3;
  --text: #2A2420;
  --text-muted: #6B5E52;
  --text-light: #9A8A7C;
  --border: #D4C9BC;
  --white: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ======================
   TYPOGRAPHY
   ====================== */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

a { color: inherit; }

/* ======================
   NAV
   ====================== */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ======================
   HERO
   ====================== */
.hero {
  position: relative;
  padding: 80px 40px 80px;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at center, rgba(196,112,60,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(61,79,57,0.06) 0%, transparent 70%);
  bottom: -80px;
  left: 10%;
}
.hero-shape-3 {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(196,112,60,0.15);
  border-radius: 50%;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
  display: inline-block;
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.05;
  margin-bottom: 32px;
  max-width: 700px;
}

.hero-sub {
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 20px;
  line-height: 1.65;
}

.hero-note {
  font-size: 0.9375rem;
  color: var(--text-light);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}

/* Ground graphic */
.hero-graphic {
  position: relative;
  z-index: 1;
  margin-top: 80px;
  padding: 0 40px;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.ground-line {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 300px;
}
.ground-dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}
.ground-dot-2 { background: var(--green-light); }
.ground-line-inner {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--terracotta), var(--green-light));
  opacity: 0.4;
}

/* ======================
   MANIFESTO
   ====================== */
.manifesto {
  background: var(--green);
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-rule {
  width: 40px;
  height: 3px;
  background: var(--terracotta);
  margin-bottom: 40px;
}
.manifesto-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: rgba(253,249,243,0.85);
  line-height: 1.7;
  margin-bottom: 28px;
}
.manifesto-bold {
  color: var(--ivory);
  font-weight: 600;
}
.manifesto-byline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(253,249,243,0.6);
  margin-top: 32px;
  margin-bottom: 12px;
}
.manifesto-bio {
  font-size: 0.875rem;
  color: rgba(253,249,243,0.55);
  line-height: 1.7;
}

/* ======================
   SECTION SHARED
   ====================== */
.section-header {
  margin-bottom: 56px;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--green);
  max-width: 640px;
}

/* ======================
   WHO IT'S FOR
   ====================== */
.whoitsfor {
  padding: 100px 40px;
  max-width: 1140px;
  margin: 0 auto;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}
.who-item {
  background: var(--ivory);
  padding: 40px 36px;
}
.who-icon {
  width: 32px;
  height: 32px;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.who-icon svg {
  width: 100%;
  height: 100%;
}
.who-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  color: var(--green);
  margin-bottom: 12px;
}
.who-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.who-note {
  font-size: 0.875rem;
  color: var(--text-light);
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  line-height: 1.7;
}

/* ======================
   PRICING
   ====================== */
.pricing {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.pricing > .section-header {
  max-width: 1140px;
  margin: 0 auto 56px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto 48px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}
.pricing-card-highlight {
  border-color: var(--green);
  background: var(--ivory);
}
.pricing-card-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  height: 4px;
  background: var(--green);
}
.pricing-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.pricing-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-card-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.pricing-card-per {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 28px;
}
.pricing-card-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pricing-card-detail {
  font-size: 0.8125rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}
.pricing-promise {
  max-width: 600px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}
.pricing-contact {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.pricing-contact strong {
  color: var(--green);
  font-weight: 500;
}

/* ======================
   HOW IT WORKS
   ====================== */
.howitworks {
  padding: 100px 40px;
  max-width: 1140px;
  margin: 0 auto;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.5;
  line-height: 1;
  padding-top: 2px;
}
.step-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.how-contact {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.how-contact strong { color: var(--green); font-weight: 500; }

/* ======================
   PHILOSOPHY
   ====================== */
.philosophy {
  background: var(--green);
  padding: 100px 40px;
}
.phil-inner {
  max-width: 720px;
  margin: 0 auto 64px;
}
.phil-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
}
.phil-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--ivory);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.phil-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--terracotta);
}
.phil-attr {
  font-size: 0.9375rem;
  color: rgba(253,249,243,0.5);
  padding-left: 28px;
}
.phil-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.phil-item {
  border-top: 1px solid rgba(253,249,243,0.15);
  padding-top: 24px;
}
.phil-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  color: var(--ivory);
  margin-bottom: 12px;
}
.phil-desc {
  font-size: 0.875rem;
  color: rgba(253,249,243,0.6);
  line-height: 1.7;
}

/* ======================
   CLOSING
   ====================== */
.closing {
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(196,112,60,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.closing-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--green);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ======================
   FOOTER
   ====================== */
.footer {
  background: var(--text);
  padding: 60px 40px;
}
.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(253,249,243,0.5);
  margin-bottom: 24px;
  line-height: 1.7;
}
.footer-contact {
  font-size: 0.875rem;
  color: rgba(253,249,243,0.6);
  margin-bottom: 28px;
}
.footer-contact span { font-weight: 600; color: rgba(253,249,243,0.4); margin-right: 8px; }
.footer-contact a { color: var(--terracotta-light); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(253,249,243,0.5);
  text-decoration: none;
}
.footer-nav a:hover { color: rgba(253,249,243,0.8); }
.footer-nav span { color: rgba(253,249,243,0.3); }
.footer-disclaimer {
  font-size: 0.8125rem;
  color: rgba(253,249,243,0.45);
  line-height: 1.7;
  margin-bottom: 16px;
  border-top: 1px solid rgba(253,249,243,0.1);
  padding-top: 24px;
}
.footer-disclaimer a { color: var(--terracotta-light); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(253,249,243,0.3);
}

/* ======================
   MEET DENISE
   ====================== */
.meet-denise {
  padding: 80px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.md-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.md-headshot-wrap {
  flex-shrink: 0;
  padding-top: 8px;
}
.md-headshot {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #5A7560;
  display: block;
}
.md-content {}
.md-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.md-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 28px;
}
.md-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.md-body p:last-child {
  margin-bottom: 0;
  color: var(--text);
  font-weight: 400;
}
.md-writing-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.9375rem;
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.md-writing-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* ======================
   FAQ
   ====================== */
.faq-section {
  padding: 80px 40px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-header {
  margin-bottom: 56px;
}
.faq-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.faq-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--green);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  color: var(--green);
  margin-bottom: 10px;
  font-weight: 600;
}
.faq-a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a strong {
  color: var(--terracotta);
  font-weight: 600;
}

@media (max-width: 768px) {
  .meet-denise { padding: 64px 24px; }
  .md-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .md-headshot-wrap { display: flex; justify-content: center; }
  .md-headshot { width: 200px; height: 200px; }
  .faq-section { padding: 64px 24px; }
}
  .nav-inner, .hero-inner, .hero-graphic,
  .whoitsfor, .pricing > .section-header,
  .howitworks, .closing-inner, .footer-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 60px; padding-bottom: 60px; }
  .manifesto { padding: 60px 24px; }
  .philosophy { padding: 60px 24px; }
  .footer { padding: 48px 24px; }
  .who-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 40px 1fr; }
  .hero-shape-3 { display: none; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .pricing-card-price { font-size: 2.5rem; }
}

/* ======================
   HERO CTA BUTTON
   ====================== */
.hero-cta {
  margin-top: 40px;
}
.hero-cta-btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s ease;
}
.hero-cta-btn:hover {
  background: var(--terracotta-light);
}

/* ======================
   INTAKE FORM
   ====================== */
.intake-section {
  padding: 80px 40px;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intake-inner {
  max-width: 640px;
  margin: 0 auto;
}
.intake-header {
  margin-bottom: 48px;
}
.intake-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.intake-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--green);
  margin-bottom: 12px;
}
.intake-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}
.intake-form {
  position: relative;
}
.intake-field {
  margin-bottom: 32px;
}
.intake-field-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.intake-optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.875rem;
}
.intake-input,
.intake-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
}
.intake-input:focus,
.intake-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,79,57,0.08);
}
.intake-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}
.intake-radios {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.intake-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  transition: border-color 0.15s ease, background 0.15s ease;
  flex: 1;
  min-width: 120px;
}
.intake-radio:hover {
  border-color: var(--green-light);
  background: var(--bg);
}
.intake-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.intake-radio-box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s ease;
}
.intake-radio-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.intake-radio input[type="radio"]:checked ~ .intake-radio-box {
  border-color: var(--green);
}
.intake-radio input[type="radio"]:checked ~ .intake-radio-box .intake-radio-dot {
  opacity: 1;
  transform: scale(1);
}
.intake-radio input[type="radio"]:checked ~ .intake-radio-label {
  color: var(--green);
  font-weight: 500;
}
.intake-radio-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.intake-acknowledgment {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 24px;
  border-left: 3px solid var(--border);
  padding-left: 16px;
}
.intake-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.intake-submit:hover:not(:disabled) {
  background: var(--green-light);
}
.intake-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.intake-error {
  margin-top: 16px;
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 2px;
  font-size: 0.9375rem;
  color: #991B1B;
}
.intake-success {
  text-align: center;
  padding: 48px 24px;
}
.intake-success-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 16px;
}
.intake-success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 12px;
}
.intake-success-msg {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .intake-section { padding: 64px 24px; }
  .intake-radios { flex-direction: column; gap: 10px; }
  .intake-radio { min-width: unset; }
}
@media (max-width: 480px) {
  .hero-cta-btn { width: 100%; text-align: center; padding: 16px 24px; }
}

/* ======================
   PRICING PAGE
   ====================== */

/* Hero */
.ph-hero {
  background: var(--bg-alt);
  padding: 64px 40px 56px;
  border-bottom: 1px solid var(--border);
}
.ph-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.ph-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 16px;
}
.ph-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 620px;
}

/* Tiers */
.ph-tiers {
  padding: 80px 40px;
  background: var(--bg);
}
.ph-tiers-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.ph-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.ph-tier-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.ph-tier-card-featured {
  border-color: var(--green);
  background: var(--ivory);
}
.ph-tier-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: -1px; right: -1px;
  height: 4px;
  background: var(--green);
  border-radius: 2px 2px 0 0;
}
.ph-tier-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.ph-tier-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.ph-tier-price-free {
  color: var(--terracotta);
}
.ph-tier-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ph-tier-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.ph-tier-for {
  font-size: 0.8125rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}
.ph-funding-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

/* What's included */
.ph-included {
  padding: 80px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ph-included-inner {
  max-width: 900px;
  margin: 0 auto;
}
.ph-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 40px;
}
.ph-included-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.ph-included-item:nth-child(odd) {
  padding-right: 40px;
  border-right: 1px solid var(--border);
}
.ph-included-item:nth-child(even) {
  padding-left: 40px;
}
.ph-included-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.ph-included-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ph-included-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}
.ph-included-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* What's NOT included */
.ph-not {
  padding: 80px 40px;
  background: var(--ivory);
}
.ph-not-inner {
  max-width: 800px;
  margin: 0 auto;
}
.ph-not-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  margin-bottom: 40px;
}
.ph-not-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.ph-not-item:first-child { border-top: 1px solid var(--border); }
.ph-not-icon {
  font-size: 1rem;
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
}
.ph-not-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.ph-crisis-bar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 24px 28px;
}
.ph-crisis-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.ph-crisis-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ph-crisis-btn {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.ph-crisis-btn:hover {
  border-color: var(--green);
  background: var(--ivory);
}
.ph-crisis-link {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--terracotta);
  text-underline-offset: 2px;
}
.ph-crisis-link:hover { color: var(--terracotta); }

/* FAQ */
.ph-faq {
  padding: 80px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.ph-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* CTA */
.ph-cta {
  padding: 80px 40px;
  background: var(--green);
  text-align: center;
}
.ph-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.ph-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--ivory);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.ph-cta-sub {
  font-size: 1.0625rem;
  color: rgba(253,249,243,0.75);
  margin-bottom: 36px;
  line-height: 1.6;
}
.ph-cta-btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 48px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s ease;
  letter-spacing: 0.01em;
}
.ph-cta-btn:hover { background: var(--terracotta-light); }
.ph-cta-note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(253,249,243,0.5);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}
.nav-link:hover { color: var(--green); }
.nav-link-active { color: var(--green); font-weight: 600; }

/* Responsive */
@media (max-width: 900px) {
  .ph-tier-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .ph-hero { padding: 48px 24px 40px; }
  .ph-tiers { padding: 64px 24px; }
  .ph-included { padding: 64px 24px; }
  .ph-not { padding: 64px 24px; }
  .ph-faq { padding: 64px 24px; }
  .ph-cta { padding: 64px 24px; }
  .ph-included-grid { grid-template-columns: 1fr; }
  .ph-included-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .ph-included-item:nth-child(even) { padding-left: 0; }
  .ph-included-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .ph-included-item:last-child { border-bottom: none; }
  .ph-crisis-numbers { flex-direction: column; }
  .ph-crisis-btn { width: 100%; text-align: center; }
  .ph-cta-btn { width: 100%; text-align: center; padding: 16px 24px; }
  .nav-inner { padding-left: 24px; padding-right: 24px; }
}

/* ======================
   WHAT TO EXPECT PAGE
   ====================== */
.wte-hero {
  background: var(--bg-alt);
  padding: 64px 40px 56px;
  border-bottom: 1px solid var(--border);
}
.wte-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.wte-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 16px;
}
.wte-subline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}
.wte-main {
  max-width: 100%;
}
.wte-section {
  padding: 64px 40px;
  border-bottom: 1px solid var(--border);
}
.wte-section-alt {
  background: var(--ivory);
}
.wte-section-inner {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 32px;
  align-items: start;
}
.wte-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.45;
  line-height: 1.3;
  padding-top: 4px;
}
.wte-content {}
.wte-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--green);
  margin-bottom: 20px;
  line-height: 1.25;
}
.wte-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.wte-body:last-child { margin-bottom: 0; }
.wte-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wte-list li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.wte-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}
.wte-crisis-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.wte-crisis-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.wte-crisis-item:last-child { border-bottom: none; }
.wte-crisis-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green);
  min-width: 140px;
  flex-shrink: 0;
}
.wte-crisis-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.wte-cta-section {
  padding: 80px 40px;
  text-align: center;
  background: var(--green);
}
.wte-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}
.wte-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--ivory);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.wte-cta-sub {
  font-size: 1.0625rem;
  color: rgba(253,249,243,0.75);
  margin-bottom: 36px;
  line-height: 1.6;
}
.wte-cta-btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 48px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s ease;
  letter-spacing: 0.01em;
}
.wte-cta-btn:hover { background: var(--terracotta-light); }
.wte-cta-note {
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(253,249,243,0.5);
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
}

/* What to expect page — inline link style */
.wte-inline-link {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--terracotta);
  text-underline-offset: 3px;
}
.wte-inline-link:hover { color: var(--terracotta); }

/* Intake form cross-link */
.intake-expect-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9375rem;
  color: var(--green-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.intake-expect-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

@media (max-width: 768px) {
  .wte-hero { padding: 48px 24px 40px; }
  .wte-section { padding: 48px 24px; }
  .wte-section-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wte-num { font-size: 1.125rem; }
  .wte-cta-section { padding: 64px 24px; }
  .wte-crisis-num { min-width: 110px; font-size: 0.9375rem; }
  .wte-cta-btn { width: 100%; text-align: center; padding: 16px 24px; }
}

/* ======================
   FOR PARTNERS PAGE
   ====================== */

/* Hero */
.fp-hero {
  background: var(--green);
  padding: 72px 40px 64px;
}
.fp-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.fp-hero .section-label {
  color: var(--terracotta-light);
  margin-bottom: 20px;
}
.fp-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 24px;
}
.fp-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(253,249,243,0.8);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 36px;
}
.fp-hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.fp-hero-btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s ease;
  letter-spacing: 0.01em;
}
.fp-hero-btn:hover { background: var(--terracotta-light); }
.fp-hero-link {
  font-size: 0.9375rem;
  color: rgba(253,249,243,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(253,249,243,0.3);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.fp-hero-link:hover {
  color: rgba(253,249,243,0.9);
  border-color: rgba(253,249,243,0.6);
}

/* Who section */
.fp-who {
  padding: 88px 40px;
  background: var(--bg);
}
.fp-who-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.fp-section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 560px;
}
.fp-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.fp-who-item {
  background: var(--ivory);
  padding: 32px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.fp-who-item:nth-child(3n) { border-right: none; }
.fp-who-item:nth-last-child(-n+3) { border-bottom: none; }
.fp-who-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}
.fp-who-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 6px;
}
.fp-who-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Fit section */
.fp-fit {
  padding: 88px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fp-fit-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.fp-fit-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.fp-fit-col {
  padding: 32px;
  border-radius: 2px;
}
.fp-fit-col-good {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-top: 4px solid var(--green);
}
.fp-fit-col-not {
  background: var(--white);
  border: 1px solid var(--border);
}
.fp-fit-col-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.fp-fit-col-label-not { color: var(--terracotta); }
.fp-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fp-fit-list li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 12px 0 12px 22px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.fp-fit-list li:last-child { border-bottom: none; }
.fp-fit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.875rem;
}
.fp-fit-list-not li::before {
  content: '–';
  color: var(--terracotta);
}
.fp-fit-list li strong {
  color: var(--text);
  font-weight: 600;
}

/* Scale section */
.fp-scale {
  padding: 88px 40px;
  background: var(--bg);
}
.fp-scale-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.fp-scale-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 32px;
}
.fp-scale-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 32px 28px;
  position: relative;
}
.fp-scale-card-free {
  border-color: var(--terracotta);
}
.fp-scale-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.fp-scale-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.fp-scale-price-free { color: var(--terracotta); }
.fp-scale-price-forward { color: var(--green-light); }
.fp-scale-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.fp-scale-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.fp-scale-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  max-width: 640px;
}

/* Refer section */
.fp-refer {
  padding: 88px 40px;
  background: var(--ivory);
  border-top: 1px solid var(--border);
}
.fp-refer-inner {
  max-width: 900px;
  margin: 0 auto;
}
.fp-refer-options {
  margin-top: 48px;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fp-refer-option {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.fp-refer-option:first-child { border-top: 1px solid var(--border); }
.fp-refer-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.45;
  line-height: 1;
  padding-top: 4px;
}
.fp-refer-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  color: var(--green);
  margin-bottom: 8px;
  font-weight: 600;
}
.fp-refer-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.fp-refer-link {
  display: inline-block;
  font-size: 0.9375rem;
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--green);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.fp-refer-link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* Partner contact form */
.fp-partner-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px 40px 44px;
}
.fp-partner-form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.fp-partner-form-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--green);
  margin-bottom: 8px;
  line-height: 1.25;
}
.fp-partner-form-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}
.fp-partner-form {
  position: relative;
}
.fp-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.fp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.fp-form-field {
  margin-bottom: 24px;
}
.fp-form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.fp-form-optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.875rem;
}
.fp-form-input,
.fp-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
}
.fp-form-input:focus,
.fp-form-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(61,79,57,0.08);
  background: var(--white);
}
.fp-form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.fp-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s ease;
  margin-top: 4px;
}
.fp-form-submit:hover:not(:disabled) { background: var(--green-light); }
.fp-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.fp-form-error {
  margin-top: 14px;
  padding: 12px 16px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 2px;
  font-size: 0.9375rem;
  color: #991B1B;
}
.fp-form-success {
  text-align: center;
  padding: 48px 24px;
}
.fp-form-success-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 16px;
}
.fp-form-success-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 12px;
}
.fp-form-success-msg {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

/* Bio section */
.fp-bio {
  padding: 88px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fp-bio-inner {
  max-width: 800px;
  margin: 0 auto;
}
.fp-bio-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 28px;
}
.fp-bio-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.fp-bio-body:last-child { margin-bottom: 0; }

/* Print CTA bar */
.fp-print-cta {
  padding: 40px 40px;
  background: var(--green);
}
.fp-print-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.fp-print-cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--ivory);
  font-weight: 600;
  margin-bottom: 6px;
}
.fp-print-cta-desc {
  font-size: 0.9375rem;
  color: rgba(253,249,243,0.65);
  line-height: 1.6;
  max-width: 500px;
}
.fp-print-cta-btn {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 28px;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.15s ease;
  flex-shrink: 0;
}
.fp-print-cta-btn:hover { background: var(--terracotta-light); }

/* Responsive */
@media (max-width: 960px) {
  .fp-who-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-who-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .fp-who-item:nth-child(2n) { border-right: none; }
  .fp-who-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .fp-who-item:nth-last-child(-n+2) { border-bottom: none; }
  .fp-scale-cards { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .fp-hero { padding: 56px 24px 48px; }
  .fp-who { padding: 64px 24px; }
  .fp-who-grid { grid-template-columns: 1fr; }
  .fp-who-item { border-right: none !important; }
  .fp-who-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .fp-who-item:last-child { border-bottom: none !important; }
  .fp-fit { padding: 64px 24px; }
  .fp-fit-cols { grid-template-columns: 1fr; gap: 24px; }
  .fp-scale { padding: 64px 24px; }
  .fp-refer { padding: 64px 24px; }
  .fp-refer-option { grid-template-columns: 40px 1fr; }
  .fp-partner-form-wrap { padding: 28px 24px 32px; }
  .fp-form-row { grid-template-columns: 1fr; gap: 0; }
  .fp-bio { padding: 64px 24px; }
  .fp-print-cta { padding: 40px 24px; }
  .fp-print-cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .fp-print-cta-btn { width: 100%; text-align: center; }
  .fp-hero-btn { width: 100%; text-align: center; }
}