: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: #ffffff;
  padding: 10px 40px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.nav-logo img {
  height: 88px;
  width: auto;
}
.nav-tagline {
  font-size: 12px;
  color: var(--muted);
  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;
}
.hero-sub-cta {
  font-size: 14px;
  color: #7a9e72;
  margin-top: -40px;
}
.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-address { font-size: 13px; font-style: normal; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-email { font-size: 14px; color: var(--sage); text-decoration: none; }
.footer-email:hover { color: var(--cream); }
.footer-social-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--sage); text-decoration: none; margin-top: 4px; }
.footer-social-link:hover { color: var(--cream); }
.footer-verticals {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-verticals-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  font-family: 'DM Sans', sans-serif;
}
.footer-vert-link {
  font-size: 13px;
  color: var(--sage);
  text-decoration: none;
}
.footer-vert-link: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; }
.vertical-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 4px;
}
.vertical-card-link:hover { text-decoration: underline; }
.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(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover, .nav-link--active { color: var(--fg); }
.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;
}

/* ===========================
   Vertical Landing Pages
   =========================== */

/* Hero */
.vert-hero {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 40px 72px;
}
.vert-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.vert-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: 20px;
}
.vert-headline {
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--cream);
  max-width: 680px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.15;
}
.vert-sub {
  font-size: 18px;
  color: #a8c4a0;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.vert-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--sage);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 18px;
  max-width: 540px;
  margin-bottom: 36px;
}
.vert-proof-shield { font-size: 20px; flex-shrink: 0; }

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

/* Pain & Use sections */
.vert-pain { padding: 80px 40px; background: var(--cream); }
.vert-use { padding: 80px 40px; background: #f0ede8; }

.vert-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.vert-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vert-card--use {
  background: #fff;
}
.vert-card-icon { font-size: 28px; }
.vert-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.vert-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }

/* Privacy section */
.vert-privacy { padding: 80px 40px; background: var(--cream); }
.vert-privacy-intro {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.6;
}
.inline-link { color: var(--accent); font-weight: 600; text-decoration: none; }
.inline-link:hover { text-decoration: underline; }

.vert-privacy-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.vert-privacy-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.vert-step-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.vert-privacy-step h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.vert-privacy-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }

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

