/* ==========================================================================
   Buzzoni Digital – main.css
   Farben, Schriften und Abstände entsprechen dem Originaldesign.
   ========================================================================== */

/* ---- Schriften (lokal gehostet, kein Google-Fonts-CDN) ------------------ */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/sora-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/sora-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/sora-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/sora-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-serif-4-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/source-serif-4-600-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-serif-4-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/source-serif-4-600.woff2') format('woff2');
}

/* ---- Design-Tokens ------------------------------------------------------- */
:root {
  --bg: #F7F5F0;
  --ink: #1C1C1A;
  --brand: #1A5C50;
  --brand-dark: #134439;
  --brand-light: #A9CFC1;
  --paper: #EAE6DC;
  --hairline: rgba(28, 28, 26, .14);
  --ink-70: rgba(28, 28, 26, .70);
  --ink-66: rgba(28, 28, 26, .66);
  --ink-62: rgba(28, 28, 26, .62);
  --ink-55: rgba(28, 28, 26, .55);
  --ink-45: rgba(28, 28, 26, .45);
  --sans: 'Sora', system-ui, sans-serif;
  --serif: 'Source Serif 4', Georgia, serif;
  --container: 1160px;
  --pad-x: 40px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

::selection { background: var(--brand); color: var(--bg); }

img { max-width: 100%; height: auto; display: block; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-1, .fade-2, .fade-3, .fade-4 { animation: none !important; }
}

.fade-1 { animation: fadeUp .6s .05s both; }
.fade-2 { animation: fadeUp .7s .15s both; }
.fade-3 { animation: fadeUp .7s .28s both; }
.fade-4 { animation: fadeUp .7s .40s both; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: var(--bg);
  font-family: var(--sans);
  font-weight: 600;
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; color: var(--bg); }

/* ---- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--brand); color: var(--bg); }
.btn-primary:hover { background: var(--brand-dark); color: var(--bg); }
.btn-outline {
  border: 1px solid rgba(28, 28, 26, .35);
  color: var(--ink);
  background: transparent;
  padding: 14px 25px;
}
.btn-outline:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-invert { background: var(--bg); color: var(--brand); padding: 16px 28px; white-space: nowrap; }
.btn-invert:hover { background: var(--paper); color: var(--brand-dark); }

/* ---- Header / Navigation ---------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 240, .92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 30px;
  height: 30px;
  background: var(--brand);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
}
.brand-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -.01em;
}
.brand-name em { font-family: var(--serif); font-weight: 600; font-style: italic; color: var(--brand); }

.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
}
.site-nav a:hover { color: var(--brand); }
.site-nav a[aria-current="page"] {
  color: var(--brand);
  font-weight: 600;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 2px;
}
.site-nav .nav-cta {
  background: var(--brand);
  color: var(--bg);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 2px;
  border-bottom: none;
}
.site-nav .nav-cta:hover { background: var(--brand-dark); color: var(--bg); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  padding: 9px 10px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform .2s, opacity .2s;
}

/* ---- Hero / Seitenkopf ------------------------------------------------------- */
.hero { padding-top: 104px; padding-bottom: 84px; }
.page-hero { padding-top: 92px; padding-bottom: 64px; }
.page-hero--line { border-bottom: 1px solid var(--hairline); }

.kicker {
  margin: 0 0 26px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before { content: ""; width: 8px; height: 8px; background: var(--brand); }
.kicker--plain::before { content: none; }
.kicker--muted { color: var(--ink-55); }

h1 {
  margin: 0 0 28px;
  max-width: 900px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 5.8vw, 78px);
  line-height: 1.06;
  letter-spacing: -.03em;
}
h1 em, h2 em { font-family: var(--serif); font-weight: 600; font-style: italic; color: var(--brand); }

.lead {
  margin: 0 0 38px;
  max-width: 600px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-66);
}
.lead:last-child { margin-bottom: 0; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- Check-Leiste -------------------------------------------------------------- */
.checkstrip { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.checkstrip .container {
  padding-top: 26px;
  padding-bottom: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 32px;
}
.checkstrip p {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
}
.checkstrip .check { color: var(--brand); font-weight: 700; }

/* ---- Abschnitte ------------------------------------------------------------------ */
.section { padding-top: 92px; padding-bottom: 88px; }
.section--flush-top { padding-top: 0; }
.section--last { padding-bottom: 92px; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}
.section-link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
}

h2.section-title {
  margin: 0 0 40px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 46px);
  letter-spacing: -.02em;
}
h2.section-title--tight { margin-bottom: 14px; }

.section-note {
  margin: 0 0 44px;
  max-width: 620px;
  font-style: italic;
  font-size: 15.5px;
  color: var(--ink-55);
}

