:root {
  --bg: #faf8f5;
  --bg-dark: #1a2e1a;
  --fg: #1c1c1c;
  --fg-light: #faf8f5;
  --accent: #3a6b35;
  --accent-light: #5a9e52;
  --muted: #6b6b6b;
  --border: #e0ddd8;
  --cream: #faf8f5;
  --forest: #1a2e1a;
  --sage: #7a9e72;
}

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

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

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

/* Nav */
.nav {
  background: var(--forest);
  padding: 16px 40px;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--sage);
  font-style: italic;
}

/* Hero */
.hero {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 40px 60px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 4px;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--cream);
  max-width: 700px;
  margin-bottom: 24px;
  fontWeight: 700;
}
.hero-sub {
  font-size: 18px;
  color: #a8c4a0;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cta-btn--hero-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 6px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.cta-btn--hero-outline:hover {
  border-color: var(--cream);
  background: rgba(255,255,255,0.07);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  margin: 0 40px;
}

/* Problem */
.problem { padding: 80px 40px; background: var(--cream); }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 600px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-bottom: 60px;
}
.problem-item { display: flex; flex-direction: column; gap: 10px; }
.problem-icon { font-size: 24px; }
.problem-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.problem-item p { font-size: 15px; color: var(--muted); line-height: 1.6; }
.comparison-bar {
  background: var(--forest);
  border-radius: 12px;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.comparison-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 8px;
}
.comparison-before p, .comparison-after p {
  font-size: 14px;
  color: #a8c4a0;
  line-height: 1.5;
}
.comparison-arrow {
  font-size: 28px;
  color: var(--sage);
  padding: 0 32px;
}

/* Solutions */
.solutions { padding: 80px 40px; background: #f0ede8; }
.solutions-inner { max-width: 1100px; margin: 0 auto; }
.section-intro {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 560px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.solution-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.solution-icon { font-size: 28px; }
.solution-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
}
.solution-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.solution-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.tag {
  font-size: 11px;
  font-weight: 500;
  background: #e8f0e5;
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Outcomes */
.outcomes { padding: 80px 40px; background: var(--cream); }
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes-headline {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--fg);
  margin-bottom: 16px;
  margin-top: 8px;
}
.outcomes-body {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
}
.outcomes-list { display: flex; flex-direction: column; gap: 20px; }
.outcome-check { display: flex; gap: 14px; align-items: flex-start; }
.check-icon {
  width: 24px;
  height: 24px;
  background: #e8f0e5;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome-check p { font-size: 15px; color: var(--fg); line-height: 1.5; }
.team-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 24px;
  background: #f0ede8;
  border-radius: 8px;
  margin-bottom: 12px;
}
.team-avatar { font-size: 28px; }
.team-name {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 2px;
}
.team-result {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

/* Closing */
.closing { padding: 80px 40px; background: var(--forest); color: var(--cream); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--cream);
  margin-bottom: 16px;
  margin-top: 8px;
}
.closing-body {
  font-size: 17px;
  color: #a8c4a0;
  margin-bottom: 48px;
  max-width: 600px;
}
.closing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.closing-item { display: flex; flex-direction: column; gap: 10px; }
.closing-icon { font-size: 28px; }
.closing-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
}
.closing-item p { font-size: 14px; color: #a8c4a0; line-height: 1.6; }

/* Footer */
.footer {
  background: #122012;
  padding: 40px;
  color: var(--sage);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
}
.footer-location { font-size: 13px; }
.footer-email { font-size: 14px; color: var(--sage); text-decoration: none; }
.footer-email:hover { color: var(--cream); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  font-size: 12px;
  background: rgba(255,255,255,0.07);
  color: var(--sage);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ===========================
   Services & Approach page
   =========================== */

/* Services hero (dark, matches site hero) */
.svc-hero {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 40px 72px;
}
.svc-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.svc-hero-headline {
  font-size: clamp(34px, 4.5vw, 56px);
  color: var(--cream);
  max-width: 680px;
  margin-bottom: 20px;
  font-weight: 700;
}
.svc-hero-sub {
  font-size: 18px;
  color: #a8c4a0;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* CTA buttons (used site-wide from services page) */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.cta-btn:hover { background: var(--accent-light); }

.cta-btn--hero {
  background: #fff;
  color: var(--forest);
  font-size: 16px;
  padding: 16px 32px;
}
.cta-btn--hero:hover { background: var(--cream); }

.cta-btn--outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.cta-btn--outline:hover { background: var(--accent); color: var(--cream); }

.cta-btn--outline.cta-btn--light {
  border-color: rgba(255,255,255,0.4);
  color: var(--cream);
}
.cta-btn--outline.cta-btn--light:hover { background: rgba(255,255,255,0.1); }

.cta-btn--large {
  font-size: 17px;
  padding: 18px 36px;
}

/* Shared inner container for all svc sections */
.svc-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.svc-section-headline {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--fg);
  margin-bottom: 16px;
  margin-top: 8px;
}

/* ------- Process steps ------- */
.svc-process {
  padding: 80px 40px;
  background: var(--cream);
}
.process-steps {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
  margin-left: 20px;
}
.process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 0 0 48px 36px;
  position: relative;
}
.process-step::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--cream);
  outline: 2px solid var(--accent);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.step-body { flex: 1; }
.step-body h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.step-duration {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #e8f0e5;
  padding: 3px 10px;
  border-radius: 4px;
}
.process-cta { margin-top: 16px; }

