:root {
  --ink: #0d0d0d;
  --ink-soft: #1a1715;
  --red: #6f0b0b;
  --red-dark: #4d0707;
  --gold: #b8933b;
  --gold-soft: #f7f7f3;
  --paper: #ffffff;
  --muted: #625d57;
  --line: rgba(13, 13, 13, .14);
  --light-line: rgba(255, 255, 255, .16);
  --shadow: 0 22px 55px rgba(13, 13, 13, .14);
  --radius: 8px;
  --max: 1320px;
  --font: "Inter", "Segoe UI", Arial, ui-sans-serif, system-ui, sans-serif;
  --serif: "Inter", "Segoe UI", Arial, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding-top: 138px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  line-height: 1.62;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.inner {
  width: min(var(--max), calc(100vw - 32px));
  margin-inline: auto;
}

.top-contact {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #171717;
  color: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(184, 147, 59, .45);
  font-size: 14px;
  font-weight: 700;
}

.top-contact-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-contact a {
  color: inherit;
  line-height: 1.25;
}

.top-contact a:hover {
  color: #e0c06a;
}

.category-strip {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 80;
  width: 100%;
  max-width: 100vw;
  height: 38px;
  overflow: hidden;
  background: #3a1513;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.ticker {
  min-height: 38px;
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  padding: 0 18px;
  animation: tickerMove 42s linear infinite;
}

.category-strip:hover .ticker {
  animation-play-state: paused;
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker { animation: none; }
}

.site-header {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 70;
  background: #fff;
  border-bottom: 1px solid #ece8df;
  box-shadow: 0 8px 22px rgba(62, 20, 18, .06);
}

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

.header-logo img {
  width: 112px;
  max-width: 14vw;
  height: auto;
  object-fit: contain;
  display: block;
}

.header-price {
  min-width: 178px;
  line-height: 1.22;
  display: grid;
  gap: 5px;
}

.live-label {
  margin: 0 0 2px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.live-label::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37,211,102,.12);
  vertical-align: 1px;
}

.header-price div {
  display: grid;
  grid-template-columns: 74px auto auto;
  align-items: baseline;
  column-gap: 5px;
}

.header-price span {
  color: var(--ink);
  font-size: 14px;
}

.header-price strong {
  display: inline-block;
  font-size: 15px;
  color: var(--ink);
}