/* ---- Leistungs-Zeilen (Startseite) -------------------------------------------------- */
.service-row {
  display: grid;
  grid-template-columns: 64px 1fr 1.2fr 36px;
  gap: 32px;
  align-items: baseline;
  border-top: 1px solid var(--hairline);
  padding: 28px 12px;
  color: var(--ink);
  text-decoration: none;
}
.service-row:last-of-type { border-bottom: 1px solid var(--hairline); }
.service-row:hover { background: rgba(255, 255, 255, .6); color: var(--ink); }
.service-row .num { font-style: italic; font-size: 19px; color: var(--brand); }
.service-row .name { font-family: var(--sans); font-weight: 600; font-size: 23px; letter-spacing: -.01em; }
.service-row .desc { font-size: 15.5px; line-height: 1.6; color: var(--ink-62); }
.service-row .arrow { font-size: 22px; color: var(--brand); }

/* ---- Vorteils-/Schritte-Raster --------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }

.feature-cell, .step-cell { border-top: 1px solid var(--hairline); padding-top: 20px; }
.step-cell .num, .feature-cell .num {
  margin: 0 0 12px;
  font-style: italic;
  font-size: 34px;
  line-height: 1;
  color: var(--brand);
}
.step-cell h3, .feature-cell h3 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16.5px;
}
.step-cell p, .feature-cell p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-62);
}

/* ---- Preise ---------------------------------------------------------------------------- */
.price-table { max-width: 820px; }
.price-row {
  border-top: 1px solid var(--hairline);
  padding: 24px 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
}
.price-row:last-of-type { border-bottom: 1px solid var(--hairline); }
.price-row h3 { margin: 0; font-family: var(--sans); font-weight: 600; font-size: 20px; }
.price-row .desc { margin: 4px 0 0; font-size: 15px; color: rgba(28, 28, 26, .6); }
.price-row .price {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.price-row .price small { font-size: 15px; font-weight: 500; color: var(--ink-55); }
.price-footnote { margin: 18px 12px 0; font-style: italic; font-size: 14.5px; color: var(--ink-55); }

.price-badge {
  border: 1px solid rgba(28, 28, 26, .18);
  border-radius: 2px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, .6);
  display: inline-block;
}
.price-badge p { margin: 0; font-family: var(--sans); font-weight: 600; font-size: 26px; letter-spacing: -.01em; }
.price-badge small { font-size: 15px; font-weight: 500; color: var(--ink-55); }

/* ---- Über-uns-Band (Startseite) ----------------------------------------------------------- */
.about-band { border-top: 1px solid var(--hairline); }
.about-band .container {
  padding-top: 72px;
  padding-bottom: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
}
.about-band h2 { margin: 0 0 4px; font-family: var(--sans); font-weight: 600; font-size: 20px; }
.about-band .role {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.about-band .bio { margin: 0; max-width: 560px; font-size: 16px; line-height: 1.65; color: var(--ink-70); }

/* ---- Foto-Platzhalter (bis echte Fotos vorliegen) ---------------------------------------------- */
.avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 34px;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, rgba(26, 92, 80, .10), rgba(26, 92, 80, .22));
  border: 1px solid var(--hairline);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portrait span { font-family: var(--sans); font-weight: 700; font-size: 64px; color: var(--brand); }
.portrait img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Leistungs-Detailseiten ------------------------------------------------------------------ */
.service-block { padding-top: 76px; padding-bottom: 76px; border-bottom: 1px solid var(--hairline); }
.service-block .grid,
.person .grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.person .grid { grid-template-columns: 380px 1fr; }

.service-block h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.service-block h2 + .price-badge { margin-top: 22px; }
.service-block .num-label { margin: 0 0 16px; }
.service-block .p-lead { margin: 0 0 16px; font-size: 17.5px; line-height: 1.7; color: rgba(28, 28, 26, .75); max-width: 620px; }
.service-block .p-more { margin: 0; font-size: 16px; line-height: 1.7; color: var(--ink-62); max-width: 620px; }

.service-block--tags { padding-top: 64px; }
.service-block--tags .kicker { margin-bottom: 22px; }
.section--prices { padding-top: 76px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.tag-list li {
  border: 1px solid rgba(28, 28, 26, .2);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--sans);
  font-size: 13.5px;
}

/* ---- Personenseite (Über uns) ------------------------------------------------------------------ */
.person { padding-top: 16px; padding-bottom: 100px; }
.person h2 { margin: 0 0 6px; font-family: var(--sans); font-weight: 600; font-size: clamp(26px, 3vw, 36px); letter-spacing: -.02em; }
.person .role {
  margin: 0 0 26px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.person .p-lead { margin: 0 0 18px; font-size: 17.5px; line-height: 1.75; color: rgba(28, 28, 26, .78); max-width: 560px; }
.person .p-more { margin: 0 0 34px; font-size: 16px; line-height: 1.7; color: var(--ink-62); max-width: 560px; }

.fact-row {
  border-top: 1px solid var(--hairline);
  padding: 16px 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
}
.fact-row:last-of-type { border-bottom: 1px solid var(--hairline); }
.fact-row dt {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.fact-row dd { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-70); }
.fact-row dd a { color: var(--brand); text-decoration: none; }

/* ---- CTA-Band ------------------------------------------------------------------------------------ */
.cta-band { background: var(--brand); color: var(--bg); }
.cta-band .container {
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.cta-band h2 {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 48px);
  letter-spacing: -.02em;
}
.cta-band h2 em { color: var(--brand-light); }
.cta-band p { margin: 0; font-size: 17px; line-height: 1.65; color: rgba(247, 245, 240, .7); max-width: 520px; }

/* ---- Kontaktseite ----------------------------------------------------------------------------------- */
.contact-section { padding-bottom: 100px; }
.contact-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 72px; align-items: start; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(28, 28, 26, .6);
}
.field input,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(28, 28, 26, .22);
  border-radius: 2px;
  padding: 13px 14px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus { border-color: var(--brand); outline: none; }

