@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Montserrat-400.woff2?v=1') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/Montserrat-500.woff2?v=1') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/Montserrat-600.woff2?v=1') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/Montserrat-700.woff2?v=1') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/Montserrat-800.woff2?v=1') format('woff2');
}

:root {
  --sky-top: #cfe0ef;
  --sky-bottom: #f5f3ea;
  --sea: #14235a;
  --sea-light: #2c3f7c;
  --grass: #7fa66b;
  --wall: #f6ecd9;
  --roof: #cc2a2a;
  --roof-dark: #9c1f1f;
  --door: #14235a;
  --window: #eecf6e;
  --bird: #14235a;
  --ink: #14235a;
  --ink-soft: #4a5478;
  --cream: #fbf9f4;
  --accent: #cc2a2a;
  color-scheme: light;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: "Montserrat", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

.sky {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--sky-top) 0%, var(--sky-bottom) 70%);
}

.sun {
  position: absolute;
  top: 8%;
  right: 12%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff3c4 0%, #ffe9a8 60%, rgba(255,233,168,0) 75%);
  will-change: transform;
}

.clouds {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70px 22px at 15% 20%, rgba(255,255,255,.8), transparent 70%),
    radial-gradient(ellipse 90px 26px at 70% 12%, rgba(255,255,255,.7), transparent 70%),
    radial-gradient(ellipse 60px 18px at 45% 28%, rgba(255,255,255,.6), transparent 70%);
  will-change: transform;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16,.84,.44,1),
              transform .8s cubic-bezier(.16,.84,.44,1);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Headline underline accent ---------- */
.headline-underline {
  display: block;
  width: clamp(140px, 22vw, 220px);
  height: 16px;
  margin: -0.6rem auto 1.4rem;
  overflow: visible;
}

.headline-underline path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-underline 1s cubic-bezier(.65,0,.35,1) .85s forwards;
}

@keyframes draw-underline {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .headline-underline path { animation: none; stroke-dashoffset: 0; }
}

/* ---------- Hero intro: sequential reveal on load ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-in {
    opacity: 0;
    transform: translateY(16px);
    animation: hero-in .7s cubic-bezier(.16,.84,.44,1) forwards;
  }
  .hero-in-1 { animation-delay: .05s; }
  .hero-in-2 { animation-delay: .2s; }
  .hero-in-3 { animation-delay: .35s; }
  .hero-in-4 { animation-delay: .5s; }
  .hero-in-5 { animation-delay: .65s; }

  .headline-reveal {
    filter: blur(4px);
    animation-name: hero-in-blur;
  }
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-in-blur {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-in, .headline-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

/* ---------- Scroll cue ---------- */
.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  margin-top: 2.2rem;
  color: var(--ink-soft);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: opacity .4s ease;
}

.scroll-cue-label {
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
}

.scroll-cue-icon {
  width: 14px;
  height: 22px;
  border: 1.5px solid var(--ink-soft);
  border-radius: 999px;
  position: relative;
}

.scroll-cue-icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 3px;
  height: 5px;
  margin-left: -1.5px;
  border-radius: 999px;
  background: var(--accent);
  animation: scroll-cue-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-cue-dot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(8px); opacity: 0; }
  71% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue-icon::before { animation: none; }
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 15;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(20,35,90,.15);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(20,35,90,.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.back-to-top svg { width: 16px; height: 16px; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 16;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: .7rem 1.15rem .7rem .7rem;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(37,211,102,.38);
  font-family: inherit;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.3;
  transition: transform .25s cubic-bezier(.16,.84,.44,1), box-shadow .25s ease, bottom .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37,211,102,.48);
  color: #fff;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.whatsapp-label {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .whatsapp-float {
    padding: .65rem;
    gap: 0;
  }
  .whatsapp-label {
    display: none;
  }
  .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}

/* ---------- Fact corner slider ---------- */
.fact-slider {
  position: fixed;
  left: 0;
  top: 12%;
  z-index: 18;
}

