/* ═══════════════════════════════════════════════
   Holland-Holidaydream — Design System v2
   Aesthetic: Meeresluft — warm coastal freshness
═══════════════════════════════════════════════ */

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

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

@font-face {
  font-family: 'Dancing Script';
  src: url('DancingScript-Medium.ttf') format('truetype');
}

/* ─── Tokens ─── */
:root {
  --bg:           oklch(97% 0.012 82);
  --surface:      #ffffff;
  --sand:         oklch(90% 0.06 82);
  --sand-dark:    oklch(76% 0.12 78);
  --ocean:        oklch(52% 0.14 218);
  --ocean-dark:   oklch(38% 0.12 220);
  --ocean-light:  oklch(94% 0.035 218);
  --green:        oklch(52% 0.13 158);
  --green-light:  oklch(94% 0.04 158);
  --text:         oklch(18% 0.025 240);
  --text-mid:     oklch(42% 0.04 235);
  --text-light:   oklch(62% 0.03 235);
  --white:        oklch(99% 0.004 90);

  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;

  --shadow-sm:    0 2px 8px rgba(0,30,60,0.07);
  --shadow:       0 4px 20px rgba(0,30,60,0.10);
  --shadow-lg:    0 8px 40px rgba(0,30,60,0.14);

  --nav-h:        72px;
  --container:    1160px;

  --f-display:    'Cormorant Garamond', Georgia, serif;
  --f-body:       'Nunito', system-ui, sans-serif;
  --f-brand:      'Dancing Script', cursive;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--f-body); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--bg); }
[hidden] { display: none !important; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--f-body); border: none; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p { color: var(--text-mid); font-size: 1.05rem; }

/* ─── Layout ─── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ═══ NAV ═══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
/* Transparent state: subtle dark gradient so links stay readable over any photo */
.nav.transparent {
  background: linear-gradient(to bottom, rgba(0,15,35,0.55) 0%, transparent 100%);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 oklch(90% 0.02 82), var(--shadow-sm);
}

.nav__inner {
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.nav__logo {
  font-family: var(--f-brand); font-size: 1.55rem; line-height: 1.1;
  color: var(--white); transition: color 0.35s; white-space: nowrap; flex-shrink: 0;
  letter-spacing: 0.01em;
  /* Soft text-shadow so brand stays crisp on light photos */
  text-shadow: 0 1px 6px rgba(0,15,35,0.4);
}
.nav.scrolled .nav__logo { color: var(--ocean); text-shadow: none; }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links > li { position: relative; }

.nav__links a,
.nav__links > li > button {
  font-size: 0.93rem; font-weight: 700; padding: 9px 15px; border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.95); background: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap; display: flex; align-items: center; gap: 5px;
  letter-spacing: 0.01em;
  /* same text-shadow trick for links */
  text-shadow: 0 1px 5px rgba(0,15,35,0.35);
}
.nav.scrolled .nav__links a,
.nav.scrolled .nav__links > li > button {
  color: var(--text); text-shadow: none;
}
.nav__links a:hover,
.nav__links > li > button:hover { background: rgba(255,255,255,0.16); color: var(--white); }
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links > li > button:hover { background: var(--ocean-light); color: var(--ocean); }

/* CTA btn in nav */
.nav__links .nav-cta {
  background: var(--ocean) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 100px !important;
  text-shadow: none !important; margin-left: 8px;
}
.nav.scrolled .nav__links .nav-cta { background: var(--ocean) !important; color: var(--white) !important; }
.nav__links .nav-cta:hover { background: var(--ocean-dark) !important; color: var(--white) !important; }

/* Dropdown */
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 8px 0; min-width: 190px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease; z-index: 100;
}
.nav__links li:hover .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-menu a {
  display: block; padding: 10px 18px !important; color: var(--text-mid) !important;
  font-size: 0.9rem !important; font-weight: 600 !important; background: none !important; border-radius: 0 !important;
}
.nav__dropdown-menu a:hover { background: var(--ocean-light) !important; color: var(--ocean) !important; }

