:root {
  --navy: #0c2d4f;
  --navy-deep: #08223c;
  --blue: #2f79bd;
  --cyan: #66c6e8;
  --ice: #f4fbff;
  --paper: #ffffff;
  --ink: #102033;
  --muted: #5f7188;
  --line: rgba(12, 45, 79, .14);
  --glass: rgba(255, 255, 255, .72);
  --glass-strong: rgba(255, 255, 255, .88);
  --shadow: 0 22px 60px rgba(12, 45, 79, .16);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
  --header-height: 86px;
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  position: relative;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(102, 198, 232, .42), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(47, 121, 189, .16), transparent 34%),
    linear-gradient(135deg, #eef8ff 0%, #ffffff 42%, #eff8ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 45, 79, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 45, 79, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 78%);
  z-index: -2;
}

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

main,
section,
.site-header,
.site-footer {
  max-width: 100%;
}

.hero-grid,
.split-grid,
.detail-grid,
.directions-grid,
.service-grid,
.footer-grid,
.content-panel,
.hero-copy {
  min-width: 0;
}

.content-panel,
.hero-copy,
.service-body,
.footer-links {
  overflow-wrap: anywhere;
}

a { color: inherit; }

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.narrow { max-width: 920px; }

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .86rem 1.18rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(47, 121, 189, .34); outline-offset: 3px; }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #124b80);
  box-shadow: 0 16px 34px rgba(12, 45, 79, .24);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(12, 45, 79, .18);
}

.btn.full { width: 100%; }

.text-link {
  color: var(--navy);
  font-weight: 760;
  text-underline-offset: 5px;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 28px), 1240px);
  height: var(--header-height);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .78rem .9rem .78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 18px 50px rgba(12, 45, 79, .13);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 38px rgba(12, 45, 79, .14);
}

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

.brand img {
  height: 54px;
  width: auto;
  max-width: min(520px, 46vw);
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
  white-space: nowrap;
}

.primary-nav a {
  text-decoration: none;
  padding: .72rem .86rem;
  border-radius: 999px;
  color: var(--navy-deep);
  font-weight: 680;
  font-size: .96rem;
  transition: background-color .22s ease, color .22s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active { background: rgba(12, 45, 79, .08); }

.primary-nav .nav-call {
  color: #fff;
  background: var(--navy);
  margin-left: .3rem;
  box-shadow: 0 12px 24px rgba(12, 45, 79, .2);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--navy);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}

.hero {
  position: relative;
  padding: 132px 0 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: .78;
  z-index: -1;
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-one {
  width: 400px;
  height: 400px;
  top: 120px;
  left: -120px;
  background: radial-gradient(circle, rgba(102,198,232,.38), transparent 70%);
}

.orb-two {
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: 0;
  background: radial-gradient(circle, rgba(47,121,189,.23), transparent 68%);
  animation-delay: -3s;
}

@keyframes floatOrb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(18px, -16px, 0) scale(1.08); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .88fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.hero-copy {
  padding: clamp(28px, 5vw, 54px);
}

.hero-copy h1 {
  margin: 0 0 .7rem;
  color: var(--navy-deep);
  font-size: clamp(2.55rem, 7vw, 5.2rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.hero-copy h2 {
  margin: 1.1rem 0 .35rem;
  font-size: clamp(1.08rem, 2.3vw, 1.55rem);
  color: var(--navy);
}

.hero-copy p {
  margin: .8rem 0;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.48;
}

.hero-copy p:first-of-type {
  color: var(--navy);
  font-size: clamp(1.38rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.hero-copy strong { color: var(--navy-deep); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.35rem;
}

.hero-portrait {
  position: relative;
  min-height: 520px;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,34,60,.25), transparent 48%);
}

.portrait-img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: 56% center;
}

.portrait-glass {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: rgba(255,255,255,.74);
}

.portrait-glass span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 760;
}

.portrait-glass strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-top: .25rem;
}

.section { padding: 76px 0; }