.fact-slider-tab {
  position: relative;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 1.1rem .55rem;
  border-radius: 0 10px 10px 0;
  font-family: inherit;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 0 16px rgba(20,35,90,.18);
  transition: background .25s ease;
}

.fact-slider-tab:hover,
.fact-slider.is-open .fact-slider-tab {
  background: var(--accent);
}

.fact-slider-panel {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 320px;
  max-width: 80vw;
  max-height: 74vh;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--cream);
  border-radius: 0 14px 14px 0;
  box-shadow: 6px 0 24px rgba(20,35,90,.16);
  padding: 1.3rem 1.2rem 1.3rem 3.4rem;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s ease, opacity .3s ease, visibility .35s;
  scrollbar-width: thin;
  scrollbar-color: rgba(20,35,90,.3) transparent;
}

.fact-slider-panel::-webkit-scrollbar {
  width: 7px;
}

.fact-slider-panel::-webkit-scrollbar-track {
  background: transparent;
}

.fact-slider-panel::-webkit-scrollbar-thumb {
  background: rgba(20,35,90,.3);
  border-radius: 4px;
}

.fact-slider.is-open .fact-slider-panel {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fact-slider-close {
  position: absolute;
  top: .6rem;
  right: .6rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: rgba(20,35,90,.08);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}

.fact-slider-close:hover {
  background: var(--accent);
  color: #fff;
}

.fact-slider-inner h3 {
  margin: 0 2rem 1rem 0;
  font-size: 1rem;
  color: var(--ink);
}

.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.fact-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .84rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.fact-list li strong {
  color: var(--ink);
}

.fact-icon {
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1.4;
}

@media (max-width: 560px) {
  .fact-slider-tab {
    padding: .9rem .45rem;
    font-size: .7rem;
  }
  .fact-slider-panel {
    width: 270px;
    padding-left: 2.9rem;
  }
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem 2rem;
}

.lang-switch {
  display: flex;
  gap: .4rem;
  background: rgba(255,255,255,.55);
  border-radius: 999px;
  padding: .3rem;
  backdrop-filter: blur(4px);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: none;
  background: transparent;
  padding: .4rem .8rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  cursor: pointer;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.lang-flag {
  display: inline-block;
  width: 18px;
  height: 13px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(20,35,90,.15);
  flex-shrink: 0;
}

.lang-btn.active .lang-flag {
  box-shadow: 0 0 0 1px rgba(255,255,255,.8);
}

.flag-de {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'%3E%3Crect width='30' height='20' fill='%23FFCE00'/%3E%3Crect width='30' height='13.33' fill='%23DD0000'/%3E%3Crect width='30' height='6.66' fill='%23000000'/%3E%3C/svg%3E");
}

.flag-da {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 37 28'%3E%3Crect width='37' height='28' fill='%23C60C30'/%3E%3Crect x='12' width='5' height='28' fill='%23FFFFFF'/%3E%3Crect y='11' width='37' height='6' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

.flag-en {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%2300247D'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23FFFFFF' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23CF142B' stroke-width='2'/%3E%3Cpath d='M30,0 V30 M0,15 H60' stroke='%23FFFFFF' stroke-width='10'/%3E%3Cpath d='M30,0 V30 M0,15 H60' stroke='%23CF142B' stroke-width='6'/%3E%3C/svg%3E");
}

.flag-fr {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'%3E%3Crect width='30' height='20' fill='%23FFFFFF'/%3E%3Crect width='10' height='20' fill='%23002395'/%3E%3Crect x='20' width='10' height='20' fill='%23ED2939'/%3E%3C/svg%3E");
}

.lang-btn:hover { color: var(--ink); }

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 1.5rem 2rem;
}

.scene {
  width: min(420px, 80vw);
  margin: 0 auto;
}

.logo-hero {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(20,35,90,.12));
}

.content {
  max-width: 620px;
  margin-top: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: .8rem;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3rem);
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin: 0 0 1.2rem;
  color: var(--ink);
}

.subtext {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 auto 1.8rem;
}

.launch-date {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin: -0.6rem 0 1.8rem;
}

