:root {
  --brand: #e30613;
  --brand-dark: #b9040f;
  --brand-soft: #fff0f1;
  --accent: #009640;
  --accent-dark: #007834;
  --accent-soft: #eaf7ef;
  --ink: #181c1b;
  --ink-2: #2b302f;
  --muted: #626a67;
  --line: #dde2de;
  --line-strong: #c8cfca;
  --bg: #f4f5f2;
  --surface: #ffffff;
  --dark: #1b211f;
  --dark-2: #111614;
  --success: #08783a;
  --danger: #b92b34;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --shadow-sm: 0 8px 24px rgba(22, 30, 27, .07);
  --shadow: 0 24px 70px rgba(22, 30, 27, .12);
  --container: 1180px;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); line-height: 1.05; letter-spacing: -.038em; }
h1 { font-size: clamp(2.8rem, 6.3vw, 5.9rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); margin-bottom: 18px; }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.65rem); margin-bottom: 10px; }
p { color: var(--muted); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.button:focus-visible,
.main-nav a:focus-visible,
.nav-toggle:focus-visible,
.header-phone:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #fff;
}

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 126px) 0; }
.section--tight { padding: 54px 0; }
.section--white { background: var(--surface); }
.section--soft { background: #edf0ec; }
.section--dark { background: var(--dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #bec7c2; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 10000;
  padding: 11px 15px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221,226,222,.82);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 28px rgba(18, 25, 22, .07); }
.brand-line { display: grid; grid-template-columns: 3fr 1fr; height: 4px; }
.brand-line span:first-child { background: var(--brand); }
.brand-line span:last-child { background: var(--accent); }
.site-header__inner { min-height: var(--header-h); display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand__logo { width: 188px; height: auto; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.main-nav a {
  position: relative;
  padding: 13px 13px;
  border-radius: 10px;
  font-weight: 760;
  font-size: .94rem;
  color: #39413e;
  transition: background .18s ease, color .18s ease;
}
.main-nav a:not(.nav-highlight)::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 7px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); background: #f3f5f2; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav .nav-highlight { margin-left: 6px; padding-inline: 16px; background: var(--brand); color: #fff; box-shadow: 0 8px 18px rgba(227,6,19,.18); }
.main-nav .nav-highlight:hover, .main-nav .nav-highlight.is-active { background: var(--brand-dark); color: #fff; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: grid; line-height: 1.1; padding-left: 18px; border-left: 1px solid var(--line); }
.header-phone__label { margin-bottom: 4px; font-size: .72rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); font-weight: 800; }
.header-phone strong { font-size: .98rem; color: var(--ink); }
.nav-toggle { display: none; width: 48px; height: 44px; border: 1px solid var(--line); border-radius: 11px; background: #fff; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons and labels */
.eyebrow { margin-bottom: 14px; color: var(--accent-dark); font-weight: 850; letter-spacing: .14em; text-transform: uppercase; font-size: .76rem; }
.eyebrow--light { color: #77d49b; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 21px; border-radius: 11px; font-weight: 820; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(227,6,19,.17); }
.button--primary:hover { background: var(--brand-dark); }
.button--accent { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(0,150,64,.15); }
.button--accent:hover { background: var(--accent-dark); }
.button--secondary { background: #fff; border: 1px solid var(--line-strong); color: var(--ink); }
.button--light { background: #fff; color: var(--ink); }
.button--outline-light, .button--ghost-light { color: #fff; border: 1px solid rgba(255,255,255,.34); }
.text-link, .card__link { font-weight: 820; color: var(--ink); }
.text-link:hover, .card__link:hover { color: var(--accent-dark); }

/* Home hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f4f5f2 100%); }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0 49.9%, rgba(0,150,64,.05) 50% 50.15%, transparent 50.2%);
}
.hero-grid { min-height: min(760px, calc(100vh - 96px)); padding: clamp(62px, 8vw, 112px) 0; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(38px, 6vw, 86px); align-items: center; }
.hero__lead { max-width: 720px; font-size: clamp(1.12rem, 2vw, 1.4rem); color: #555e5a; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.92); color: #333a37; font-size: .88rem; font-weight: 720; box-shadow: 0 2px 10px rgba(20,30,25,.03); }
.pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; font-size: .84rem; font-weight: 820; color: var(--ink-2); }
.hero-kicker::before { content: ""; width: 38px; height: 3px; background: var(--brand); }
.photo-stage { position: relative; min-height: 540px; }
.photo-placeholder { min-height: 440px; height: 100%; position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: linear-gradient(145deg, #2f3834, #171d1a 68%); }
.photo-placeholder::before { content: ""; position: absolute; inset: 0; background: linear-gradient(130deg, rgba(227,6,19,.18), transparent 44%), linear-gradient(315deg, rgba(0,150,64,.22), transparent 42%); }
.photo-placeholder::after { content: ""; position: absolute; width: 210px; height: 360px; right: 52px; top: 70px; border: 2px solid rgba(255,255,255,.13); transform: rotate(-7deg); border-radius: 20px; }
.photo-placeholder__label { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; padding: 15px 17px; border-radius: 12px; background: rgba(12,16,14,.75); color: #fff; backdrop-filter: blur(8px); font-weight: 700; }
.photo-badge { position: absolute; z-index: 3; right: -18px; bottom: 38px; width: 190px; padding: 20px; border-radius: 18px; background: var(--brand); color: #fff; box-shadow: var(--shadow); }
.photo-badge strong { display: block; font-size: 2.1rem; line-height: 1; }
.photo-badge span { display: block; margin-top: 7px; font-size: .86rem; line-height: 1.35; color: rgba(255,255,255,.9); }
.hero-trust { margin-top: 34px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line); padding-top: 22px; max-width: 680px; }
.hero-trust div { padding-right: 22px; }
.hero-trust div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.hero-trust strong { display: block; font-size: 1rem; color: var(--ink); }
.hero-trust span { font-size: .84rem; color: var(--muted); }

/* Generic section layouts */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 42px; }
.section-head > div:first-child { max-width: 760px; }
.section-head > p { max-width: 560px; margin-bottom: 0; }
.split { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(38px, 7vw, 86px); }
.split--center { align-items: center; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card { position: relative; overflow: hidden; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 0; background: var(--accent); transition: height .2s ease; }
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.card:hover::before { height: 100%; }
.card__icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-dark); font-size: 1.2rem; font-weight: 900; }
.card p:last-child { margin-bottom: 0; }
.card__link { display: inline-block; margin-top: 17px; }
.section--dark .card { background: #232b27; border-color: #35413b; }
.section--dark .card h2, .section--dark .card h3 { color: #fff; }
.section--dark .card p { color: #bdc7c2; }
.section--dark .card::before { background: var(--brand); }

.stats { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); gap: 1px; overflow: hidden; }
.stat { background: #fff; padding: 30px; }
.stat strong { display: block; margin-bottom: 8px; font-size: clamp(1.65rem,3vw,2.35rem); line-height: 1; color: var(--brand); letter-spacing: -.035em; }
.stat span { display: block; color: var(--muted); font-size: .92rem; line-height: 1.45; }

.highlight-panel { padding: clamp(30px,5vw,50px); border-radius: var(--radius-lg); background: var(--accent-soft); border: 1px solid #d4ecdc; }
.highlight-panel h2 { max-width: 700px; }
.quote { margin-top: 28px; padding: 26px; border-left: 4px solid var(--brand); background: var(--brand-soft); border-radius: 0 var(--radius) var(--radius) 0; }
.quote p { margin-bottom: 8px; font-size: 1.15rem; color: var(--ink); font-weight: 760; }
.quote small { color: var(--muted); }
.feature-list { display: grid; gap: 13px; list-style: none; padding: 0; margin: 24px 0 0; }
.feature-list li { position: relative; padding-left: 31px; color: inherit; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-dark); font-size: .78rem; font-weight: 900; }
.section--dark .feature-list li { color: #e9efec; }
.section--dark .feature-list li::before { background: rgba(0,150,64,.2); color: #88dba8; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { content: ""; position: absolute; left: 53px; top: 34px; bottom: 34px; width: 2px; background: linear-gradient(var(--brand), var(--accent)); }
.timeline-item { position: relative; display: grid; grid-template-columns: 108px 1fr; gap: 26px; padding: 22px 0; }
.timeline-dot { z-index: 1; width: 108px; min-height: 54px; display: grid; place-items: center; border-radius: 999px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--brand); font-weight: 900; }
.timeline-item p { margin-bottom: 0; }

/* Inner page hero */
.page-hero, .service-hero { position: relative; overflow: hidden; padding: clamp(62px,8vw,108px) 0 clamp(66px,8vw,112px); background: linear-gradient(140deg, #fff 0%, #f0f3ef 100%); border-bottom: 1px solid var(--line); }
.page-hero::after, .service-hero::after { content: ""; position: absolute; right: -150px; top: -180px; width: 430px; height: 430px; border-radius: 50%; border: 58px solid rgba(0,150,64,.06); }
.page-hero .container, .service-hero .container { position: relative; z-index: 1; }
.page-hero h1, .service-hero h1 { max-width: 900px; }
.page-hero > .container > p:last-child, .service-hero > .container > p:last-child { max-width: 760px; font-size: 1.16rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: var(--muted); font-size: .88rem; }
.breadcrumbs a:hover { color: var(--accent-dark); }

.service-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.service-list > div { padding: 21px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.service-list h3 { font-size: 1.08rem; }
.service-list p { margin-bottom: 0; }
.mini { font-size: .9rem; color: var(--muted); }

.process { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; counter-reset: process; }
.process-step { position: relative; padding: 24px 22px 22px 66px; border: 1px solid var(--line); border-radius: 15px; background: #fff; counter-increment: process; }
.process-step::before { content: counter(process); position: absolute; left: 20px; top: 21px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 900; }
.process-step p { margin-bottom: 0; }

/* Ausbildung */
.day-plan { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.day-item { padding: 25px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.day-item time { display: inline-block; margin-bottom: 14px; color: var(--brand); font-weight: 900; }
.day-item p { margin-bottom: 0; }
.faq { display: grid; gap: 10px; max-width: 900px; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: #fff; overflow: hidden; }
.faq summary { padding: 20px 22px; cursor: pointer; font-weight: 810; color: var(--ink); }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq details p { padding: 18px 22px 22px; margin: 0; }

/* Forms & contact */
.contact-cards { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.contact-card { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.contact-card strong { display: block; margin-bottom: 5px; color: var(--ink); }
.contact-card a { overflow-wrap: anywhere; }
.form-card { padding: clamp(25px,4vw,38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-weight: 760; }
.form-field input, .form-field textarea, .form-field select { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fff; color: var(--ink); transition: border-color .18s ease, box-shadow .18s ease; }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(0,150,64,.08); outline: 0; }
.check-row { grid-column: 1 / -1; display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; padding: 3px 0; }
.check-row input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--accent); }
.check-row.has-error { color: var(--danger); }
.form-note { font-size: .88rem; color: var(--muted); }
.honeypot { position: absolute !important; left: -99999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.notice { margin-bottom: 20px; padding: 14px 16px; border-radius: 10px; font-weight: 740; }
.notice--success { background: var(--accent-soft); color: var(--success); border: 1px solid #bfe6ce; }
.notice--error { background: var(--brand-soft); color: var(--danger); border: 1px solid #f0c4c7; }

/* CTA + Footer */
.cta-band { background: var(--accent); color: #fff; padding: 56px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { margin-bottom: 0; color: rgba(255,255,255,.83); }
.cta-band .button-row { margin-top: 0; justify-content: flex-end; }
.site-footer { padding-top: 70px; background: var(--dark-2); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.45fr 1fr .8fr 1.15fr; gap: 42px; padding-bottom: 56px; }
.brand__logo--footer { width: 225px; }
.footer-brand > p { max-width: 390px; margin-top: 22px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer-badges span { padding: 6px 9px; border: 1px solid #35403b; border-radius: 999px; color: #c7d0cb; font-size: .77rem; }
.footer-title { margin-bottom: 17px; color: #fff; font-size: 1rem; letter-spacing: .02em; }
.site-footer p, .site-footer address { color: #aeb9b3; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-recruiting { padding: 25px; border: 1px solid #303a35; border-radius: 17px; background: #19201d; }
.footer-recruiting h2 { color: #fff; font-size: 1.55rem; }
.footer-bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #2b342f; color: #8f9c95; font-size: .86rem; }
.footer-bottom div { display: flex; gap: 18px; }

/* Legal */
.legal { max-width: 880px; }
.legal h2 { margin-top: 48px; font-size: 1.8rem; }
.legal h3 { margin-top: 30px; font-size: 1.2rem; }
.legal-note { padding: 18px 20px; border-left: 4px solid var(--brand); background: var(--brand-soft); border-radius: 0 12px 12px 0; }

/* Reveal */
.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .header-phone { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-recruiting { grid-column: 1 / -1; display: grid; grid-template-columns: 1.5fr 1fr auto; align-items: center; gap: 20px; }
  .footer-recruiting .eyebrow { grid-column: 1; margin: 0; }
  .footer-recruiting h2 { grid-column: 1; margin: 0; }
  .footer-recruiting p { grid-column: 2; grid-row: 1 / span 2; margin: 0; }
  .footer-recruiting .button { grid-column: 3; grid-row: 1 / span 2; }
}

@media (max-width: 880px) {
  :root { --header-h: 78px; }
  .brand__logo { width: 164px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: calc(var(--header-h) + 4px) 0 auto 0;
    display: none;
    padding: 18px 20px 26px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 35px rgba(18,25,22,.12);
  }
  .main-nav.is-open { display: grid; gap: 5px; }
  .main-nav a { padding: 14px 15px; font-size: 1.05rem; }
  .main-nav .nav-highlight { margin: 7px 0 0; text-align: center; }
  .main-nav a::after { display: none; }
  .site-header__inner { justify-content: space-between; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 56px; }
  .hero::before { display: none; }
  .photo-stage { min-height: 430px; }
  .photo-placeholder { min-height: 410px; }
  .split { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .day-plan { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cta-band__inner { display: block; }
  .cta-band .button-row { justify-content: flex-start; margin-top: 24px; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-recruiting { grid-column: 1 / -1; display: block; }
  .footer-recruiting .button { margin-top: 6px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 66px 0; }
  .brand__logo { width: 150px; }
  .hero-grid { padding: 44px 0 72px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
  h2 { font-size: clamp(2rem, 9.5vw, 3rem); }
  .hero-trust { grid-template-columns: 1fr; gap: 12px; }
  .hero-trust div, .hero-trust div + div { padding: 0; border: 0; }
  .photo-stage { min-height: 350px; }
  .photo-placeholder { min-height: 330px; }
  .photo-badge { right: 10px; bottom: -18px; width: 160px; }
  .section-head { display: block; margin-bottom: 30px; }
  .card-grid, .card-grid--2, .stats, .day-plan, .service-list, .process, .contact-cards, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-field--full, .check-row { grid-column: auto; }
  .form-field { gap: 10px; }
  .form-field input, .form-field textarea, .form-field select { min-height: 54px; }
  .timeline::before { left: 27px; }
  .timeline-item { grid-template-columns: 58px 1fr; gap: 18px; }
  .timeline-dot { width: 58px; min-height: 58px; border-radius: 50%; font-size: .68rem; text-align: center; }
  .button-row .button { width: 100%; }
  .cta-band .button-row { display: grid; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 18px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

@media print {
  .site-header, .site-footer, .cta-band, .button, .nav-toggle, .breadcrumbs { display: none !important; }
  html, body { background: #fff !important; color: #000 !important; font-size: 12pt; }
  body { line-height: 1.45; }
  .container { width: 100%; }
  .section, .page-hero, .service-hero, .hero { padding: 18pt 0 !important; background: #fff !important; }
  h1, h2, h3, p, li { color: #000 !important; }
  a { color: #000 !important; text-decoration: underline; }
  .card, .form-card, .highlight-panel, .photo-placeholder { box-shadow: none !important; background: #fff !important; border: 1px solid #bbb !important; }
  .photo-placeholder { min-height: 80pt; }
  .photo-placeholder__label { position: static; background: none; color: #000; }
}
