:root {
  /* Farben direkt aus dem Logo */
  --logo-cyan: #70c0d8;
  --logo-blue: #284890;
  --logo-blue-deep: #1e3668;
  --deep: #0b1a36;
  --deep-2: #12264a;
  --pool: #1a3a6e;
  --aqua: #70c0d8;
  --aqua-bright: #8fd0e4;
  --mist: #e8f4fa;
  --foam: #f4fafc;
  --ink: #eef6fb;
  --ink-soft: #c5d8ea;
  --line: rgba(112, 192, 216, 0.22);
  --glass: rgba(14, 30, 64, 0.75);
  --glass-border: rgba(112, 192, 216, 0.28);
  --shadow: 0 24px 60px rgba(8, 20, 48, 0.45);
  --radius: 18px;
  --font-display: "Quicksand", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 8% -5%, rgba(112, 192, 216, 0.32), transparent 55%),
    radial-gradient(ellipse 60% 45% at 92% 8%, rgba(40, 72, 144, 0.5), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(112, 192, 216, 0.12), transparent 55%),
    linear-gradient(165deg, #06101f 0%, #0d1f3e 40%, #14305a 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

/* Scrollbar nur Desktop – Handy behält die System-Leiste */
@media (any-hover: hover) and (any-pointer: fine) {
  html { scrollbar-width: thin; scrollbar-color: var(--logo-cyan) #0a1830; }
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track {
    background: #0a1830;
    border-left: 1px solid rgba(112, 192, 216, 0.12);
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8fd0e4, var(--logo-cyan) 40%, var(--logo-blue));
    border-radius: 999px;
    border: 2px solid #0a1830;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #b5e4f0, #8fd0e4 45%, var(--logo-cyan));
  }
  ::-webkit-scrollbar-corner { background: #0a1830; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--aqua-bright); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #fff; }
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--aqua); color: var(--logo-blue-deep); padding: .6rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* —— Header —— */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(40, 72, 144, 0.1);
  box-shadow: 0 10px 32px rgba(8, 20, 48, 0.07);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .55rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: min(220px, 52vw); height: auto; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(40, 72, 144, 0.18);
  border-radius: 10px;
  background: #f4fafc;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--logo-blue); border-radius: 2px;
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: .1rem;
}
.site-nav > ul > li { position: relative; }
.site-nav a {
  display: block;
  padding: .55rem .75rem;
  color: var(--logo-blue);
  text-decoration: none;
  font-weight: 700;
  font-size: .94rem;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.site-nav > ul > li > a:hover,
.site-nav > ul > li > a:active,
.site-nav > ul > li > a.active {
  background: linear-gradient(135deg, var(--logo-cyan), #5eb0cc);
  color: var(--logo-blue-deep);
  box-shadow: 0 8px 24px rgba(112, 192, 216, 0.28);
}
.site-nav .nav-cta {
  font-weight: 800;
  margin-left: .4rem;
}
.site-nav .sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(40, 72, 144, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(8, 20, 48, 0.14);
  padding: .55rem;
  flex-direction: column;
  z-index: 200;
  padding-top: .7rem;
  margin-top: 0;
}
.site-nav .sub::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -12px;
  height: 14px;
}
.site-nav .has-sub:hover > .sub,
.site-nav .has-sub:focus-within > .sub,
.site-nav .has-sub.is-open > .sub { display: flex; }
.site-nav .sub a {
  border-radius: 10px;
  white-space: nowrap;
  padding: .7rem .85rem;
  color: var(--logo-blue);
}
.site-nav .sub a:hover {
  background: rgba(112, 192, 216, 0.2);
  color: var(--logo-blue-deep);
}

/* —— Hero —— */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  overflow: visible;
  color: #fff;
  min-height: 0;
}
.hero-media {
  position: relative;
  width: 100%;
  background: #102448;
  line-height: 0;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  animation: heroSoft 18s ease-in-out infinite alternate;
}
.hero-media::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(6, 16, 36, 0.55) 0%, rgba(6, 16, 36, 0.15) 45%, transparent 70%),
    linear-gradient(180deg, rgba(8, 20, 48, 0.08) 0%, rgba(8, 20, 48, 0.35) 50%, rgba(6, 16, 32, 0.92) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  margin-top: -5.5rem;
  max-width: var(--max);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem 1.6rem;
  animation: fadeUp 1s ease both;
}
.hero-kicker {
  display: inline-block;
  margin: 0 0 .7rem;
  padding: .3rem .75rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--logo-blue-deep);
  background: linear-gradient(135deg, #c5ebf5, var(--logo-cyan));
  border-radius: 999px;
}
.hero-claim {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 700;
  margin: 0 0 1rem;
  max-width: 100%;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.18;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.hero-claim .hero-place {
  display: inline-block;
  white-space: nowrap;
}
.hero-text {
  max-width: 34rem;
  margin: 0 0 1.35rem;
  color: rgba(238, 246, 251, .94);
  font-size: 1.1rem;
}
.hero .cta-row {
  position: relative;
  z-index: 4;
}
.wave {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  line-height: 0;
  color: transparent;
}
.wave svg {
  display: block;
  width: 100%;
  height: 48px;
}
.wave path { fill: rgba(10, 28, 56, 0.95); }

.cta-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #9fdceb, var(--logo-cyan));
  color: var(--logo-blue-deep);
  box-shadow: 0 12px 30px rgba(112, 192, 216, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #fff, #9fdceb);
  color: var(--logo-blue-deep);
}
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-secondary {
  background: transparent;
  color: var(--aqua-bright);
  border: 1.5px solid rgba(112, 192, 216, 0.5);
}
.btn-secondary:hover {
  background: rgba(112, 192, 216, 0.14);
  color: #fff;
}

/* —— Home —— */
.home-band {
  position: relative;
  margin-top: -1.5rem;
  z-index: 2;
}
.home-band-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}
.home-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  background: var(--pool);
}
.home-photo::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  pointer-events: none;
  border-radius: inherit;
}
.home-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform .7s ease;
}
.home-photo:hover img { transform: scale(1.04); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  color: var(--foam);
  margin: 0 0 .45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-lead {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.tile {
  display: grid;
  grid-template-rows: 140px 1fr;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: linear-gradient(165deg, rgba(28, 58, 112, 0.85), rgba(10, 24, 52, 0.95));
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.tile:hover {
  transform: translateY(-4px);
  border-color: rgba(112, 192, 216, 0.55);
  box-shadow: 0 22px 50px rgba(8, 40, 80, 0.4);
  color: inherit;
}
.tile-img { overflow: hidden; background: var(--pool); }
.tile-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.tile:hover .tile-img img { transform: scale(1.07); }
.tile-body {
  display: grid;
  gap: .35rem;
  padding: 1.05rem 1.15rem 1.2rem;
}
.tile-body strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--aqua-bright);
}
.tile-body span {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.45;
}

.cta-band {
  margin-top: 2.2rem;
}
.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.6rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid rgba(112, 192, 216, 0.4);
  background:
    radial-gradient(500px 160px at 10% 50%, rgba(112, 192, 216, 0.28), transparent 60%),
    linear-gradient(120deg, rgba(32, 72, 136, 0.95), rgba(12, 32, 68, 0.98));
  box-shadow: var(--shadow);
}
.cta-band h2 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: #fff;
}
.cta-band p { margin: 0; color: var(--mist); }
.cta-band a { color: #fff; }

.home-about { margin-top: .35rem; }
.home-facts {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.home-facts li {
  padding: .85rem 1rem;
  border-radius: 12px;
  background: rgba(8, 20, 48, 0.45);
  border: 1px solid var(--line);
  color: var(--mist);
}
.home-facts strong {
  color: var(--aqua-bright);
  margin-right: .35rem;
}

/* —— Notfall —— */
.emergency-band {
  margin-top: .2rem;
}
.emergency-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.45rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 140, 90, 0.45);
  background:
    radial-gradient(420px 140px at 90% 20%, rgba(255, 140, 90, 0.28), transparent 60%),
    linear-gradient(125deg, rgba(72, 28, 36, 0.95), rgba(18, 28, 58, 0.98));
  box-shadow: 0 18px 44px rgba(40, 10, 16, 0.35);
}
.emergency-kicker {
  margin: 0 0 .25rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffb48a;
}
.emergency-band h2 {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: #fff;
}
.emergency-copy p:last-child {
  margin: 0;
  color: var(--mist);
  max-width: 36rem;
}
.btn-emergency {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.45rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  font-family: var(--font-display);
  color: #2a1208 !important;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ffc29a, #ff8a5b 55%, #f06a45);
  box-shadow: 0 12px 30px rgba(255, 110, 70, 0.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-emergency:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 16px 36px rgba(255, 110, 70, 0.45);
  color: #2a1208 !important;
}
.btn-emergency-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  animation: emergency-pulse 1.8s ease-out infinite;
}
@keyframes emergency-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.emergency-modal[hidden] { display: none !important; }
.emergency-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.emergency-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 24, 0.78);
  backdrop-filter: blur(6px);
}
.emergency-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(92vh, 820px);
  overflow: auto;
  padding: 1.5rem 1.45rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 150, 100, 0.35);
  background:
    radial-gradient(380px 160px at 10% 0%, rgba(255, 140, 90, 0.22), transparent 55%),
    linear-gradient(165deg, rgba(28, 36, 72, 0.98), rgba(10, 18, 40, 0.99));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  animation: emergency-in .28s ease;
}
@keyframes emergency-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.emergency-modal-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.emergency-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
}
.emergency-modal-head {
  padding-right: 2.5rem;
  margin-bottom: 1rem;
}
.emergency-modal-badge {
  display: inline-flex;
  margin-bottom: .55rem;
  padding: .22rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2a1208;
  background: linear-gradient(135deg, #ffc29a, #ff8a5b);
}
.emergency-modal-head h2 {
  margin: 0 0 .4rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  color: #fff;
}
.emergency-modal-head p {
  margin: 0;
  color: var(--ink-soft);
}
.emergency-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
.emergency-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: .35rem;
}
.emergency-form .alert { margin-bottom: 1rem; }