.badge {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: .5rem 1.2rem;
  transition: transform .3s cubic-bezier(.16,.84,.44,1), box-shadow .3s ease, background .3s ease, color .3s ease;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: .8rem 1.8rem;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.16,.84,.44,1), box-shadow .3s ease, background .3s ease;
}

.cta-button:hover {
  background: var(--roof-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(204,42,42,.3);
}

.badge:hover {
  transform: translateY(-3px);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(204,42,42,.28);
}

.partner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem 3rem;
  text-align: center;
  padding: 1rem 1.5rem 0;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  opacity: .85;
  transition: opacity .3s ease, transform .3s cubic-bezier(.16,.84,.44,1);
}

.partner-link:hover { opacity: 1; transform: translateY(-2px); }

.partner-link picture {
  display: block;
  height: 100%;
}

.scene picture {
  display: block;
  width: 100%;
}

.partner-logo {
  height: 100%;
  width: auto;
  max-width: min(240px, 55vw);
  display: block;
}

.partner-caption {
  margin: .6rem 0 0;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--ink-soft);
}

.partner-url {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Construction progress ---------- */
.progress {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem 0;
  text-align: center;
}

.progress-title {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
}

.progress-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.progress-track::-webkit-scrollbar { display: none; }

.progress-track::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: rgba(20,35,90,.14);
}

.progress-step {
  position: relative;
  flex: 1 0 auto;
  min-width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}

.progress-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid rgba(20,35,90,.25);
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.progress-label {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink-soft);
  opacity: .55;
  transition: opacity .4s ease, color .4s ease, font-weight .4s ease;
}

.progress-step.is-done .progress-dot {
  background: var(--accent);
  border-color: var(--accent);
}

.progress-step.is-done .progress-label { opacity: .8; }

.progress-step.is-current .progress-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(204,42,42,.16);
}

.progress-step.is-current .progress-label {
  color: var(--ink);
  font-weight: 700;
  opacity: 1;
}

@media (max-width: 640px) {
  .progress-track { justify-content: flex-start; }
  .progress-step { min-width: 84px; }
}

.about {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2.5rem 1.5rem 0;
  text-align: left;
  border-top: 1px solid rgba(20,35,90,.1);
}

.about h2 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 1.4rem;
  text-align: center;
}

.about h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.8rem 0 .8rem;
}

.about p {
  font-size: .98rem;
  line-height: 1.75;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}

.about-map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 1.6rem 0 .6rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20,35,90,.12);
}

.about-map iframe {
  position: absolute;
  inset: 0;
}

.about-map-caption {
  text-align: center;
  font-size: .88rem !important;
  font-weight: 700 !important;
  letter-spacing: .02em;
  color: var(--ink) !important;
  margin: 0 0 .4rem !important;
}

.about-map-note {
  text-align: center;
  font-size: .82rem !important;
  font-weight: 500;
  color: var(--ink-soft);
  margin: 0 0 1.6rem !important;
}

.about-closing {
  text-align: center;
  color: var(--ink) !important;
  font-size: 1.05rem !important;
  margin-top: 1.8rem !important;
}

.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ink-soft);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 .6rem;
  font-size: .76rem;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: .7rem;
  margin: .9rem 0 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20,35,90,.08);
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
}

.social-links svg {
  width: 17px;
  height: 17px;
}

.legal-page {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.legal-back {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.legal-back:hover { text-decoration: underline; }

.legal-page h1 {
  font-size: 1.9rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}

.legal-page h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.8rem 0 .6rem;
}

.legal-page h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.4rem 0 .5rem;
}

.legal-page p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
  margin: 0 0 1rem;
}

.legal-page ul {
  margin: 0 0 1.2rem;
  padding-left: 1.3rem;
}

.legal-page li {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: .3rem;
}

.legal-page p strong {
  color: var(--ink);
}

.agb-closing {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(20,35,90,.1);
  font-size: .9rem !important;
}

.agb-meta {
  color: var(--ink-soft);
  font-size: .85rem !important;
  margin-top: -.4rem !important;
}

.agb-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.2rem;
}

.agb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  min-width: 420px;
}

