:root {
  color-scheme: light;
  --ink: #111412;
  --text: #292d2a;
  --muted: #626862;
  --line: #d9ded9;
  --paper: #ffffff;
  --soft: #f4f6f3;
  --yellow: #f7cd32;
  --yellow-soft: #fff3b0;
  --blue: #1267a5;
  --green: #147b4d;
  --red: #cf1e27;
  --dark: #171a18;
  --max-width: 1200px;
  --shadow-sm: 0 8px 24px rgba(17, 20, 18, 0.07);
  --shadow-md: 0 18px 48px rgba(17, 20, 18, 0.12);
  font-family: "Segoe UI Variable", Aptos, Inter, "Segoe UI", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(18, 103, 165, 0.32);
  outline-offset: 3px;
}

.wrap {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(17, 20, 18, 0.09);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(17, 20, 18, 0.04);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 158px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--yellow);
  color: #080808;
  box-shadow: 0 7px 18px rgba(17, 20, 18, 0.11);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-wrap {
  border-top: 1px solid rgba(17, 20, 18, 0.07);
}

.nav {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-block: 7px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 8px;
  padding: 8px 12px;
  color: #3a3a37;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  scroll-snap-align: start;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: #f1f3ef;
  color: #111;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: 580px;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  content: "";
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(19, 17, 10, 0.08) 0%, rgba(19, 17, 10, 0.4) 38%, rgba(14, 16, 14, 0.94) 100%);
  content: "";
}

.hero.kranken::after {
  background: linear-gradient(180deg, rgba(19, 17, 18, 0.08) 0%, rgba(24, 20, 21, 0.42) 36%, rgba(20, 20, 20, 0.96) 100%);
}

.hero-content {
  padding-block: 78px 48px;
}

.hero-inner {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #876f00;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section.dark .eyebrow {
  color: var(--yellow);
}

.theme-blue .eyebrow,
.hero.kranken .eyebrow {
  color: #ffdfe1;
}

.theme-red .header-call {
  background: var(--red);
  color: #fff;
}

.theme-red .quick-contact {
  background: var(--red);
}

.theme-red .quick-link {
  border-color: rgba(255, 255, 255, 0.42);
  background: #fff;
}

.theme-red .quick-grid {
  grid-template-columns: 1fr;
}

.theme-red .mobile-callbar a:first-child {
  background: var(--red);
  color: #fff;
}

.theme-red .button.primary {
  background: var(--red);
  color: #fff;
}

.theme-red .section.yellow {
  border-block: 1px solid #f0d9dc;
  background: #fff5f5;
}

.theme-red .section.yellow .eyebrow {
  color: #9f1820;
}

.theme-red ::selection {
  background: #ffd7da;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0;
  color: #fff;
  font-size: 42px;
  font-weight: 820;
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 790;
  line-height: 1.1;
  text-wrap: balance;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 780;
  line-height: 1.22;
  text-wrap: balance;
}

p {
  line-height: 1.65;
}

