/* =========================================================
   Mietwerkstatt GSG – Theme
   Farben: Navy #1B1464 · Orange #FF931E
   ========================================================= */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #1b1464;
  --navy-2: #241a80;
  --navy-deep: #120d47;
  --orange: #ff931e;
  --orange-dark: #e87e05;
  --ink: #15162b;
  --body: #3a3c52;
  --muted: #6b6d84;
  --line: #e7e8f0;
  --bg: #ffffff;
  --bg-soft: #f4f5fa;
  --bg-alt: #eef0f8;
  --white: #ffffff;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(21, 22, 43, .06);
  --shadow: 0 12px 30px rgba(21, 22, 43, .10);
  --shadow-lg: 0 24px 60px rgba(21, 22, 43, .18);
  --container: 1160px;
  --header-h: 96px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition: .22s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
h1, h2, h3, h4, h5, h6 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin: 0 0 .6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: .95rem 1.8rem; font-size: 1.05rem; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); color: #fff; box-shadow: var(--shadow); }
.btn-accent { background: var(--orange); color: #1a1200; box-shadow: 0 8px 20px rgba(255, 147, 30, .35); }
.btn-accent:hover { background: var(--orange-dark); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---------- Header (transparent over hero, solid on scroll) ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* dezenter Scrim, damit Logo/Navi über hellen Bildstellen erkennbar sind */
  background: linear-gradient(180deg, rgba(9, 7, 30, .55) 0%, rgba(9, 7, 30, .18) 60%, transparent 100%);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(9, 7, 30, .35);
}
.site-header.scrolled .header-inner { min-height: 76px; }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; justify-self: start; }
.brand img { height: 78px; width: auto; transition: height var(--transition); }
.scrolled .brand img { height: 62px; }
.main-nav { justify-self: center; }
.main-nav ul { list-style: none; display: flex; gap: .25rem; margin: 0; padding: 0; }
.main-nav a {
  display: block;
  padding: .5rem .85rem;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  font-size: .98rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}