body.emergency-open { overflow: hidden; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 1.25rem 4.5rem;
}
.page-hero {
  padding: 2.8rem 1.25rem 0.4rem;
  max-width: var(--max);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  margin: 0 0 .55rem;
  letter-spacing: -0.02em;
  color: var(--foam);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.page-hero h1::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 4px;
  margin-top: .55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--logo-cyan), transparent);
}
.lead { color: var(--ink-soft); max-width: 40rem; }

.section {
  margin: 1.6rem 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s ease;
}
.section.is-visible { opacity: 1; transform: none; }
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  color: var(--aqua-bright);
  margin: 0 0 1rem;
  font-weight: 700;
}
.prose p { margin: 0 0 1rem; max-width: 48rem; color: var(--mist); }
.prose strong { color: #fff; }
.prose ul { padding-left: 1.1rem; color: var(--mist); }
.prose li { margin: 0 0 .45rem; }

.panel {
  position: relative;
  background: linear-gradient(160deg, rgba(28, 58, 112, 0.82), rgba(10, 24, 52, 0.94));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.65rem 1.7rem 1.65rem 1.85rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.panel::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--logo-cyan), rgba(112, 192, 216, 0.15));
}

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline-intro {
  margin: -.25rem 0 1.25rem;
  color: var(--ink-soft);
  max-width: 40rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: calc(8.5rem + .35rem);
  top: .4rem; bottom: .4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--logo-cyan), transparent);
  opacity: .45;
}
.timeline li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.35rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--mist);
  position: relative;
}
.timeline li:last-child { border-bottom: 0; }
.timeline li.is-milestone {
  background: rgba(112, 192, 216, 0.08);
  margin: 0 -.85rem;
  padding-left: .85rem;
  padding-right: .85rem;
  border-radius: 12px;
  border-bottom-color: transparent;
}
.timeline time {
  font-weight: 800;
  color: var(--aqua-bright);
  font-variant-numeric: tabular-nums;
  position: relative;
}
.timeline time::after {
  content: "";
  position: absolute;
  right: -1.05rem;
  top: .45rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--logo-cyan);
  box-shadow: 0 0 0 4px rgba(112, 192, 216, 0.2);
}
.timeline li.is-milestone time::after {
  width: 11px; height: 11px;
  top: .35rem;
  box-shadow: 0 0 0 5px rgba(112, 192, 216, 0.28);
}
.timeline strong { display: block; margin-bottom: .25rem; color: #fff; }
.timeline li > div > span { display: block; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.stat {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, rgba(28, 58, 112, 0.75), rgba(10, 24, 52, 0.9));
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--aqua-bright);
  margin-bottom: .2rem;
}
.stat span { color: var(--ink-soft); font-size: .92rem; }

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: .4rem;
}
.subnav-link {
  display: inline-flex;
  align-items: center;
  padding: .55rem .95rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  color: var(--aqua-bright);
  border: 1.5px solid rgba(112, 192, 216, 0.4);
  background: transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.subnav-link:hover {
  background: rgba(112, 192, 216, 0.14);
  color: #fff;
  border-color: rgba(112, 192, 216, 0.65);
}
.subnav-link.is-active {
  background: linear-gradient(135deg, #9fdceb, var(--logo-cyan));
  color: var(--logo-blue-deep);
  border-color: transparent;
}

.faq details {
  background: rgba(12, 28, 58, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1.15rem;
  margin: 0 0 .75rem;
  transition: border-color .2s ease, background .2s ease;
}
.faq details:hover { border-color: rgba(112, 192, 216, 0.4); }
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--foam);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "+";
  display: inline-block;
  width: 1.2rem;
  color: var(--logo-cyan);
  font-weight: 800;
}
.faq details[open] summary::before { content: "–"; }
.faq details[open] summary { margin-bottom: .55rem; color: var(--aqua-bright); }
.faq p { margin: 0 0 .5rem; color: var(--ink-soft); }

.gallery-banners {
  display: grid;
  gap: .9rem;
  margin-bottom: 1.1rem;
}
.gallery-banner {
  margin: 0;
  display: grid;
  gap: .45rem;
}
.gallery-banner a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 32 / 7;
  background: var(--pool);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.gallery-banner picture,
.gallery-banner img {
  width: 100%;
  height: 100%;
  display: block;
}
.gallery-banner img {
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease, filter .5s ease;
  filter: saturate(1.05) contrast(1.03);
}
.gallery-banner a:hover img { transform: scale(1.03); filter: saturate(1.12); }
.gallery-banner figcaption {
  font-size: .88rem;
  color: var(--ink-soft);
  padding: 0 .15rem;
  line-height: 1.35;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4/3;
  background: var(--pool);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.gallery img,
.gallery picture {
  width: 100%; height: 100%;
  display: block;
}
.gallery picture { height: 100%; }
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  filter: saturate(1.05) contrast(1.03);
}
.gallery a:hover img { transform: scale(1.06); filter: saturate(1.12); }
.gallery-item {
  margin: 0;
  display: grid;
  gap: .45rem;
}
.gallery-item a {
  margin: 0;
}
.gallery-item figcaption {
  font-size: .88rem;
  color: var(--ink-soft);
  padding: 0 .15rem;
  line-height: 1.35;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.info-card {
  display: grid;
  gap: .5rem;
  align-content: start;
  padding: 1.3rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, rgba(28, 58, 112, 0.82), rgba(10, 24, 52, 0.94));
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--logo-cyan), rgba(112, 192, 216, 0.15));
}
.info-card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--foam);
}
.info-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.5;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  margin-bottom: .4rem;
}
.quick-btn {
  display: grid;
  gap: .2rem;
  padding: 1rem 1.15rem;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, rgba(28, 58, 112, 0.85), rgba(10, 24, 52, 0.95));
  color: inherit;
  transition: transform .2s ease, border-color .2s ease;
}
.quick-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(112, 192, 216, 0.55);
  color: inherit;
}
.quick-btn strong {
  color: var(--aqua-bright);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.quick-btn span { color: var(--ink-soft); font-size: .92rem; }

.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .65rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem .85rem;
  border-radius: 12px;
  background: rgba(8, 20, 48, 0.45);
  border: 1px solid var(--line);
}
.hours-list span { color: var(--ink-soft); }
.hours-list strong { color: #fff; font-weight: 800; text-align: right; }

.benefit-list {
  list-style: none;
  margin: 1.1rem 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}
.benefit-list li {
  padding: .9rem 1rem;
  border-radius: 12px;
  background: rgba(8, 20, 48, 0.45);
  border: 1px solid var(--line);
  color: var(--mist);
}
.benefit-list strong {
  display: block;
  margin-bottom: .2rem;
  color: var(--aqua-bright);
  font-family: var(--font-display);
}

.hours-panel {
  display: grid;
  gap: .85rem;
}
.hours-panel--compact {
  gap: .45rem;
}
.hours-status {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(8, 20, 48, 0.5);
}
.hours-status.is-open {
  border-color: rgba(72, 200, 140, 0.45);
  background: linear-gradient(135deg, rgba(28, 90, 70, 0.55), rgba(8, 28, 48, 0.7));
}
.hours-status.is-closed {
  border-color: rgba(180, 120, 120, 0.35);
  background: linear-gradient(135deg, rgba(70, 32, 48, 0.4), rgba(8, 20, 48, 0.65));
}
.hours-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}
.hours-status.is-open .hours-dot {
  background: #4fd18a;
  box-shadow: 0 0 0 4px rgba(79, 209, 138, 0.2), 0 0 14px rgba(79, 209, 138, 0.55);
  animation: hours-pulse 2.2s ease-in-out infinite;
}
.hours-status.is-closed .hours-dot {
  background: #d08080;
}
@keyframes hours-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: .85; }
}
.hours-status-text {
  display: grid;
  gap: .1rem;
  min-width: 0;
}
.hours-status-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  font-weight: 800;
}
.hours-status-text span {
  color: var(--ink-soft);
  font-size: .92rem;
}
.hours-note,
.hours-today {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
}
.hours-today strong { color: var(--foam); }
.hours-card {
  display: grid;
  align-content: start;
  gap: 1rem;
}
.hours-card h2 { margin: 0; }
.hours-card-link {
  justify-self: start;
  margin-top: .25rem;
}
.cta-hours {
  margin-top: .9rem;
}
.cta-hours .hours-status {
  display: inline-flex;
  max-width: 100%;
}
.footer-hours {
  margin-top: 1rem;
}
.footer-hours .hours-status {
  padding: .7rem .85rem;
}
.footer-hours .hours-status-text strong {
  font-size: .98rem;
}

