/* ==========================================================================
   Alima Derendingen – Stylesheet (Neuaufbau 2026)
   ========================================================================== */

/* ----- Schrift (lokal gehostet, keine Google-Server) ----- */
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ----- Design-Token ----- */
:root {
  --cream: #faf5ec;
  --sand: #f1e7d6;
  --card: #ffffff;
  --ink: #27211c;
  --muted: #6f645a;
  --line: #e7dcc9;
  --red: #c41e25;
  --red-dark: #97161c;
  --red-deep: #6f0f14;
  --gold: #f4b41a;
  --gold-soft: #fbe3ac;
  --green: #1f8a4c;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 12px 32px rgba(39, 33, 28, 0.1);
  --shadow-soft: 0 6px 18px rgba(39, 33, 28, 0.07);
  --font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--red);
  text-decoration: none;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Kopfzeile
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(39, 33, 28, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 76px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo img {
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: var(--sand);
  color: var(--red-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-select {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  cursor: pointer;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(196, 30, 37, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-phone:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-phone svg {
  width: 17px;
  height: 17px;
}

/* Mobile-Menü */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(
      1000px 500px at 85% -10%,
      rgba(244, 180, 26, 0.28),
      transparent 60%
    ),
    linear-gradient(160deg, var(--red-dark) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: 96px 24px 150px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.05) 1.5px,
    transparent 1.5px
  );
  background-size: 26px 26px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-chip {
  display: inline-block;
  background: var(--gold);
  color: #4a2c00;
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 30px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 36px;
}

.hero-status .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #9aa0a6;
  flex-shrink: 0;
}

.hero-status.is-open .dot {
  background: #3ddc84;
  box-shadow: 0 0 0 4px rgba(61, 220, 132, 0.25);
}

.hero-status.is-closing .dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(244, 180, 26, 0.25);
}

.hero-status.is-closed .dot {
  background: #ff6b60;
  box-shadow: 0 0 0 4px rgba(255, 107, 96, 0.22);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-size: 16.5px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: #4a2c00;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.btn-gold:hover {
  background: #ffc63a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ----- Vorteils-Karten (überlappen den Hero) ----- */
.usp {
  position: relative;
  z-index: 2;
  margin-top: -78px;
  padding: 0 24px;
}

.usp-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.usp-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.usp-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fdeeee;
  display: grid;
  place-items: center;
  color: var(--red);
}

.usp-icon svg {
  width: 27px;
  height: 27px;
}

.usp-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
}

.usp-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
}

/* ==========================================================================
   Abschnitte (allgemein)
   ========================================================================== */
.section {
  padding: 96px 0 0;
}

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

.overline {
  display: inline-block;
  color: var(--red);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 12px;
}

/* ==========================================================================
   Wochenaktion (Slideshow)
   ========================================================================== */
.slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.slider-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  background: var(--sand);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: var(--red);
  color: #fff;
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
}

.slider-arrow.prev {
  left: 16px;
}

.slider-arrow.next {
  right: 16px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
  list-style: none;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #d8cbb4;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.25s ease;
}

.slider-dots button.active {
  background: var(--red);
  width: 26px;
}

.ig-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  pointer-events: none;
}

.ig-badge svg {
  width: 15px;
  height: 15px;
  color: #d6249f;
}

.slider-note {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-top: 18px;
}

.slider-note a {
  font-weight: 700;
}

/* ==========================================================================
   Sortiment
   ========================================================================== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 34px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fdeeee;
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.info-card .icon svg {
  width: 30px;
  height: 30px;
}

.info-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.info-card p {
  color: var(--muted);
  font-size: 15.5px;
}

/* ==========================================================================
   Marken-Laufband
   ========================================================================== */
.brands-band {
  margin-top: 96px;
  padding: 44px 0;
  background: var(--sand);
  overflow: hidden;
}

.brands-band .band-label {
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}

.marquee-track img {
  height: 56px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.65;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.marquee-track img:hover {
  filter: none;
  opacity: 1;
}

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

/* ==========================================================================
   Öffnungszeiten
   ========================================================================== */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}

.status-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.status-card .status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
}

.status-card .dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #9aa0a6;
}

.status-card.is-open .dot {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(31, 138, 76, 0.15);
}
.status-card.is-open .status-pill {
  color: var(--green);
}

.status-card.is-closing .dot {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(244, 180, 26, 0.2);
}
.status-card.is-closing .status-pill {
  color: #a97407;
}

.status-card.is-closed .dot {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(196, 30, 37, 0.14);
}
.status-card.is-closed .status-pill {
  color: var(--red);
}

.status-card .status-today {
  color: var(--muted);
  font-size: 15.5px;
}

.hours-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 32px;
}