.main-nav a:hover { background: rgba(255, 255, 255, .14); }
.main-nav a.active { color: #fff; }
.main-nav a.active::after {
  content: "";
  display: block;
  height: 3px;
  width: 22px;
  margin: 2px auto 0;
  background: var(--orange);
  border-radius: 3px;
}
.btn-phone {
  background: var(--orange);
  color: #1a1200;
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 6px 16px rgba(255, 147, 30, .35);
  justify-self: end;
}
.btn-phone:hover { background: #fff; color: var(--navy); transform: translateY(-1px); }
.phone-ico { font-size: 1.05rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  justify-self: end;
}
.nav-toggle span { display: block; height: 2px; width: 24px; margin: 0 auto; background: #fff; border-radius: 2px; transition: var(--transition); box-shadow: 0 1px 3px rgba(0, 0, 0, .35); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  opacity: .62;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(255, 147, 30, .18), transparent 60%),
    linear-gradient(160deg, rgba(18, 13, 71, .68) 0%, rgba(18, 13, 71, .46) 50%, rgba(18, 13, 71, .8) 100%);
}
.hero-inner {
  position: relative;
  text-align: center;
  padding: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem)) 24px clamp(3rem, 7vw, 5.5rem);
  max-width: 860px;
}
.hero-logo { height: clamp(60px, 12vw, 96px); width: auto; margin: 0 auto 1.6rem; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 700;
  font-size: .85rem;
  color: var(--orange);
  margin: 0 0 .4rem;
}
.hero-title {
  color: #fff;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 1;
  margin: 0 0 .5rem;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.hero-tagline { font-size: clamp(1.1rem, 2.5vw, 1.5rem); color: rgba(255, 255, 255, .9); margin: 0 0 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Infobar ---------- */
.infobar { background: var(--navy); color: #fff; }
.infobar-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.info-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.4rem 1rem;
  position: relative;
}
.info-item + .info-item::before {
  content: "";
  position: absolute;
  left: 0; top: 22%;
  height: 56%;
  width: 1px;
  background: rgba(255, 255, 255, .16);
}
.info-ico { font-size: 1.5rem; line-height: 1; }
.info-label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; color: var(--orange); font-weight: 700; }
.info-item strong { font-weight: 600; font-size: .98rem; }
.info-item a { color: #fff; }
.info-item a:hover { color: var(--orange); }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 760px; margin: 0 auto 2.6rem; text-align: center; }
.section-head .lead { font-size: 1.15rem; color: var(--muted); }
.lead { font-size: 1.15rem; }

/* ---------- Feature Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  background: var(--orange);
  border-radius: 3px;
  margin-bottom: 1.1rem;
}
.card h3 { color: var(--navy); margin-bottom: .5rem; }
.card p { color: var(--body); margin-bottom: 1.2rem; }
.card .card-link { margin-top: auto; font-weight: 700; color: var(--orange-dark); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }

/* ---------- Price Cards (Home) ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 2.2rem; }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.price-label { display: block; font-weight: 600; color: var(--muted); margin-bottom: .6rem; }
.price-value { display: block; font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-unit { display: block; font-size: .9rem; color: var(--muted); margin-top: .3rem; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2.4rem, 5vw, 3.4rem) 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: .3rem; }
.cta-band p { color: rgba(255, 255, 255, .85); margin: 0; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Page Head (inner pages, full-width header image) ---------- */
.page-head {
  background: linear-gradient(120deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-2) 100%);
  color: #fff;
  padding: calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem)) 0 clamp(2.2rem, 5vw, 3.4rem);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.page-head.has-image {
  background-image: var(--head-img);
  background-size: cover;
  background-position: center;
}
.page-head-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(18, 13, 71, .82) 0%, rgba(18, 13, 71, .5) 55%, rgba(18, 13, 71, .28) 100%);
}
.page-head .container { position: relative; z-index: 1; width: 100%; }
.page-head::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--orange);
  z-index: 2;
}
.page-head h1 { color: #fff; margin: 0; }
.page-head .eyebrow { color: var(--orange); }

/* ---------- Prose / Page Content ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 2.2rem; }
.prose h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
  margin-top: .6rem;
}
.prose h3 { margin-top: 1.8rem; color: var(--navy); }
.prose h4, .prose h5 { color: var(--navy); margin-top: 1.4rem; margin-bottom: .3rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2rem; }
.prose li { margin-bottom: .4rem; }
.prose a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(27, 20, 100, .3); }
.prose a:hover { text-decoration-color: var(--orange); }
.prose blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.4rem;
  border-left: 4px solid var(--orange);
  background: var(--bg-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink);
}

/* Einzelne Inhaltsbilder */
.page-content p > img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; }

/* Galerie (per JS aus aufeinanderfolgenden Bildern gebaut) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.6rem 0;
}
.gallery-item {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.gallery-item button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.gallery-item figcaption {
  padding: .7rem 1rem;
  font-size: .9rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- Service-Seite: Leistungen als Chips ---------- */
.page-service .prose ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: .8rem;
}
.page-service .prose li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: .7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .85rem 1.1rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition);
}
.page-service .prose li:hover { transform: translateY(-2px); border-color: var(--orange); }
.page-service .prose li::before {
  content: "✓";
  flex: none;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: rgba(255, 147, 30, .15);
  color: var(--orange-dark);
  font-weight: 800;
  border-radius: 50%;
}
.page-service .lift-spec {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--navy);
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  margin: .3rem 0 1rem;
}

/* ---------- Map ---------- */
.map-section { padding: 0 0 clamp(3rem, 6vw, 4.5rem); }
.map-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 1.4rem;
}
.map-head h2 { margin: 0; }
.map-wrap { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 440px; border: 0; filter: saturate(1.05); }
.map-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .15rem;
  max-width: min(80%, 320px);
}
.map-card strong { color: var(--navy); }
.map-card span { color: var(--body); font-size: .95rem; }
.map-card a { font-weight: 700; color: var(--orange-dark); }