/* Arrow indicator */
.nav__arrow { font-size: 0.65rem; opacity: 0.7; transition: transform 0.2s; }
.nav__links li:hover .nav__arrow { transform: rotate(180deg); }

/* Hamburger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 8px; border-radius: 8px; transition: background 0.2s;
}
.nav__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s ease;
}
.nav.scrolled .nav__burger span { background: var(--text); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  overflow-y: auto; padding: 24px 24px 48px;
  flex-direction: column; gap: 2px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.15rem; font-weight: 600; color: var(--text);
  padding: 16px 0; border-bottom: 1px solid oklch(93% 0.015 82); display: block;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--ocean); }
.mob-cta {
  margin-top: 24px; background: var(--ocean); color: var(--white) !important;
  text-align: center; padding: 18px 32px; border-radius: 100px;
  font-size: 1.05rem; border-bottom: none !important;
}
.mob-cta:hover { background: var(--ocean-dark) !important; }
.mob-sub { padding-left: 20px !important; font-size: 1rem !important; color: var(--text-mid) !important; font-weight: 500 !important; }

/* ═══ HERO ═══ */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: flex-end; padding-bottom: 88px; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,20,40,0.2) 0%, rgba(0,20,40,0.05) 40%, rgba(0,20,40,0.65) 100%);
}
.hero__content { position: relative; z-index: 1; color: var(--white); max-width: 800px; }
.hero__eyebrow {
  display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sand-dark); margin-bottom: 16px;
}
.hero__title {
  font-family: var(--f-display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 400;
  line-height: 1.0; color: var(--white); margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,20,40,0.35);
}
.hero__title em { font-style: italic; }
.hero__subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem); color: rgba(255,255,255,0.88);
  max-width: 540px; margin-bottom: 40px; font-weight: 400;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Sub-hero */
.hero--sub { height: 52vh; min-height: 380px; padding-bottom: 64px; align-items: flex-end; }
.hero--sub .hero__title { font-size: clamp(2.5rem, 6vw, 4.5rem); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-body); font-size: 1rem; font-weight: 700;
  padding: 14px 28px; border-radius: 100px;
  transition: all 0.25s ease; text-decoration: none; border: none; cursor: pointer;
}
.btn--primary { background: var(--ocean); color: var(--white); }
.btn--primary:hover { background: var(--ocean-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,80,160,0.3); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn--outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--ocean); border: 2px solid var(--ocean); }
.btn--outline-dark:hover { background: var(--ocean-light); }
.btn--sm { padding: 10px 20px; font-size: 0.9rem; }

/* ═══ SECTION HEADING ═══ */
.section-heading { margin-bottom: 56px; }
.section-heading__eyebrow {
  display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ocean); margin-bottom: 12px;
}
.section-heading h2 { margin-bottom: 16px; }
.section-heading p { max-width: 600px; font-size: 1.1rem; color: var(--text-mid); line-height: 1.7; }
.section-heading--center { text-align: center; }
.section-heading--center p { margin: 0 auto; }

/* ═══ APARTMENT CARDS ═══ */
.apt-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.apt-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.apt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.apt-card__img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.apt-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.apt-card:hover .apt-card__img { transform: scale(1.04); }
.apt-card__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--white); color: var(--text); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.apt-card__body { padding: 32px; }
.apt-card__title {
  font-family: var(--f-display); font-size: 2rem; font-weight: 500;
  margin-bottom: 10px; color: var(--text);
}
.apt-card__sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; font-weight: 500; }
.apt-card__text { font-size: 0.97rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.apt-card__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.apt-pill {
  font-size: 0.8rem; font-weight: 600; color: var(--text-mid);
  background: var(--bg); padding: 5px 13px; border-radius: 100px; border: 1px solid oklch(89% 0.025 82);
}

/* ═══ FEATURE BLOCK ═══ */
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.feature-block__img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.feature-block__img img { width: 100%; height: 100%; object-fit: cover; }
.feature-block__eyebrow {
  display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ocean); margin-bottom: 14px;
}
.feature-block__content h2 { margin-bottom: 20px; }
.feature-block__content p { margin-bottom: 16px; font-size: 1.05rem; line-height: 1.8; color: var(--text-mid); }
.feature-block__content .btn { margin-top: 12px; }