.hours-card table {
  width: 100%;
  border-collapse: collapse;
}

.hours-card td {
  padding: 12px 4px;
  font-size: 16px;
  border-bottom: 1px solid #f2ecdf;
}

.hours-card tr:last-child td {
  border-bottom: none;
}

.hours-card td:last-child {
  text-align: right;
  font-weight: 600;
}

.hours-card tr.today td {
  color: var(--red-dark);
  font-weight: 800;
}

.hours-card tr.today td:first-child::after {
  content: " •";
  color: var(--gold);
}

/* ==========================================================================
   Anfahrt & Parken
   ========================================================================== */
.route-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.route-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.address-card,
.parking-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 28px;
}

.address-card h3,
.parking-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.address-card p {
  color: var(--muted);
  font-size: 15.5px;
}

.address-card .route-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
}

.parking-card img {
  border-radius: 12px;
  margin: 14px 0 12px;
}

.parking-card p {
  color: var(--muted);
  font-size: 15.5px;
}

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-item .ci-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #fdeeee;
  color: var(--red);
  display: grid;
  place-items: center;
}

.contact-item.whatsapp .ci-icon {
  background: #e7f7ec;
  color: #128c4b;
}

.contact-item .ci-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item small {
  display: block;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-start;
}

.social-row a {
  transition: transform 0.2s ease;
}

.social-row a:hover {
  transform: translateY(-3px) scale(1.06);
}

.social-row img {
  width: 44px;
  height: 44px;
}

.form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
}

.form-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 37, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-card .btn-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
  border: none;
  border-radius: 999px;
  padding: 15px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.form-card .btn-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  background: #e7f7ec;
  color: #14663a;
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 16px;
}

.form-success.visible {
  display: block;
}

/* Honeypot – für Menschen unsichtbar */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ==========================================================================
   Fusszeile
   ========================================================================== */
.site-footer {
  margin-top: 110px;
  background: #241b17;
  color: #cfc4ba;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}

.footer-main img.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 18px;
}

.footer-main p {
  font-size: 15px;
  line-height: 1.65;
  max-width: 320px;
}

.footer-main h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-main ul {
  list-style: none;
}

.footer-main li {
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-main a {
  color: #cfc4ba;
  transition: color 0.2s ease;
}

.footer-main a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom-inner .spacer {
  margin-left: auto;
}

.footer-bottom a {
  color: #cfc4ba;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom .lang-select {
  background: transparent;
  color: #cfc4ba;
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-bottom .lang-select option {
  color: var(--ink);
}

/* ==========================================================================
   Cookie-Hinweis
   ========================================================================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 200;
  width: min(680px, calc(100vw - 32px));
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(39, 33, 28, 0.22);
  padding: 20px 24px;
  display: none;
  gap: 18px;
  align-items: center;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--muted);
  flex: 1;
}

.cookie-banner button {
  flex-shrink: 0;
  background: var(--ink);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
}

.cookie-banner button:hover {
  background: #000;
}

/* ==========================================================================
   Rechtsseiten
   ========================================================================== */
.legal-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 70px 24px 40px;
}

.legal-page h1 {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 34px;
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 38px 0 12px;
}

.legal-page h3 {
  font-size: 17.5px;
  font-weight: 700;
  margin: 24px 0 8px;
}

.legal-page p,
.legal-page address,
.legal-page li {
  color: #4d443c;
  font-size: 16px;
  font-style: normal;
}

.legal-page ul {
  padding-left: 22px;
  margin: 10px 0;
}

.legal-page li {
  margin-bottom: 8px;
}

.placeholder {
  background: var(--gold-soft);
  border-radius: 6px;
  padding: 1px 7px;
  font-weight: 600;
}

.legal-updated {
  margin-top: 42px;
  font-size: 14.5px;
  color: var(--muted);
}

.legal-back {
  display: inline-block;
  margin-top: 26px;
  font-weight: 700;
}

/* ==========================================================================
   Einblend-Animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}

/* ==========================================================================
   Responsiv
   ========================================================================== */
@media (max-width: 1020px) {
  .usp-grid,
  .cards-3 {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .usp-grid {
    margin: 0 auto;
  }

  .cards-3 {
    margin: 0 auto;
  }

  .route-grid,
  .contact-grid,
  .hours-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(39, 33, 28, 0.12);
    padding: 14px 20px 20px;
    display: none;
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 13px 16px;
    font-size: 17px;
  }

  .header-actions .btn-phone span {
    display: none;
  }

  .btn-phone {
    padding: 11px 13px;
  }

  .hero {
    padding: 72px 20px 140px;
  }

  .section {
    padding-top: 76px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .form-card {
    padding: 26px 22px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
}