.split-grid,
.detail-grid,
.directions-grid {
  display: grid;
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.split-grid { grid-template-columns: minmax(0, .98fr) minmax(320px, .88fr); }
.detail-grid { grid-template-columns: minmax(0, 1fr) 330px; }
.detail-grid.reverse { grid-template-columns: 420px minmax(0, 1fr); }
.directions-grid { grid-template-columns: minmax(0, .78fr) minmax(380px, 1fr); align-items: stretch; }
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

.content-panel {
  padding: clamp(24px, 4vw, 42px);
}

.content-panel h2,
.section-heading h2 {
  margin: 0 0 1rem;
  color: var(--navy-deep);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.content-panel h3 {
  margin: 1.3rem 0 .55rem;
  color: var(--navy);
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-panel p,
.content-panel li {
  color: #21364d;
  font-size: 1.03rem;
  line-height: 1.72;
}

.content-panel ul,
.content-panel ol {
  padding-left: 1.2rem;
}

.content-panel li { margin: .42rem 0; }

.content-panel a { color: var(--navy); font-weight: 720; }

.eyebrow,
.privacy-kicker {
  display: inline-block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 820;
  margin-bottom: .55rem;
}

.image-panel,
.parking-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 360px;
}

.wide-image,
.parking-image,
.band-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-image { min-height: 410px; }
.parking-image { min-height: 100%; }

.section-heading { max-width: 790px; margin-bottom: 28px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(12,45,79,.2);
}

.service-image { height: 190px; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 24px; }
.service-body h3 { margin: 0 0 .75rem; color: var(--navy-deep); font-size: 1.24rem; }
.service-body p { color: var(--muted); line-height: 1.58; }

.sticky-contact,
.darzt-callout {
  padding: 26px;
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.sticky-contact h3,
.darzt-callout h3 { margin: 0 0 .7rem; color: var(--navy-deep); font-size: 1.65rem; }
.sticky-contact p,
.darzt-callout p { color: var(--muted); line-height: 1.65; }

.darzt-callout {
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(239,248,255,.82)),
    radial-gradient(circle at 80% 0%, rgba(102,198,232,.38), transparent 40%);
}

.visual-band { padding: 18px 0; }
.visual-band .container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.band-image { height: clamp(230px, 34vw, 390px); }

.timeline-panel p strong {
  color: var(--navy);
}

.directions-section {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.44), transparent);
}

.parking-panel { min-height: 420px; }

.legal-section { padding-top: 38px; padding-bottom: 38px; }
.legal-section .content-panel h2 { font-size: clamp(1.55rem, 2.7vw, 2.3rem); }
.legal-section .content-panel { background: rgba(255,255,255,.62); }