/* Tabellen (z. B. Preise) */
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.prose th, .prose td { padding: .85rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.prose thead th { background: var(--navy); color: #fff; font-weight: 700; }
.prose tbody tr:nth-child(even) { background: var(--bg-soft); }
.prose td:last-child { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* Eingebettete Karte / iframes */
.page-content iframe {
  width: 100%;
  min-height: 380px;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin: 1.2rem 0;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, .78); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: clamp(2.6rem, 5vw, 3.6rem) 24px;
}
.footer-logo { height: 54px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255, 255, 255, .6); max-width: 240px; }
.footer-col h3 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.site-footer address { font-style: normal; line-height: 1.9; }
.site-footer a { color: rgba(255, 255, 255, .8); }
.site-footer a:hover { color: var(--orange); }
.footer-nav, .legal-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: .5rem; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 24px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: .9rem; color: rgba(255, 255, 255, .55); }
.legal-nav { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.legal-nav a { font-size: .9rem; }

/* ---------- Lightbox ---------- */
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(9, 7, 30, .93);
}
.lightbox.open { display: flex; }
.lightbox-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .8rem; max-width: 100%; }
.lightbox-figure img { max-width: 90vw; max-height: 80vh; width: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-figure figcaption { color: rgba(255, 255, 255, .85); font-size: .95rem; text-align: center; }
.lightbox-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 48px; height: 48px;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.lightbox-close:hover { background: var(--orange); color: #1a1200; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-nav:hover { background: var(--orange); color: #1a1200; }
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }
.lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .8);
  font-size: .9rem;
  letter-spacing: .05em;
}
@media (max-width: 560px) {
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.8rem; }
  .lightbox-nav.prev { left: 6px; }
  .lightbox-nav.next { right: 6px; }
  .lightbox-figure img { max-height: 74vh; }
}

/* ---------- Karten-Platzhalter (Consent) ---------- */
.map-wrap { background: var(--bg-alt); min-height: 200px; }
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2.5rem 1.5rem;
  min-height: 440px;
}
.map-placeholder p { max-width: 460px; color: var(--body); margin: 0; }
.map-wrap.map-loaded { min-height: 0; }

/* ---------- Cookie-Banner ---------- */
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn-ghost-dark:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .85);
  box-shadow: 0 -8px 30px rgba(9, 7, 30, .4);
  border-top: 3px solid var(--orange);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1 1 340px; }
.cookie-text strong { color: #fff; display: block; margin-bottom: .2rem; }
.cookie-text p { margin: 0; font-size: .92rem; }
.cookie-text a { color: var(--orange); font-weight: 600; }
.cookie-actions { display: flex; gap: .7rem; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .infobar-inner { grid-template-columns: 1fr; }
  .info-item + .info-item::before { display: none; }
  .info-item { border-top: 1px solid rgba(255, 255, 255, .12); }
  .info-item:first-child { border-top: 0; }
}

@media (max-width: 820px) {
  :root { --header-h: 76px; }
  .btn-phone { justify-self: center; }        /* Anruf-Button mittig */
  .brand img, .scrolled .brand img { height: 58px; }
  .site-header.scrolled .header-inner { min-height: var(--header-h); }
  .nav-toggle { display: flex; justify-self: end; }  /* Menü dezent, ganz rechts */
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    margin-left: 0;
  }
  body.nav-open .main-nav { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav ul { flex-direction: column; padding: .6rem 24px 1rem; gap: 0; }
  .main-nav a { padding: .85rem .4rem; border-bottom: 1px solid var(--line); color: var(--ink); text-shadow: none; }
  .main-nav a:hover { background: var(--bg-soft); }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { color: var(--orange-dark); }
  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); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .6rem; }
  .page-head { min-height: 260px; }
  .cta-inner { flex-direction: column; align-items: center; text-align: center; }
  .cta-actions { justify-content: center; width: 100%; }
  .cta-actions .btn { flex: 1 1 auto; justify-content: center; }
  .map-wrap iframe { height: 340px; }
  .map-placeholder { min-height: 300px; padding: 2rem 1.2rem; }
  .map-card { position: static; max-width: none; margin-top: -1px; border-radius: 0; box-shadow: none; }
  .cookie-inner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1 1 auto; justify-content: center; }
}
