/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #FAFAF7;
  --bg-alt:    #F0EFEB;
  --fg:        #111827;
  --fg-mid:    #4B5563;
  --fg-light:  #9CA3AF;
  --accent:    #2F6B4A;
  --accent-lt: #EAF2EE;
  --border:    #D1D0CC;
  --white:     #FFFFFF;

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

  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-6);
}

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  gap: var(--space-8);
}

.site-header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-mid);
  text-decoration: none;
  transition: color 0.15s;
}

.site-header nav a:hover { color: var(--fg); }

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding: var(--space-32) 0 var(--space-24);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-6);
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: var(--space-8);
  max-width: 18ch;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-mid);
  max-width: 56ch;
  line-height: 1.7;
}

/* ── Problem ────────────────────────────────────── */
.problem {
  padding: var(--space-24) 0;
  background: var(--fg);
  color: var(--bg);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.problem .section-label { color: #6B9E7A; }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
  align-items: start;
}

.problem-col h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-6);
  color: var(--bg);
}

.problem-body {
  font-size: 1rem;
  color: #D1D0CC;
  line-height: 1.75;
}

.problem-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-top: var(--space-4);
}

.stat {
  padding: var(--space-6);
  border: 1px solid #2A2A2A;
  border-radius: 4px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #6B9E7A;
  margin-bottom: var(--space-2);
}

.stat-label {
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.5;
}

.problem-cta {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: #A8C4AE;
  border-top: 1px solid #2A2A2A;
  padding-top: var(--space-8);
}

/* ── Approach ─────────────────────────────────────── */
.approach {
  padding: var(--space-24) 0;
  background: var(--bg);
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.approach-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-4);
  max-width: 22ch;
}

.approach-sub {
  font-size: 1.0625rem;
  color: var(--fg-mid);
  max-width: 52ch;
  margin-bottom: var(--space-16);
  line-height: 1.7;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-8);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-lt);
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
  color: var(--fg);
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--fg-mid);
  line-height: 1.7;
  max-width: 52ch;
}

/* ── Outcomes ───────────────────────────────────── */
.outcomes {
  padding: var(--space-24) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-12) var(--space-16);
}

.outcome-icon {
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.outcome h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-3);
}

.outcome p {
  font-size: 0.9375rem;
  color: var(--fg-mid);
  line-height: 1.65;
}

/* ── Manifesto ───────────────────────────────────── */
.manifesto {
  padding: var(--space-32) 0;
  background: var(--accent);
  color: var(--white);
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.manifesto .section-label { color: #A8D4B8; }

.manifesto-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.35;
  color: var(--white);
  max-width: 28ch;
  margin-bottom: var(--space-8);
}

.manifesto-closer {
  font-size: 1rem;
  color: #C8E6D4;
  max-width: 52ch;
  line-height: 1.75;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-16) 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: var(--space-8) var(--space-16);
  align-items: start;
}

.footer-brand .wordmark {
  font-size: 1.125rem;
  color: var(--bg);
  display: block;
  margin-bottom: var(--space-2);
}

.footer-brand p {
  font-size: 0.8125rem;
  color: #6B7280;
}

.footer-links {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.footer-links a {
  font-size: 0.8125rem;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--bg); }

.footer-copy {
  font-size: 0.75rem;
  color: #4B5563;
  grid-column: 1 / -1;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --space-32: 5rem;
    --space-24: 4rem;
    --space-16: 3rem;
  }

  .header-inner { padding: 0 var(--space-6); }
  .site-header nav { gap: var(--space-6); }

  .hero-inner,
  .problem-inner,
  .approach-inner,
  .outcomes-inner,
  .manifesto-inner,
  .footer-inner { padding: 0 var(--space-6); }

  .hero-headline { max-width: none; }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .step {
    grid-template-columns: 48px 1fr;
    gap: var(--space-4);
  }

  .step-num { font-size: 1.75rem; }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-links { flex-wrap: wrap; gap: var(--space-4); }

  .site-header nav a { font-size: 0.8125rem; }
}

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

/* ── Services Page ─────────────────────────────────── */
.services-hero {
  padding: var(--space-32) 0 var(--space-24);
  border-bottom: 1px solid var(--border);
}