.agb-table th {
  text-align: left;
  padding: .6rem .8rem;
  background: rgba(20,35,90,.06);
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid rgba(20,35,90,.12);
}

.agb-table td {
  padding: .55rem .8rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(20,35,90,.08);
}

.agb-table th:last-child,
.agb-table td:last-child {
  text-align: right;
}

.legal-page a {
  color: var(--accent);
}

.credit-examples {
  font-size: .88rem !important;
  line-height: 1.8 !important;
  font-style: italic;
  color: var(--ink-soft);
  padding-left: 1rem;
  border-left: 2px solid rgba(20,35,90,.12);
}

/* ---------- Photo credit (reusable, place under/over an image) ---------- */
.photo-credit {
  display: block;
  margin-top: .4rem;
  font-size: .7rem;
  line-height: 1.4;
  letter-spacing: .01em;
  color: var(--ink-soft);
  opacity: .85;
  text-align: right;
}

.photo-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.photo-credit--overlay {
  position: absolute;
  right: .6rem;
  bottom: .5rem;
  margin-top: 0;
  padding: .15rem .5rem;
  background: rgba(10,18,45,.45);
  color: #fff;
  border-radius: 999px;
  opacity: 1;
}

/* ---------- Rates calendar ---------- */
.rates-page .cta-button {
  margin-top: 2rem;
}

.rates-notes {
  list-style: none;
  margin: 0 0 2rem;
  padding: 1rem 1.2rem;
  background: rgba(20,35,90,.04);
  border-radius: 10px;
  font-size: .88rem;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.rates-notes li {
  position: relative;
  padding-left: 1.1rem;
}

.rates-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.rates-table-wrap {
  overflow-x: auto;
  margin: 0 0 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(20,35,90,.08);
}

.rates-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: .88rem;
}

.rates-table th {
  text-align: left;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  padding: .7rem .9rem;
  white-space: nowrap;
}

.rates-table th:not(:first-child) {
  text-align: right;
}

.rates-table td {
  padding: .55rem .9rem;
  border-bottom: 1px solid rgba(20,35,90,.08);
  color: var(--ink-soft);
  white-space: nowrap;
}

.rates-table td:first-child {
  color: var(--ink);
  font-weight: 500;
}

.rates-table td:not(:first-child) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.rates-table tbody tr:nth-child(even):not(.rates-season) {
  background: rgba(20,35,90,.02);
}

.rates-season td {
  background: rgba(204,42,42,.08) !important;
  color: var(--accent) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .78rem;
  padding-top: .8rem;
  padding-bottom: .5rem;
}

.rates-status-cell {
  text-align: center !important;
}

.rates-status {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  white-space: nowrap;
}

.rates-status-free {
  background: rgba(46,139,87,.12);
  color: #2e8b57;
}

.rates-status-booked {
  background: rgba(20,35,90,.1);
  color: var(--ink-soft);
}

.rates-legend {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 1.6rem;
}

.rates-legend-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--ink-soft);
}

.rates-premium-note {
  font-size: .82rem !important;
  color: var(--ink-soft);
}

/* ---------- Booking form ---------- */
.booking-intro {
  margin-bottom: 2rem;
}