/* ═══ SEASONS ═══ */
.seasons-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.season-item {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid oklch(93% 0.015 82);
}
.season-item:last-child { border-right: none; }
.season-item__icon { font-size: 2.4rem; margin-bottom: 14px; }
.season-item h4 { font-family: var(--f-display); font-size: 1.35rem; margin-bottom: 8px; color: var(--text); }
.season-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ═══ AMENITY LIST ═══ */
.amenity-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.amenity-col { padding: 28px; }
.amenity-col + .amenity-col { border-left: 1px solid oklch(93% 0.015 82); }
.amenity-col h4 {
  font-family: var(--f-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ocean);
  margin-bottom: 16px;
}
.amenity-list { list-style: none; }
.amenity-list li {
  font-size: 0.93rem; color: var(--text-mid); padding: 8px 0;
  border-bottom: 1px solid oklch(94% 0.012 82);
  display: flex; align-items: center; gap: 10px;
}
.amenity-list li:last-child { border-bottom: none; }
.amenity-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--ocean); flex-shrink: 0;
}

/* ═══ GALLERY ═══ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px;
}
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; aspect-ratio: 4/3; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,20,40,0.72));
  color: var(--white); font-size: 0.84rem; font-weight: 600;
  padding: 28px 12px 10px; opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__cap { opacity: 1; }

/* ═══ LIGHTBOX ═══ */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,10,25,0.96); z-index: 2000;
  align-items: center; justify-content: center; padding: 16px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-sm); }
