/* ==========================================================================
   South Jersey Bookkeeping — design tokens
   ========================================================================== */
:root {
  /* Greens */
  --green-50:  #eef7f0;
  --green-100: #d3ecd9;
  --green-200: #a6d8b4;
  --green-300: #6fbe86;
  --green-400: #33a05c;
  --green-500: #008038;
  --green-600: #017032;
  --green-700: #045d2b;
  --green-800: #094a24;
  --green-900: #0b3a1e;

  /* Inks */
  --ink-950: #0d1a13;
  --ink-900: #14251c;
  --ink-800: #1f342a;
  --ink-700: #33473c;
  --ink-600: #4d6157;
  --ink-500: #6b7d74;
  --ink-400: #94a39b;
  --ink-300: #bcc7c0;
  --ink-200: #dbe2dd;
  --ink-100: #eef2ef;
  --ink-50:  #f6f9f7;

  /* Semantic */
  --brand: var(--green-500);
  --brand-hover: var(--green-600);
  --brand-subtle: var(--green-50);
  --border-subtle: var(--ink-200);
  --border-default: var(--ink-300);
  --surface-page: var(--ink-50);
  --text-strong: var(--ink-900);
  --text-body: var(--ink-800);
  --text-muted: var(--ink-600);
  --text-subtle: var(--ink-500);
  --text-link: var(--green-600);
  --focus-ring: 0 0 0 3px color-mix(in srgb, var(--green-500) 45%, transparent);

  /* Type */
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Radius */
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(13,26,19,.06);
  --shadow-sm: 0 1px 3px rgba(13,26,19,.08), 0 1px 2px rgba(13,26,19,.04);
  --shadow-md: 0 4px 12px rgba(13,26,19,.08), 0 2px 4px rgba(13,26,19,.05);
  --shadow-lg: 0 12px 28px rgba(13,26,19,.10), 0 4px 10px rgba(13,26,19,.05);
  --shadow-brand: 0 6px 18px rgba(0,128,56,.22);

  /* Motion */
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface-page);
  font-family: var(--font-sans);
  color: var(--text-body);
}

a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--brand-hover); }

img { max-width: 100%; }

[id] { scroll-margin-top: 80px; }

.container { max-width: 1160px; margin: 0 auto; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-brand);
  cursor: pointer;
  transition: background var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}
.cta-btn:hover { background: var(--brand-hover); color: #fff; box-shadow: var(--shadow-brand); }
.cta-btn:active { transform: translateY(1px); }

.cta-btn--sm { font-size: 13px; padding: 8px 18px; }

.outline-btn {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: transparent;
  transition: background var(--dur-fast), color var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast);
}
.outline-btn:hover { background: var(--brand-hover); border-color: var(--brand-hover); color: #fff; box-shadow: var(--shadow-brand); }
.outline-btn:active { transform: translateY(1px); }

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  background: transparent;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.ghost-btn:hover { background: var(--green-50); color: var(--text-muted); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: #fff;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 32px; width: auto; }
.nav-brand span {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: -.01em;
}
.nav-brand strong { color: var(--brand); }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease-standard);
}
.nav-link:hover { color: var(--brand); }
.nav-link.is-active {
  font-weight: 600;
  color: var(--brand);
  border-bottom: 2px solid var(--brand);
  padding-bottom: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text-strong);
  transition: transform var(--dur-base) var(--ease-standard), opacity var(--dur-base);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(150deg, var(--green-50) 0%, #fff 55%);
  padding: 80px 48px 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 24px;
  letter-spacing: -.02em;
  line-height: 1.12;
}

.stat-stack { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }

.stat-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  min-width: 140px;
}
.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: .02em;
}

.stat-card--brand {
  background: var(--green-500);
  border: none;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
}
.stat-card--brand .stat-kicker {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.stat-card--brand .stat-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

/* ==========================================================================
   Home: About Me
   ========================================================================== */
.about {
  padding: 72px 48px;
  background: #fff;
  border-top: 1px solid var(--border-subtle);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
}
.about .eyebrow { margin-bottom: 14px; }
.about h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 18px;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.about p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0 0 28px;
}
.about-stat { display: inline-flex; flex-direction: column; gap: 2px; }
.about-stat .stat-number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
}
.about-stat .stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .03em;
}