.booking-form {
  margin-top: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.2rem;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(20,35,90,.2);
  border-radius: 8px;
  padding: .7rem .9rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(204,42,42,.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: .4rem 0 .6rem;
  cursor: pointer;
}

.form-checkbox input {
  width: 16px;
  height: 16px;
  margin-top: .2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-privacy-note {
  font-size: .78rem;
  margin: 0 0 1.6rem !important;
}

.form-submit {
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 999px;
  padding: .9rem 2.2rem;
  cursor: pointer;
  transition: background .3s ease, transform .3s cubic-bezier(.16,.84,.44,1), box-shadow .3s ease;
}

.form-submit:hover:not(:disabled) {
  background: var(--roof-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(204,42,42,.28);
}

.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form-feedback {
  margin-top: 1.3rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  font-size: .9rem;
  line-height: 1.6;
  background: rgba(127,166,107,.14);
  color: #3f6a34;
}

.form-feedback.is-error {
  background: rgba(204,42,42,.08);
  color: var(--accent);
}

.form-feedback a {
  color: inherit;
  font-weight: 600;
}

@media (max-width: 560px) {
  .form-row { flex-direction: column; gap: 0; }
}

.site-notice[hidden] {
  display: none;
}

.site-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483647;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid rgba(20,35,90,.12);
  box-shadow: 0 -8px 24px rgba(20,35,90,.1);
}

.site-notice-text {
  flex: 1 1 320px;
  margin: 0;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.site-notice-text a {
  color: var(--accent);
  white-space: nowrap;
}

.site-notice-actions {
  display: flex;
  gap: .6rem;
  flex: 0 0 auto;
}

.notice-btn {
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--accent);
  transition: background .2s ease, color .2s ease;
}

.notice-btn-dismiss {
  background: transparent;
  color: var(--ink-soft);
  border-color: rgba(20,35,90,.25);
}

.notice-btn-dismiss:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

.notice-btn-agree {
  background: var(--accent);
  color: #fff;
}

.notice-btn-agree:hover {
  background: var(--roof-dark);
}

@media (max-width: 520px) {
  .site-notice { padding: 1rem; padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
  .site-notice-actions { width: 100%; }
  .notice-btn { flex: 1; }
}

@media (max-width: 520px) {
  .topbar { padding: 1.1rem 1.2rem; }
}

/* ===========================================================
   "Aktuelles" Popup — eigenständiger Block
   Öffnet sich kurz nach dem Laden, schließbar per X / Overlay / ESC.
   Siehe index.html (Markup) und aktuelles-popup.js (Logik).
   =========================================================== */

.ac-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  background: rgba(20, 35, 90, .45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s;
}

.ac-popup-overlay[hidden] {
  display: flex; /* eigenes [hidden]-Handling statt display:none, damit die Transition greift */
}

.ac-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ac-popup {
  position: relative;
  width: min(440px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(20, 35, 90, .28);
  padding: 2.2rem 1.8rem 1.8rem;
  text-align: center;
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .35s cubic-bezier(.16,.84,.44,1), opacity .35s ease;
}

.ac-popup-overlay.is-open .ac-popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.ac-popup-close {
  position: absolute;
  top: .7rem;
  right: .7rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 35, 90, .08);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}

.ac-popup-close:hover,
.ac-popup-close:focus-visible {
  background: var(--accent);
  color: #fff;
}

.ac-popup-title {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 1rem;
}

.ac-popup-body {
  font-size: .95rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--ink-soft);
  margin: 0;
}

.ac-popup-body p {
  margin: 0 0 .8rem;
}

.ac-popup-body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .ac-popup {
    width: 100%;
    max-height: 90vh;
    padding: 2rem 1.3rem 1.5rem;
    border-radius: 12px;
  }
}

/* ===========================================================
   Phase 1 — Hauptnavigation, Footer & wiederverwendbare
   Startseiten-Komponenten
   =========================================================== */

/* ---------- Buttons: Ghost-Modifier ---------- */
.cta-button--ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: calc(.8rem - 2px) calc(1.8rem - 2px);
}

.cta-button--ghost:hover {
  background: var(--accent);
  color: #fff;
}

.cta-button--on-dark {
  color: #fff;
  border-color: rgba(255,255,255,.7);
}

.cta-button--on-dark:hover {
  background: #fff;
  color: var(--sea);
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
}