.lb-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 2.2rem; color: var(--white); background: none; opacity: 0.8; line-height: 1;
}
.lb-close:hover { opacity: 1; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 1.8rem; color: var(--white); background: rgba(255,255,255,0.12);
  padding: 14px 18px; border-radius: var(--radius-sm); opacity: 0.8; transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.lb-nav:hover { background: rgba(255,255,255,0.22); opacity: 1; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ═══ CONTACT BAR ═══ */
.contact-bar {
  background: var(--ocean-dark); color: var(--white); padding: 72px 0; text-align: center;
}
.contact-bar h2 { color: var(--white); margin-bottom: 14px; }
.contact-bar > .container > p { color: rgba(255,255,255,0.76); margin-bottom: 48px; font-size: 1.1rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.contact-items { display: flex; gap: 56px; justify-content: center; flex-wrap: wrap; }
.contact-item { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.contact-item__label {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.52);
}
.contact-item__value { font-size: 1.1rem; color: var(--white); font-weight: 600; }
.contact-item__value a { color: inherit; }
.contact-item__value a:hover { text-decoration: underline; }
.ig-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14); color: var(--white);
  padding: 10px 22px; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s;
}
.ig-pill:hover { background: rgba(255,255,255,0.24); }

/* ═══ FOOTER ═══ */
.footer {
  background: oklch(14% 0.025 240); color: rgba(255,255,255,0.5);
  padding: 44px 0 32px; font-size: 0.88rem;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 28px; margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand { font-family: var(--f-brand); font-size: 1.6rem; color: var(--white); }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: rgba(255,255,255,0.6); }
.footer__links a:hover { color: var(--white); }
.footer__copy { text-align: center; color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ═══ INFO BOX ═══ */
.info-box {
  background: var(--ocean-light); border-left: 4px solid var(--ocean);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px; margin-bottom: 20px;
}
.info-box p { color: var(--ocean-dark); font-size: 0.93rem; margin: 0; }
.info-box p + p { margin-top: 6px; }

/* ═══ VIDEO EMBED ═══ */
.video-wrap { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; }
.video-wrap iframe { width: 100%; height: 100%; display: block; border: none; }

/* ═══ MAP EMBED ═══ */
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ═══ TWO-CLICK CONSENT OVERLAY (YouTube / Maps) ═══ */
.consent-overlay {
  position: relative; width: 100%; height: 100%;
  background: #1a1a1a center/cover no-repeat;
  cursor: pointer;
}
/* YouTube — Play-Button Stil */
.consent-overlay[data-type="youtube"] .consent-overlay__inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
}
.consent-overlay[data-type="youtube"]:hover .consent-overlay__inner { background: rgba(0,0,0,0.15); }
.consent-overlay__play {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; padding-left: 5px;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.consent-overlay[data-type="youtube"]:hover .consent-overlay__play {
  transform: scale(1.1); background: #fff;
}
/* Maps — schlichte Karten-Aufforderung */
.consent-overlay[data-type="maps"] .consent-overlay__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: rgba(0,0,0,0.55);
}
.consent-overlay__map-icon { font-size: 2.4rem; line-height: 1; }
.consent-overlay__map-label {
  color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500; margin: 0;
}
.consent-overlay__btn {
  background: #fff; color: var(--text-dark); border: none; border-radius: 40px;
  padding: 9px 26px; font-size: 0.85rem; font-weight: 600; font-family: var(--f-body);
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.consent-overlay__btn:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
/* Badge (klein, unaufdringlich) */
.consent-overlay__badge {
  position: absolute; bottom: 10px; right: 12px;
  font-size: 0.72rem; color: rgba(255,255,255,0.55); pointer-events: none;
}

/* ═══ PRICE TABLE ═══ */
.price-wrap { background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
table.price-tbl { width: 100%; border-collapse: collapse; }
table.price-tbl th {
  font-family: var(--f-body); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light);
  padding: 14px 18px; background: var(--bg); text-align: left;
}
table.price-tbl td { padding: 13px 18px; border-bottom: 1px solid oklch(93% 0.015 82); color: var(--text-mid); font-size: 0.93rem; }
table.price-tbl tr:last-child td { border-bottom: none; }
table.price-tbl tr:hover td { background: oklch(98% 0.008 82); }

/* ═══ BADGE ═══ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; font-weight: 600; padding: 4px 11px; border-radius: 100px;
}
.badge--green { background: var(--green-light); color: var(--green); }
.badge--ocean { background: var(--ocean-light); color: var(--ocean); }
.badge--sand { background: var(--sand); color: oklch(38% 0.09 78); }

/* ═══ BENTO AKTIVITÄTEN (Index) ═══ */
.act-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.act-bento__item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  display: block; text-decoration: none; cursor: pointer;
}
.act-bento__item--large {
  grid-column: 1; grid-row: 1 / 3; /* spans both rows on the left */
}
.act-bento__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.act-bento__item:hover img { transform: scale(1.05); }

.act-bento__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,15,35,0.78) 0%, rgba(0,15,35,0.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; transition: background 0.3s;
}
.act-bento__item:hover .act-bento__overlay {
  background: linear-gradient(to top, rgba(0,15,35,0.88) 0%, rgba(0,15,35,0.2) 60%, transparent 100%);
}
.act-bento__tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sand-dark); margin-bottom: 6px;
}
.act-bento__title {
  font-family: var(--f-display); font-size: 1.5rem; color: var(--white);
  font-weight: 400; margin-bottom: 4px; line-height: 1.15;
}
.act-bento__item--large .act-bento__title { font-size: 2.2rem; margin-bottom: 8px; }
.act-bento__sub { font-size: 0.88rem; color: rgba(255,255,255,0.78); line-height: 1.5; }

@media (max-width: 900px) {
  .act-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 200px 200px;
  }
  .act-bento__item--large {
    grid-column: 1 / 3; grid-row: 1;
  }
  .act-bento__item--large .act-bento__title { font-size: 1.8rem; }
}
@media (max-width: 580px) {
  .act-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .act-bento__item { height: 220px; }
  .act-bento__item--large { height: 280px; grid-column: 1; grid-row: auto; }
}