.headshot {
  width: 320px;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  justify-self: end;
}
.headshot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ==========================================================================
   Cards (feature row, services teaser, service overview)
   ========================================================================== */
.feature-section { padding: 0 48px 72px; background: #fff; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: box-shadow var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-card .icon-tile { margin: 0 auto 14px; }
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 8px;
}
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin: 0; }

.icon-tile {
  width: 40px;
  height: 40px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-tile--md { width: 44px; height: 44px; }
.icon-tile--lg { width: 48px; height: 48px; border-radius: var(--radius-lg); }

/* Services teaser (home) */
.teaser {
  padding: 72px 48px;
  background: var(--green-50);
  border-top: 1px solid var(--border-subtle);
}
.teaser-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.teaser-header .eyebrow { margin-bottom: 12px; }
.teaser-header h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0;
  letter-spacing: -.01em;
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Hover-lift card with reveal top accent */
.svc-card {
  display: block;
  border: 1px solid var(--border-subtle);
  border-top: 4px solid transparent;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-standard),
              transform var(--dur-base) var(--ease-standard),
              border-top-color var(--dur-base) var(--ease-standard);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-top-color: var(--brand);
}
.svc-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 10px;
}
.svc-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ==========================================================================
   Services page
   ========================================================================== */
.hero--services { padding: 80px 48px 64px; }
.hero--services .eyebrow { margin-bottom: 16px; }
.hero--services h1 {
  font-size: 54px;
  margin: 0 0 20px;
  line-height: 1.08;
  max-width: none;
}
.hero--services .hero-intro {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0 0 36px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.overview-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.overview-card { padding: 32px; }
.overview-card .icon-tile { margin-bottom: 18px; }
.overview-card h3 { font-size: 19px; margin: 0 0 12px; line-height: 1.3; }
.overview-card p { font-size: 14px; line-height: 1.65; margin: 0 0 22px; }
.overview-card .card-link { font-size: 13px; font-weight: 600; color: var(--brand); }

.section {
  padding: 72px 48px;
  border-top: 1px solid var(--border-subtle);
}
.section--green { background: var(--green-50); }
.section--white { background: #fff; }
.section--page { background: var(--surface-page); }

.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--text-strong);
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.section-intro {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto 48px;
  max-width: 620px;
  line-height: 1.65;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease-standard);
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card--featured {
  border-color: var(--green-200);
  box-shadow: 0 0 0 3px var(--green-100), 0 12px 32px rgba(0,128,56,.18);
}
.price-card--featured:hover { box-shadow: 0 0 0 3px var(--green-100), 0 12px 32px rgba(0,128,56,.18); }

.price-badge-spacer { height: 30px; }
.price-badge {
  align-self: flex-start;
  background: var(--green-500);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.price-plan {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-subtle);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.price-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 6px; }
.price-amount .currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-serif);
}
.price-amount .value {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
}
.price-period { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.price-features div {
  font-size: 13px;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.price-features .check {
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-card .cta-btn {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  box-shadow: none;
  margin-top: auto;
}

/* QBO setup steps */
.steps {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--green-100);
}
.step-number {
  width: 28px;
  height: 28px;
  background: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.step h3 { font-size: 14px; font-weight: 600; color: var(--text-strong); margin: 0 0 3px; font-family: var(--font-sans); }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; }

.section-cta { text-align: center; margin-top: 40px; }

/* Cleanup / Catchup duo */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.duo-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.duo-card .icon-tile { margin-bottom: 20px; }
.duo-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 14px;
}
.duo-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0 0 28px; }
.duo-card .cta-btn { font-size: 13px; padding: 10px 20px; box-shadow: none; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.hero--contact {
  padding: 72px 48px 56px;
  border-bottom: 1px solid var(--border-subtle);
}
.hero--contact .hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.hero--contact .eyebrow { margin-bottom: 16px; }
.hero--contact h1 {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 0 0 18px;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.hero--contact p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 560px;
}

.contact-body { padding: 64px 48px 88px; background: #fff; }
.contact-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 44px;
}
.form-card form { display: flex; flex-direction: column; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 7px;
}
.field-input, .field-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-strong);
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
}
.field-input:focus, .field-textarea:focus {
  border-color: var(--brand);
  box-shadow: var(--focus-ring);
}
.field-textarea { resize: vertical; min-height: 120px; }