/* Dual CTA buttons in hero */
.vert-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-btn--secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--cream);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.cta-btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* Regulatory / What's at stake section */
.vert-regulatory {
  padding: 80px 40px;
  background: #fff;
}
.vert-regulatory-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 40px;
  margin-top: 8px;
}
.vert-reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.vert-reg-card {
  background: #f8f7f4;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
}
.vert-reg-name {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.vert-reg-summary {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Vertical Methodology section */
.vert-method {
  padding: 80px 40px;
  background: var(--cream);
}
.vert-method-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.6;
  margin-bottom: 40px;
  margin-top: 8px;
}
.vert-phases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.vert-phase {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.vert-phase-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.vert-phase-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}
.vert-phase-label {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.vert-phase-duration {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
}
.vert-phase-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Case study section */
.vert-case-study {
  padding: 60px 40px;
  background: #f0ede8;
}
.vert-case-study-card {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 40px;
}
.vert-case-study-icon {
  font-size: 40px;
  flex-shrink: 0;
}
.vert-case-study-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
  font-family: 'DM Sans', sans-serif;
}
.vert-case-study-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.vert-case-study-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.vert-case-study-link:hover { text-decoration: underline; }

/* FAQ section */
.vert-faq {
  padding: 80px 40px;
  background: #fff;
}
.vert-faq-list {
  max-width: 800px;
  margin-bottom: 28px;
}
.vert-faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.vert-faq-item:first-child {
  border-top: 1px solid var(--border);
}
.vert-faq-q {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.vert-faq-q::-webkit-details-marker { display: none; }
.vert-faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
details[open] .vert-faq-q::after { content: '−'; }
.vert-faq-a {
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 720px;
}
.vert-faq-more {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

/* Trust strip */
.vert-trust-strip {
  padding: 60px 40px;
  background: var(--forest);
  color: var(--cream);
}
.vert-trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.vert-trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vert-trust-icon {
  font-size: 24px;
}
.vert-trust-label {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}
.vert-trust-desc {
  font-size: 13px;
  color: #a8c4a0;
  line-height: 1.6;
}

/* ===========================
   How We Work page
   =========================== */

/* Shared inner + hero */
.hww-inner { max-width: 1100px; margin: 0 auto; }

.hww-hero {
  background: var(--forest);
  color: var(--cream);
  padding: 80px 40px 72px;
}
.hww-hero-inner { max-width: 1100px; margin: 0 auto; }
.hww-hero-headline {
  font-size: clamp(34px, 4.5vw, 56px);
  color: var(--cream);
  max-width: 760px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.15;
}
.hww-hero-sub {
  font-size: 18px;
  color: #a8c4a0;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Section headline shared */
.hww-section-headline {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--fg);
  margin-bottom: 16px;
  margin-top: 8px;
}

/* Founder section */
.hww-founder {
  padding: 80px 40px;
  background: var(--cream);
}
.founder-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.founder-photo-col { display: flex; flex-direction: column; gap: 20px; }
.founder-photo-placeholder {
  width: 240px;
  height: 280px;
  background: linear-gradient(145deg, #2a4a2a, #1a2e1a);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid rgba(122,158,114,0.3);
}
.founder-photo-initials {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--sage);
}
.founder-photo-note { font-size: 13px; color: var(--sage); text-align: center; }
.founder-credential-badges { display: flex; flex-direction: column; gap: 8px; }
.founder-badge {
  font-size: 12px;
  color: var(--accent);
  background: #e8f0e5;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 500;
}
.founder-name {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.founder-title {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.founder-bio {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.founder-quote-block {
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  background: rgba(58,107,53,0.05);
  border-radius: 0 8px 8px 0;
  margin-top: 24px;
}
.founder-quote {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 8px;
}
.founder-quote-attr { font-size: 12px; color: var(--muted); font-weight: 600; }

/* Methodology section */
.hww-methodology {
  padding: 80px 40px;
  background: #f0ede8;
}
.methodology-phases {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.phase-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}
.phase-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}
.phase-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
}
.phase-meta { flex: 1; }
.phase-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.phase-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.phase-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.phase-tag--price { background: #e8f0e5; color: var(--accent); }
.phase-tag--time { background: #f0ede8; color: var(--muted); }
.phase-body > p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.phase-deliverables { margin-bottom: 20px; }
.deliverables-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.deliverables-list li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.deliverables-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.phase-note {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  background: #e8f0e5;
  padding: 10px 16px;
  border-radius: 6px;
  margin-top: 4px;
}

/* Security section */
.hww-security {
  padding: 80px 40px;
  background: var(--cream);
}
.security-diagram-wrap {
  margin-top: 48px;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.security-diagram {
  width: 100%;
  height: auto;
  display: block;
}
.security-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.security-callout-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: #f0ede8;
  border-radius: 8px;
}
.security-callout-icon { font-size: 24px; flex-shrink: 0; }
.security-callout-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.security-callout-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* FAQ section */
.hww-faq {
  padding: 80px 40px;
  background: #f0ede8;
}
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s;
}
.faq-question:hover { background: rgba(58,107,53,0.04); }
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 28px 24px 28px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-answer p { margin: 0; }
.faq-answer p strong { color: var(--fg); }
.faq-answer--hidden { display: none; }

/* Deliverables section */
.hww-deliverables {
  padding: 80px 40px;
  background: var(--cream);
}
.deliverables-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.deliverable-card {
  background: #f8f6f2;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.deliverable-header { display: flex; flex-direction: column; gap: 6px; }
.deliverable-phase-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: #e8f0e5;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  align-self: flex-start;
}
.deliverable-name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
/* Mockup document styles */
.deliverable-mockup { flex: 1; }
.mockup-doc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  font-size: 12px;
}
.mockup-doc-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.mockup-doc-logo {
  width: 30px;
  height: 30px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup-doc-title { font-weight: 700; color: var(--fg); font-size: 12px; }
.mockup-doc-client { font-size: 10px; color: var(--muted); }
.mockup-section-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 10px 0 6px;
}
.mockup-table { display: flex; flex-direction: column; gap: 4px; margin-bottom: 4px; }
.mockup-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 4px 0; border-bottom: 1px solid #f0ede8; }
.mockup-cell { font-size: 11px; color: var(--fg); }
.mockup-cell--good { color: var(--accent); font-weight: 600; }
.mockup-cell--medium { color: #c07a20; font-weight: 600; }
.mockup-cell--risk { color: #b03a2e; font-weight: 600; }
.mockup-list { display: flex; flex-direction: column; gap: 4px; }
.mockup-list-item { font-size: 10px; color: var(--muted); line-height: 1.4; }
.mockup-metrics-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 10px; }
.mockup-metric { text-align: center; padding: 8px 4px; background: #f8f6f2; border-radius: 4px; }
.mockup-metric-val { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--fg); }
.mockup-metric-val--good { color: var(--accent); }
.mockup-metric-label { font-size: 9px; color: var(--muted); }
.deliverable-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

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

/* Contact & Location block (/how-we-work) */
.hww-contact {
  padding: 64px 40px;
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 780px;
}
.contact-block-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.35);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 12px;
}
.contact-address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 10px;
}
.contact-email-link {
  font-size: 16px;
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}
.contact-email-link:hover { text-decoration: underline; }
.contact-response-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}
.contact-email-line { margin-bottom: 0; }

/* ===========================
   Nav Dropdowns (Desktop)
   =========================== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color 0.15s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--fg);
}
.nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.nav-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-item {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  color: var(--fg);
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  background: #f4f7f4;
  color: var(--accent);
}

/* ===========================
   Hamburger (Mobile)
   =========================== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.is-active .nav-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-active .nav-hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.is-active .nav-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   Mobile Nav Drawer
   =========================== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.2s;
}
.mobile-nav.is-open {
  display: block;
  opacity: 1;
}
.mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  padding: 24px 0 40px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.12);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
.mobile-nav.is-open .mobile-nav-inner {
  transform: translateX(0);
}
.mobile-nav-section {
  border-bottom: 1px solid var(--border);
}
.mobile-nav-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
}
.mobile-nav-group-toggle .nav-chevron {
  transition: transform 0.2s;
}
.mobile-nav-section.is-open .mobile-nav-group-toggle .nav-chevron {
  transform: rotate(180deg);
}
.mobile-nav-subitems {
  display: none;
  padding: 4px 0 12px;
}
.mobile-nav-section.is-open .mobile-nav-subitems {
  display: block;
}
.mobile-nav-subitem {
  display: block;
  padding: 10px 20px 10px 28px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.12s;
}
.mobile-nav-subitem:hover { color: var(--accent); }
.mobile-nav-top-link {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.12s;
}
.mobile-nav-top-link:hover { color: var(--accent); }
.mobile-nav-top-link--cta {
  color: var(--accent);
  margin-top: 12px;
  border-bottom: none;
}

/* ===========================
   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-hamburger { display: flex; }
  .nav-links { display: none; }
  .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; }
  .vert-hero, .vert-pain, .vert-use, .vert-privacy, .vert-cta { padding: 48px 20px; }
  .vert-regulatory, .vert-method, .vert-case-study, .vert-faq, .vert-trust-strip { padding: 48px 20px; }
  .vert-cards { grid-template-columns: 1fr; }
  .vert-privacy-steps { grid-template-columns: 1fr; gap: 28px; }
  .vert-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .vert-cta-action { align-items: flex-start; }
  .vert-reg-grid { grid-template-columns: 1fr; }
  .vert-phases { grid-template-columns: 1fr; }
  .vert-trust-items { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .vert-hero-ctas { flex-direction: column; align-items: flex-start; }
  .vert-case-study-card { flex-direction: column; padding: 24px; }
  /* How We Work responsive */
  .hww-hero, .hww-founder, .hww-contact, .hww-methodology, .hww-security, .hww-faq, .hww-deliverables, .hww-cta { padding: 48px 20px; }
  .contact-location-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-layout { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo-placeholder { width: 180px; height: 210px; }
  .phase-header { flex-direction: column; gap: 12px; }
  .phase-num { font-size: 36px; }
  .security-callouts { grid-template-columns: 1fr; }
  .deliverables-preview-grid { grid-template-columns: 1fr; }
  .hww-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .hww-cta-action { align-items: flex-start; }
  /* Sample Assessment responsive */
  .sa-toc-sidebar { display: none; }
  .sa-page-wrapper { padding: 0 20px; }
  .sa-content { padding: 32px 0 60px 0; }
  .sa-es-grid { grid-template-columns: 1fr; gap: 28px; }
  .sa-profile-card { grid-template-columns: 1fr; }
  .sa-scenario-grid { grid-template-columns: 1fr; }
  .sa-aggregate-grid { grid-template-columns: 1fr; gap: 20px; }
  .sa-next-steps-grid { grid-template-columns: 1fr; }
  .sa-investment-total-grid { grid-template-columns: 1fr 1fr; }
  .sa-cta-block { padding: 36px 24px; }
  .sa-doc-info { flex-direction: column; gap: 8px; }
  .sa-table--inventory td, .sa-table--sensitivity td { font-size: 12px; }
  .sa-investment-total-grid { grid-template-columns: 1fr; }
  .sa-firm-meta { flex-direction: column; gap: 12px; }
  .sa-table--vendor { font-size: 11px; }
  .sa-table--vendor th, .sa-table--vendor td { padding: 8px 10px; }
  .sa-arch-layer-row { flex-wrap: wrap; }
}