/* ═══ HIGHLIGHTS ACTIVITY CARD ═══ */
.act-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.act-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s;
}
.act-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.act-card__img { aspect-ratio: 16/10; overflow: hidden; }
.act-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.act-card:hover .act-card__img img { transform: scale(1.05); }
.act-card__body { padding: 22px 24px; }
.act-card__loc {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: 6px; display: block;
}
.act-card__title { font-family: var(--f-display); font-size: 1.5rem; margin-bottom: 8px; }
.act-card__text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }

/* ═══ TINTED SECTION ═══ */
.section--sand { background: var(--sand); }
.section--ocean { background: var(--ocean); }
.section--tint { background: var(--surface); }

/* ═══ SCROLL REVEAL (simple fade) ═══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .act-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .apt-cards { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .seasons-strip { grid-template-columns: 1fr 1fr; }
  .season-item:nth-child(2) { border-right: none; }
  .season-item:nth-child(1), .season-item:nth-child(2) { border-bottom: 1px solid oklch(93% 0.015 82); }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-col + .amenity-col { border-left: none; border-top: 1px solid oklch(93% 0.015 82); }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .section { padding: 56px 0; }
  .act-grid { grid-template-columns: 1fr; }
  .hero { padding-bottom: 56px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .contact-items { gap: 32px; flex-direction: column; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
  .seasons-strip { grid-template-columns: 1fr; }
  .season-item { border-right: none; border-bottom: 1px solid oklch(93% 0.015 82); }
  .season-item:last-child { border-bottom: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .contact-bar { padding: 56px 0; }
}
@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ═══ Active-Marker für Nav-Links (server-side gesetzt) ═══ */
.nav__links .is-active { position: relative; color: var(--white); }
.nav.scrolled .nav__links .is-active { color: var(--ocean); }
.nav__links .is-active::after {
  content: ''; position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--sand-dark); opacity: 0.85;
}
.nav.scrolled .nav__links .is-active::after { background: var(--ocean); }

/* ═══ Filter-Bar + Masonry (Bildergalerie) ═══ */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  font-family: var(--f-body); font-size: 0.88rem; font-weight: 700;
  padding: 9px 20px; border-radius: 100px;
  border: 2px solid oklch(88% 0.04 218);
  color: var(--ocean); background: var(--white);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn.active { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.filter-btn:hover:not(.active) { background: var(--ocean-light); }

.masonry { columns: 4; column-gap: 10px; }
.masonry-item {
  break-inside: avoid; margin-bottom: 10px;
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item__cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,20,40,0.72));
  color: var(--white); font-size: 0.82rem; font-weight: 600;
  padding: 24px 10px 8px; opacity: 0; transition: opacity 0.3s;
}
.masonry-item:hover .masonry-item__cap { opacity: 1; }
.masonry-item[data-hidden="true"] { display: none; }
@media (max-width: 900px) { .masonry { columns: 3; } }
@media (max-width: 640px) { .masonry { columns: 2; } }
@media (max-width: 380px) { .masonry { columns: 1; } }

/* ═══ Quick-Facts-Strip (Wohnungs-Detailseiten) ═══ */
.qf-strip { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; align-items: center; }
.qf-item { text-align: center; }
.qf-item__value { font-family: var(--f-display); font-size: 2.8rem; color: var(--ocean); line-height: 1; }
.qf-item__label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 4px; }
.qf-divider { width: 1px; height: 48px; background: oklch(88% 0.02 82); }
@media (max-width: 720px) {
  .qf-divider { display: none; }
  .qf-strip { gap: 24px; }
}