.checkbox-group { display: flex; flex-direction: column; gap: 11px; }
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--brand);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

/* Form-level status messages (filled in by @formspree/ajax) */
.form-status { font-size: 14px; line-height: 1.5; margin: 0 0 18px; }
.form-status:empty { display: none; margin: 0; }
.form-status--success { color: var(--green-600); font-weight: 600; }
.form-status--error { color: #b3261e; }

/* Field-level errors + invalid state (set by @formspree/ajax) */
.field-error { display: block; font-size: 12.5px; color: #b3261e; margin-top: 5px; }
.field-error:empty { display: none; margin: 0; }
.field-input[aria-invalid="true"], .field-textarea[aria-invalid="true"] {
  border-color: #b3261e;
}

.form-card .cta-btn { width: 100%; margin-top: 8px; padding: 14px; }
.form-card .cta-btn[disabled] { opacity: .6; cursor: default; }

.scheduler-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 10px;
}
.scheduler-card iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
  border-radius: calc(var(--radius-xl) - 6px);
  background: #fff;
}

/* ==========================================================================
   Footer CTA band + footer
   ========================================================================== */
.footer-cta { padding: 56px 48px; background: var(--ink-900); }
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta-copy { display: flex; align-items: center; gap: 20px; }
.footer-cta-icon {
  width: 48px;
  height: 48px;
  background: var(--ink-800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-cta h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px;
}
.footer-cta p { font-size: 14px; color: var(--ink-400); margin: 0; max-width: 440px; }
.footer-cta .cta-btn {
  white-space: nowrap;
  padding: 15px 32px;
  box-shadow: 0 6px 24px rgba(0,128,56,.3);
  flex-shrink: 0;
}

.footer {
  padding: 20px 48px;
  background: var(--ink-950);
  border-top: 1px solid var(--ink-800);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer span { font-size: 13px; color: var(--ink-500); }
.footer a { color: var(--ink-400); }
.footer a:hover { color: var(--ink-300); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .hero--services h1 { font-size: 46px; }

  .feature-grid, .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .price-badge-spacer { display: none; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stat-stack {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-stack > * { flex: 1 1 200px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .headshot { justify-self: center; max-width: 100%; }

  .duo-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { padding: 0 20px; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-md);
    padding: 8px 20px 20px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links .nav-link {
    padding: 14px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--ink-100);
  }
  .nav-links .nav-link.is-active { border-bottom: 1px solid var(--ink-100); color: var(--brand); }
  .nav-links .cta-btn { margin-top: 16px; justify-content: center; }

  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero, .hero--services { padding: 56px 20px 48px; }
  .hero--contact { padding: 56px 20px 44px; }
  .hero h1 { font-size: 34px; }
  .hero--services h1 { font-size: 36px; }
  .hero--services .hero-intro { font-size: 16px; }
  .hero--contact h1 { font-size: 32px; }

  .about, .teaser, .section { padding: 56px 20px; }
  .feature-section { padding: 0 20px 56px; }
  .contact-body { padding: 48px 20px 64px; }
  .footer-cta { padding: 48px 20px; }
  .footer { padding: 20px; }

  .feature-grid, .teaser-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .scheduler-card iframe { height: 520px; }
  .duo-card { padding: 28px 22px; }

  .section-title { font-size: 28px; }
  .about h2, .teaser-header h2 { font-size: 26px; }

  .footer-cta-copy { flex-direction: column; align-items: flex-start; }
  .footer-cta .cta-btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