.header-price small {
  color: var(--muted);
  font-size: 14px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.header-nav a:hover { color: var(--gold); }

.header-nav a[href="#leistungen"] { order: 1; }
.header-nav a[href="#kurse"] { order: 2; }
.header-nav a[href="#ablauf"] { order: 3; }
.header-nav a[href="#mitbringen"] { order: 4; }
.header-nav a[href="#unternehmen"] { order: 5; }
.header-nav a[href="#kontakt"] { order: 6; }
.header-nav a[href="#gebiet"] { order: 7; }

.header-nav span {
  display: inline-block;
  margin-left: 4px;
  padding: 3px 7px;
  border-radius: 6px;
  background: #f3e8db;
  color: #b07f51;
  font-size: 14px;
  font-weight: 750;
}

.header-whatsapp {
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: #25d366;
  border: 1px solid #1ebe5d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.header-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.header-whatsapp:hover {
  background: #149647;
  border-color: #149647;
  color: #fff;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 96px;
  height: auto;
  display: block;
  background: #fff;
}

.logo-text {
  font-family: var(--serif);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.logo-text small {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,.62);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.primary { background: var(--gold); color: var(--ink); box-shadow: none; }
.primary:hover { background: #e2c45a; }
.gold { background: var(--gold); color: var(--ink); box-shadow: 0 12px 24px rgba(212,175,55,.28); }
.light { background: #fff; color: var(--ink); border-color: rgba(122,12,12,.24); }

.hero {
  min-height: auto;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #f8f8f6;
  color: var(--ink);
}

.intro {
  position: relative;
  overflow: hidden;
  padding: 58px 0 52px;
  background: #fff;
  border-bottom: 1px solid rgba(212,175,55,.28);
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) auto;
  gap: 30px;
  align-items: end;
}

.intro h1 {
  max-width: 760px;
  color: var(--ink);
}

.intro .lead {
  color: var(--muted);
}

.intro-actions {
  position: relative;
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.intro-watermark {
  position: absolute;
  right: -18px;
  bottom: -128px;
  z-index: -1;
  width: min(960px, 66vw);
  aspect-ratio: 1096 / 768;
  background: url("assets/raetia-watermark.png") center / contain no-repeat;
  opacity: .58;
  transform: rotate(-12deg);
  filter: grayscale(1) contrast(.98);
  mask-image: radial-gradient(ellipse at center, #000 0%, #000 62%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, #000 62%, transparent 90%);
  pointer-events: none;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(111,11,11,.16);
  border-radius: var(--radius);
  background: #fff;
  color: #302b27;
  font-size: 14px;
  font-weight: 650;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, #fff, #f8f8f6);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  z-index: -1;
  background: var(--gold);
}

.hero-grid {
  padding: 70px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 360px);
  align-items: center;
  gap: 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: currentColor;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head .eyebrow::after {
  content: "";
  width: 40px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark { color: var(--red); }
h1, h2, h3 { margin: 0; line-height: 1.18; letter-spacing: 0; }
h1, h2, h3 { font-family: var(--font); font-weight: 700; }
h1 { max-width: 760px; font-size: 42px; }
h2 { font-size: 30px; }
h3 { font-size: 19px; line-height: 1.3; }

.lead {
  max-width: 670px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  display: grid;
  gap: 12px;
}

.hero-logo {
  width: min(100%, 330px);
  margin: 0 auto 4px;
  padding: 10px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(212,175,55,.55);
  box-shadow: 0 16px 34px rgba(13,13,13,.1);
}

.crest-caption {
  margin: 2px 0 10px;
  color: var(--muted);
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
}

.hero-panel div {
  padding: 18px;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: var(--radius);
  background: #fff;
}

.hero-panel b {
  display: block;
  color: #f4d978;
  font-size: 24px;
  line-height: 1.1;
}

.hero-panel span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding-top: 88px;
  padding-bottom: 88px;
  border-top: 1px solid #ece8df;
}

section[id],
main[id],
#contactForm {
  scroll-margin-top: 180px;
}

.section::before {
  content: "";
  display: none;
  width: 72px;
  height: 2px;
  margin: -18px auto 42px;
  background: var(--gold);
  opacity: .9;
}

.soft {
  width: 100%;
  max-width: none;
  background: #faf9f6;
}

.section-head {
  max-width: 980px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head > p:last-child {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.services,
.advantages,
.steps,
.prices,
.info-grid {
  display: grid;
  gap: 18px;
}

.services { grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.advantages { grid-template-columns: repeat(3, 1fr); }
.steps { grid-template-columns: repeat(4, 1fr); }
.prices { grid-template-columns: repeat(2, 1fr); }
.info-grid { grid-template-columns: repeat(3, 1fr); }

.services article,
.advantages article,
.info-grid article,
.contact aside,
.contact form,
.impressum {
  border: 1px solid #e0ded8;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.services article {
  overflow: hidden;
  padding: 0;
  border-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color .22s ease, transform .22s ease;
}

.services article img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 4px solid var(--gold);
  filter: saturate(.72) contrast(1.06) brightness(.94);
  background: #111;
}

.services article div {
  min-height: 218px;
  padding: 22px 24px 24px;
  display: grid;
  grid-template-rows: minmax(52px, auto) 1fr auto;
  flex: 1;
  align-items: start;
}

.services article a {
  display: inline-block;
  margin-top: 0;
  padding: 10px 16px;
  border: 1px solid rgba(111, 11, 11, .32);
  border-radius: var(--radius);
  color: var(--red);
  background: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  align-self: flex-start;
}

.services article a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.info-grid article {
  min-height: 194px;
  padding: 24px;
  border-top: 3px solid var(--gold);
  transition: transform .22s ease, box-shadow .22s ease;
}

.services article:hover,
.info-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(122,12,12,.42);
}

.steps b {
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
}

.services h3 { font-family: var(--font); font-size: 21px; line-height: 1.25; }
.services p,
.info-grid p,
.advantages p,
.steps p,
.copy p,
.contact p,
.impressum p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.services p {
  margin-bottom: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.photo {
  width: 100%;
  min-height: 460px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.logo-showcase {
  display: grid;
  place-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(212,175,55,.32);
}

.logo-showcase img {
  width: min(100%, 480px);
  height: auto;
}

.checks {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.checks li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: #302b27;
  font-size: 17px;
  font-weight: 700;
}

.checks li::before {
  content: "+";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(122,12,12,.1);
  color: var(--red);
  font-weight: 900;
  line-height: 1;
}

.market {
  padding: 92px 0;
  background: #f7f5ef;
  color: var(--ink);
  border-top: 1px solid rgba(212,175,55,.28);
  border-bottom: 1px solid rgba(212,175,55,.28);
}

.market-head > p:last-child { color: var(--muted); }

.prices article {
  padding: 28px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--radius);
  background: #fff;
}

.price-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(212,175,55,.3);
}

.price-head h3 {
  font-family: var(--font);
  font-size: 24px;
}

.price-head span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.price-head span::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: #61d394;
  box-shadow: 0 0 0 5px rgba(97,211,148,.13);
}

.quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.quote div {
  padding: 18px;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: var(--radius);
  background: #f8f8f6;
}

.quote small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.quote strong {
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}

.prices p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.advantages article {
  padding: 28px;
}

.company-panel {
  max-width: 1060px;
}

.company-panel .section-head {
  margin-bottom: 28px;
}

.compact article {
  padding: 24px;
  min-height: 190px;
}

.advantages span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: rgba(212,175,55,.18);
  color: var(--red);
  font-size: 15px;
  font-weight: 800;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 960px;
  margin: 0 auto;
}

.map-card {
  max-width: 980px;
  margin: 0 auto 28px;
  border: 1px solid #e0ded8;
  background: #fff;
}

.map-card iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
  filter: saturate(.82) contrast(1.02);
}

.map-card a {
  display: block;
  padding: 16px 20px;
  color: var(--red);
  font-weight: 800;
  border-top: 1px solid #e0ded8;
}

.map-card a:hover {
  color: var(--gold);
}

.area-list span {
  padding: 11px 16px;
  border: 1px solid rgba(212,175,55,.34);
  border-radius: var(--radius);
  background: #fff;
  color: #302b27;
  font-size: 16px;
  font-weight: 750;
}

.steps article {
  padding: 26px 20px;
  border-top: 3px solid var(--gold);
}

.steps h3 { margin-top: 16px; }

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.contact aside,
.contact form {
  padding: 30px;
}

.contact aside {
  background: #faf9f6;
  border-color: rgba(111,11,11,.18);
}

.contact-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact aside h3 {
  font-family: var(--font);
  font-size: 30px;
}

.contact aside a,
.contact aside span {
  display: block;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 16px;
  font-weight: 800;
}

.contact aside a:hover {
  border-color: rgba(122,12,12,.4);
  color: var(--red);
}

.contact aside .contact-whatsapp,
.contact aside .contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  border-color: #1ebe5d;
  background: #25d366;
}

.contact aside .contact-whatsapp svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

.contact aside .contact-whatsapp:hover,
.contact aside .contact-phone:hover {
  color: #fff;
  border-color: #149647;
  background: #149647;
}

.contact aside .contact-phone {
  background: #128c4a;
  border-color: #128c4a;
}

form {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #302b27;
  font-size: 16px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(13,13,13,.18);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

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

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(122,12,12,.72);
  box-shadow: 0 0 0 4px rgba(122,12,12,.1);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.impressum {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.legal-muted {
  padding-top: 58px;
  padding-bottom: 58px;
}

.legal-page {
  background: #faf9f6;
  padding-top: 0;
}

.legal-standalone {
  padding-top: 54px;
  padding-bottom: 70px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 800;
}

.legal-muted .section-head {
  margin-bottom: 24px;
}

.legal-muted h2 {
  font-size: 22px;
}

.legal-muted .section-head > p:last-child,
.legal-muted .impressum p {
  font-size: 14px;
}

.impressum .address-lines {
  line-height: 1.85;
}

.impressum .address-lines a {
  color: var(--red);
  font-weight: 800;
}

.impressum h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.faq {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid rgba(212,175,55,.38);
}

.faq details {
  border-bottom: 1px solid rgba(212,175,55,.38);
  background: #fff;
}

.faq summary {
  cursor: pointer;
  padding: 22px 6px;
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-family: var(--font);
}

.faq details[open] summary::after { content: "-"; }

.faq p {
  max-width: 760px;
  margin: -6px 0 22px;
  color: var(--muted);
}

.faq .inline-phone {
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer {
  padding: 54px 0 30px;
  background: var(--ink);
  color: #fff;
}

.foot {
  display: grid;
  gap: 28px;
}

.foot > div {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.foot p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.68);
}

.foot nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.78);
  font-weight: 750;
}

.foot small {
  color: rgba(255,255,255,.54);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  html { scroll-padding-top: 260px; }
  body { padding-top: 220px; }
  body.legal-page { padding-top: 0; }
  section[id],
  main[id],
  #contactForm { scroll-margin-top: 260px; }
  .top-contact { position: fixed; top: 0; left: 0; right: 0; }
  .category-strip { position: fixed; top: 30px; left: 0; right: 0; }
  .site-header { top: 68px; }
  .site-header { position: fixed; left: 0; right: 0; }
  .main-header { min-height: auto; padding: 14px 0; flex-wrap: wrap; justify-content: center; gap: 14px 22px; }
  .header-logo img { max-width: none; width: 94px; }
  .header-price { min-width: auto; text-align: center; }
  .header-nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 10px 18px; font-size: 14px; }
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .intro-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 70px 0 74px; }
  .hero-panel { grid-template-columns: repeat(3, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .split,
  .contact,
  .impressum { grid-template-columns: 1fr; }
  .advantages,
  .steps,
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 316px; }
  body { padding-top: 292px; }
  body.legal-page { padding-top: 0; }
  section[id],
  main[id],
  #contactForm { scroll-margin-top: 316px; }
  .inner { width: min(362px, calc(100vw - 28px)); margin-left: 14px; margin-right: auto; }
  .top-contact { font-size: 13px; }
  .top-contact-inner {
    min-height: 50px;
    display: grid;
    gap: 2px;
    justify-content: stretch;
    align-content: center;
  }
  .top-contact a:last-child { color: #e0c06a; }
  .category-strip { top: 50px; }
  .ticker { gap: 22px; font-size: 13px; }
  .site-header { top: 88px; }
  .main-header { width: min(362px, calc(100vw - 28px)); padding: 10px 0 8px; gap: 8px 14px; justify-content: space-between; }
  .header-logo { order: 1; }
  .header-logo img { width: 72px; }
  .header-price { order: 3; width: 100%; text-align: left; margin-right: 0; }
  .header-price span, .header-price strong, .header-price small { font-size: 14px; }
  .live-label { font-size: 13px; }
  .header-nav {
    order: 4;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    overflow: visible;
    padding: 6px 2px 2px;
    font-size: 14px;
    scrollbar-width: none;
  }
  .header-nav::-webkit-scrollbar { display: none; }
  .header-nav a { flex: 0 0 auto; }
  .header-whatsapp { order: 2; min-height: 34px; padding: 7px 10px; font-size: 13px; }
  .header-whatsapp svg { width: 20px; height: 20px; }
  .hero::before {
    background: linear-gradient(180deg, rgba(13,13,13,1), rgba(122,12,12,.24));
  }
  .hero-grid { padding: 58px 0 64px; gap: 28px; }
  .intro {
    padding: 42px 0 40px;
    background: #fff;
  }
  .intro-grid,
  .intro-grid > div,
  .intro-actions,
  .section-head {
    width: min(362px, calc(100vw - 28px));
    max-width: 100%;
  }
  .trust-row { gap: 8px; margin-top: 18px; }
  .intro-watermark {
    display: none;
  }
  .trust-row span { width: 100%; font-size: 14px; }
  .eyebrow { font-size: 14px; margin-bottom: 12px; }
  .eyebrow::before,
  .section-head .eyebrow::after { width: 28px; }
  h1 { max-width: 100%; font-size: 28px; line-height: 1.18; overflow-wrap: break-word; }
  h2 { font-size: 24px; line-height: 1.2; }
  h3 { font-size: 18px; }
  .lead,
  .section-head > p:last-child { font-size: 15px; }
  .services h3 { font-size: 20px; }
  .price-head h3,
  .contact aside h3 { font-size: 23px; }
  .faq summary { font-size: 17px; }
  .actions .btn { width: 100%; }
  .hero-panel,
  .services,
  .prices,
  .advantages,
  .steps,
  .info-grid,
  .row,
  .quote { grid-template-columns: 1fr; }
  .section,
  .market { padding-top: 66px; padding-bottom: 66px; }
  .section-head { margin-bottom: 30px; }
  .services article img { height: 220px; }
  .services article div { min-height: auto; }
  .legal-muted { padding-top: 44px; padding-bottom: 44px; }
  .photo { height: 360px; }
  .contact aside,
  .contact form { padding: 22px; }
  .quote strong { white-space: normal; }
  .foot > div { display: grid; }
}