/* ═══ Belegungskalender (server-rendered) ═══ */
.cal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.cal-month {
  background: var(--surface); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.cal-month .cal-title {
  background: var(--ocean); color: var(--white); text-align: center;
  font-weight: 700; font-size: 0.88rem; padding: 10px;
  text-transform: capitalize; letter-spacing: 0.04em;
}
.cal-month table { width: 100%; border-collapse: collapse; }
.cal-month th {
  font-size: 0.72rem; font-weight: 700; color: var(--text-light);
  text-align: center; padding: 8px 4px; background: var(--bg);
}
.cal-month td {
  text-align: center; padding: 7px 4px;
  font-size: 0.85rem; color: var(--text-mid);
  border-radius: 0;
}
.cal-month td.frei    { background: oklch(94% 0.04 158); color: var(--green); font-weight: 600; }
.cal-month td.belegt  { background: oklch(93% 0.04 28);  color: oklch(52% 0.18 28); font-weight: 600; }
.cal-month td.anreise { background: linear-gradient(135deg, oklch(94% 0.04 158) 50%, oklch(93% 0.04 28) 50%); font-weight: 600; }
.cal-month td.abreise { background: linear-gradient(135deg, oklch(93% 0.04 28) 50%, oklch(94% 0.04 158) 50%); font-weight: 600; }

.cal-legend { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; font-size: 0.85rem; color: var(--text-mid); }
.cal-legend__chip {
  display: inline-flex; align-items: center; gap: 8px;
}
.cal-legend__swatch {
  width: 14px; height: 14px; border-radius: 4px; display: inline-block;
}
.cal-legend__swatch--frei    { background: oklch(94% 0.04 158); border: 1.5px solid var(--green); }
.cal-legend__swatch--belegt  { background: oklch(93% 0.04 28);  border: 1.5px solid oklch(68% 0.18 28); }
.cal-legend__swatch--anreise { background: linear-gradient(135deg, oklch(94% 0.04 158) 50%, oklch(93% 0.04 28) 50%); }

/* ═══ Tab-Bar (Preise: gras/sand toggle) ═══ */
.tab-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.tab-btn {
  font-family: var(--f-body); font-size: 0.92rem; font-weight: 700;
  padding: 11px 24px; border-radius: 100px;
  border: 2px solid oklch(88% 0.04 218);
  color: var(--ocean); background: var(--white);
  cursor: pointer; transition: all 0.2s;
}
.tab-btn.active { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.tab-btn:hover:not(.active) { background: var(--ocean-light); }

/* ═══ Preistabelle ═══ */
.price-card {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 32px;
}
.price-card__header {
  padding: 22px 26px;
  border-bottom: 1px solid oklch(93% 0.015 82);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.price-card__header h3 { font-family: var(--f-display); font-size: 1.7rem; margin: 0; }
table.price-tbl { width: 100%; border-collapse: collapse; }
table.price-tbl th {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-light);
  padding: 13px 20px; background: var(--bg); text-align: left;
}
table.price-tbl td {
  padding: 13px 20px; border-bottom: 1px solid oklch(93% 0.015 82);
  color: var(--text-mid); font-size: 0.93rem;
}
table.price-tbl tr:last-child td { border-bottom: none; }
.price-highlight { color: var(--ocean) !important; font-weight: 700; }

/* ═══ Buchungsformular ═══ */
.two-col-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; align-items: flex-start;
}
.two-col-layout > * { min-width: 0; }
@media (max-width: 960px) { .two-col-layout { grid-template-columns: 1fr; } }

.booking-form {
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 36px;
  position: sticky; top: 100px;
  overflow: hidden; min-width: 0;
}
@media (max-width: 960px) { .booking-form { position: static; } }
@media (max-width: 640px) { .booking-form { padding: 24px; } }
.booking-form h3 { font-family: var(--f-display); font-size: 1.7rem; margin-bottom: 6px; }
.booking-form .form-sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid oklch(88% 0.03 82);
  border-radius: var(--radius-sm);
  font-family: var(--f-body); font-size: 0.95rem;
  color: var(--text); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--ocean); outline: none;
  box-shadow: 0 0 0 3px var(--ocean-light);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-width: 0; }