/* ---------- Site header / main navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251,249,244,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(20,35,90,.08);
  transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(20,35,90,.1);
}

.site-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .7rem 1.5rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  width: 42px;
  height: auto;
}

.site-logo-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--ink);
  text-transform: uppercase;
}

.main-nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav-item {
  position: relative;
}

.main-nav-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: inherit;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: none;
  padding: .5rem 0;
  cursor: pointer;
  white-space: nowrap;
}

.main-nav-link:hover,
.main-nav-link.is-current {
  color: var(--accent);
}

.main-nav-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.has-dropdown.is-open .main-nav-caret {
  transform: rotate(225deg) translateY(2px);
}

.main-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-6px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(20,35,90,.16);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.main-nav-dropdown--wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .1rem .8rem;
  min-width: 420px;
}

.main-nav-item--align-right .main-nav-dropdown {
  left: auto;
  right: 0;
}

.has-dropdown.is-open .main-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-link {
  display: block;
  padding: .55rem .6rem;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.dropdown-link:hover {
  background: var(--wall);
  color: var(--ink);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(20,35,90,.06);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-hamburger[aria-expanded="true"] .nav-hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-bar:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 560px) {
  .site-header-inner {
    flex-wrap: wrap;
    row-gap: .5rem;
  }
  .site-logo-text {
    display: none;
  }
}

/* ---------- Mobile navigation overlay ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--cream);
  padding: 1.4rem 1.5rem 2.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.16,.84,.44,1);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
  border: none;
  background: rgba(20,35,90,.06);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(20,35,90,.08);
}

.mobile-nav-accordion {
  border-bottom: 1px solid rgba(20,35,90,.08);
}

.mobile-nav-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.mobile-nav-accordion-toggle[aria-expanded="true"] .mobile-nav-chevron {
  transform: rotate(225deg);
}

.mobile-nav-submenu {
  list-style: none;
  margin: 0 0 .8rem;
  padding: 0 0 0 .8rem;
}

.mobile-nav-submenu[hidden] {
  display: none;
}

.mobile-nav-submenu a {
  display: block;
  padding: .6rem 0;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}

body.nav-open {
  overflow: hidden;
}

/* ---------- Site search ---------- */
.site-search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background .2s ease;
}

.site-search-toggle:hover {
  background: rgba(20,35,90,.06);
}

.site-search-toggle svg {
  width: 19px;
  height: 19px;
}

.site-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10vh 1.5rem 1.5rem;
  background: rgba(20,35,90,.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
}

.site-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.site-search-panel {
  width: 100%;
  max-width: 560px;
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(20,35,90,.25);
  padding: 1.2rem;
  transform: translateY(-14px);
  transition: transform .25s cubic-bezier(.16,.84,.44,1);
  max-height: 76vh;
  display: flex;
  flex-direction: column;
}

.site-search-overlay.is-open .site-search-panel {
  transform: translateY(0);
}

.site-search-input-row {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.site-search-input {
  flex: 1;
  font-family: inherit;
  font-size: 1rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(20,35,90,.15);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.site-search-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.site-search-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: none;
  background: rgba(20,35,90,.06);
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
}

.site-search-results {
  list-style: none;
  margin: .9rem 0 0;
  padding: 0;
  overflow-y: auto;
}

.site-search-result {
  border-top: 1px solid rgba(20,35,90,.08);
}

.site-search-result a {
  display: block;
  padding: .8rem .2rem;
  text-decoration: none;
}

.site-search-result-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .2rem;
}

.site-search-result-desc {
  font-size: .8rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
}

.site-search-result a:hover .site-search-result-title,
.site-search-result a:focus .site-search-result-title {
  color: var(--accent);
}

.site-search-empty {
  font-size: .85rem;
  color: var(--ink-soft);
  padding: .9rem .2rem 0;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .site-search-overlay, .site-search-panel {
    transition: none;
  }
}

/* ---------- Section heading utility ---------- */
.section-heading {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  margin: 0 0 1.6rem;
}

.section-heading--left {
  text-align: left;
  margin: 0 0 1rem;
}

/* ---------- Media placeholder ---------- */
.media-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--wall), var(--cream));
  border: 1px solid rgba(20,35,90,.08);
}

.media-placeholder--16x9 { aspect-ratio: 16 / 9; }
.media-placeholder--4x3  { aspect-ratio: 4 / 3; }
.media-placeholder--1x1  { aspect-ratio: 1 / 1; }
.media-placeholder--hero {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
}

.media-placeholder-icon {
  width: 15%;
  min-width: 28px;
  max-width: 56px;
  height: auto;
  color: var(--sea-light);
  opacity: .3;
}

