:root {
  --ink: #14312e;
  --forest: #123b36;
  --forest-deep: #0a2a27;
  --mint: #dceae5;
  --mint-pale: #eef5f1;
  --paper: #f8f7f3;
  --white: #ffffff;
  --accent: #d8463f;
  --accent-dark: #b9322d;
  --line: rgba(20, 49, 46, 0.14);
  --muted: #5e706d;
  --shadow: 0 24px 70px rgba(15, 53, 48, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--forest);
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.utility-bar { background: var(--forest-deep); color: #dbe9e5; font-size: .82rem; }
.utility-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.live-status, .utility-links { display: flex; align-items: center; gap: 9px; }
.utility-links a:hover { color: var(--white); }
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fd39c;
  box-shadow: 0 0 0 4px rgba(127, 211, 156, .12);
}
.live-status.closed .status-dot { background: #e8a09b; box-shadow: 0 0 0 4px rgba(232, 160, 155, .12); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(248, 247, 243, .92);
  border-bottom: 1px solid rgba(20, 49, 46, .08);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(var(--max), calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand-logo-wide {
  width: 240px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  background: var(--white);
}
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { font-size: .92rem; font-weight: 600; }
.site-nav a:hover { color: var(--accent); }
.menu-toggle { display: none; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; }
.button-primary { background: var(--forest); color: var(--white); padding-inline: 22px; }
.button-primary:hover { background: var(--forest-deep); box-shadow: 0 12px 28px rgba(18, 59, 54, .18); }
.button-accent { background: var(--accent); color: var(--white); box-shadow: 0 12px 24px rgba(216, 70, 63, .2); }
.button-accent:hover { background: var(--accent-dark); }
.button-ghost { color: var(--forest); background: transparent; border-color: var(--line); }
.button-ghost:hover { background: var(--white); }
.button-light { background: var(--white); color: var(--forest); }
.button-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .35); }
.button-outline-light:hover { background: rgba(255, 255, 255, .09); }

.hero {
  width: min(var(--max), calc(100% - 48px));
  min-height: 660px;
  margin: 0 auto;
  padding: 78px 0 64px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 76px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: #a8d2c6; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; }
h1 { margin-bottom: 26px; font-size: clamp(3.4rem, 6.2vw, 5.75rem); line-height: .94; }
h1 em { color: var(--accent); font-weight: 400; }
.hero-text { max-width: 570px; margin-bottom: 34px; color: var(--muted); font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 24px; color: #536b67; font-size: .85rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 15px; height: 15px; color: var(--accent); stroke-width: 2.4; }
.hero-visual { position: relative; min-height: 0; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 30px -24px -24px 42px;
  z-index: -1;
  border-radius: var(--radius-lg);
  background: var(--mint);
}
.hero-visual img { width: 100%; height: auto; aspect-ratio: 1024 / 613; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hours-card {
  position: static;
  width: calc(100% - 48px);
  margin: 14px auto 0;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 15px;
  color: var(--white);
  background: rgba(10, 42, 39, .94);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(10, 42, 39, .24);
  backdrop-filter: blur(12px);
}
.hours-label { color: #a8d2c6; font-size: .73rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hours-card strong { font-size: 1rem; }
.hours-card a { width: fit-content; justify-self: end; color: #d8ebe5; font-size: .79rem; border-bottom: 1px solid rgba(216, 235, 229, .35); }

.quick-actions {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(23, 55, 50, .06);
  overflow: hidden;
}
.quick-actions > * {
  min-height: 116px;
  padding: 25px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
  transition: background .2s ease;
}
.quick-actions > *:last-child { border-right: 0; }
.quick-actions > *:hover { background: var(--mint-pale); }
.action-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--forest);
  background: var(--mint-pale);
  border-radius: 14px;
}
.action-icon svg { width: 24px; height: 24px; }
.quick-actions strong, .quick-actions small { display: block; }
.quick-actions strong { font-size: 1rem; }
.quick-actions small { margin-top: 2px; color: var(--muted); font-size: .78rem; }
.quick-actions .arrow { width: 19px; height: 19px; margin-left: auto; color: var(--accent); }

.offers-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 110px;
  padding: 38px 42px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 60px rgba(10, 42, 39, .16);
}
.offers-section::after {
  content: "";
  width: 260px;
  height: 260px;
  position: absolute;
  right: -120px;
  top: -150px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, .025), 0 0 0 84px rgba(255, 255, 255, .02);
  pointer-events: none;
}
.offers-seal {
  width: 92px;
  height: 92px;
  padding: 15px;
  display: grid;
  place-content: center;
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--accent);
  border-radius: 50%;
  transform: rotate(-5deg);
}
.offers-seal span { font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.offers-seal strong { font: 600 1.55rem/1 Georgia, serif; }
.offers-copy { max-width: 650px; position: relative; z-index: 1; }
.offers-copy .eyebrow { margin-bottom: 8px; }
.offers-copy h2 { margin: 0 0 8px; font-size: clamp(2rem, 3.3vw, 3.15rem); line-height: 1.05; }
.offers-copy > p:last-child { margin: 0; color: #c9dcd7; }
.offers-button { position: relative; z-index: 1; white-space: nowrap; }

.rezept-section, .services-section { padding: 110px max(24px, calc((100vw - var(--max)) / 2)); }
.rezept-section { background: var(--mint-pale); }
.section-heading { margin-bottom: 52px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.section-heading.compact { margin-bottom: 42px; }
.section-heading h2, .about-copy h2, .contact-intro h2 { margin-bottom: 0; font-size: clamp(2.45rem, 4.5vw, 4rem); line-height: 1.04; }
.section-heading > p { max-width: 500px; margin-bottom: 5px; color: var(--muted); font-size: 1.04rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  min-height: 340px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(20, 49, 46, .08);
  border-radius: var(--radius-md);
}
.step-card.featured { color: var(--white); background: var(--forest); }
.step-number { position: absolute; top: 24px; right: 26px; color: rgba(20, 49, 46, .32); font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.featured .step-number { color: rgba(255, 255, 255, .48); }
.step-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 42px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: #faeeeb;
  border-radius: 17px;
}
.featured .step-icon { color: var(--white); background: rgba(255, 255, 255, .1); }
.step-icon svg { width: 28px; height: 28px; }
.step-card h3 { margin-bottom: 10px; font: 600 1.45rem/1.15 Georgia, serif; }
.step-card p { margin-bottom: 20px; color: var(--muted); font-size: .93rem; }
.featured p { color: #d3e2de; }
.step-tag { width: fit-content; margin-top: auto; color: var(--forest); background: var(--mint-pale); padding: 6px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.featured .step-tag { color: #dcece7; background: rgba(255, 255, 255, .1); }
.text-link { width: fit-content; margin-top: auto; color: var(--accent); font-size: .88rem; font-weight: 800; border-bottom: 1px solid rgba(216, 70, 63, .28); }
.text-link.strong { margin-top: 14px; }
.rezept-banner {
  margin-top: 18px;
  padding: 30px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius-md);
}
.rezept-banner h3 { margin: 3px 0 0; font: 500 1.4rem/1.25 Georgia, serif; }
.mini-label { font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; opacity: .78; }

.services-section { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.services-grid article { padding: 26px; border-top: 1px solid var(--line); }
.service-icon { width: 46px; height: 46px; margin-bottom: 28px; display: grid; place-items: center; color: var(--forest); background: var(--mint); border-radius: 13px; }
.service-icon svg { width: 24px; height: 24px; }
.services-grid h3 { margin-bottom: 8px; font: 600 1.25rem/1.2 Georgia, serif; }
.services-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.customer-benefits { margin-top: 48px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.benefit-card {
  min-height: 255px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(23, 55, 50, .06);
}
.benefit-card-featured { color: var(--white); background: var(--forest); border-color: var(--forest); }
.benefit-discount {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--accent);
  border-radius: 50%;
  font: 600 2.1rem/1 Georgia, serif;
  transform: rotate(-5deg);
}
.benefit-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--forest);
  background: var(--mint);
  border-radius: 18px;
}
.benefit-icon svg { width: 32px; height: 32px; }
.benefit-content { align-self: center; }
.benefit-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.benefit-card-featured .benefit-kicker { color: #a8d2c6; }
.benefit-card h3 { margin-bottom: 10px; font: 600 1.55rem/1.15 Georgia, serif; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.benefit-card-featured p { color: #d3e2de; }

.language-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto 110px;
  padding: 48px 54px;
  display: grid;
  grid-template-columns: auto 1.05fr .95fr;
  align-items: center;
  gap: 36px;
  color: var(--white);
  background: var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.language-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #b9ded3;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
}
.language-icon svg { width: 34px; height: 34px; }
.language-section .eyebrow { margin-bottom: 10px; }
.language-section h2 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.05; }
.language-details > p { margin: 0 0 15px; color: #c9dcd7; }
.language-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.language-list li {
  padding: 6px 11px;
  color: var(--white);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}

.about-section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 120px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 86px;
}
.about-image { position: relative; }
.about-image img { width: 100%; height: 470px; object-fit: cover; border-radius: var(--radius-lg); filter: saturate(.8); }
.about-copy > p:not(.eyebrow) { color: var(--muted); }

.contact-section {
  padding: 100px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  color: var(--white);
  background: var(--forest-deep);
}
.contact-intro > p:not(.eyebrow) { max-width: 470px; color: #bcd0cb; }
.contact-buttons { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 11px; }
.contact-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 54px; }
.contact-details > div { padding-top: 17px; display: flex; flex-direction: column; align-items: flex-start; border-top: 1px solid rgba(255, 255, 255, .16); }
.detail-label { margin-bottom: 12px; color: #88ada4; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.contact-details address { font-style: normal; }
.visit-note { margin-top: 8px; color: #bcd0cb; font-size: .88rem; }
.contact-details a:hover { color: #a8d2c6; }
.opening-list { width: 100%; margin: 0; }
.opening-list div { display: flex; justify-content: space-between; gap: 18px; }
.opening-list dt, .opening-list dd { margin: 0; }
.opening-list dd { color: #d2e0dc; }
.notdienst-link { border-bottom: 1px solid rgba(255, 255, 255, .25); }

.site-footer {
  min-height: 130px;
  padding: 30px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #071f1d;
  color: #c5d5d1;
}
.footer-brand { display: grid; gap: 7px; }
.footer-logo { width: 218px; height: auto; background: var(--white); }
.footer-brand span { padding-left: 2px; font-size: .73rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; font-size: .76rem; }
.footer-links a:hover { color: var(--white); }

.mobile-dock { display: none; }

.rezept-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 38px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .28);
}
.rezept-dialog::backdrop { background: rgba(4, 25, 22, .72); backdrop-filter: blur(5px); }
.rezept-dialog h2 { margin-bottom: 26px; font-size: clamp(2rem, 6vw, 3rem); line-height: 1.03; }
.dialog-close { position: absolute; top: 16px; right: 18px; width: 40px; height: 40px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 50%; font-size: 1.5rem; cursor: pointer; }
.dialog-options { display: grid; gap: 12px; }
.dialog-options > div { padding: 18px; display: flex; gap: 15px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.dialog-options strong { display: block; margin-bottom: 4px; }
.dialog-options p { margin: 0; color: var(--muted); font-size: .87rem; }
.option-number { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; color: var(--white); background: var(--forest); border-radius: 9px; font-size: .73rem; font-weight: 800; }
.dialog-actions { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-shell { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 68px 0 100px; }
.legal-back { display: inline-flex; margin-bottom: 46px; color: var(--accent); font-weight: 700; }
.legal-shell h1 { margin-bottom: 36px; font-size: clamp(2.8rem, 8vw, 5rem); }
.legal-shell h2 { margin: 38px 0 12px; font-size: 1.55rem; }
.legal-shell h3 { margin: 28px 0 10px; font-size: 1.18rem; }
.legal-shell p, .legal-shell li { color: var(--muted); }
.legal-meta { margin-top: -20px; font-size: .92rem; }
.legal-shell strong { color: var(--ink); }
.legal-shell ul { padding-left: 1.3rem; }
.legal-shell a:not(.legal-back) { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { padding: 18px 20px; background: #fff3d8; border-left: 4px solid #d39926; border-radius: 8px; color: #6a5018 !important; }

@media (max-width: 1000px) {
  .site-nav { display: none; }
  .menu-toggle { width: 44px; height: 44px; padding: 10px; display: grid; align-content: center; gap: 5px; background: transparent; border: 0; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { width: 22px; height: 2px; display: block; background: var(--ink); border-radius: 2px; }
  .site-nav.open { position: absolute; top: 82px; left: 0; right: 0; padding: 24px; display: grid; gap: 6px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(20, 49, 46, .08); }
  .site-nav.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; gap: 52px; padding-top: 60px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 0; }
  .hero-visual img { height: auto; }
  .section-heading, .contact-section { grid-template-columns: 1fr; gap: 34px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:last-child { grid-column: span 2; min-height: 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .customer-benefits { grid-template-columns: 1fr; }
  .offers-section { grid-template-columns: auto 1fr; }
  .offers-button { width: fit-content; grid-column: 2; }
  .about-section { grid-template-columns: 1fr; gap: 60px; }
  .about-image { width: calc(100% - 30px); }
  .language-section { grid-template-columns: auto 1fr; }
  .language-details { grid-column: 2; }
  .contact-details { max-width: 760px; }
}

@media (max-width: 700px) {
  body { padding-bottom: 72px; }
  .utility-inner, .header-inner, .hero, .quick-actions, .offers-section, .about-section { width: min(100% - 32px, var(--max)); }
  .utility-inner { min-height: 34px; }
  .utility-links span, .utility-links a:last-child { display: none; }
  .header-inner { height: 72px; gap: 9px; }
  .brand-logo-wide { width: 198px; }
  .menu-toggle { margin-left: auto; }
  .site-nav.open { top: 72px; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding: 48px 0 42px; gap: 38px; }
  h1 { font-size: clamp(3.15rem, 15vw, 4.4rem); }
  .hero-text { font-size: 1.03rem; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 12px; }
  .hero-visual { min-height: 0; }
  .hero-visual::before { inset: 18px -8px -13px 20px; }
  .hero-visual img { height: auto; }
  .hours-card { width: calc(100% - 18px); margin-top: 11px; grid-template-columns: 1fr; row-gap: 2px; }
  .hours-card a { margin-top: 5px; justify-self: start; }
  .quick-actions { margin-bottom: 28px; grid-template-columns: 1fr; }
  .quick-actions > * { min-height: 92px; padding: 18px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-actions > *:last-child { border-bottom: 0; }
  .offers-section { margin-bottom: 72px; padding: 30px 24px; grid-template-columns: 1fr; gap: 22px; }
  .offers-seal { width: 78px; height: 78px; }
  .offers-seal strong { font-size: 1.35rem; }
  .offers-copy h2 { font-size: 2.35rem; }
  .offers-button { width: 100%; grid-column: auto; }
  .rezept-section, .services-section, .contact-section { padding: 78px 20px; }
  .section-heading { margin-bottom: 36px; grid-template-columns: 1fr; gap: 20px; }
  .section-heading h2, .about-copy h2, .contact-intro h2 { font-size: 2.55rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card, .step-card:last-child { min-height: 310px; grid-column: auto; }
  .rezept-banner { padding: 26px 24px; align-items: flex-start; flex-direction: column; }
  .rezept-banner .button { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid article { padding: 25px 4px; display: grid; grid-template-columns: 48px 1fr; column-gap: 17px; }
  .service-icon { grid-row: span 2; margin: 0; }
  .services-grid h3 { margin: 1px 0 4px; }
  .customer-benefits { margin-top: 34px; }
  .benefit-card { min-height: auto; padding: 26px 22px; gap: 18px; }
  .benefit-discount { width: 74px; height: 74px; font-size: 1.55rem; }
  .benefit-icon { width: 58px; height: 58px; border-radius: 16px; }
  .benefit-card h3 { font-size: 1.35rem; }
  .language-section { width: calc(100% - 32px); margin-bottom: 78px; padding: 32px 24px; grid-template-columns: 1fr; gap: 24px; }
  .language-details { grid-column: auto; }
  .language-icon { width: 58px; height: 58px; border-radius: 16px; }
  .about-section { padding: 40px 0 88px; }
  .about-image { width: calc(100% - 12px); }
  .about-image img { height: 340px; }
  .contact-details { grid-template-columns: 1fr; gap: 28px; }
  .contact-buttons .button { width: 100%; }
  .site-footer { padding-block: 40px; align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .mobile-dock {
    position: fixed;
    z-index: 90;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: var(--forest);
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 30px rgba(20, 49, 46, .1);
    backdrop-filter: blur(14px);
  }
  .mobile-dock > * { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px; color: var(--forest); background: transparent; border: 0; font-size: .68rem; font-weight: 700; }
  .mobile-dock svg { width: 22px; height: 22px; }
  .mobile-dock > *:nth-child(2) { border-inline: 1px solid var(--line); }
  .rezept-dialog { padding: 32px 22px 26px; }
  .dialog-actions .button { width: 100%; }
}

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