:root {
  --ink: #071826;
  --ink-soft: #233746;
  --blue: #005bd8;
  --blue-dark: #0047ad;
  --cyan: #46d9ef;
  --paper: #ffffff;
  --mist: #f2f7fb;
  --line: #dbe6ed;
  --muted: #607483;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 70px rgba(7, 24, 38, 0.12);
  --shell: min(1180px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { overflow-wrap: break-word; hyphens: manual; text-wrap: balance; }
h1 {
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 7.2vw, 6.9rem);
  font-weight: 680;
  line-height: 0.94;
  letter-spacing: -0.065em;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: -0.045em;
}
h3 {
  margin-bottom: 12px;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 650;
  line-height: 1.22;
  letter-spacing: -0.025em;
}
p { margin-bottom: 20px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(84px, 10vw, 150px) 0; }
.section--soft { background: var(--mist); }
.section--dark { color: var(--paper); background: var(--ink); }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow--light { color: var(--cyan); }
.lead { max-width: 750px; color: var(--ink-soft); font-size: clamp(1.15rem, 2vw, 1.42rem); }
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 230, 237, 0.8);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(7, 24, 38, 0.08); }
.site-header__inner { display: flex; min-height: 92px; align-items: center; gap: 34px; }
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 180px; height: auto; }
.desktop-nav { display: flex; margin-left: auto; align-items: center; gap: 34px; }
.desktop-nav a {
  position: relative;
  padding: 32px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-contact { display: grid; padding-left: 26px; border-left: 1px solid var(--line); text-decoration: none; }
.header-contact span { color: var(--muted); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.header-contact strong { font-size: 0.92rem; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 12px; background: transparent; border: 1px solid var(--line); border-radius: 12px; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { position: fixed; z-index: -1; inset: 92px 0 auto; height: calc(100vh - 92px); background: var(--paper); }
.mobile-nav .shell { display: grid; padding: 28px 0; }
.mobile-nav a:not(.button) { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.35rem; font-weight: 650; text-decoration: none; }
.mobile-nav .button { margin-top: 28px; justify-self: start; }
.button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 22px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button svg { width: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(3px); }
.button--primary { color: var(--paper); background: var(--blue); }
.button--primary:hover { background: var(--blue-dark); }
.button--secondary { color: var(--ink); background: transparent; border-color: var(--ink); }
.button--secondary:hover { color: var(--paper); background: var(--ink); }
.button--light { color: var(--ink); background: var(--paper); }
.button--light:hover { background: var(--cyan); }
.hero { position: relative; overflow: clip; padding: clamp(70px, 9vw, 130px) 0 clamp(80px, 10vw, 150px); background: linear-gradient(135deg, #f5f9fc 0%, #ecf5fc 58%, #dff7fb 100%); }
.hero::before { position: absolute; width: 580px; height: 580px; top: -330px; right: -180px; background: rgba(70, 217, 239, 0.2); border-radius: 50%; content: ""; filter: blur(4px); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr); align-items: center; gap: clamp(48px, 7vw, 100px); }
.hero h1 span { color: var(--blue); }
.hero__lead { max-width: 680px; color: var(--ink-soft); font-size: clamp(1.1rem, 1.7vw, 1.35rem); }
.hero__actions { display: flex; margin-top: 36px; flex-wrap: wrap; gap: 12px; }
.hero__facts { display: flex; padding: 0; margin: 44px 0 0; flex-wrap: wrap; gap: 15px 26px; list-style: none; }
.hero__facts li { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); font-size: 0.83rem; font-weight: 650; }
.hero__facts svg, .check-list svg { width: 20px; flex: 0 0 20px; fill: none; stroke: var(--blue); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.2; }
.hero__visual { position: relative; }
.hero__image { display: block; overflow: hidden; aspect-ratio: 0.88; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero__image img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero__note { position: absolute; right: -24px; bottom: 34px; display: grid; min-width: 240px; padding: 20px 24px; color: var(--paper); background: var(--ink); border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.hero__note strong { font-size: 1.12rem; }
.hero__note span { color: #b8c9d5; font-size: 0.76rem; }
.section-heading { display: grid; max-width: 800px; margin-bottom: 54px; }
.section-heading > p:last-child { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { display: flex; min-height: 390px; padding: 34px; flex-direction: column; background: var(--mist); border: 1px solid transparent; border-radius: var(--radius-md); transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.service-card:hover { border-color: #b9cee0; box-shadow: 0 18px 45px rgba(7, 24, 38, 0.08); transform: translateY(-5px); }
.service-card--accent { color: var(--paper); background: var(--blue); }
.service-card__number { margin-bottom: auto; color: var(--blue); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.12em; }
.service-card--accent .service-card__number { color: var(--paper); }
.service-card h3 { margin-top: 70px; font-size: 1.65rem; }
.service-card p { color: var(--muted); }
.service-card--accent p { color: var(--paper); }
.service-card a { display: inline-flex; margin-top: 14px; align-items: center; gap: 8px; color: var(--blue); font-size: 0.84rem; font-weight: 720; text-decoration: none; }
.service-card--accent a { color: var(--paper); }
.service-card a svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.split__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.split__grid--wide { grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr); }
.split__media { overflow: hidden; aspect-ratio: 1.02; border-radius: var(--radius-lg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__copy p:not(.eyebrow) { color: var(--muted); }
.split__copy .button { margin-top: 18px; }
.process-list { display: grid; padding: 0; margin: 0; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); list-style: none; }
.process-list li { padding: 34px 38px 0 0; border-right: 1px solid var(--line); }
.process-list li + li { padding-left: 38px; }
.process-list li:last-child { border-right: 0; }
.process-list > li > span { display: inline-grid; width: 50px; height: 50px; margin-bottom: 60px; place-items: center; color: var(--blue); background: #eaf2ff; border-radius: 50%; font-size: 0.8rem; font-weight: 800; }
.process-list p { color: var(--muted); }
.cta-band { padding: clamp(75px, 9vw, 120px) 0; color: var(--paper); background: linear-gradient(120deg, var(--blue-dark), var(--blue) 55%, #1689f8); }
.cta-band__inner { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.cta-band h2 { max-width: 780px; margin-bottom: 18px; }
.cta-band p:not(.eyebrow) { max-width: 680px; margin-bottom: 0; color: #dbe9ff; }
.cta-band__actions { display: grid; flex: 0 0 auto; gap: 18px; }
.text-link { display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 0.88rem; font-weight: 700; text-decoration: none; }
.text-link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.text-link--light { color: var(--paper); }
.breadcrumbs { margin-bottom: 44px; }
.breadcrumbs ol { display: flex; padding: 0; margin: 0; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 0.78rem; list-style: none; }
.breadcrumbs li + li::before { margin-right: 8px; content: "/"; }
.breadcrumbs a { text-decoration: none; }
.page-hero { overflow: clip; padding: 46px 0 clamp(80px, 9vw, 130px); background: var(--mist); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr); align-items: center; gap: clamp(55px, 8vw, 110px); }
.page-hero h1 { font-size: clamp(3rem, 6vw, 6rem); }
.page-hero__media { overflow: hidden; aspect-ratio: 1.12; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-row { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.feature-row--reverse .feature-row__copy { order: 2; }
.feature-row__copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.section--dark .feature-row__copy > p:not(.eyebrow) { color: #b8c9d5; }
.feature-row__media { overflow: hidden; aspect-ratio: 1.2; border-radius: var(--radius-lg); }
.feature-row__media img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; padding: 0; margin: 32px 0 0; gap: 15px; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; }
.centered-copy { max-width: 1000px; text-align: center; }
.centered-copy > p:not(.eyebrow) { max-width: 760px; margin-right: auto; margin-left: auto; color: var(--muted); }
.pillars { display: grid; margin-top: 60px; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.pillars > div { padding: 32px; background: var(--mist); border-radius: var(--radius-md); }
.pillars p { margin-bottom: 0; color: var(--muted); }
.faq__grid { display: grid; grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr); gap: clamp(50px, 8vw, 110px); }
.faq .section-heading { margin-bottom: 0; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 26px 50px 26px 0; font-weight: 700; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { position: absolute; top: 23px; right: 4px; color: var(--blue); content: "+"; font-size: 1.6rem; font-weight: 400; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { padding-right: 50px; color: var(--muted); }
.fact-panel { padding: 24px 38px; color: var(--paper); background: var(--ink); border-radius: var(--radius-md); }
.fact-panel dl { margin: 0; }
.fact-panel dl > div { display: grid; padding: 25px 0; grid-template-columns: 0.72fr 1.28fr; gap: 20px; border-bottom: 1px solid #2b4050; }
.fact-panel dl > div:last-child { border-bottom: 0; }
.fact-panel dt { color: #8fa6b5; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.fact-panel dd { margin: 0; font-size: 1.1rem; font-weight: 680; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-grid article { padding: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); }
.value-grid article > span { display: grid; width: 52px; height: 52px; margin-bottom: 50px; place-items: center; color: var(--paper); background: var(--blue); border-radius: 50%; font-weight: 800; }
.value-grid p { margin-bottom: 0; color: var(--muted); }
.story__grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.story__media { overflow: hidden; aspect-ratio: 0.95; border-radius: var(--radius-lg); }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__copy p:not(.eyebrow) { color: var(--muted); }
.story__copy .button { margin-top: 18px; }
.contact-grid { display: grid; grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr); gap: 20px; }
.contact-card { padding: clamp(34px, 5vw, 62px); color: var(--paper); background: var(--ink); border-radius: var(--radius-lg); }
.contact-methods { display: grid; margin-top: 54px; }
.contact-methods > a { display: grid; padding: 22px 0; grid-template-columns: 42px 1fr; align-items: center; gap: 15px; border-top: 1px solid #2b4050; text-decoration: none; }
.contact-methods svg { width: 23px; fill: none; stroke: var(--cyan); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.contact-methods span { display: grid; }
.contact-methods small { color: #8fa6b5; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-methods strong { overflow-wrap: anywhere; font-size: 1rem; }
.form-panel { padding: clamp(34px, 5vw, 62px); background: var(--mist); border-radius: var(--radius-lg); }
.form-panel > p:not(.eyebrow) { color: var(--muted); }
.contact-form { display: grid; margin-top: 40px; gap: 22px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.contact-form label > span { display: block; margin-bottom: 7px; font-size: 0.78rem; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form textarea {
  width: 100%;
  padding: 15px 17px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cad9e3;
  border-radius: 10px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.12); }
.checkbox { display: flex; align-items: flex-start; gap: 11px; }
.checkbox input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--blue); }
.checkbox > span { margin: 0 !important; color: var(--muted); font-weight: 500 !important; }
.honeypot { position: absolute !important; overflow: hidden !important; width: 1px !important; height: 1px !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; }
.form-submit { display: flex; align-items: center; gap: 20px; }
.form-status { margin: 0; color: var(--muted); font-size: 0.86rem; }
.form-status.is-success { color: #087a55; }
.form-status.is-error { color: #b42318; }
.contact-form.is-loading button { opacity: 0.65; pointer-events: none; }
.legal-hero { padding: 50px 0 78px; background: var(--mist); }
.legal-hero .breadcrumbs { margin-bottom: 70px; }
.legal-hero h1 { margin: 0; font-size: clamp(3rem, 6vw, 5.8rem); }
.legal-content { max-width: 900px; color: var(--ink-soft); }
.legal-content h2 { margin-top: 54px; margin-bottom: 18px; color: var(--ink); font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.025em; }
.legal-content h3 { margin-top: 36px; color: var(--ink); font-size: 1.3rem; }
.legal-content a { color: var(--blue-dark); overflow-wrap: anywhere; }
.legal-content .impressum-box { max-width: none; padding: 0; margin: 0; color: inherit; background: transparent; border: 0; font-family: inherit; }
.legal-content .impressum-header { display: none; }
.legal-content .impressum-box h2 { padding-left: 0; border-left: 0; }
.site-footer { padding: 76px 0 24px; color: var(--paper); background: #04111b; }
.footer-grid { display: grid; padding-bottom: 65px; grid-template-columns: 1.4fr 0.7fr 0.9fr; gap: 70px; }
.footer-brand img { width: 190px; padding: 9px; background: var(--paper); border-radius: 8px; }
.footer-brand p { max-width: 430px; margin-top: 25px; color: #92a8b7; }
.site-footer h2 { margin-bottom: 22px; color: #92a8b7; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer nav, .site-footer address { display: grid; gap: 10px; font-style: normal; }
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer address span { margin-top: 9px; color: #92a8b7; }
.footer-bottom { display: flex; padding-top: 22px; align-items: center; justify-content: space-between; border-top: 1px solid #213442; color: #7f96a5; font-size: 0.78rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; grid-auto-flow: column; gap: 22px; }
.footer-bottom a { color: #a9bbc7; }
.mobile-call { display: none; }
.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 38px, 780px); }
  .desktop-nav, .header-contact { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .hero__grid, .page-hero__grid, .split__grid, .feature-row, .story__grid, .contact-grid { grid-template-columns: 1fr; }
  .hero__grid { gap: 58px; }
  .hero__copy { max-width: 760px; }
  .hero__visual { max-width: 680px; }
  .hero__image { aspect-ratio: 1.3; }
  .hero__note { right: 20px; }
  .page-hero__media { max-width: 650px; aspect-ratio: 1.55; }
  .service-grid, .pillars, .value-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-card h3 { margin-top: 45px; }
  .process-list { grid-template-columns: 1fr; border-top: 0; }
  .process-list li, .process-list li + li { display: grid; padding: 28px 0; grid-template-columns: 68px 1fr; border-top: 1px solid var(--line); border-right: 0; }
  .process-list > li > span { margin: 0; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .cta-band__actions { grid-template-columns: auto 1fr; align-items: center; }
  .feature-row--reverse .feature-row__copy { order: 0; }
  .feature-row__media { max-width: 720px; }
  .faq__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 32px); }
  body { font-size: 16px; }
  h1 { font-size: clamp(2.35rem, 11.5vw, 3.3rem); letter-spacing: -0.05em; }
  h2 { font-size: clamp(2rem, 9.4vw, 3rem); }
  .section { padding: 78px 0; }
  .site-header__inner { min-height: 78px; }
  .brand img { width: 150px; }
  .mobile-nav { inset: 78px 0 auto; height: calc(100vh - 78px); }
  .hero { padding-top: 62px; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .hero__facts { align-items: flex-start; flex-direction: column; }
  .hero__image { aspect-ratio: 0.95; }
  .hero__note { right: 14px; bottom: 14px; left: 14px; min-width: 0; }
  .service-card { min-height: 320px; padding: 28px; }
  .split__media, .story__media { aspect-ratio: 1; }
  .cta-band__actions { width: 100%; grid-template-columns: 1fr; }
  .page-hero { padding-top: 30px; }
  .page-hero__grid { gap: 38px; }
  .page-hero__media { aspect-ratio: 1.15; }
  .feature-row__media { aspect-ratio: 1.05; }
  .pillars > div, .value-grid article { padding: 27px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card, .form-panel { padding: 29px 23px; border-radius: var(--radius-md); }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding-bottom: 65px; align-items: flex-start; flex-direction: column; gap: 13px; }
  .mobile-call { position: fixed; z-index: 90; right: 14px; bottom: 12px; left: 14px; display: flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; color: var(--paper); background: var(--blue); border-radius: 999px; box-shadow: 0 12px 35px rgba(0, 70, 180, 0.3); font-size: 0.9rem; font-weight: 750; text-decoration: none; }
  .mobile-call svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Visual refinement 2026-08-14 */
:root {
  --ink: #061a2a;
  --ink-soft: #294253;
  --blue: #0568e8;
  --blue-dark: #034cae;
  --cyan: #53ddf2;
  --mist: #f0f5f9;
  --line: #d6e2ea;
  --shadow: 0 28px 80px rgba(3, 20, 34, 0.16);
}

body { background: #fbfdff; }

.utility-strip {
  color: #c6d7e3;
  background: #04131f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.utility-strip__inner { display: flex; min-height: 31px; align-items: center; justify-content: space-between; }
.utility-strip__inner span:last-child { color: #7e9aae; }
.site-header { background: rgba(255, 255, 255, 0.97); }
.site-header__inner { min-height: 86px; }
.brand img { width: 192px; }
.desktop-nav a { padding: 29px 0; }
.desktop-nav a::after { bottom: 21px; height: 3px; border-radius: 99px; }
.header-contact {
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  border-radius: 12px;
  transition: background 180ms ease, transform 180ms ease;
}
.header-contact:hover { background: var(--blue); transform: translateY(-1px); }
.header-contact span { color: #9db2c1; }

.hero {
  isolation: isolate;
  padding: clamp(76px, 8vw, 124px) 0 clamp(90px, 10vw, 148px);
  color: var(--paper);
  background:
    radial-gradient(circle at 87% 12%, rgba(31, 160, 255, 0.24), transparent 28%),
    linear-gradient(125deg, #03131f 0%, #071f31 55%, #082c45 100%);
}
.hero::before {
  z-index: -1;
  width: 54%;
  height: 100%;
  inset: 0 0 0 auto;
  background-image: linear-gradient(rgba(135, 191, 225, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(135, 191, 225, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  border-radius: 0;
  filter: none;
  mask-image: linear-gradient(90deg, transparent, #000 35%);
}
.hero::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -180px;
  width: 430px;
  height: 430px;
  background: rgba(27, 125, 239, 0.28);
  border-radius: 50%;
  content: "";
  filter: blur(90px);
}
.hero__grid { grid-template-columns: minmax(0, 1fr) minmax(480px, 0.92fr); gap: clamp(52px, 7vw, 105px); }
.hero__signal {
  display: inline-flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 10px;
  color: #b9ccda;
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__signal span { width: 27px; height: 2px; background: var(--cyan); border-radius: 9px; }
.hero h1 { max-width: 750px; margin-bottom: 30px; font-size: clamp(3.5rem, 6.8vw, 6.65rem); }
.hero h1 span { color: #2f93ff; }
.hero__lead { max-width: 630px; color: #c6d5df; }
.hero .button--primary { color: #021421; background: var(--cyan); box-shadow: 0 15px 35px rgba(0, 166, 219, 0.2); }
.hero .button--primary:hover { background: #8beaf7; }
.hero .button--secondary { color: var(--paper); border-color: rgba(255, 255, 255, 0.46); }
.hero .button--secondary:hover { color: var(--ink); background: var(--paper); }
.hero__facts { padding-top: 28px; margin-top: 34px; border-top: 1px solid rgba(197, 218, 232, 0.18); }
.hero__facts li { color: #c6d5df; }
.hero__facts svg { stroke: var(--cyan); }
.hero__visual { z-index: 1; padding: 14px 0 0 14px; }
.hero__visual::before {
  position: absolute;
  z-index: -1;
  inset: 0 40px 42px 0;
  background: linear-gradient(145deg, var(--blue), #25a8e8);
  border-radius: 42px;
  content: "";
  transform: rotate(-2deg);
}
.hero__image { aspect-ratio: 0.96; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 34px; box-shadow: 0 35px 95px rgba(0, 0, 0, 0.34); }
.hero__note {
  right: -18px;
  bottom: 26px;
  min-width: 255px;
  padding: 21px 24px;
  background: rgba(3, 20, 32, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.section-heading { max-width: 880px; }
.service-overview { position: relative; overflow: clip; background: #fff; }
.service-overview::before {
  position: absolute;
  top: 90px;
  right: -140px;
  width: 330px;
  height: 330px;
  background: #e6f5ff;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}
.service-grid { position: relative; gap: 22px; }
.service-card {
  min-height: 410px;
  padding: 38px;
  background: #f4f8fb;
  border: 1px solid #e3ebf0;
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(6, 26, 42, 0.035);
}
.service-card::before { width: 46px; height: 4px; margin-bottom: 24px; background: var(--blue); border-radius: 99px; content: ""; }
.service-card--accent { background: linear-gradient(145deg, #075ed0, #087cf4); border-color: transparent; box-shadow: 0 24px 60px rgba(5, 104, 232, 0.25); transform: translateY(-14px); }
.service-card--accent:hover { border-color: transparent; transform: translateY(-20px); }
.service-card--accent::before { background: var(--cyan); }
.service-card h3 { font-size: 1.72rem; }

.split.section--soft {
  position: relative;
  overflow: clip;
  background: linear-gradient(135deg, #ecf3f8, #f8fbfd);
}
.split.section--soft::after {
  position: absolute;
  right: -10%;
  bottom: -48%;
  width: 700px;
  height: 700px;
  border: 1px solid #d7e6f0;
  border-radius: 50%;
  content: "";
}
.split__grid { position: relative; z-index: 1; }
.split__visual { position: relative; padding: 0 28px 28px 0; }
.split__visual::before { position: absolute; z-index: -1; inset: 34px 0 0 34px; background: var(--blue); border-radius: 38px; content: ""; }
.split__media { aspect-ratio: 1.08; box-shadow: var(--shadow); }
.split__badge {
  position: absolute;
  right: -4px;
  bottom: 0;
  display: grid;
  min-width: 165px;
  padding: 20px 24px;
  color: var(--paper);
  background: var(--ink);
  border: 5px solid #f5f9fc;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(6, 26, 42, 0.2);
}
.split__badge strong { font-size: 1.35rem; line-height: 1.1; }
.split__badge span { color: #9eb4c3; font-size: 0.78rem; }

.process { background: #fff; }
.process-list { border-top: 2px solid var(--ink); }
.process-list li { position: relative; padding-top: 40px; }
.process-list > li > span { width: 58px; height: 58px; margin-bottom: 50px; color: var(--paper); background: var(--ink); box-shadow: 0 10px 25px rgba(6, 26, 42, 0.15); }
.process-list li:nth-child(2) > span { background: var(--blue); }
.process-list h3 { font-size: 1.55rem; }

.cta-band { position: relative; overflow: hidden; background: linear-gradient(115deg, #0348a4, #0568e8 54%, #108af5); }
.cta-band::before { position: absolute; right: -90px; bottom: -210px; width: 510px; height: 510px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 50%; content: ""; }
.cta-band::after { position: absolute; right: 90px; bottom: -260px; width: 510px; height: 510px; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 50%; content: ""; }
.cta-band__inner { position: relative; z-index: 1; }

.page-hero {
  color: var(--paper);
  background:
    radial-gradient(circle at 87% 10%, rgba(20, 131, 247, 0.25), transparent 27%),
    linear-gradient(125deg, #041521, #092a40);
}
.page-hero .breadcrumbs, .page-hero .breadcrumbs a { color: #9db3c2; }
.page-hero .eyebrow { color: var(--cyan); }
.page-hero .lead { color: #c6d5df; }
.page-hero__media { border: 1px solid rgba(255, 255, 255, 0.13); box-shadow: 0 30px 85px rgba(0, 0, 0, 0.35); }
.feature-row__media, .story__media { box-shadow: var(--shadow); }
.pillars > div, .value-grid article { border: 1px solid #e0e9ef; box-shadow: 0 12px 35px rgba(6, 26, 42, 0.04); }
.fact-panel, .contact-card { background: linear-gradient(145deg, #061a2a, #0b2d44); box-shadow: 0 25px 65px rgba(6, 26, 42, 0.2); }
.form-panel { background: #f0f5f9; border: 1px solid #e0e9ef; }
.legal-hero { background: linear-gradient(135deg, #ecf3f8, #f8fbfd); }

.site-footer { background: #03111b; }
.footer-brand img { padding: 12px; border-radius: 12px; }

@media (max-width: 980px) {
  .utility-strip { display: none; }
  .site-header__inner { min-height: 82px; }
  .mobile-nav { inset: 82px 0 auto; height: calc(100vh - 82px); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 720px; }
  .hero__image { aspect-ratio: 1.35; }
  .service-card--accent { transform: none; }
  .service-card--accent:hover { transform: translateY(-5px); }
}

@media (max-width: 620px) {
  .site-header__inner { min-height: 76px; }
  .mobile-nav { inset: 76px 0 auto; height: calc(100vh - 76px); }
  .brand img { width: 158px; }
  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 3.55rem); line-height: 0.92; }
  .hero__signal { margin-bottom: 22px; font-size: 0.67rem; }
  .hero__visual { padding: 9px 0 0 9px; }
  .hero__visual::before { inset: 0 20px 25px 0; border-radius: 27px; }
  .hero__image { aspect-ratio: 0.98; border-radius: 24px; }
  .hero__note { right: 10px; bottom: 13px; left: 10px; }
  .service-card { min-height: 315px; }
  .split__visual { padding: 0 17px 17px 0; }
  .split__visual::before { inset: 22px 0 0 22px; border-radius: 26px; }
  .split__badge { right: -2px; min-width: 140px; padding: 16px 19px; border-width: 4px; border-radius: 17px; }
  .process-list { border-top: 0; }
}

/* Audi image series and compact mobile header */
.hero__note img {
  width: 154px;
  height: auto;
  padding: 7px 9px;
  background: #fff;
  border-radius: 6px;
}
.hero__note span { margin-top: 7px; }
.page-hero__media { position: relative; display: block; }
.page-hero__media::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 142px;
  height: 48px;
  background: #fff url("/assets/images/kr-logistik-logo.svg") center / 118px auto no-repeat;
  border: 1px solid rgba(7, 24, 38, 0.13);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 24, 38, 0.2);
  content: "";
}
.hero__image img { object-position: 60% center; }

@media (max-width: 980px) {
  .site-header__inner { min-height: 74px; gap: 18px; }
  .brand img { width: 148px; }
  .menu-toggle { position: relative; width: 44px; height: 44px; padding: 10px; }
  .menu-toggle span { position: absolute; right: 10px; left: 10px; width: auto; margin: 0; }
  .menu-toggle span:nth-child(1) { top: 13px; }
  .menu-toggle span:nth-child(2) { top: 20px; }
  .menu-toggle span:nth-child(3) { top: 27px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }
  .mobile-nav { inset: 74px 0 auto; height: calc(100dvh - 74px); }
}

@media (max-width: 620px) {
  .site-header__inner { min-height: 70px; }
  .brand img { width: 138px; }
  .menu-toggle { width: 42px; height: 42px; padding: 9px; }
  .menu-toggle span { right: 9px; left: 9px; }
  .menu-toggle span:nth-child(1) { top: 12px; }
  .menu-toggle span:nth-child(2) { top: 19px; }
  .menu-toggle span:nth-child(3) { top: 26px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1),
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; }
  .mobile-nav { inset: 70px 0 auto; height: calc(100dvh - 70px); }
  .page-hero__media::after { right: 12px; bottom: 12px; width: 122px; height: 42px; background-size: 102px auto; }
}

/* Compact, focused contact page */
body[data-page="contact"] .page-hero {
  padding: 34px 0 72px;
}
body[data-page="contact"] .page-hero .breadcrumbs {
  margin-bottom: 34px;
}
body[data-page="contact"] .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(48px, 7vw, 92px);
}
body[data-page="contact"] .page-hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 5vw, 4.7rem);
  line-height: 0.98;
}
body[data-page="contact"] .page-hero .lead {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 1.12rem;
}
body[data-page="contact"] .page-hero__media {
  aspect-ratio: 1.48;
  background: url("/assets/images/autobahn-fahrzeugtransport.webp") center / cover no-repeat;
  border-radius: 24px;
}
body[data-page="contact"] .contact-section {
  padding: clamp(72px, 8vw, 108px) 0;
  background: linear-gradient(180deg, #f7fafc, #edf4f8);
}
body[data-page="contact"] .contact-grid {
  grid-template-columns: minmax(310px, 0.76fr) minmax(0, 1.24fr);
  gap: 24px;
  align-items: stretch;
}
body[data-page="contact"] .contact-card,
body[data-page="contact"] .form-panel {
  padding: clamp(36px, 4vw, 54px);
  border-radius: 26px;
}
body[data-page="contact"] .contact-card h2,
body[data-page="contact"] .form-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.05;
}
body[data-page="contact"] .contact-methods {
  margin-top: 34px;
}
body[data-page="contact"] .contact-methods > a {
  min-height: 76px;
  padding: 16px 0;
  transition: color 160ms ease, transform 160ms ease;
}
body[data-page="contact"] .contact-methods > a:hover {
  color: var(--cyan);
  transform: translateX(3px);
}
body[data-page="contact"] .form-panel {
  background: #fff;
  box-shadow: 0 22px 60px rgba(6, 26, 42, 0.09);
}
body[data-page="contact"] .contact-form {
  margin-top: 30px;
  gap: 19px;
}
body[data-page="contact"] .contact-form input:not([type="checkbox"]),
body[data-page="contact"] .contact-form textarea {
  background: #f8fbfd;
  border-color: #cfdce5;
}
body[data-page="contact"] .contact-form textarea {
  min-height: 180px;
}

@media (max-width: 980px) {
  body[data-page="contact"] .page-hero__grid,
  body[data-page="contact"] .contact-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="contact"] .page-hero__media {
    max-width: none;
    aspect-ratio: 1.75;
  }
}

@media (max-width: 620px) {
  body[data-page="contact"] .page-hero {
    padding: 24px 0 54px;
  }
  body[data-page="contact"] .page-hero .breadcrumbs {
    margin-bottom: 26px;
  }
  body[data-page="contact"] .page-hero__grid {
    gap: 30px;
  }
  body[data-page="contact"] .page-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.25rem);
    line-height: 0.98;
  }
  body[data-page="contact"] .page-hero .lead {
    font-size: 1rem;
  }
  body[data-page="contact"] .page-hero__media {
    aspect-ratio: 1.45;
    border-radius: 20px;
  }
  body[data-page="contact"] .contact-section {
    padding: 52px 0 72px;
  }
  body[data-page="contact"] .contact-grid {
    gap: 18px;
  }
  body[data-page="contact"] .contact-card,
  body[data-page="contact"] .form-panel {
    padding: 30px 24px;
    border-radius: 22px;
  }
  body[data-page="contact"] .contact-methods {
    margin-top: 26px;
  }
  body[data-page="contact"] .contact-methods > a {
    min-height: 70px;
    padding: 13px 0;
  }
  body[data-page="contact"] .form-row {
    grid-template-columns: 1fr;
    gap: 17px;
  }
}

/* Refined content pages: compact typography, denser sections, consistent cards */
body[data-page="home"] .hero {
  padding: clamp(64px, 6vw, 92px) 0 clamp(72px, 7vw, 104px);
}
body[data-page="home"] .hero__grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, 0.96fr);
  gap: clamp(46px, 6vw, 82px);
}
body[data-page="home"] .hero h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 5.6vw, 5.25rem);
  line-height: 0.94;
}
body[data-page="home"] .hero__lead {
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}
body[data-page="home"] .hero__actions {
  margin-top: 30px;
}
body[data-page="home"] .hero__facts {
  padding-top: 22px;
  margin-top: 28px;
}
body[data-page="home"] .hero__image {
  aspect-ratio: 1.08;
  background: url("/assets/images/fahrzeugtransport-krefeld.webp") center / cover no-repeat;
  border-radius: 28px;
}
body[data-page="home"] .hero__visual::before {
  inset: 0 32px 34px 0;
  border-radius: 34px;
}
body[data-page="home"] .hero__note {
  right: -10px;
  bottom: 20px;
  min-width: 230px;
  padding: 17px 20px;
}

body[data-page="home"] .section,
body[data-page="services"] .section,
body[data-page="about"] .section {
  padding: clamp(76px, 7vw, 104px) 0;
}
body[data-page="home"] .section-heading,
body[data-page="services"] .section-heading,
body[data-page="about"] .section-heading {
  margin-bottom: 42px;
}
body[data-page="home"] .service-card {
  min-height: 330px;
  padding: 32px;
}
body[data-page="home"] .service-card__number {
  margin-bottom: 42px;
}
body[data-page="home"] .service-card h3 {
  margin-top: 0;
}
body[data-page="home"] .service-card--accent {
  transform: translateY(-8px);
}
body[data-page="home"] .service-card--accent:hover {
  transform: translateY(-13px);
}
body[data-page="home"] .process-list > li > span {
  margin-bottom: 34px;
}

body[data-page="services"] .page-hero,
body[data-page="about"] .page-hero {
  padding: 34px 0 72px;
}
body[data-page="services"] .page-hero .breadcrumbs,
body[data-page="about"] .page-hero .breadcrumbs {
  margin-bottom: 34px;
}
body[data-page="services"] .page-hero__grid,
body[data-page="about"] .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: clamp(48px, 7vw, 92px);
}
body[data-page="services"] .page-hero h1,
body[data-page="about"] .page-hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 4.8vw, 4.55rem);
  line-height: 0.98;
}
body[data-page="services"] .page-hero .lead,
body[data-page="about"] .page-hero .lead {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.1rem;
}
body[data-page="services"] .page-hero__media,
body[data-page="about"] .page-hero__media {
  aspect-ratio: 1.48;
  border-radius: 24px;
}
body[data-page="services"] .page-hero__media {
  background: url("/assets/images/autobahn-fahrzeugtransport.webp") center / cover no-repeat;
}
body[data-page="about"] .page-hero__media {
  background: url("/assets/images/lichtspuren.webp") center / cover no-repeat;
}
body[data-page="services"] .feature-row,
body[data-page="about"] .story__grid,
body[data-page="about"] .split__grid--wide {
  gap: clamp(44px, 6vw, 78px);
}
body[data-page="services"] .feature-row h2,
body[data-page="about"] .split__copy h2,
body[data-page="about"] .story__copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.02;
}
body[data-page="services"] .feature-row__media,
body[data-page="about"] .story__media {
  aspect-ratio: 1.28;
  border-radius: 26px;
}
body[data-page="services"] #transport .feature-row__media {
  background: url("/assets/images/fahrzeugtransport-krefeld.webp") center / cover no-repeat;
}
body[data-page="services"] #sicherheit .feature-row__media {
  background: url("/assets/images/lichtspuren.webp") center / cover no-repeat;
}
body[data-page="about"] .story__media {
  background: url("/assets/images/fahrzeuge.webp") center / cover no-repeat;
}
body[data-page="services"] .pillars > div,
body[data-page="about"] .value-grid article {
  padding: 30px;
}
body[data-page="about"] .value-grid article > span {
  margin-bottom: 32px;
}
body[data-page="about"] .fact-panel {
  border-radius: 24px;
}
body[data-page="home"] .cta-band,
body[data-page="services"] .cta-band,
body[data-page="about"] .cta-band {
  padding: clamp(66px, 7vw, 92px) 0;
}

@media (max-width: 980px) {
  body[data-page="home"] .hero__grid,
  body[data-page="services"] .page-hero__grid,
  body[data-page="about"] .page-hero__grid {
    grid-template-columns: 1fr;
  }
  body[data-page="home"] .hero__image {
    aspect-ratio: 1.35;
  }
  body[data-page="services"] .page-hero__media,
  body[data-page="about"] .page-hero__media {
    max-width: none;
    aspect-ratio: 1.75;
  }
}

@media (max-width: 620px) {
  body[data-page="home"] .hero {
    padding: 48px 0 60px;
  }
  body[data-page="home"] .hero__grid {
    gap: 38px;
  }
  body[data-page="home"] .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.2rem);
    line-height: 0.94;
  }
  body[data-page="home"] .hero__image {
    aspect-ratio: 1.08;
  }
  body[data-page="home"] .hero__note {
    right: 12px;
    bottom: 12px;
    left: auto;
    min-width: 190px;
    padding: 14px 16px;
  }
  body[data-page="home"] .hero__note img {
    width: 134px;
  }
  body[data-page="home"] .service-card {
    min-height: 0;
    padding: 28px;
  }
  body[data-page="home"] .service-card__number {
    margin-bottom: 30px;
  }
  body[data-page="home"] .service-card--accent,
  body[data-page="home"] .service-card--accent:hover {
    transform: none;
  }
  body[data-page="services"] .page-hero,
  body[data-page="about"] .page-hero {
    padding: 24px 0 54px;
  }
  body[data-page="services"] .page-hero .breadcrumbs,
  body[data-page="about"] .page-hero .breadcrumbs {
    margin-bottom: 26px;
  }
  body[data-page="services"] .page-hero__grid,
  body[data-page="about"] .page-hero__grid {
    gap: 30px;
  }
  body[data-page="services"] .page-hero h1,
  body[data-page="about"] .page-hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.15rem);
    overflow-wrap: anywhere;
  }
  body[data-page="services"] .page-hero .lead,
  body[data-page="about"] .page-hero .lead {
    font-size: 1rem;
  }
  body[data-page="services"] .page-hero__media,
  body[data-page="about"] .page-hero__media {
    aspect-ratio: 1.45;
    border-radius: 20px;
  }
  body[data-page="services"] .feature-row__media,
  body[data-page="about"] .story__media {
    aspect-ratio: 1.12;
  }
}