.media-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.media-placeholder-chip {
  position: absolute;
  right: .7rem;
  bottom: .7rem;
  background: rgba(20,35,90,.6);
  color: #fff;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .32rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

/* ---------- Hero slider ---------- */
.hero-slider-section {
  max-width: 1240px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.hero-slider {
  position: relative;
  height: clamp(420px, 62vw, 640px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(20,35,90,.16);
}

.hero-slider-track {
  display: flex;
  height: 100%;
  width: 600%;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform .6s cubic-bezier(.16,.84,.44,1);
}

.hero-slide {
  position: relative;
  flex: 0 0 16.6667%;
  height: 100%;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,35,90,.05) 40%, rgba(20,35,90,.65) 100%);
}

.hero-slide-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.4rem 2.6rem;
  color: #fff;
}

.hero-slide-eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--window);
  margin: 0 0 .6rem;
}

.hero-slide-headline {
  font-size: clamp(1.4rem, 3.6vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.2rem;
  max-width: 640px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background .2s ease, transform .2s ease;
}

.hero-slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.hero-slider-arrow--prev { left: 1rem; }
.hero-slider-arrow--next { right: 1rem; }

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: .5rem;
  z-index: 2;
}

.hero-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.55);
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.hero-slider-dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}

@media (max-width: 900px) {
  .hero-slider { height: 520px; }
  .hero-slide-content { padding: 1.8rem; }
}

@media (max-width: 560px) {
  .hero-slider { height: 380px; border-radius: 12px; }
  .hero-slide-content { padding: 1.3rem; }
  .hero-slider-arrow { width: 36px; height: 36px; font-size: 1.1rem; }
}

/* ---------- Feature grid ---------- */
.feature-grid-section {
  max-width: 1080px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .35rem;
  padding: 1.4rem 1.1rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(20,35,90,.06);
}

.feature-grid-icon { font-size: 1.8rem; }

.feature-grid-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
}