.lead {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(17, 20, 18, 0.1);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover,
.button:focus-visible {
  filter: brightness(0.96);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(17, 20, 18, 0.14);
}

.button.primary {
  background: var(--yellow);
  color: #090909;
}

.button.dark {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(17, 20, 18, 0.86);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button.green {
  background: var(--green);
  color: #fff;
}

.quick-contact {
  padding: 20px 0 18px;
  background: var(--dark);
  color: #fff;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.quick-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 4px solid var(--yellow);
  border-radius: 8px;
  padding: 13px 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 7px 20px rgba(17, 20, 18, 0.08);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.quick-link:hover,
.quick-link:focus-visible {
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 20, 18, 0.12);
  transform: translateY(-2px);
}

.quick-link span {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.quick-link strong {
  font-size: 19px;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

.quick-link em {
  display: block;
  margin-top: 2px;
  color: #525252;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.contact-email span {
  font-weight: 750;
}

.contact-email a {
  color: var(--yellow);
  font-weight: 850;
  text-underline-offset: 3px;
}

.section {
  padding-block: 64px;
}

.section.soft {
  background: var(--soft);
}

.section.yellow {
  background: var(--yellow);
}

.section.yellow .eyebrow {
  color: #5b4700;
}

.section.yellow .note {
  color: #54491f;
}

.section.dark {
  background: var(--dark);
  color: #fff;
}

.section.dark h2,
.section.dark h3 {
  color: #fff;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.about-copy {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.section-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-stack {
  display: grid;
  gap: 64px;
}

.service-row {
  display: grid;
  gap: 26px;
  align-items: center;
}

.service-row img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.service-copy {
  padding: 4px 2px;
}

.service-copy p {
  color: var(--muted);
}

.service-copy h2 {
  max-width: 620px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.image-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.image-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card .card-body {
  min-height: 154px;
  padding: 22px;
}

.image-card p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 15px;
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-card {
  padding: 22px;
}

.contact-card p {
  margin-bottom: 8px;
  color: var(--muted);
}

.phone-line {
  display: inline-flex;
  color: var(--ink);
  font-size: 24px;
  font-weight: 850;
  text-decoration: none;
}

.phone-line:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.partner-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.partner-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.partner-card .card-body {
  min-height: 142px;
  padding: 20px;
}

.partner-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-strip,
.order-layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

.feature-strip > div:first-child,
.order-layout > div:first-child {
  max-width: 650px;
}

.feature-photo {
  display: block;
  width: 100%;
  max-height: 560px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.delivery-visual {
  overflow: hidden;
  border: 1px solid rgba(17, 20, 18, 0.34);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.delivery-visual-head {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: var(--ink);
  color: #fff;
}

.delivery-visual-head span {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-visual-head strong {
  font-size: 24px;
  font-weight: 780;
  line-height: 1.15;
}

.delivery-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 17px 20px;
}

.delivery-steps li > span:last-child {
  display: grid;
  gap: 2px;
}

.delivery-steps strong,
.delivery-steps small {
  display: block;
}

.delivery-steps small {
  color: var(--muted);
  font-size: 13px;
}

.step-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 18px;
  font-weight: 850;
}

.delivery-visual-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--ink);
}

.delivery-price,
.delivery-visual-bottom a {
  display: grid;
  gap: 2px;
  padding: 17px 18px;
  background: var(--yellow-soft);
  color: var(--ink);
  text-decoration: none;
}

.delivery-visual-bottom a {
  background: var(--green);
  color: #fff;
}

.delivery-price small,
.delivery-visual-bottom a small {
  font-size: 12px;
  font-weight: 750;
}

.delivery-price strong,
.delivery-visual-bottom a strong {
  font-size: 23px;
  line-height: 1.1;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.price {
  padding: 22px;
  background: #fff;
}

.price.featured {
  border-color: #d2bd00;
  background: var(--yellow-soft);
}

.price strong {
  display: block;
  margin-bottom: 4px;
  font-size: 29px;
  font-weight: 850;
}

.price p {
  margin: 0;
  color: var(--muted);
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd1cc;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #5d6a61;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(247, 205, 50, 0.3);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.section.dark .note {
  color: rgba(255, 255, 255, 0.67);
}

.legal-hero {
  padding-block: 48px;
  background: var(--yellow);
  color: var(--ink);
}

.theme-red .legal-hero {
  background: var(--red);
  color: #fff;
}

.legal-hero .eyebrow {
  color: #5b4700;
}

.theme-red .legal-hero .eyebrow {
  color: #ffd6d9;
}

.legal-hero h1 {
  max-width: 880px;
  color: inherit;
  font-size: 29px;
  hyphens: auto;
  overflow-wrap: normal;
}

.legal-hero p:last-child {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: 18px;
}

.legal-layout {
  display: grid;
  gap: 34px;
  padding-block: 42px 72px;
}

.legal-toc {
  display: grid;
  gap: 2px;
  align-self: start;
  border-left: 3px solid var(--yellow);
  padding-left: 16px;
}

.theme-red .legal-toc {
  border-left-color: var(--red);
}

.legal-toc strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.legal-toc a {
  padding-block: 5px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content {
  min-width: 0;
  max-width: 860px;
}

.legal-content section {
  scroll-margin-top: 122px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
  margin-bottom: 30px;
}

.legal-content section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 13px;
  font-size: 28px;
}

.legal-content h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  line-height: 1.68;
}

.legal-content ul,
.legal-content ol {
  padding-left: 21px;
}

.legal-content a {
  overflow-wrap: anywhere;
  font-weight: 700;
  text-underline-offset: 3px;
}

.legal-content address {
  font-style: normal;
  line-height: 1.68;
}

.legal-note {
  border-left: 4px solid var(--yellow);
  padding: 15px 17px;
  background: var(--yellow-soft);
}

.theme-red .legal-note {
  border-left-color: var(--red);
  background: #fff0f1;
}

.legal-updated {
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 36px 0 100px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer::before {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: -36px;
  margin-bottom: 32px;
  background: var(--yellow);
  content: "";
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: #fff;
}

.mobile-callbar {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 7px max(7px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(7px, env(safe-area-inset-left));
  background: rgba(10, 12, 11, 0.96);
  box-shadow: 0 -10px 28px rgba(17, 20, 18, 0.22);
  backdrop-filter: blur(16px);
}

.mobile-callbar a {
  display: grid;
  place-items: center;
  min-height: 54px;
  border-radius: 8px;
  padding: 6px 4px;
  background: #222724;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.mobile-callbar a:first-child {
  background: var(--yellow);
  color: #080808;
}

.mobile-callbar small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
}

.mobile-callbar.single {
  grid-template-columns: 1fr;
}

#ueber-uns.section.yellow {
  border-block: 1px solid var(--line);
  background: #fff;
}

#ueber-uns .about-copy {
  text-align: left;
}

#ueber-uns .about-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
}

#fahrdienst.section.yellow {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

#fahrdienst.section.yellow::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(32vw, 440px);
  height: 5px;
  background: var(--yellow);
  content: "";
}

#fahrdienst h2 {
  color: #fff;
}