/* Honeypot: fürs Auge und für Screenreader unsichtbar */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-hint { margin: 0; font-style: italic; font-size: 14px; color: var(--ink-55); }

.form-feedback { border-radius: 2px; padding: 40px 36px; }
.form-feedback.success { border: 1px solid rgba(26, 92, 80, .35); background: rgba(26, 92, 80, .07); }
.form-feedback.error { border: 1px solid rgba(160, 60, 40, .4); background: rgba(160, 60, 40, .06); }
.form-feedback h2 { margin: 0 0 10px; font-family: var(--sans); font-weight: 600; font-size: 22px; color: var(--brand); }
.form-feedback.error h2 { color: #8C3A26; }
.form-feedback p { margin: 0 0 22px; font-size: 16.5px; line-height: 1.65; color: var(--ink-70); }
.form-feedback .btn-outline { font-size: 13.5px; padding: 10px 18px; }

.info-row {
  border-top: 1px solid var(--hairline);
  padding: 20px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
}
.info-row:last-of-type { border-bottom: 1px solid var(--hairline); }
.info-row dt {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-55);
}
.info-row dd { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-70); }
.info-row dd a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--brand);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.info-row dd .sub { margin: 6px 0 0; font-style: italic; font-size: 14px; color: var(--ink-55); }

/* ---- Rechtsseiten / 404 -------------------------------------------------------------------------------- */
.prose { max-width: 720px; padding-bottom: 100px; }
.prose h2 { margin: 44px 0 14px; font-family: var(--sans); font-weight: 600; font-size: 22px; letter-spacing: -.01em; }
.prose p, .prose li { font-size: 16px; line-height: 1.7; color: var(--ink-70); }
.prose ul { padding-left: 22px; }

.error-page { padding-top: 120px; padding-bottom: 120px; }

/* ---- Footer ----------------------------------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--hairline); margin-top: auto; }
.site-footer .container {
  padding-top: 44px;
  padding-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-top .wordmark { margin: 0; font-family: var(--sans); font-weight: 600; font-size: 15px; }
.footer-top .wordmark em {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 14.5px;
  color: var(--ink-55);
}
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a {
  color: rgba(28, 28, 26, .65);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13.5px;
}
.footer-nav a:hover { color: var(--brand); }
.footer-meta { margin: 0; font-family: var(--sans); font-size: 12px; color: var(--ink-45); }

/* Kontaktseite: Footer ans Seitenende schieben */
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1023px) {
  :root { --pad-x: 32px; }
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 28px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block .grid, .person .grid { grid-template-columns: 1fr; gap: 32px; }
  .person .portrait { max-width: 380px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 859px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 0 16px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px var(--pad-x); font-size: 15px; }
  .site-nav a[aria-current="page"] { border-bottom: none; }
  .site-nav .nav-cta { margin: 10px var(--pad-x) 0; text-align: center; }
  .nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .checkstrip .container { grid-template-columns: 1fr 1fr; }
  .cta-band .container { grid-template-columns: 1fr; gap: 32px; justify-items: start; }
  .about-band .container { grid-template-columns: auto 1fr; row-gap: 24px; }
  .about-band .section-link { grid-column: 1 / -1; }
  .service-row { grid-template-columns: 44px 1fr 24px; }
  .service-row .desc { grid-column: 2; }
  .service-row .arrow { grid-row: 1; grid-column: 3; }
}

@media (max-width: 767px) {
  :root { --pad-x: 24px; }
  .hero { padding-top: 72px; padding-bottom: 64px; }
  .page-hero { padding-top: 64px; padding-bottom: 48px; }
  .section { padding-top: 64px; padding-bottom: 60px; }
  .section--flush-top { padding-top: 0; }
  .service-block { padding-top: 56px; padding-bottom: 56px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cta-band .container { padding-top: 64px; padding-bottom: 64px; }
  .form-2col { grid-template-columns: 1fr; }
  .lead { font-size: 17.5px; }
  .price-row { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 479px) {
  :root { --pad-x: 16px; }
  .checkstrip .container { grid-template-columns: 1fr; gap: 14px; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-band .container { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; gap: 8px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .form-feedback { padding: 28px 22px; }
  .fact-row, .info-row { grid-template-columns: 1fr; gap: 6px; }
}