.contact-aside { display: grid; gap: 1rem; }
.map-block { margin-top: 1.2rem; }
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  aspect-ratio: 21 / 9;
  background: var(--pool);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-consent {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(420px 180px at 20% 30%, rgba(112, 192, 216, 0.18), transparent 60%),
    linear-gradient(160deg, rgba(28, 58, 112, 0.9), rgba(10, 24, 52, 0.98));
}
.map-consent.is-loaded {
  padding: 0;
  display: block;
}
.map-consent-box {
  max-width: 34rem;
  text-align: center;
  display: grid;
  gap: .85rem;
  justify-items: center;
}
.map-consent-box strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--foam);
}
.map-consent-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .98rem;
}
.map-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: .25rem;
}

.vacation-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
}
.vacation-facts {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--mist);
}
.vacation-facts li { margin: 0 0 .4rem; }
.vacation-hero-photo { min-height: 100%; }

.hero-media picture,
.home-photo picture,
.tile-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.tile-img picture { height: 100%; }
.tile-img img { width: 100%; height: 100%; object-fit: cover; }

/* Focus / a11y */
:focus-visible {
  outline: 3px solid var(--logo-cyan);
  outline-offset: 3px;
}
.site-nav a:focus-visible,
.btn:focus-visible,
.subnav-link:focus-visible,
.quick-btn:focus-visible,
.partner-card:focus-visible,
.tile:focus-visible {
  outline: 3px solid var(--logo-cyan);
  outline-offset: 3px;
}
.btn:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }

.partner-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: .7rem;
}
.partner-list a {
  display: block;
  padding: 1.05rem 1.2rem;
  background: rgba(12, 28, 58, 0.72);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--foam);
  font-weight: 700;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.partner-list a:hover {
  border-color: rgba(112, 192, 216, 0.5);
  background: rgba(24, 52, 104, 0.9);
  transform: translateX(4px);
  color: #fff;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.partner-card {
  display: grid;
  gap: .55rem;
  align-content: start;
  padding: 1.35rem 1.4rem 1.45rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, rgba(28, 58, 112, 0.82), rgba(10, 24, 52, 0.94));
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.partner-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--logo-cyan), rgba(112, 192, 216, 0.15));
}
.partner-card:hover {
  transform: translateY(-4px);
  border-color: rgba(112, 192, 216, 0.55);
  box-shadow: 0 22px 50px rgba(8, 40, 80, 0.4);
  color: inherit;
}
.partner-tag {
  display: inline-flex;
  width: fit-content;
  padding: .22rem .65rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--logo-blue-deep);
  background: linear-gradient(135deg, #c5ebf5, var(--logo-cyan));
}
.partner-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--foam);
  letter-spacing: -0.02em;
}
.partner-text {
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.5;
}
.partner-link {
  margin-top: .35rem;
  font-weight: 800;
  color: var(--aqua-bright);
  font-size: .95rem;
}
.partner-card:hover .partner-link { color: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.4rem;
  align-items: start;
}
.contact-grid h2 { margin-top: 0; }
.hours { margin: 1rem 0 0; }
.form label { display: block; font-weight: 700; margin: 0 0 .35rem; color: var(--foam); }
.form input,
.form textarea {
  width: 100%;
  margin: 0 0 1rem;
  padding: .85rem .95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  background: rgba(8, 20, 48, 0.55);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(112, 192, 216, 0.45);
  border-color: var(--aqua);
}
.form textarea { min-height: 150px; resize: vertical; }
.form .check {
  display: flex; gap: .65rem; align-items: flex-start;
  font-weight: 400; margin-bottom: 1rem; color: var(--ink-soft);
}
.form .check input { width: auto; margin: .2rem 0 0; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.turnstile-wrap { margin: 0 0 1rem; min-height: 65px; }
.form-note { font-size: .92rem; color: var(--ink-soft); }
.alert {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.alert-ok { background: rgba(34, 120, 80, 0.3); color: #d8ffe8; border: 1px solid rgba(120, 220, 170, 0.35); }
.alert-err { background: rgba(120, 40, 40, 0.35); color: #ffd6d6; border: 1px solid rgba(240, 140, 140, 0.35); }

/* —— Footer —— */
.site-footer {
  margin-top: 1rem;
  background:
    radial-gradient(700px 220px at 15% 0%, rgba(112, 192, 216, 0.22), transparent 55%),
    linear-gradient(180deg, #0e2144, #060e1c);
  color: rgba(255,255,255,.9);
  padding: 3rem 1.25rem 2.1rem;
  border-top: 1px solid var(--line);
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 1.6rem;
}
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--aqua-bright);
  display: block;
  margin-bottom: .35rem;
}
.footer-brand p { color: var(--ink-soft); margin: 0 0 .7rem; }
.footer-brand a { color: #fff; text-decoration: none; }
.footer-brand a:hover { color: var(--aqua-bright); }
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.footer-cols h3 {
  margin: 0 0 .7rem;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--aqua-bright);
}
.footer-nav {
  display: flex; flex-direction: column; flex-wrap: wrap;
  gap: .45rem;
}
.footer-nav a {
  color: #fff; text-decoration: none; opacity: .88;
  font-weight: 600;
}
.footer-nav a:hover { opacity: 1; color: var(--aqua-bright); }
.footer-copy {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  opacity: .75;
  font-size: .92rem;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .55rem;
  align-items: center;
}
.footer-copy a {
  color: var(--aqua-bright);
  text-decoration: none;
  font-weight: 700;
}
.footer-copy a:hover { color: #fff; text-decoration: underline; }
.footer-sep { opacity: .55; }

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 14, 32, .93);
  display: grid; place-items: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox img { max-height: 88vh; max-width: min(96vw, 1100px); border-radius: 10px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--logo-blue-deep);
  font-size: 1.6rem; cursor: pointer;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroSoft {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img { animation: none; }
  .section { opacity: 1; transform: none; transition: none; }
  .hero-content { animation: none; }
  .btn-emergency-pulse { animation: none; }
  .emergency-modal-panel { animation: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(40, 72, 144, 0.12);
    box-shadow: 0 16px 32px rgba(8, 20, 48, 0.1);
    padding: .75rem 1rem 1rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .site-nav .sub {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: .25rem 0 .25rem .5rem;
    margin: 0;
    min-width: 0;
    background: transparent;
  }
  .site-nav .sub::before { display: none; }
  .site-nav .has-sub.is-open > .sub { display: flex; }
  .site-nav .has-sub:hover > .sub { display: none; }
  .site-nav .has-sub.is-open:hover > .sub,
  .site-nav .has-sub.is-open > .sub { display: flex; }
  .site-nav .nav-cta { margin: .35rem 0 0; text-align: center; }
  .site-nav > ul > li > a:not(.active):hover {
    background: transparent;
    color: var(--logo-blue);
    box-shadow: none;
  }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid,
  .home-band-grid,
  .footer-grid,
  .tile-grid,
  .partner-grid,
  .info-grid,
  .quick-actions,
  .vacation-split { grid-template-columns: 1fr; }
  .map-frame { aspect-ratio: 4 / 3; }
  .timeline::before { display: none; }
  .timeline time::after { display: none; }
  .timeline li { grid-template-columns: 1fr; gap: .25rem; }
  .timeline li.is-milestone { margin: 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-content { margin-top: -3.5rem; padding-bottom: 1rem; }
  .hero-claim { font-size: clamp(1.55rem, 7vw, 2.1rem); }
  .tile { grid-template-rows: 160px 1fr; }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .brand img { width: 160px; }
  .footer-cols { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .emergency-form-grid { grid-template-columns: 1fr; }
  .emergency-band-inner { flex-direction: column; align-items: flex-start; }
  .btn-emergency { width: 100%; }
}