.site-footer {
  padding: 40px 0 52px;
  color: var(--navy-deep);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.site-footer p { margin: .35rem 0 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1rem; justify-content: flex-end; }
.footer-links a { color: var(--navy); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }

.privacy-overlay,
.vacation-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(230, 243, 250, .58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity .24s ease, visibility .24s ease;
}

.vacation-overlay { z-index: 110; }
.admin-vacation-preview { z-index: 200; }

.privacy-overlay.is-hidden,
.vacation-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.privacy-card,
.vacation-card {
  width: min(560px, 100%);
  padding: clamp(24px, 5vw, 38px);
  text-align: center;
  animation: modalIn .42s cubic-bezier(.2,.8,.2,1) both;
}

.vacation-card {
  width: min(680px, 100%);
  text-align: left;
}

.vacation-content h2,
.privacy-card h2 {
  margin: 0 0 .75rem;
  color: var(--navy-deep);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  letter-spacing: -.035em;
}

.privacy-card p,
.vacation-content p,
.vacation-content li { color: #2c4259; line-height: 1.62; margin-bottom: 1.25rem; }
.vacation-content h3 { margin: 1rem 0 .55rem; color: var(--navy); font-size: 1.3rem; }
.vacation-content ul,
.vacation-content ol { padding-left: 1.2rem; }
.vacation-card .btn { margin-top: .25rem; }

@keyframes modalIn {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

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

.install-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.install-card {
  width: min(620px, 100%);
  padding: 36px;
  text-align: center;
}

.install-card img { margin-inline: auto; }
.install-card h1 { color: var(--navy-deep); margin-bottom: .6rem; }
.install-card code { background: rgba(12,45,79,.08); padding: .15rem .32rem; border-radius: 6px; }
.install-form { display: grid; gap: 1rem; text-align: left; margin-top: 1.4rem; }
.install-form label { display: grid; gap: .4rem; color: var(--navy); font-weight: 760; }
.install-form input,
.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(12,45,79,.18);
  border-radius: 16px;
  padding: .9rem 1rem;
  font: inherit;
  background: rgba(255,255,255,.78);
}
.form-error { color: #8a1f1f; background: rgba(255, 221, 221, .75); padding: .9rem 1rem; border-radius: 14px; }
.form-success { color: #15572b; background: rgba(220, 249, 229, .8); padding: .9rem 1rem; border-radius: 14px; }

@media (max-width: 1040px) {
  :root { --header-height: 76px; }
  .brand img { height: 46px; max-width: 55vw; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: .2rem;
    padding: .8rem;
    border-radius: 26px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { padding: .9rem 1rem; }
  .primary-nav .nav-call { margin-left: 0; text-align: center; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid,
  .split-grid,
  .detail-grid,
  .detail-grid.reverse,
  .directions-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 118px; }
  .hero-portrait { min-height: 430px; }
  .portrait-img { min-height: 430px; }
  .service-grid { grid-template-columns: 1fr; }
  .sticky-contact,
  .darzt-callout { position: relative; top: auto; }
  .reverse { direction: ltr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .site-header { top: 8px; width: calc(100% - 16px); padding: .55rem .58rem .55rem .72rem; }
  .brand img { max-width: 66vw; height: 40px; }
  .hero { padding: 104px 0 44px; min-height: auto; }
  .hero-copy { padding: 24px; border-radius: 24px; }
  .hero-copy h1 { font-size: clamp(2.4rem, 13vw, 3.5rem); }
  .hero-copy p:first-of-type { font-size: 1.28rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-portrait { min-height: 340px; border-radius: 24px; }
  .portrait-img { min-height: 340px; }
  .portrait-glass { left: 14px; right: 14px; bottom: 14px; }
  .section { padding: 48px 0; }
  .content-panel { padding: 22px; border-radius: 24px; }
  .content-panel p,
  .content-panel li { font-size: 1rem; }
  .wide-image { min-height: 280px; }
  .image-panel,
  .parking-panel { min-height: 280px; border-radius: 24px; }
  .footer-grid { display: grid; align-items: start; }
  .footer-links { justify-content: flex-start; }
  .privacy-card,
  .vacation-card { border-radius: 24px; }
  .privacy-overlay,
  .vacation-overlay { padding: 14px; }
  .hero-orb { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Robustes Layout gegen horizontales Scrollen auf Mobilgeräten und Desktop. */
html,
body {
  overscroll-behavior-x: none;
}

@media (max-width: 1040px) {
  .primary-nav { width: 100%; max-width: 100%; }
  .site-header { max-width: calc(100vw - 28px); }
}

@media (max-width: 640px) {
  .site-header { max-width: calc(100vw - 16px); }
  .container { max-width: calc(100vw - 24px); }
  .hero-copy h1 { overflow-wrap: break-word; }
}

/* Mobile-Korrektur: Overlay-Stapelung, Viewport-Breiten und horizontales Scrollen. */
html,
body {
  min-width: 0;
  overscroll-behavior-x: none;
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
}

@supports (overflow-x: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

iframe,
video,
svg,
table {
  max-width: 100%;
}

.hero,
.section,
.visual-band,
.container,
.glass-card,
.content-panel,
.image-panel,
.parking-panel,
.hero-grid,
.split-grid,
.detail-grid,
.directions-grid,
.service-grid,
.footer-grid {
  max-width: 100%;
}

.content-panel *,
.hero-copy *,
.service-body *,
.vacation-content *,
.privacy-card *,
.site-footer * {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.privacy-overlay,
.vacation-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.privacy-overlay { z-index: 120; }
.vacation-overlay { z-index: 110; }
.admin-vacation-preview { z-index: 200; }

.vacation-overlay.is-waiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.privacy-card,
.vacation-card {
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 1040px) {
  .primary-nav {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow: hidden;
  }
  .primary-nav a {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
  }

  body { touch-action: pan-y; }
  body.modal-open { touch-action: none; }

  @supports (overflow-x: clip) {
    html,
    body,
    main,
    section,
    .hero,
    .section,
    .visual-band,
    .site-footer {
      overflow-x: clip;
    }
  }

  main,
  section,
  .hero,
  .section,
  .visual-band,
  .site-footer {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 12px;
  }

  .site-header {
    top: 8px;
    left: 8px;
    right: 8px;
    width: auto;
    max-width: calc(100vw - 16px);
    transform: none;
    padding: .55rem .58rem .55rem .72rem;
  }

  .brand img {
    max-width: min(66vw, calc(100vw - 96px));
    height: 40px;
  }

  .primary-nav {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero {
    padding: 104px 0 44px;
    min-height: auto;
  }

  .hero-orb { display: none; }

  .hero-grid,
  .split-grid,
  .detail-grid,
  .directions-grid,
  .service-grid,
  .footer-grid {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-copy h1 { font-size: clamp(2.25rem, 12vw, 3.35rem); }
  .hero-copy p:first-of-type { font-size: 1.22rem; }
  .hero-actions { display: grid; grid-template-columns: minmax(0, 1fr); }
  .hero-actions .btn { width: 100%; }
  .hero-portrait { min-height: 340px; border-radius: 24px; }
  .portrait-img { min-height: 340px; }
  .portrait-glass { left: 14px; right: 14px; bottom: 14px; }
  .section { padding: 48px 0; }
  .content-panel { padding: 22px; border-radius: 24px; }
  .content-panel p,
  .content-panel li { font-size: 1rem; }
  .wide-image { min-height: 280px; }
  .image-panel,
  .parking-panel { min-height: 280px; border-radius: 24px; }
  .footer-grid { display: grid; align-items: start; }
  .footer-links { justify-content: flex-start; }

  .privacy-overlay,
  .vacation-overlay {
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    overflow-x: hidden;
    overflow-y: auto;
  }

  .privacy-card,
  .vacation-card {
    width: 100%;
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    max-height: calc(100svh - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 24px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .privacy-card,
  .vacation-card { padding: 22px; }

  .vacation-content h2 {
    font-size: clamp(1.65rem, 8.4vw, 2.22rem);
    line-height: 1.04;
  }

  .vacation-content h3 { font-size: 1.15rem; }

  .vacation-content p,
  .vacation-content li {
    font-size: 1rem;
    line-height: 1.58;
  }

  .vacation-card .btn {
    display: flex;
    width: 100%;
  }
}

/* Overlay-Inhalte bleiben auf kleinen Geräten vertikal scrollbar. */
body.modal-open,
.privacy-overlay,
.vacation-overlay {
  touch-action: pan-y;
}
