/* Villa Semi – öffentliche Seite
   Farbwelt: Sand, Meeresblau, Terrakotta; Akzente Zitrone & Granatapfel. */

:root {
  --sand-50: #FBF8F3;
  --sand-100: #F5EFE6;
  --sand-200: #ECE3D5;
  --sand-300: #DDD0BC;
  --ink: #1B2A2F;
  --ink-2: #3A4B50;
  --ink-3: #62727A;
  --ink-4: #93A0A4;
  --sea-900: #0B3F48;
  --sea-700: #0F5561;
  --sea-600: #176B78;
  --sea-100: #DCECED;
  --sea-50: #EDF5F5;
  --terra: #B85A33;
  --terra-600: #9F4B28;
  --terra-100: #F6E4DA;
  --sunlight: #F4D9B8;
  --lemon: #E7C65A;
  --good: #1F6B40;
  --good-bg: #E6F2EA;
  --bad: #A93226;
  --bad-bg: #FBEAE7;
  --line: rgba(27, 42, 47, .11);
  --line-strong: rgba(27, 42, 47, .2);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(20, 35, 40, .06), 0 4px 12px rgba(20, 35, 40, .06);
  --shadow: 0 2px 6px rgba(20, 35, 40, .05), 0 22px 48px -22px rgba(20, 35, 40, .32);
  --shadow-lg: 0 34px 80px -30px rgba(10, 28, 34, .5);
  --font-display: 'Cormorant Garamond', 'Palatino Linotype', Palatino, Georgia, serif;
  --font-sans: 'Manrope Variable', 'Segoe UI', system-ui, -apple-system, Roboto, Arial, sans-serif;
  --container: 1200px;
  --pad: clamp(20px, 5vw, 48px);
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.no-scroll { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--sea-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; color: var(--ink); }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: calc(var(--container) + 2 * var(--pad)); margin-inline: auto; padding-inline: var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -80px; z-index: 100; padding: 10px 16px; border-radius: 8px; background: var(--ink); color: #fff; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--sea-600); outline-offset: 3px; border-radius: 6px; }
.icon { flex-shrink: 0; }

/* ---------- Typografie ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 16px;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--terra);
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow--light { color: var(--sunlight); }
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.section-title em, .hero-title em { font-style: italic; }
.section-title em { color: var(--sea-700); }
.section-lead { max-width: 60ch; margin: 18px 0 0; font-size: 1.125rem; color: var(--ink-3); }
.section { padding-block: clamp(84px, 11vw, 150px); }
.section-head { margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }
.section-head.center .eyebrow::after { content: ''; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.section-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4vw, 48px); }
.section-row .section-head { margin-bottom: 0; }

/* ---------- Schaltflächen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px;
  border: 1px solid transparent; border-radius: 999px;
  font-weight: 700; font-size: .97rem; letter-spacing: .01em; line-height: 1.2;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background .25s var(--ease), color .25s, border-color .25s, transform .25s var(--ease), box-shadow .25s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 12px 26px -14px rgba(184, 90, 51, .9); }
.btn-primary:hover { background: var(--terra-600); transform: translateY(-1px); }
.btn-primary:disabled { background: var(--sand-300); color: var(--ink-3); box-shadow: none; cursor: not-allowed; transform: none; }
.btn-dark { background: var(--sea-700); color: #fff; }
.btn-dark:hover { background: var(--sea-900); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); }
.btn-glass { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .5); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255, 255, 255, .22); }
.btn-light { background: #fff; color: var(--sea-900); }
.btn-light:hover { background: var(--sand-100); }
.btn-whatsapp { background: #0F7D41; color: #fff; }
.btn-whatsapp:hover { background: #0B6934; }
.btn-lg { min-height: 56px; padding: 14px 30px; font-size: 1.02rem; }
.btn-sm { min-height: 40px; padding: 8px 18px; font-size: .9rem; }
.btn-block { width: 100%; white-space: normal; text-align: center; }
.link-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0; border: 0; background: none; cursor: pointer;
  color: var(--sea-700); font-weight: 700;
  text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px;
  transition: text-decoration-color .2s;
}
.link-btn:hover { text-decoration-color: currentColor; }
.icon-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: #fff; color: var(--ink);
  cursor: pointer; transition: border-color .2s, background .2s;
}
.icon-btn:hover:not(:disabled) { border-color: var(--ink-3); }
.icon-btn:disabled { opacity: .35; cursor: default; }
.icon-btn--sm { width: 30px; height: 30px; border-color: transparent; background: transparent; color: inherit; }

/* ---------- Kopfzeile ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--header-h);
  color: var(--ink);
  background: rgba(251, 248, 243, .92);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .35s, color .35s, border-color .35s;
}
.site-header.is-home:not(.is-scrolled):not(.nav-open) { background: transparent; border-color: transparent; color: #fff; backdrop-filter: none; }
.header-inner { display: flex; align-items: center; gap: 24px; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; }
.brand-name { font-family: var(--font-display); font-size: 1.62rem; font-weight: 600; line-height: 1; letter-spacing: .01em; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: clamp(14px, 2vw, 30px); margin: 0; padding: 0; list-style: none; }
.main-nav ul a { position: relative; padding-block: 6px; color: inherit; text-decoration: none; font-size: .95rem; font-weight: 650; opacity: .9; }
.main-nav ul a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.main-nav ul a:hover::after { transform: scaleX(1); }
.nav-cta { display: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang { position: relative; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 12px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, currentColor 32%, transparent);
  background: transparent; cursor: pointer;
  font-size: .82rem; font-weight: 800; letter-spacing: .06em;
}
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 5;
  min-width: 200px; margin: 0; padding: 8px; list-style: none;
  background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.lang-menu a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; color: var(--ink); text-decoration: none; font-weight: 650; }
.lang-menu a span { width: 26px; font-size: .74rem; letter-spacing: .08em; color: var(--ink-3); }
.lang-menu a:hover, .lang-menu a[aria-current] { background: var(--sand-100); }
.nav-toggle {
  display: none; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, currentColor 32%, transparent); background: transparent; cursor: pointer;
}
.nav-toggle-bars { display: grid; gap: 5px; width: 18px; }
.nav-toggle-bars i { display: block; height: 1.5px; border-radius: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: min(100svh, 980px);
  padding-top: calc(var(--header-h) + 40px);
  color: #fff;
}
.hero-media, .hero-shade { position: absolute; inset: 0; z-index: -1; }
.hero-media > img, .hero-art { width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(180deg, rgba(7, 20, 26, .5) 0%, rgba(7, 20, 26, .06) 28%, rgba(7, 20, 26, .12) 55%, rgba(7, 20, 26, .72) 100%),
    linear-gradient(90deg, rgba(7, 20, 26, .5) 0%, rgba(7, 20, 26, 0) 62%);
}
.hero-content { padding-bottom: 44px; }
.hero-title {
  max-width: 13ch;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(3rem, 7.2vw, 6.2rem); line-height: .98; letter-spacing: -.015em;
  color: #fff; text-wrap: balance;
}
.hero-title em { color: var(--sunlight); }
.hero-lead { max-width: 54ch; margin: 24px 0 34px; font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: rgba(255, 255, 255, .88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-facts-wrap { position: relative; z-index: 2; margin-bottom: -64px; }
.hero-facts {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin: 0; padding: 22px clamp(18px, 3vw, 36px); list-style: none;
  background: #fff; color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.hero-facts li { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center; padding: 6px 0; }
.hero-facts li + li { padding-left: clamp(12px, 2vw, 24px); border-left: 1px solid var(--line); }
.hero-facts .icon { grid-row: span 2; width: 30px; height: 30px; color: var(--sea-600); }
.hero-facts strong { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; line-height: 1; color: var(--ink); }
.hero-facts span { font-size: .82rem; color: var(--ink-3); }
.hero-facts .hero-price { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hero-price strong { color: var(--terra); }

/* ---------- Die Villa ---------- */
.about { padding-top: calc(clamp(84px, 11vw, 150px) + 64px); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.about-text > p { font-size: 1.08rem; }
.about-note {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 28px; padding: 16px 18px; border-radius: var(--radius);
  background: var(--sea-50); color: var(--sea-900); font-weight: 650; font-size: .98rem !important;
}
.about-note .icon { margin-top: 3px; color: var(--sea-600); }
.about-media { position: relative; aspect-ratio: 5 / 5.4; }
.about-img { position: absolute; margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-img > * { width: 100%; height: 100%; object-fit: cover; }
.about-img--1 { inset: 0 18% 22% 0; }
.about-img--2 { inset: 44% 0 0 36%; border: 8px solid var(--sand-50); }
.highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: clamp(64px, 8vw, 110px); }
.highlight { padding: 28px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .35s var(--ease), box-shadow .35s; }
.highlight:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.highlight-icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 18px; border-radius: 16px; background: var(--sea-50); color: var(--sea-700); }
.highlight h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; line-height: 1.12; }
.highlight p { margin: 0; font-size: .95rem; color: var(--ink-3); }