.services-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.services-hero .section-label { margin-bottom: var(--space-4); }

.services-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: var(--space-6);
  max-width: 20ch;
}

.services-hero-sub {
  font-size: 1.125rem;
  color: var(--fg-mid);
  max-width: 54ch;
  line-height: 1.7;
}

.services-main {
  padding: var(--space-24) 0;
  border-bottom: 1px solid var(--border);
}

.services-main-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.section-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-4);
}

.section-sub {
  font-size: 1rem;
  color: var(--fg-mid);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: var(--space-12);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.tier {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.tier-tag {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  border-radius: 3px;
  padding: 3px 8px;
  align-self: flex-start;
}

.tier h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0;
}

.tier-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--fg-mid);
}

.tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.tier ul li {
  font-size: 0.875rem;
  color: var(--fg-mid);
  padding-left: var(--space-6);
  position: relative;
  line-height: 1.5;
}

.tier ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
  text-align: center;
}

.cta-btn:hover { background: #245538; }

.cta-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.15s;
  text-align: center;
}

.cta-btn-outline:hover { background: var(--accent-lt); }

/* ── Ideal Client ─────────────────────────────────── */
.ideal-client {
  padding: var(--space-24) 0;
  background: var(--bg-alt);
}

.ideal-client-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.client-col h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--space-6);
}

.client-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.client-list li {
  font-size: 0.9375rem;
  color: var(--fg-mid);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  line-height: 1.6;
}

.client-list li strong {
  color: var(--fg);
  font-weight: 600;
}

.check-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.not-client h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-4);
  color: var(--fg-mid);
}

.not-client-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.not-client-list li {
  font-size: 0.875rem;
  color: var(--fg-light);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* ── Process Strip ───────────────────────────────── */
.process-strip {
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--border);
}

.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-lt);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.process-step h4 {
  font-size: 0.9375rem;
  margin-bottom: var(--space-1);
}

.process-step p {
  font-size: 0.8125rem;
  color: var(--fg-mid);
  line-height: 1.5;
}

/* ── Checklist Page ───────────────────────────────── */
.checklist-hero {
  padding: var(--space-32) 0 var(--space-24);
  border-bottom: 1px solid var(--border);
}

.checklist-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.checklist-hero-content .section-label { margin-bottom: var(--space-4); }

.checklist-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: var(--space-6);
}

.checklist-hero-sub {
  font-size: 1rem;
  color: var(--fg-mid);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.checklist-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: var(--space-8);
}

.checklist-form h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-6);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fg-mid);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-8);
}

.form-success.show { display: block; }

.form-success svg { margin: 0 auto var(--space-4); }

.form-success h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--fg-mid);
  line-height: 1.6;
}

.checklist-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-illustration {
  width: 280px;
  height: 280px;
  background: var(--accent-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Checklist Body ──────────────────────────────── */
.checklist-body {
  padding: var(--space-24) 0;
}

.checklist-body-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.checklist-section {
  margin-bottom: var(--space-16);
}

.checklist-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.checklist-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-4);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.1s;
}

.checklist-item:hover { background: var(--bg-alt); }

.checklist-item.checked { background: var(--accent-lt); }

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.checklist-item.checked .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.checklist-item.checked .checkbox-custom svg { display: block; }

.checkbox-custom svg { display: none; }

.item-text {
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.5;
}

.item-difficulty {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.difficulty-easy { background: #E8F5EE; color: #2F6B4A; }
.difficulty-medium { background: #FFF3E0; color: #B8690D; }
.difficulty-significant { background: #FDE8E8; color: #B91C1C; }

.checklist-progress {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) 0;
  margin-bottom: var(--space-8);
}

.progress-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.progress-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--bg-alt);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg-mid);
  white-space: nowrap;
}

.progress-label strong { color: var(--fg); }

/* ── Responsive Services / Checklist ─────────────── */
@media (max-width: 900px) {
  .tiers-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .process-inner {
    grid-template-columns: 1fr 1fr;
  }
  .ideal-client-inner {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  .checklist-hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .checklist-visual { display: none; }
}

@media (max-width: 640px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .process-inner { grid-template-columns: 1fr; }
  .checklist-item { grid-template-columns: 28px 1fr; }
  .item-difficulty { display: none; }
}