/* ------- Service tiers ------- */
.svc-tiers {
  padding: 80px 40px;
  background: #f0ede8;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.tier-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tier-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}
.tier-header { margin-bottom: 24px; }
.tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #e8f0e5;
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.tier-badge--featured {
  background: var(--accent);
  color: #fff;
}
.tier-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.tier-price {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.tier-price-note { font-size: 12px; color: var(--muted); }
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}
.tier-features li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.tier-best-for {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tier-best-for strong { color: var(--fg); }

/* ------- Privacy section ------- */
.svc-privacy {
  padding: 80px 40px;
  background: var(--cream);
}
.svc-privacy .svc-section-headline { color: var(--fg); }
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
  margin-top: 48px;
  margin-bottom: 56px;
}
.privacy-block { display: flex; flex-direction: column; gap: 10px; }
.privacy-icon { font-size: 26px; }
.privacy-block h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
}
.privacy-block p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.privacy-callout {
  background: var(--forest);
  border-radius: 12px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.privacy-callout-text {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-style: italic;
  color: #a8c4a0;
  max-width: 600px;
  line-height: 1.5;
}

/* ------- Verticals ------- */
.svc-verticals {
  padding: 80px 40px;
  background: #f0ede8;
}
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 36px;
}
.vertical-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vertical-icon { font-size: 28px; }
.vertical-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--fg);
}
.vertical-use-case { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.verticals-note {
  background: rgba(58, 107, 53, 0.07);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
}
.verticals-note p { font-size: 15px; color: var(--fg); line-height: 1.6; }
.inline-link { color: var(--accent); font-weight: 600; text-decoration: none; }
.inline-link:hover { text-decoration: underline; }

/* ------- CTA section ------- */
.svc-cta {
  padding: 80px 40px;
  background: var(--forest);
  color: var(--cream);
}
.svc-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.svc-cta-headline {
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--cream);
  margin-bottom: 16px;
}
.svc-cta-body {
  font-size: 16px;
  color: #a8c4a0;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.svc-cta-promise {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.svc-cta-promise span {
  font-size: 14px;
  color: var(--sage);
  font-weight: 500;
}
.svc-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 280px;
}
.svc-cta-or {
  font-size: 13px;
  color: var(--sage);
  text-align: center;
}
.inline-link-light { color: #a8c4a0; text-decoration: none; font-weight: 600; }
.inline-link-light:hover { color: var(--cream); }

/* Nav link additions */
.nav-links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--sage);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover, .nav-link--active { color: var(--cream); }
.nav-link--cta {
  background: var(--accent);
  color: var(--cream) !important;
  padding: 7px 16px;
  border-radius: 5px;
  font-weight: 600;
}
.nav-link--cta:hover { background: var(--accent-light); }

/* ===========================
   Discovery Portal
   =========================== */

.disc-hero {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 40px 72px;
}
.disc-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.disc-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.disc-headline {
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--cream);
  max-width: 620px;
  margin-bottom: 16px;
  font-weight: 700;
}
.disc-sub {
  font-size: 17px;
  color: #a8c4a0;
  max-width: 560px;
  line-height: 1.7;
}

.disc-form-section {
  padding: 80px 40px;
  background: var(--cream);
}
.disc-form-inner {
  max-width: 860px;
  margin: 0 auto;
}

.disc-form {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.disc-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.disc-legend {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  width: 100%;
  display: block;
}

.disc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.disc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disc-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.disc-field input[type="text"],
.disc-field input[type="email"],
.disc-field textarea,
.disc-field select {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--fg);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  appearance: none;
}
.disc-field input[type="text"]:focus,
.disc-field input[type="email"]:focus,
.disc-field textarea:focus,
.disc-field select:focus {
  border-color: var(--accent);
}
.disc-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.disc-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.disc-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.15s, background 0.15s;
}
.disc-checkbox:hover {
  border-color: var(--accent);
  background: #f7faf6;
}
.disc-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.disc-submit-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 8px;
}
.disc-privacy-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Success state */
.disc-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 60px 0;
}
.disc-success-icon {
  width: 56px;
  height: 56px;
  background: #e8f0e5;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}
.disc-success h2 {
  font-size: 32px;
  color: var(--fg);
}
.disc-success p {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 768px) {
  .hero, .problem, .solutions, .outcomes, .closing { padding: 48px 20px; }
  .svc-hero, .svc-process, .svc-tiers, .svc-privacy, .svc-verticals, .svc-cta { padding: 48px 20px; }
  .hero-cta-group { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 28px; }
  .stat-divider { display: none; }
  .problem-grid, .solutions-grid, .closing-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 40px; }
  .comparison-bar { grid-template-columns: 1fr; gap: 20px; }
  .comparison-arrow { display: none; }
  .nav-tagline { display: none; }
  .nav-links { gap: 12px; }
  .footer-badges { gap: 8px; }
  .badge { font-size: 11px; }
  .tiers-grid { grid-template-columns: 1fr; }
  .privacy-grid { grid-template-columns: 1fr; gap: 28px; }
  .privacy-callout { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .svc-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-cta-action { align-items: flex-start; }
  .process-steps { margin-left: 0; border-left: none; }
  .process-step { flex-direction: column; gap: 12px; padding-left: 0; padding-bottom: 36px; border-bottom: 1px solid var(--border); }
  .process-step::before { display: none; }
}