/* ---------- Platzhalter für fehlende Fotos ---------- */
.ph {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 12px;
  width: 100%; height: 100%; padding: 22px;
  color: rgba(255, 255, 255, .96);
}
.ph::before { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 80% at 85% 5%, rgba(255, 255, 255, .3), transparent 60%), radial-gradient(90% 70% at 0% 100%, rgba(0, 0, 0, .24), transparent 70%); }
.ph::after { content: ''; position: absolute; inset: 0; opacity: .6; background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .06) 0 2px, transparent 2px 16px); }
.ph-icon, .ph-label { position: relative; z-index: 1; }
.ph-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .38); backdrop-filter: blur(6px); }
.ph-label { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.1; text-shadow: 0 1px 12px rgba(0, 0, 0, .2); }
.ph--pool { background: linear-gradient(160deg, #86D0D3 0%, #2F8F9B 55%, #1B616D 100%); }
.ph--indoorPool { background: linear-gradient(160deg, #93B8C4 0%, #3F7182 58%, #22485A 100%); }
.ph--living { background: linear-gradient(160deg, #E3CFAF 0%, #BF9A70 58%, #8F6C48 100%); }
.ph--bedroom { background: linear-gradient(160deg, #E6D6C2 0%, #BFA78C 58%, #927A60 100%); }
.ph--cinema { background: linear-gradient(160deg, #4B5066 0%, #272B3A 58%, #13151E 100%); }
.ph--garden { background: linear-gradient(160deg, #BAC78E 0%, #7A9157 55%, #4F6838 100%); }
.ph--kitchen { background: linear-gradient(160deg, #DCD3C2 0%, #AFA38C 58%, #857962 100%); }
.ph--terrace { background: linear-gradient(160deg, #F1C79D 0%, #CF885F 55%, #A45D3D 100%); }

/* ---------- Galerie ---------- */
.gallery { background: var(--sand-100); }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 270px 270px; gap: 14px; }
.gallery-tile { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius); background: var(--sand-200); cursor: zoom-in; }
.gallery-tile--0 { grid-row: span 2; }
.gallery-tile > img, .gallery-tile > .ph { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery-tile > .ph { align-items: center; justify-content: center; }
.gallery-tile .ph-label { display: none; }
.gallery-tile:hover > img, .gallery-tile:hover > .ph { transform: scale(1.045); }
.gallery-caption {
  position: absolute; left: 14px; bottom: 14px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, .92); color: var(--ink); font-size: .82rem; font-weight: 700;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
@media (hover: hover) {
  .gallery-caption { opacity: 0; transform: translateY(6px); }
  .gallery-tile:hover .gallery-caption, .gallery-tile:focus-visible .gallery-caption { opacity: 1; transform: none; }
}
.lightbox { width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(8, 16, 19, .96); color: #fff; }
.lightbox::backdrop { background: rgba(8, 16, 19, .9); }
.lightbox[open] { display: grid; grid-template-columns: 84px 1fr 84px; grid-template-rows: 1fr auto; align-items: center; }
.lightbox-stage { grid-column: 2; grid-row: 1; display: grid; place-items: center; height: min(80vh, 900px); margin: 0; }
.lightbox-stage > img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 12px; }
.lightbox-stage > .ph { width: min(1000px, 100%); height: auto; aspect-ratio: 3 / 2; max-height: 100%; border-radius: 14px; }
.lightbox-btn { display: grid; place-items: center; justify-self: center; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .08); color: #fff; cursor: pointer; }
.lightbox-btn:hover { background: rgba(255, 255, 255, .18); }
.lightbox-close { position: absolute; top: 18px; right: 18px; }
.lightbox-prev { grid-column: 1; grid-row: 1; }
.lightbox-next { grid-column: 3; grid-row: 1; }
.lightbox-caption { grid-column: 1 / -1; margin: 0; padding: 18px; text-align: center; color: rgba(255, 255, 255, .88); }
.lightbox-counter { margin-left: 8px; color: rgba(255, 255, 255, .55); }

/* ---------- Ausstattung ---------- */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; margin: 0; padding: 0; list-style: none; }
.amenity { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); font-weight: 650; font-size: .98rem; }
.amenity .icon { color: var(--sea-600); }

/* ---------- Buchung ---------- */
.booking { background: linear-gradient(180deg, var(--sand-50) 0%, var(--sea-50) 100%); }
.booking-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(340px, 1fr); gap: 24px; align-items: start; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.booking-calendar { padding: clamp(18px, 2.6vw, 32px); --months: 2; }
.cal-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.cal-titles { flex: 1; display: grid; grid-template-columns: repeat(var(--months), 1fr); gap: 28px; text-align: center; }
.cal-title { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--ink); }
.cal-title::first-letter { text-transform: uppercase; }
.cal-months { display: grid; grid-template-columns: repeat(var(--months), 1fr); gap: 28px; min-height: 330px; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 6px; }
.cal-weekdays span { padding: 6px 0; text-align: center; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-4); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); row-gap: 4px; }
.cal-day {
  position: relative; display: grid; place-items: stretch;
  aspect-ratio: 1; min-height: 42px; padding: 0; border: 0; background: transparent;
  color: var(--ink); font-weight: 650; font-size: .95rem; font-variant-numeric: tabular-nums;
  cursor: pointer;
}
.cal-day > span {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 12px; line-height: 1.1; transition: background .15s, color .15s;
}
.cal-price { margin-top: 2px; font-size: .62rem; font-weight: 650; color: var(--ink-4); letter-spacing: .01em; }
.cal-day:hover:not([aria-disabled="true"]) > span { background: var(--sea-100); }
.cal-day.is-empty { visibility: hidden; pointer-events: none; }
.cal-day[aria-disabled="true"] { cursor: not-allowed; }
.cal-day.is-past { color: #C3CACC; }
.cal-day.is-busy { color: #A5B0B2; }
.cal-day.is-busy > span { background: repeating-linear-gradient(135deg, var(--sand-100) 0 5px, var(--sand-200) 5px 10px); text-decoration: line-through; text-decoration-thickness: 1px; }
.cal-day.is-turn-in > span { background: linear-gradient(135deg, var(--sand-200) 0 49%, transparent 51%); }
.cal-day.is-turn-out > span { background: linear-gradient(135deg, transparent 0 49%, var(--sand-200) 51%); }
.cal-day.is-too-short { color: var(--ink-4); }
.cal-day.in-range::before, .cal-day.in-preview::before { content: ''; position: absolute; inset: 3px 0; background: var(--sea-100); }
.cal-day.in-preview::before { background: var(--sea-50); }
.cal-day.is-start::before { left: 50%; }
.cal-day.is-end::before { right: 50%; }
.cal-day.is-start.is-end::before { display: none; }
.cal-day.is-start > span, .cal-day.is-end > span { background: var(--sea-700) !important; color: #fff; text-decoration: none; }
.cal-day.is-start .cal-price, .cal-day.is-end .cal-price { color: rgba(255, 255, 255, .7); }
.cal-day.is-today > span::after { content: ''; position: absolute; bottom: 5px; width: 4px; height: 4px; border-radius: 50%; background: var(--terra); }
.cal-day:focus-visible { outline: none; }
.cal-day:focus-visible > span { box-shadow: 0 0 0 2px var(--sea-600); }
.cal-noscript { padding: 20px; color: var(--ink-3); }
.cal-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.cal-hint { margin: 0; font-weight: 650; color: var(--ink); }
.cal-meta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 20px; margin-top: 12px; font-size: .84rem; color: var(--ink-3); }
.cal-legend { display: flex; flex-wrap: wrap; gap: 16px; margin: 0; padding: 0; list-style: none; }
.cal-legend li { display: inline-flex; align-items: center; gap: 8px; }
.lg { display: inline-block; width: 14px; height: 14px; border-radius: 4px; border: 1px solid var(--line-strong); }
.lg--free { background: #fff; }
.lg--busy { background: repeating-linear-gradient(135deg, var(--sand-100) 0 3px, var(--sand-200) 3px 6px); }
.lg--sel { background: var(--sea-700); border-color: var(--sea-700); }
.cal-times { display: inline-flex; align-items: center; gap: 8px; margin: 0; }

.booking-card { position: sticky; top: calc(var(--header-h) + 20px); padding: clamp(20px, 2.6vw, 30px); }
.bc-from { margin-bottom: 16px; color: var(--ink-3); font-size: .95rem; }
.bc-from strong { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--ink); }
.bc-dates { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 14px; }
.bc-date { display: grid; gap: 2px; padding: 12px 16px; border: 0; background: #fff; text-align: left; cursor: pointer; }
.bc-date + .bc-date { border-left: 1px solid var(--line-strong); }
.bc-date.is-active { box-shadow: inset 0 0 0 2px var(--sea-600); }
.bc-date-label { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.bc-date-value { font-weight: 700; color: var(--ink); }
.bc-guests { margin-top: 12px; padding: 4px 16px; border: 1px solid var(--line-strong); border-radius: 14px; }
.guest-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; }
.guest-row + .guest-row { border-top: 1px solid var(--line); }
.guest-label { display: block; font-weight: 700; color: var(--ink); }
.guest-hint { display: block; font-size: .8rem; color: var(--ink-3); }
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper-btn { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); cursor: pointer; }
.stepper-btn:hover:not(:disabled) { border-color: var(--ink-3); }
.stepper-btn:disabled { opacity: .3; cursor: not-allowed; }
.stepper-value { min-width: 1.6ch; text-align: center; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--ink); }
.guest-max { display: flex; align-items: center; gap: 6px; margin: 2px 0 8px; font-size: .8rem; color: var(--ink-3); }
.bc-breakdown { margin: 18px 0 6px; }
.bc-empty { margin: 0; padding: 14px 16px; border-radius: 12px; background: var(--sand-100); color: var(--ink-3); font-size: .92rem; }
.price-lines { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-size: .95rem; }
.price-lines li { display: flex; justify-content: space-between; gap: 12px; }
.price-lines .muted { display: block; font-size: .8rem; color: var(--ink-3); }
.price-lines .discount { color: var(--good); }
.price-total { display: flex; align-items: baseline; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-strong); font-weight: 800; color: var(--ink); }
.price-total strong { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; line-height: 1; }
.price-notes { display: grid; gap: 4px; margin: 10px 0 0; padding: 0; list-style: none; font-size: .82rem; color: var(--ink-3); }
.discount-hint { margin: 10px 0 0; padding: 8px 12px; border-radius: 10px; background: var(--sea-50); color: var(--sea-700); font-size: .84rem; font-weight: 650; }
.bc-voucher { margin: 14px 0; }
.voucher-form { margin-top: 10px; }
.input-row { display: flex; gap: 8px; }
.input-row input { flex: 1; min-width: 0; text-transform: uppercase; letter-spacing: .06em; }
.voucher-chip { display: flex; align-items: center; gap: 10px; padding: 8px 8px 8px 12px; border-radius: 12px; background: var(--good-bg); color: var(--good); font-weight: 700; font-size: .92rem; }
.voucher-chip > span { flex: 1; }
.form-error { margin: 12px 0; padding: 10px 14px; border-radius: 10px; background: var(--bad-bg); color: var(--bad); font-size: .9rem; }
.bc-note { display: flex; align-items: flex-start; gap: 8px; margin: 14px 0 0; font-size: .82rem; color: var(--ink-3); }
.bc-note .icon { margin-top: 2px; color: var(--sea-600); }
.bc-title { margin-bottom: 14px; font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; line-height: 1.12; }
.back-btn { margin-bottom: 14px; }
.mini-summary { display: grid; gap: 4px; margin-bottom: 18px; padding: 12px 14px; border-radius: 12px; background: var(--sand-100); font-size: .9rem; }
.mini-summary strong { color: var(--ink); }
.step-success { text-align: center; }
.step-success:focus { outline: none; }
.success-icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 6px auto 16px; border-radius: 50%; background: var(--good-bg); color: var(--good); }
.success-ref { display: grid; gap: 4px; margin: 18px 0; padding: 14px; border: 1px dashed var(--line-strong); border-radius: 14px; }
.success-ref span { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.success-ref strong { font-family: var(--font-display); font-size: 2rem; letter-spacing: .06em; color: var(--ink); }
.step-success .btn { margin-bottom: 14px; }
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  background: #fff; box-shadow: 0 -12px 30px -14px rgba(0, 0, 0, .3);
  transform: translateY(110%); visibility: hidden;
  transition: transform .35s var(--ease), visibility .35s;
}
.mobile-bar.is-visible { transform: none; visibility: visible; }
.booking-card, .booking-calendar { scroll-margin-top: calc(var(--header-h) + 16px); }
.mobile-bar-info { display: grid; line-height: 1.25; }
.mobile-bar-info span { font-size: .82rem; color: var(--ink-3); }
.mobile-bar-info strong { font-family: var(--font-display); font-size: 1.45rem; color: var(--ink); }

/* ---------- Formularfelder ---------- */
.field { min-width: 0; margin: 0 0 14px; padding: 0; border: 0; }
.field label, .field legend { display: block; margin-bottom: 6px; padding: 0; font-size: .85rem; font-weight: 700; color: var(--ink); }
.optional { font-weight: 500; color: var(--ink-4); }
input:not([type="checkbox"]):not([type="radio"]), textarea, select {
  width: 100%; min-height: 48px; padding: 11px 14px;
  border: 1px solid var(--line-strong); border-radius: 12px; background: #fff; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 88px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--sea-600); box-shadow: 0 0 0 4px rgba(23, 107, 120, .14); }
.field.has-error input, .field.has-error textarea { border-color: var(--bad); }
.field-error { margin: 6px 0 0; font-size: .82rem; color: var(--bad); }
.field-hint { margin: 6px 0 0; font-size: .8rem; color: var(--ink-3); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.check { display: flex; align-items: flex-start; gap: 12px; font-size: .88rem; color: var(--ink-2); cursor: pointer; }
.check input { flex-shrink: 0; width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--sea-700); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Direkt buchen ---------- */
.direct { background: var(--sea-900); color: rgba(255, 255, 255, .78); }
.direct .section-title { color: #fff; }
.direct .section-title em, .direct .eyebrow { color: var(--sunlight); }
.direct-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.direct-item { padding: 30px 26px; border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); background: rgba(255, 255, 255, .045); }
.direct-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 18px; border-radius: 50%; background: rgba(244, 217, 184, .12); color: var(--sunlight); }
.direct-item h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: #fff; }
.direct-item p { margin: 0; font-size: .95rem; }

/* ---------- Lage ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.distance-list { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.distance-list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.distance-list .icon { color: var(--sea-600); }
.distance-list span { flex: 1; }
.distance-list strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.map-card { position: relative; overflow: hidden; aspect-ratio: 4 / 3.3; border-radius: var(--radius-lg); background: #ECE5D7; box-shadow: var(--shadow); }
.map-frame, .map-frame > * { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-consent {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 6px 16px;
  padding: 16px 18px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .95); backdrop-filter: blur(8px); box-shadow: var(--shadow-sm);
}
.map-label { display: flex; align-items: center; gap: 8px; margin: 0; font-weight: 800; color: var(--ink); }
.map-label .icon { color: var(--terra); }
.map-note { grid-column: 1 / -1; margin: 0; font-size: .78rem; color: var(--ink-3); }
.map-external {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, .94); color: var(--ink); font-size: .82rem; font-weight: 700; text-decoration: none; box-shadow: var(--shadow-sm);
}
.map-card.is-loaded .map-consent { display: none; }
.distance-note { margin: 12px 0 0; font-size: .84rem; color: var(--ink-3); }
.route-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-weight: 700; text-decoration: none; }
.route-link .icon { color: var(--terra); }

/* Ausflugsziele */
.trips { margin-top: clamp(56px, 8vw, 96px); }
.trips-head { max-width: 720px; }
.trips-title { margin: 0 0 10px; font-family: var(--font-display); font-size: clamp(1.8rem, 3.2vw, 2.4rem); font-weight: 600; line-height: 1.1; color: var(--ink); }
.trip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; margin-top: 28px; }
.trip { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.trip-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--sea-50); color: var(--sea-600); }
.trip h3 { margin: 2px 0 4px; font-size: 1.05rem; line-height: 1.3; }
.trip p { margin: 0; font-size: .93rem; color: var(--ink-2); }
.trip .trip-time { display: flex; align-items: center; gap: 6px; margin: 0 0 8px; font-size: .8rem; font-weight: 800; color: var(--terra); }
.trips-markets { display: flex; align-items: flex-start; gap: 10px; margin: 24px 0 0; font-size: .95rem; color: var(--ink-2); }
.trips-markets .icon { flex-shrink: 0; margin-top: 3px; color: var(--sea-600); }

/* ---------- Gutscheine ---------- */
.gift { overflow: hidden; background: var(--sand-100); }
.gift-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.gift-visual { position: sticky; top: calc(var(--header-h) + 48px); padding-top: 48px; }
.voucher-card {
  /* clip statt hidden: die Karte darf mit dem Inhalt wachsen (sonst schneidet aspect-ratio Text ab) */
  position: relative; overflow: hidden; overflow: clip;
  display: flex; flex-direction: column; justify-content: space-between;
  aspect-ratio: 1.6; padding: clamp(22px, 3vw, 34px); border-radius: 26px;
  color: #fff;
  background: radial-gradient(120% 120% at 100% 0%, #2A8290 0%, transparent 55%), linear-gradient(135deg, #0F5561 0%, #0B3F48 60%, #082F36 100%);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg); transition: transform .6s var(--ease);
}
.gift-visual:hover .voucher-card { transform: rotate(-1deg) translateY(-4px); }
.voucher-card::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(244, 217, 184, .35); border-radius: 18px; pointer-events: none; }
.voucher-card-top { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.voucher-brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; color: var(--sunlight); }
.voucher-kind { font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .72); text-align: right; }
.voucher-amount { position: relative; margin: 0; font-family: var(--font-display); font-size: clamp(3rem, 7vw, 4.8rem); font-weight: 500; line-height: 1; }
.voucher-card-bottom { position: relative; max-width: 72%; }
.voucher-card-bottom p { margin: 0; }
.voucher-card-bottom span { margin-right: 10px; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .62); }
.voucher-card-bottom strong { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; }
.voucher-card-bottom .voucher-fine { margin-top: 6px; font-size: .78rem; color: rgba(255, 255, 255, .62); }
.voucher-fruit { position: absolute; border-radius: 50%; }
.voucher-fruit--1 { right: -30px; bottom: -36px; width: 124px; height: 124px; background: radial-gradient(circle at 35% 35%, #F7DE83, #E0B53C 72%); opacity: .92; }
.voucher-fruit--2 { right: 74px; bottom: -30px; width: 72px; height: 72px; background: radial-gradient(circle at 35% 35%, #E26D60, #AD3931 72%); opacity: .92; }
.voucher-fruit--3 { right: 42px; bottom: 80px; width: 30px; height: 15px; border-radius: 0 100% 0 100%; background: #6F9A5B; transform: rotate(-22deg); }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 0 0 28px; padding: 0; list-style: none; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-weight: 650; font-size: .95rem; color: var(--ink); }
.checklist .icon { margin-top: 3px; color: var(--sea-600); }
.gift-form { padding: clamp(20px, 3vw, 32px); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 18px; border: 1px solid var(--line-strong); border-radius: 999px; font-weight: 800; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.chip span:hover { border-color: var(--ink-3); }
.chip input:checked + span { background: var(--sea-700); border-color: var(--sea-700); color: #fff; }
.chip input:focus-visible + span { outline: 2px solid var(--sea-600); outline-offset: 2px; }
.custom-amount { max-width: 220px; margin-top: 10px; }
.gift-success { padding: 10px 0; text-align: center; }
.gift-success:focus { outline: none; }
.gift-form.is-done > :not(.gift-success) { display: none; }
.gift-redeem { display: flex; align-items: flex-start; gap: 10px; margin-top: 22px; font-size: .92rem; color: var(--ink-3); }
.gift-redeem .icon { margin-top: 2px; color: var(--sea-600); }

/* ---------- Bewertungen ---------- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review { margin: 0; padding: 28px; }
.stars { display: flex; gap: 2px; margin-bottom: 14px; color: var(--sand-300); }
.stars .on { color: var(--lemon); }
.stars .on svg { fill: currentColor; }
.review blockquote { margin: 0 0 18px; font-family: var(--font-display); font-size: 1.32rem; line-height: 1.4; color: var(--ink); }
.review figcaption { font-size: .9rem; color: var(--ink-3); }
.review figcaption span { display: block; font-size: .8rem; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-grid > .section-head { position: sticky; top: calc(var(--header-h) + 40px); }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; list-style: none; cursor: pointer; font-weight: 750; font-size: 1.05rem; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { color: var(--sea-600); transition: transform .3s var(--ease); }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 44px 22px 0; color: var(--ink-3); }
.faq-answer p { margin: 0; }

/* ---------- Abschluss ---------- */
.cta-band {
  position: relative; overflow: hidden;
  padding-block: clamp(84px, 10vw, 130px);
  text-align: center; color: rgba(255, 255, 255, .86);
  background: radial-gradient(80% 120% at 88% 0%, rgba(231, 198, 90, .26), transparent 60%), radial-gradient(70% 100% at 0% 100%, rgba(184, 68, 60, .28), transparent 60%), var(--sea-700);
}
.cta-inner { max-width: 780px; }
.cta-band .section-title { color: #fff; }
.cta-band .section-title em { color: var(--sunlight); }
.cta-band p { max-width: 52ch; margin: 18px auto 34px; font-size: 1.15rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- Fußzeile ---------- */
.site-footer { padding-top: 84px; background: #0A2A31; color: rgba(255, 255, 255, .68); font-size: .95rem; }
.site-footer a { color: rgba(255, 255, 255, .84); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 18px; color: #fff; }
.footer-address { display: flex; align-items: center; gap: 8px; }
.footer-title { margin: 6px 0 16px; font-family: var(--font-sans); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--sunlight); }
.site-footer ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.contact-list a { display: inline-flex; align-items: center; gap: 10px; }
.footer-langs { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 22px; font-size: .86rem; }
.footer-langs a[aria-current] { color: var(--sunlight); }
.footer-bottom { margin-top: 64px; padding-block: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }
.footer-bottom p { margin: 0; }
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 45;
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; box-shadow: 0 14px 30px -10px rgba(18, 140, 74, .7);
  transition: transform .3s var(--ease), bottom .35s var(--ease);
}
.wa-float:hover { transform: scale(1.07); }
body.has-mobile-bar .wa-float { bottom: 100px; }

/* ---------- Rechtliches & 404 ---------- */
.legal { padding: calc(var(--header-h) + 64px) 0 110px; }
.legal-inner { max-width: calc(780px + 2 * var(--pad)); }
.legal h1 { margin-bottom: 22px; }
.back-link { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 28px; font-weight: 700; text-decoration: none; }
.legal-draft { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 32px; padding: 12px 16px; border-radius: 12px; background: var(--terra-100); color: #7A3A1F; font-size: .9rem; }
.legal-draft .icon { margin-top: 2px; }
.legal p { margin-bottom: 1.4em; }
.not-found { padding: 160px var(--pad); text-align: center; }

/* ---------- Zahlungsseite ---------- */
.pay { min-height: 80vh; padding: calc(var(--header-h) + 56px) 0 90px; background: linear-gradient(180deg, var(--sand-50), var(--sea-50)); }
.pay-inner { max-width: calc(560px + 2 * var(--pad)); }
.pay-card { padding: clamp(24px, 4vw, 40px); }
.pay-title { margin-bottom: 22px; font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 600; line-height: 1.1; }
.pay-summary { margin: 0 0 18px; border-top: 1px solid var(--line); }
.pay-summary div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.pay-summary dt { color: var(--ink-3); }
.pay-summary dd { margin: 0; text-align: right; font-weight: 700; color: var(--ink); }
.pay-amount { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 16px; margin: 6px 0 22px; padding: 16px 18px; border-radius: 14px; background: var(--sand-100); }
.pay-amount span { font-weight: 700; color: var(--ink-2); }
.pay-amount strong { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; line-height: 1; color: var(--ink); }
.pay-buttons { display: grid; gap: 14px; }
.pay-buttons form { margin: 0; }
.pay-hint { margin: 6px 0 0; text-align: center; font-size: .8rem; color: var(--ink-3); }
.btn-paypal { background: #FFC439; color: #111; }
.btn-paypal:hover { background: #F2B72F; }
.paypal-mark { font-family: 'Segoe UI', Verdana, sans-serif; font-size: 1.3rem; font-style: italic; font-weight: 800; letter-spacing: -.01em; }
.paypal-mark b { color: #003087; }
.paypal-mark i { color: #009CDE; }
.pay-notice { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 18px; padding: 12px 14px; border-radius: 12px; background: var(--sea-50); color: var(--sea-900); font-size: .92rem; }
.pay-notice p { margin: 0; }
.pay-notice .icon { margin-top: 2px; }
.pay-notice--bad { background: var(--bad-bg); color: var(--bad); }
.pay-success { margin-bottom: 20px; text-align: center; }
.pay-success h2 { margin-bottom: 6px; font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; }
.pay-success p { color: var(--ink-3); }
.pay-code { display: grid; gap: 4px; margin-top: 16px; padding: 16px; border: 1px dashed var(--line-strong); border-radius: 14px; }
.pay-code span { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.pay-code strong { font-family: var(--font-display); font-size: 2rem; letter-spacing: .08em; color: var(--ink); }
.pay-code p { margin: 4px 0 0; font-size: .86rem; }
.pay-langs { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .86rem; }
.pay-langs a { color: var(--ink-3); text-decoration: none; }
.pay-langs a[aria-current] { color: var(--sea-700); font-weight: 700; }
.pay-back { margin: 18px 0 0; text-align: center; }
.pay-back a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; text-decoration: none; }
.pay-or { display: flex; align-items: center; gap: 12px; margin: 22px 0; font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.pay-or::before, .pay-or::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.pay-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 22px 0 0; }
.pay-links a { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; text-decoration: none; }

/* ---------- Anfrage gesendet: Status und nächste Schritte ---------- */
.success-ref .status-chip { justify-self: center; margin-top: 6px; }
.next-steps { margin: 4px 0 16px; text-align: left; }
.next-title { margin: 0 0 10px; font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.next-steps ol { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; counter-reset: next; }
.next-steps li { position: relative; padding-left: 36px; font-size: .92rem; line-height: 1.45; counter-increment: next; }
.next-steps li::before { content: counter(next); position: absolute; left: 0; top: -1px; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; border: 1.5px solid var(--line-strong); background: #fff; font-size: .78rem; font-weight: 800; color: var(--ink-3); }
.next-steps li.is-done::before { content: '✓'; border-color: var(--good); background: var(--good); color: #fff; }
.success-mail { justify-content: center; margin: 0 0 14px; }

.status-chip { display: inline-flex; align-items: center; gap: 6px; padding: 3px 11px; border-radius: 999px; font-size: .78rem; font-style: normal; font-weight: 800; letter-spacing: .02em; white-space: nowrap; }
.status-chip--pending { background: #FBF0D5; color: #8A5A00; }
.status-chip--confirmed { background: var(--good-bg); color: var(--good); }
.status-chip--declined, .status-chip--cancelled { background: var(--bad-bg); color: var(--bad); }
.status-chip--withdrawn { background: var(--sand-200); color: var(--ink-2); }

/* ---------- Reservierung & Gutschein ---------- */
.doc { min-height: 80vh; padding: calc(var(--header-h) + 40px) 0 90px; background: linear-gradient(180deg, var(--sand-50), var(--sea-50)); }
.doc-inner { max-width: calc(880px + 2 * var(--pad)); }
.doc-inner--narrow { max-width: calc(620px + 2 * var(--pad)); }
.doc-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.doc-toolbar .back-link { margin: 0; }
.doc-card { padding: clamp(22px, 4vw, 44px); }
.doc-head { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.doc-brand { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 6px 16px; }
.doc-brand .eyebrow { margin: 0; }
.doc-place { font-size: .85rem; color: var(--ink-3); }
/* lange Wörter wie „Reservierungsbestätigung“ dürfen auf dem Handy umbrechen */
.doc-title { margin: 0; font-family: var(--font-display); font-size: clamp(1.35rem, .6rem + 3.6vw, 2.8rem); font-weight: 600; line-height: 1.08; color: var(--ink); overflow-wrap: anywhere; hyphens: auto; }
.doc-meta { display: flex; flex-wrap: wrap; gap: 10px 30px; margin: 4px 0 0; }
.doc-meta dt { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.doc-meta dd { margin: 3px 0 0; font-weight: 700; color: var(--ink); }
.doc-intro { margin: 20px 0 4px; font-size: 1.02rem; }
.doc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 22px; }
@media (max-width: 640px) { .doc-grid { grid-template-columns: 1fr; } }
.doc-box { min-width: 0; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; overflow-wrap: anywhere; }
.doc-box h2, .doc-section h2 { margin: 0 0 10px; font-family: var(--font-sans); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--sea-700); }
.doc-box p { margin: 0 0 6px; }
.doc-box a { text-decoration: none; }
.doc-dl { display: grid; gap: 8px; margin: 0; }
.doc-dl dt { font-size: .8rem; color: var(--ink-3); }
.doc-dl dd { margin: 0; font-weight: 700; color: var(--ink); }
.doc-contact { display: grid; gap: 6px; margin: 0 0 8px; padding: 0; list-style: none; }
.doc-contact li { display: flex; align-items: center; gap: 8px; min-width: 0; overflow-wrap: anywhere; }
.doc-contact .icon { flex-shrink: 0; color: var(--sea-600); }
.doc-route { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.doc-route .icon { flex-shrink: 0; color: var(--terra); }
.doc-section { margin-top: 28px; }
.doc-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.doc-table td, .doc-table th { padding: 9px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-weight: 500; }
.doc-table td + td, .doc-table th + td { padding-left: 16px; }
.doc-table .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.doc-table tfoot th, .doc-table tfoot td { padding-top: 12px; border-bottom: 0; font-size: 1.1rem; font-weight: 800; color: var(--ink); }
.doc-card .muted { font-size: .84rem; font-weight: 500; color: var(--ink-3); }
.doc-schedule td:last-child { text-align: right; }
.doc-schedule .status-chip { white-space: normal; }
.doc-note { margin: 10px 0 0; font-size: .88rem; color: var(--ink-3); }
.doc-list { display: grid; gap: 6px; margin: 0; padding-left: 20px; }
.doc-pay { margin-top: 16px; padding: 16px 18px; border-radius: 14px; background: var(--sand-100); }
.doc-pay-next { margin: 0 0 12px; }
.doc-card .mono, .voucher-print .mono { font-family: ui-monospace, 'Cascadia Mono', Consolas, monospace; letter-spacing: .04em; }
.doc-card .pay-langs { margin-top: 30px; }

.bank-box { margin-top: 4px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.bank-box h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 8px; font-size: 1.05rem; }
.bank-box h3 .icon { color: var(--sea-600); }
.bank-box > p { margin: 0 0 12px; font-size: .95rem; }
.bank-rows { margin: 0 0 12px; border-top: 1px solid var(--line); }
.bank-rows > div { display: grid; grid-template-columns: minmax(110px, 32%) 1fr; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); }
.bank-rows dt { font-size: .84rem; color: var(--ink-3); }
.bank-rows dd { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; margin: 0; font-weight: 700; color: var(--ink); overflow-wrap: anywhere; }
.bank-note { margin: 0; font-size: .84rem; color: var(--ink-3); }
.copy-btn { flex-shrink: 0; padding: 3px 11px; border: 1px solid var(--line-strong); border-radius: 999px; background: #fff; color: var(--ink-2); font: inherit; font-size: .76rem; font-weight: 700; cursor: pointer; }
.copy-btn:hover { border-color: var(--sea-600); color: var(--sea-700); }
.copy-btn.is-copied { border-color: var(--good); color: var(--good); }

.voucher-print { display: grid; gap: 18px; }
.voucher-print .voucher-card { position: relative; width: 100%; max-width: 560px; margin: 0 auto; transform: none; }
.voucher-message { margin: 0; padding: 16px 20px; border-left: 3px solid var(--terra); border-radius: 0 12px 12px 0; background: #fff; font-family: var(--font-display); font-size: 1.35rem; font-style: italic; }
.voucher-code-box { display: grid; gap: 6px; padding: 18px; border: 1.5px dashed var(--line-strong); border-radius: 16px; background: #fff; text-align: center; }
.voucher-code-box span { font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.voucher-code-box strong { font-size: clamp(1.6rem, 5vw, 2.2rem); color: var(--ink); }
.voucher-code-box p { margin: 0; font-size: .9rem; color: var(--ink-3); }
.voucher-howto { margin: 0; font-size: .92rem; text-align: center; color: var(--ink-2); }

.legal-block { margin-bottom: 1.4em; }
.legal-list { margin: .6em 0; padding-left: 1.2em; }
.legal-list li { margin: .25em 0; }

@media print {
  @page { margin: 14mm; }
  body { background: #fff; }
  .site-header, .site-footer, .wa-float, .mobile-bar, .no-print, .skip-link { display: none !important; }
  .doc, .pay { min-height: 0; padding: 0; background: #fff; }
  .doc-card { padding: 0; border: 0; box-shadow: none; }
  .doc-box, .bank-box, .doc-pay, .doc-table tr, .voucher-code-box { break-inside: avoid; }
  a { color: inherit; text-decoration: none; }
  .voucher-card { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ---------- Einblenden beim Scrollen ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------- Responsiv ---------- */
@media (max-width: 1100px) {
  .highlights, .direct-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1040px) {
  .nav-toggle { display: inline-grid; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0;
    display: flex; flex-direction: column; gap: 28px;
    padding: 24px var(--pad) 40px; overflow-y: auto;
    background: var(--sand-50); color: var(--ink);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .3s, transform .3s var(--ease), visibility .3s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-size: 2rem; font-weight: 500; opacity: 1; }
  .main-nav ul a::after { display: none; }
  .nav-cta { display: inline-flex; align-self: flex-start; }
}

@media (max-width: 960px) {
  .booking-grid, .about-grid, .location-grid, .gift-grid, .faq-grid { grid-template-columns: 1fr; }
  .booking-card, .gift-visual, .faq-grid > .section-head { position: static; }
  .gift-visual { max-width: 480px; padding: 12px 8px 0; }
  .about-media { max-width: 560px; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); row-gap: 14px; }
  .hero-facts li + li { padding-left: 0; border-left: 0; }
  .hero-facts .hero-price { grid-column: 1 / -1; flex-direction: row; align-items: baseline; gap: 8px; padding-top: 14px; border-top: 1px solid var(--line); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 190px 190px; }
  .gallery-tile--0 { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 640px) {
  :root { --header-h: 66px; }
  body { font-size: 1rem; }
  .hero { min-height: 94svh; }
  .hero-title { font-size: clamp(2.6rem, 12.5vw, 3.5rem); }
  .btn { white-space: normal; text-align: center; }
  .hero-actions .btn { flex: 1 1 auto; }
  .header-cta { display: none; }
  .brand-name { font-size: 1.42rem; }
  .brand-mark { width: 30px; height: 30px; }
  .highlights, .direct-grid, .checklist, .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .booking-calendar { padding: 16px 12px; }
  .cal-day { min-height: 40px; font-size: .9rem; }
  .map-consent { grid-template-columns: 1fr; }
  .map-card { aspect-ratio: 4 / 4.4; }
  .about-media { aspect-ratio: 1; }
  .lightbox[open] { grid-template-columns: 1fr; }
  .lightbox-stage { grid-column: 1; padding-inline: 12px; }
  .lightbox-prev, .lightbox-next { position: absolute; bottom: 70px; }
  .lightbox-prev { left: 20px; }
  .lightbox-next { right: 20px; }
  .faq-answer { padding-right: 0; }
}