.form-row .form-group { min-width: 0; overflow: hidden; }
.form-row .form-group input { min-width: 0; width: 100%; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-check { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.form-check input[type=checkbox] {
  width: 18px; height: 18px; accent-color: var(--ocean); cursor: pointer;
}
.form-check label {
  font-size: 0.92rem; color: var(--text-mid);
  cursor: pointer; font-weight: 500;
}

.field-error {
  color: oklch(55% 0.18 28); font-size: 0.82rem; font-weight: 600;
  margin-top: 4px; min-height: 1em;
}
.general-error {
  color: oklch(55% 0.18 28); font-size: 0.9rem; font-weight: 600;
  text-align: center; padding: 8px;
}

.price-summary-box {
  background: var(--bg); border-radius: var(--radius-sm);
  padding: 16px 18px; margin-top: 18px; margin-bottom: 18px;
}
.price-summary-box .price-line {
  display: flex; justify-content: space-between;
  padding: 4px 0; font-size: 0.9rem; color: var(--text-mid);
}
.price-summary-box .price-total {
  font-size: 1.1rem; font-weight: 700; color: var(--ocean);
  border-top: 1px solid oklch(88% 0.025 82);
  padding-top: 10px; margin-top: 10px;
}
.deposit-notice {
  font-size: 0.78rem; color: var(--text-light);
  text-align: center; margin-top: 10px;
}

/* Personenprofil-Section, initial versteckt */
.personal-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid oklch(93% 0.02 82); }
.personal-section[hidden] { display: none; }
.personal-section h4 {
  font-family: var(--f-display); font-size: 1.3rem; margin-bottom: 16px;
}

/* Modal */
.modal-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0, 15, 35, 0.6);
  z-index: 10000; overflow-y: auto;
  animation: modalFade 0.25s ease;
}
.modal-backdrop.open { display: block; }
.modal-content {
  background: var(--surface); margin: 5vh auto;
  padding: 32px; border-radius: var(--radius-lg);
  width: 90%; max-width: 600px;
  box-shadow: 0 10px 40px rgba(0,15,35,0.35);
  animation: modalSlide 0.3s ease;
}
.modal-content h2 {
  font-family: var(--f-display); font-size: 1.8rem;
  margin-bottom: 8px; color: var(--ocean-dark);
}
.modal-summary { font-size: 0.95rem; line-height: 1.65; color: var(--text-mid); }
.modal-summary strong { display: inline-block; min-width: 110px; color: var(--text); }
.modal-summary .summary-section {
  padding: 14px 0;
  border-bottom: 1px solid oklch(93% 0.02 82);
}
.modal-summary .summary-section:last-child { border-bottom: none; }
.modal-footer {
  margin-top: 24px; display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.modal-footer .agb-group {
  font-size: 0.88rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 8px; cursor: pointer;
}
.modal-footer .agb-group input[type=checkbox] {
  width: 18px; height: 18px; accent-color: var(--ocean);
}
.modal-footer .agb-group.agb-error {
  outline: 2px solid #c0392b; border-radius: 4px; padding: 2px 6px;
}
.modal-footer .button-group { display: flex; gap: 10px; }

@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlide { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Flatpickr — Ozean/Sand-Theme */
.flatpickr-calendar { z-index: 99999 !important; box-shadow: var(--shadow-lg) !important; border-radius: var(--radius) !important; font-family: var(--f-body) !important; }
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange { background: var(--ocean) !important; border-color: var(--ocean) !important; color: var(--white) !important; }
.flatpickr-day:hover { background: var(--ocean-light) !important; }
.flatpickr-months .flatpickr-month { background: var(--surface) !important; color: var(--text) !important; }

/* Erfolgs-Box nach Submit */
.booking-success {
  display: none; background: oklch(94% 0.04 158);
  color: var(--green); border: 1px solid var(--green);
  border-radius: var(--radius); padding: 24px; text-align: center;
  margin-top: 24px;
}
.booking-success.open { display: block; }
.booking-success h3 { font-family: var(--f-display); font-size: 1.6rem; margin-bottom: 10px; color: var(--green); }