#fahrdienst p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

#fahrdienst .eyebrow {
  color: var(--yellow);
}

#fahrdienst .button.dark {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

#lieferdienst.section.yellow {
  border-block: 1px solid #dbe2dc;
  background: #edf2ee;
}

#lieferdienst.section.yellow .eyebrow {
  color: #42634e;
}

#preise.section.soft {
  background: #fff;
}

#bestellen.section {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.theme-red .quick-contact {
  background: var(--dark);
}

.theme-red .quick-link {
  border-color: rgba(255, 255, 255, 0.16);
  border-top-color: var(--red);
  background: #fff;
}

.theme-red .quick-link:hover,
.theme-red .quick-link:focus-visible {
  background: #fff;
}

.theme-red #leistungen.section {
  background: var(--soft);
}

.theme-red .image-card {
  border-top: 4px solid var(--red);
}

.theme-red .section.yellow {
  border-block: 0;
  background: var(--dark);
  color: #fff;
}

.theme-red .section.yellow h2 {
  color: #fff;
}

.theme-red .section.yellow p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.theme-red .section.yellow .eyebrow {
  color: #ff9ca2;
}

.theme-red .section.yellow .button.dark {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.theme-red #ablauf.section.soft {
  background: #fff;
}

.theme-red #kontakt.section {
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.theme-red .footer::before {
  background: var(--red);
}

@media (min-width: 640px) {
  .wrap {
    width: min(100% - 48px, var(--max-width));
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .quick-grid,
  .grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-red .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-visual-bottom {
    grid-template-columns: 0.8fr 1.2fr;
  }

  label.full {
    grid-column: 1 / -1;
  }

  .footer-inner {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-inner {
    border-left: 4px solid var(--yellow);
    padding-left: 26px;
  }

  .theme-red .hero-inner {
    border-left-color: var(--red);
  }
}

@media (min-width: 900px) {
  html {
    scroll-padding-top: 74px;
  }

  .header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
  }

  .header-main {
    min-height: auto;
  }

  .brand-logo {
    width: 214px;
    height: 62px;
  }

  .header-call {
    display: none;
  }

  .nav-wrap {
    border-top: 0;
  }

  .nav {
    overflow: visible;
    padding: 0;
  }

  .nav a {
    min-height: 42px;
    padding-inline: 15px;
  }

  .hero {
    min-height: 660px;
  }

  .hero::before {
    background-position: center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(15, 17, 15, 0.94) 0%, rgba(17, 18, 15, 0.65) 47%, rgba(20, 18, 12, 0.12) 84%);
  }

  .hero.kranken::after {
    background: linear-gradient(90deg, rgba(19, 20, 20, 0.96) 0%, rgba(37, 25, 27, 0.68) 48%, rgba(28, 19, 20, 0.12) 84%);
  }

  .hero-content {
    padding-block: 126px 92px;
  }

  h1 {
    font-size: 68px;
  }

  h2 {
    font-size: 44px;
  }

  .lead {
    font-size: 21px;
  }

  .quick-contact {
    padding-block: 22px 20px;
  }

  .quick-grid,
  .grid.three,
  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid.services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-row {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 72px;
  }

  .service-copy {
    border-left: 3px solid var(--yellow);
    padding: 10px 0 10px 30px;
  }

  .service-row.reverse .service-copy {
    border-right: 3px solid var(--yellow);
    border-left: 0;
    padding: 10px 30px 10px 0;
  }

  #ueber-uns .about-copy {
    display: grid;
    max-width: var(--max-width);
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    column-gap: 84px;
    align-items: end;
  }

  #ueber-uns .about-copy .eyebrow,
  #ueber-uns .about-copy h2 {
    grid-column: 1;
  }

  #ueber-uns .about-copy p:last-child {
    grid-row: 1 / 3;
    grid-column: 2;
    margin: 0;
    font-size: 20px;
  }

  .service-row.reverse img {
    order: 2;
  }

  .service-row.reverse .service-copy {
    order: 1;
  }

  .section {
    padding-block: 92px;
  }

  .legal-hero {
    padding-block: 72px;
  }

  .legal-hero h1 {
    font-size: 58px;
  }

  .legal-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 64px;
    padding-block: 64px 96px;
  }

  .legal-toc {
    position: sticky;
    top: 102px;
  }

  .legal-content section {
    scroll-margin-top: 96px;
  }

  .feature-strip,
  .order-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 64px;
    align-items: center;
  }

  .order-layout {
    align-items: start;
  }

  .footer {
    padding-bottom: 36px;
  }

  .mobile-callbar {
    display: none;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(100% - 24px, var(--max-width));
  }

  .brand-logo {
    width: 142px;
  }

  .header-call {
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 570px;
  }

  .hero-content {
    padding-block: 68px 40px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  .lead {
    font-size: 17px;
  }

  .quick-link {
    grid-template-columns: minmax(0, 1fr);
  }

  .quick-link strong {
    font-size: 18px;
  }

  .section {
    padding-block: 56px;
  }

  .mobile-callbar a {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