.feature-grid-text {
  font-size: .8rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ---------- Image/text section ---------- */
.imgtext-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: 1080px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.imgtext-media,
.imgtext-body {
  min-width: 0;
}

.imgtext-section--reverse {
  direction: rtl;
}

.imgtext-section--reverse > * {
  direction: ltr;
}

.imgtext-text {
  font-size: .98rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
}

.imgtext-highlights {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.imgtext-highlights li {
  font-size: .92rem;
  color: var(--ink);
  font-weight: 500;
}

.imgtext-highlights li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  margin-right: .6rem;
}

@media (max-width: 900px) {
  .imgtext-section,
  .imgtext-section--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ---------- Content cards / card rows / destination grid ---------- */
.card-row-section,
.destination-grid-section {
  max-width: 1080px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin: 0 0 1.8rem;
  text-align: left;
}

.content-card {
  display: block;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(20,35,90,.08);
  transition: transform .3s cubic-bezier(.16,.84,.44,1), box-shadow .3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(20,35,90,.14);
}

.content-card-body {
  padding: 1.1rem 1.2rem;
}

.content-card-title {
  margin: 0 0 .4rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}

.content-card-text {
  margin: 0;
  font-size: .84rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.content-card--destination .content-card-body {
  padding: .85rem .9rem;
}

.content-card--destination .content-card-title {
  font-size: .92rem;
}

@media (max-width: 900px) {
  .card-row { grid-template-columns: repeat(2, 1fr); }
  .destination-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .card-row { grid-template-columns: 1fr; }
  .destination-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Teaser row ---------- */
.teaser-row-section {
  max-width: 1080px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.teaser-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.teaser-card {
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(20,35,90,.07);
  border-radius: 14px;
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.teaser-card-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: .6rem;
}

.teaser-card-title {
  margin: 0 0 .4rem;
  font-size: .96rem;
  font-weight: 700;
  color: var(--ink);
}

.teaser-card-text {
  margin: 0 0 .8rem;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.teaser-card-link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.teaser-card-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .teaser-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .teaser-row { grid-template-columns: 1fr; }
}

/* ---------- Content teaser (Über uns / FAQ) ---------- */
.content-teaser-section {
  max-width: 640px;
  margin: 3.5rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.content-teaser-text {
  font-size: .98rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--sea);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-band-heading {
  color: #fff;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 .8rem;
}

.cta-band-text {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 1.6rem;
}

.cta-band-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.cta-band-whatsapp {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin: 0;
}

.cta-band-whatsapp a {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 560px) {
  .cta-band-actions { flex-direction: column; align-items: stretch; }
}

/* ---------- Footer grid ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1080px;
  margin: 0 auto 2rem;
  text-align: left;
}

.footer-col-title {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
  margin: 0 0 .9rem;
}

.footer-col-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer-col-links a {
  font-size: .8rem;
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-col-links a:hover {
  color: var(--accent);
}

.footer-copyright {
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col-links { align-items: center; }
}

/* ---------- Breadcrumbs (used from Phase 2 onward) ---------- */
.breadcrumbs {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem 0;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: .3rem;
  font-size: .8rem;
  color: var(--ink-soft);
}

.breadcrumbs-item:not(:last-child)::after {
  content: "\203A";
  margin-left: .4rem;
  color: rgba(20,35,90,.35);
}

.breadcrumbs-link {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumbs-link:hover { color: var(--accent); }

.breadcrumbs-current {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Sub-page hero (single static image, Phase 2+) ---------- */
.page-hero {
  position: relative;
  height: clamp(320px, 42vw, 460px);
  overflow: hidden;
}

.page-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.2rem 1.5rem;
  color: #fff;
}

.page-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--window);
  margin: 0 0 .5rem;
}

.page-hero h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
  margin: 0;
}

@media (max-width: 560px) {
  .page-hero { height: 300px; }
  .page-hero-content { padding: 1.4rem; }
}

.page-lead {
  max-width: 720px;
  margin: 2.2rem auto 0;
  padding: 0 1.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.page-section {
  max-width: 1080px;
  margin: 3.5rem auto;
  padding: 0 1.5rem;
}

.page-section-narrow {
  max-width: 720px;
  margin: 3.5rem auto;
  padding: 0 1.5rem;
}

.page-section p {
  font-size: .98rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}

.page-section h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 1rem;
}

.page-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.page-list li {
  font-size: .95rem;
  color: var(--ink);
  font-weight: 500;
}

.page-list li::before {
  content: "\2713";
  color: var(--accent);
  font-weight: 700;
  margin-right: .6rem;
}

/* ---------- Timeline (Bautagebuch) ---------- */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(20,35,90,.15);
}

.timeline-item {
  position: relative;
  padding: 0 0 2rem 1.6rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-date {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin-bottom: .3rem;
}

.timeline-title {
  margin: 0 0 .3rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.timeline-text {
  margin: 0;
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- FAQ accordion ---------- */
.faq-accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(20,35,90,.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.faq-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
  color: var(--accent);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(225deg);
}

.faq-answer {
  margin: 0;
  padding: 0 0 1.2rem;
  font-size: .92rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.faq-answer[hidden] {
  display: none;
}

/* ---------- Inhaltliche Textlinks (interne Verlinkung): dezent, erbt Farbe und Schrift ---------- */
.ilink {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(20,35,90,.35);
  text-underline-offset: .18em;
}
.ilink:hover, .ilink:focus-visible {
  color: var(--accent);
  text-decoration-color: currentColor;
}

/* ---------- Mehrsprachigkeit: Sprachleiste ueber dem Seitenkopf, Menue-Umbruch ---------- */
.topbar--slim {
  position: relative;
  z-index: 31;
  display: flex;
  justify-content: flex-end;
  max-width: 1240px;
  margin: 0 auto;
  padding: .5rem 1.5rem .1rem;
}
.topbar--slim .lang-switch { padding: .15rem; }
.topbar--slim .lang-btn { padding: .3rem .7rem; }
html[lang="fr"] .main-nav-list { gap: 1rem; }
html[lang="fr"] .main-nav-link { font-size: .76rem; }
@media (max-width: 1200px) {
  .main-nav { display: none; }
  .nav-hamburger { display: flex; }
}
