/* ============================================================
   David Schütze Haustechnik — Design-System v4
   Edel, kompakt, markenstark: Full-bleed Hero, Markenband,
   prominente Kontakt-CTA, reduzierter Whitespace
   ============================================================ */

:root {
  --navy:      #1a2c3d;
  --navy-d:    #111e2a;
  --navy-deep: #0c1b27;
  --orange:    #c8723a;
  --orange-h:  #b56230;
  --blue:      #2d5fa6;
  --blue-h:    #254e8a;
  --white:     #fafaf8;
  --cream:     #f4f1ec;
  --gray:      #e8e4de;
  --muted:     #6b7885;
  --T:         0.24s cubic-bezier(.4,0,.2,1);
  /* Aliase */
  --ink-soft:    #6b7885;
  --orange-soft: rgba(200,114,58,.12);
  --line:        #e8e4de;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
  --maxw: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; color: var(--navy); line-height: 1.1; }
h1, h2, h3 { text-wrap: pretty; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; font-weight: 600; }
h1 strong, h2 strong { font-weight: 600; }
h1 em, h2 em { font-style: italic; color: var(--orange); }

p { text-wrap: pretty; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

section { padding: 64px 0; }
section.tight { padding: 40px 0; }

/* ---------- Kicker (DSK-Stil mit Linie) ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.kicker::after { content: ''; flex: 0 0 30px; height: 1px; background: var(--orange); }
.section-head.center .kicker { display: flex; justify-content: center; }
.section-head.center .kicker::after { display: none; }

.section-head { max-width: 100%; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; color: var(--muted); font-size: 0.92rem; line-height: 1.76; font-weight: 300; }
.section-head.center p { margin-left: auto; margin-right: auto; max-width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 28px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--T);
}
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-h); border-color: var(--orange-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,114,58,.35); }
.btn-secondary { background: transparent; color: var(--navy); border-color: rgba(26,44,61,.3); }
.btn-secondary:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); border-color: transparent; }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn-ghost-light { background: transparent; color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.3); }
.btn-ghost-light:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(18,30,42,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo .lm {
  width: 40px; height: 40px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.25rem; color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 84% 100%, 0 100%);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo .lt { display: flex; flex-direction: column; line-height: 1.15; }
.logo .logo-name { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: #fff; }
.logo .logo-sub  { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange); }

/* Navigation */
.main-nav { display: flex; align-items: center; }
.main-nav > li { position: relative; }
.main-nav a {
  display: block;
  padding: 8px 12px;
  color: rgba(255,255,255,.78);
  font-weight: 400;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  border-radius: 3px;
  white-space: nowrap;
  transition: color var(--T), background var(--T);
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: #fff; background: rgba(255,255,255,.08); }

/* Dropdown */
.has-dropdown > a::after { content: " ▾"; font-size: 0.66em; opacity: 0.7; }
.has-dropdown::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px; }
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  pointer-events: none;
  z-index: 1001;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: all; }
.dropdown-inner {
  background: var(--navy-d);
  min-width: 226px;
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--orange);
  border-radius: 0 0 6px 6px;
  padding: 5px 0;
  box-shadow: 0 20px 48px rgba(0,0,0,.38);
}
.dropdown-inner a { padding: 9px 18px; border-radius: 0; font-size: 0.82rem; color: rgba(255,255,255,.7); }
.dropdown-inner a:hover { color: #fff; background: rgba(255,255,255,.06); padding-left: 24px; }

/* Header CTA — Telefon + Notdienst klar getrennt */
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.hdr-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.82);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,.12);
  transition: color var(--T);
}
.hdr-phone svg { color: var(--orange); flex-shrink: 0; }
.hdr-phone:hover { color: #fff; }

.btn-emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 9px 16px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background var(--T), transform var(--T), box-shadow var(--T);
  animation: pls 3s infinite;
}
.btn-emergency:hover { background: var(--orange-h); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(200,114,58,.5); animation: none; color: #fff; }
@keyframes pls { 0%,100% { box-shadow: 0 0 0 0 rgba(200,114,58,.4); } 55% { box-shadow: 0 0 0 8px rgba(200,114,58,0); } }
.btn-emergency .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: blk 1.4s infinite; flex-shrink: 0; }
@keyframes blk { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; transition: all 0.25s; }

/* ---------- Brand Ticker (Markenband) ---------- */
.brand-ticker {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  padding: 13px 0;
  cursor: default;
}
.brand-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-inner { overflow: hidden; }
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker-track span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  padding: 0 28px;
}
.ticker-track .sep {
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  opacity: 0.7;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- Buchungs-Kalender (unter Hero) ---------- */
.booking-bar {
  background: var(--navy);
  padding: 56px 0 60px;
  position: relative;
  z-index: 5;
}
.bb-head {
  text-align: center;
  margin-bottom: 36px;
}
.bb-head-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.bb-head-label::before,
.bb-head-label::after { content: ''; width: 22px; height: 1px; background: var(--orange); }
.bb-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}

/* Karten-Shell – dunkel */
.bb-card {
  background: #0f1e2c;
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0,0,0,.5), 0 4px 24px rgba(0,0,0,.3);
  display: grid;
  grid-template-columns: 290px 190px 1fr;
  border: 1px solid rgba(200,114,58,.25);
  overflow: hidden;
}

/* Kalender-Spalte */
.bb-cal {
  padding: 30px 26px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.bb-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.bb-cal-nav-btn {
  width: 30px; height: 30px;
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 3px;
  background: none;
  cursor: pointer;
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--T);
}
.bb-cal-nav-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.bb-month-label {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.bb-cal-dn {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.bb-cal-dn span {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: 5px 0;
}
.bb-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.bb-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  transition: all var(--T);
  border: 1.5px solid transparent;
}
.bb-day:hover:not(.disabled):not(.empty) { background: rgba(200,114,58,.18); border-color: var(--orange); color: var(--orange); }
.bb-day.selected { background: var(--orange); color: #fff; border-color: var(--orange); }
.bb-day.today { border-color: rgba(200,114,58,.6); color: var(--orange); }
.bb-day.disabled { color: rgba(255,255,255,.18); cursor: default; font-weight: 400; }
.bb-day.empty { cursor: default; }
.bb-day.weekend:not(.disabled):not(.selected) { color: rgba(255,255,255,.45); }

/* Uhrzeit-Spalte */
.bb-times {
  padding: 30px 18px;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
}
.bb-section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.bb-slot {
  display: block;
  width: 100%;
  padding: 9px 11px;
  margin-bottom: 6px;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 3px;
  background: rgba(255,255,255,.05);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  text-align: center;
  transition: all var(--T);
  letter-spacing: 0.01em;
}
.bb-slot:hover { border-color: var(--orange); background: rgba(200,114,58,.12); color: var(--orange); }
.bb-slot.sel { background: var(--orange); color: #fff; border-color: var(--orange); }
.bb-slot-any { color: rgba(255,255,255,.45); font-style: italic; font-weight: 500; }
.bb-slot-any.sel { font-style: normal; font-weight: 600; color: #fff; }

/* Formular-Spalte */
.bb-form {
  padding: 30px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  align-content: start;
}
/* Elemente die volle Breite einnehmen sollen */
.bb-form .bb-summary-box,
.bb-form .bb-field--full,
.bb-form .bb-submit,
.bb-form .bb-section-label {
  grid-column: 1 / -1;
}
.bb-summary-box {
  background: rgba(200,114,58,.1);
  border: 1px solid rgba(200,114,58,.3);
  border-radius: 4px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.bb-sum-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.bb-sum-row svg { color: var(--orange); flex-shrink: 0; }
.bb-sum-row span { color: rgba(255,255,255,.45); font-weight: 400; font-size: 0.78rem; }
.bb-sum-row span.has-value { color: #fff; font-weight: 600; font-size: 0.82rem; }
.bb-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.bb-field label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.bb-field input,
.bb-field select {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 12px;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 3px;
  background: rgba(255,255,255,.06);
  color: #fff;
  min-height: 44px;
  transition: border-color var(--T), box-shadow var(--T), background var(--T);
  -webkit-appearance: none;
  appearance: none;
}
.bb-field input::placeholder { color: rgba(255,255,255,.28); }
.bb-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 32px;
}
.bb-field select option { background: #1a2c3d; color: #fff; }
.bb-field input:focus,
.bb-field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(200,114,58,.18);
  background: rgba(255,255,255,.09);
}
.bb-submit { margin-top: 4px; width: 100%; justify-content: center; }
.bb-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.85);
  margin-top: 16px;
}
.bb-success svg { color: var(--orange); flex-shrink: 0; }
.bb-success a { color: var(--orange); font-weight: 600; text-decoration: none; }
.bb-success a:hover { text-decoration: underline; }

@media (max-width: 1040px) {
  .bb-card { grid-template-columns: 1fr 1fr; }
  .bb-form { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 680px) {
  .bb-card { grid-template-columns: 1fr; }
  .bb-cal, .bb-times { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .booking-bar { padding: 36px 0 40px; }
}

/* ---------- Hero (Full-Bleed Bild) ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 80px 0 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%; /* Raum/Boden stärker sichtbar → Tiefenwirkung */
  filter: brightness(1.12) contrast(1.04);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(10,19,28,.88) 0%,
    rgba(10,19,28,.72) 25%,
    rgba(10,19,28,.22) 52%,
    rgba(10,19,28,.00) 72%);
}
.hero .container {
  position: relative;
  z-index: 1;
  /* Textblock konsequent links: fixer Abstand vom Viewport-Rand, nicht zentriert */
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: clamp(32px, 7vw, 112px);
  padding-right: 0;
}
.hero-content { max-width: 530px; }

.hero h1 { color: #fff; font-weight: 300; }
.hero h1 strong { font-weight: 600; }
.hero h1 em { font-style: normal; color: var(--orange); }

.hero .kicker {
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  white-space: nowrap;
}
.hero .kicker::after { content: ''; flex: 0 0 30px; height: 1px; background: var(--orange); }

.hero p.lead {
  margin: 20px 0 32px;
  font-size: 1rem;
  line-height: 1.76;
  color: rgba(255,255,255,.62);
  font-weight: 300;
  max-width: 530px;
}
.hero p.lead strong { color: rgba(255,255,255,.85); font-weight: 500; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.trust-row { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-row .item { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,.52); font-weight: 400; letter-spacing: 0.02em; }
.trust-row .item svg { color: var(--orange); flex-shrink: 0; }

/* ---------- Stats-Strip ---------- */
.stats-strip {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.stats-strip .stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: transparent;
  border: none;
}
.stats-strip .stat {
  background: transparent;
  border-right: 1px solid rgba(255,255,255,.07);
  padding: 26px 20px;
  text-align: center;
}
.stats-strip .stat:last-child { border-right: none; }
.stats-strip .stat .num { font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 600; color: var(--orange); line-height: 1.1; }
.stats-strip .stat .num span { color: var(--orange); }
.stats-strip .stat .lbl { color: rgba(255,255,255,.42); font-size: 0.76rem; margin-top: 5px; letter-spacing: 0.04em; }

/* ---------- Cards / Leistungen ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--cream);
  border-radius: 0;
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  transition: background var(--T), box-shadow var(--T);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s ease;
}
.service-card:hover { background: var(--navy); box-shadow: inset 0 0 0 1px rgba(200,114,58,.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 48px; height: 48px;
  border-radius: 4px;
  background: rgba(200,114,58,.12);
  border: 1px solid rgba(200,114,58,.22);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: all var(--T);
}
.service-card.blue .icon { background: rgba(45,95,166,.1); border-color: rgba(45,95,166,.22); color: var(--blue); }
.service-card:hover .icon { background: rgba(200,114,58,.18); border-color: rgba(200,114,58,.35); color: var(--orange); }
.service-card h3 { margin-bottom: 10px; font-size: 1.30rem; transition: color var(--T); }
.service-card:hover h3 { color: #fff; }
.service-card p { color: var(--muted); font-size: 0.84rem; line-height: 1.7; font-weight: 300; flex-grow: 1; transition: color var(--T); }
.service-card:hover p { color: rgba(255,255,255,.5); }
.service-card .more { margin-top: 16px; font-weight: 500; color: var(--orange); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; }
.service-card .more:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Partner-Logos Ticker ---------- */
.partner-ticker {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray);
  overflow: hidden;
}
.partner-ticker-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  text-align: center;
}
.partner-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partner-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: partner-scroll 56s linear infinite;
}
.partner-track:hover { animation-play-state: paused; }
@keyframes partner-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.pbrand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--navy);
  opacity: 0.55;
  transition: opacity 0.3s;
}
.pbrand svg { height: 44px; width: auto; }
.pbrand:hover { opacity: 0.88; }
.psep {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.35;
  flex-shrink: 0;
}

/* ---------- Dark Band (Notdienst etc.) ---------- */
.band-dark {
  position: relative;
  background: var(--navy);
  color: rgba(255,255,255,.6);
  border-radius: 4px;
  padding: 56px 48px;
  overflow: hidden;
}
.band-dark::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,95,166,.15) 0%, transparent 70%);
}
.band-dark > * { position: relative; z-index: 1; }
.band-dark h2, .band-dark h3 { color: #fff; font-weight: 400; }
.band-dark h2 strong { font-weight: 600; }
.band-dark p { font-weight: 300; font-size: 0.92rem; line-height: 1.76; color: rgba(255,255,255,.65); }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.band-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Stats (Standard – Weiß) ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gray);
  border: 1px solid var(--gray);
}
.stat { background: var(--white); padding: 26px 16px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 600; color: var(--orange); line-height: 1.1; }
.stat .num span { color: var(--orange); }
.stat .lbl { color: var(--muted); font-size: 0.76rem; margin-top: 5px; letter-spacing: 0.05em; }

/* ---------- Split / Bio ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-media img {
  border-radius: 3px;
  box-shadow: 0 18px 56px rgba(26,44,61,.22);
  aspect-ratio: 4/4.6;
  object-fit: cover;
  width: 100%;
}
.split-body p { color: var(--muted); margin-bottom: 16px; font-size: 0.92rem; line-height: 1.8; font-weight: 300; }
.split-body p strong { color: var(--navy); font-weight: 500; }
.check-list { margin: 22px 0; display: grid; gap: 10px; list-style: none; padding: 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.65;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 7px;
}
.check-list li b { font-weight: 600; }

blockquote.pull {
  background: var(--cream);
  border-left: 3px solid var(--orange);
  padding: 18px 22px;
  border-radius: 0 4px 4px 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin: 22px 0;
}

/* ---------- Vorher/Nachher ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.ba-slider {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 56px rgba(26,44,61,.25);
  aspect-ratio: 3/4;
  user-select: none;
  -webkit-user-select: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; cursor: ew-resize; z-index: 3; }
.ba-handle::after {
  content: "◂ ▸";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff; color: var(--navy);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.3);
  white-space: nowrap;
}
.ba-label {
  position: absolute; top: 14px;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
  z-index: 2; color: #fff;
}
.ba-label.before { left: 14px; background: rgba(107,120,133,.75); }
.ba-label.after  { right: 14px; background: rgba(200,114,58,.9); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 4; touch-action: none; }

/* ---------- Karte ---------- */
.section-map { background: var(--navy); }

.map-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Quadratische Karte links */
.map-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
}
#map { position: absolute; inset: 0; width: 100%; height: 100%; background: #0c1b27; }

/* Kacheln auf Navy-Ton verschieben */
.leaflet-tile-pane {
  filter: brightness(0.88) hue-rotate(195deg) saturate(1.6);
}

.map-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 18px;
  background: #0f1e2c;
  text-align: center;
  padding: 40px 28px;
}
.map-placeholder p {
  color: rgba(255,255,255,.45);
  max-width: 300px;
  font-size: 0.84rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Text rechts */
.map-text h2 { color: #fff; margin-bottom: 16px; }
.map-text p  { color: rgba(255,255,255,.55); font-size: 0.92rem; line-height: 1.76; font-weight: 300; }
.map-check   { color: rgba(255,255,255,.75); margin-top: 24px !important; }
.map-check li::before { background: var(--orange); }

/* Leaflet UI – dunkel */
.leaflet-container { font-family: var(--font-body); }

.leaflet-popup-content-wrapper {
  background: #0f1e2c;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.leaflet-popup-content {
  margin: 12px 16px;
  font-size: 0.84rem;
  line-height: 1.6;
}
.leaflet-popup-content b { color: var(--orange); display: block; margin-bottom: 4px; font-weight: 600; }
.leaflet-popup-content a { color: var(--orange); }
.leaflet-popup-tip-container { display: none; }
.leaflet-popup-close-button { color: rgba(255,255,255,.35) !important; top: 6px !important; right: 8px !important; font-size: 18px !important; }
.leaflet-popup-close-button:hover { color: #fff !important; }

.leaflet-control-zoom a {
  background: #0f1e2c !important;
  color: rgba(255,255,255,.65) !important;
  border-color: rgba(255,255,255,.12) !important;
}
.leaflet-control-zoom a:hover {
  background: var(--navy) !important;
  color: #fff !important;
}
.leaflet-bar { border: none !important; box-shadow: 0 4px 16px rgba(0,0,0,.4) !important; }

.leaflet-control-attribution {
  background: rgba(15,30,44,.88) !important;
  color: rgba(255,255,255,.3) !important;
  font-size: 9px !important;
  padding: 2px 6px !important;
}
.leaflet-control-attribution a { color: rgba(255,255,255,.45) !important; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--gray); }
.faq-item { border-bottom: 1px solid var(--gray); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
  padding: 20px 0;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-size: 1.08rem;
  font-weight: 400; color: var(--navy);
  text-align: left; line-height: 1.35;
  transition: color var(--T);
}
.faq-q:hover { color: var(--orange); }
.faq-item.open .faq-q { color: var(--orange); }
.faq-q .chev {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--T);
  background: var(--white); color: var(--navy);
}
.faq-item.open .faq-q .chev { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(.4,0,.2,1); }
.faq-a p { padding: 0 0 22px; color: var(--muted); font-size: 0.92rem; line-height: 1.8; font-weight: 300; }

/* ---------- Blog / Ratgeber ---------- */
.post-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--gray);
  border-top: 2px solid transparent;
  box-shadow: 0 3px 14px rgba(0,0,0,.05);
  transition: all var(--T);
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); border-top-color: var(--orange); box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.post-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.post-card .body { padding: 22px 24px; flex-grow: 1; display: flex; flex-direction: column; }
.post-card .meta { font-size: 0.62rem; color: var(--orange); font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; }
.post-card h3 { font-size: 1.20rem; margin-bottom: 8px; line-height: 1.3; }
.post-card p { color: var(--muted); font-size: 0.84rem; line-height: 1.7; font-weight: 300; flex-grow: 1; }
.card-grid:has(.post-card) { gap: 18px; }

/* ---------- Formulare ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 0.87rem;
  padding: 11px 13px;
  border: 1.5px solid var(--gray);
  border-radius: 3px;
  background: #fff; color: var(--navy);
  transition: border-color var(--T), box-shadow var(--T);
  -webkit-appearance: none;
  min-height: 44px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(200,114,58,.1);
}
.form-hint { font-size: 0.74rem; color: var(--muted); font-weight: 300; line-height: 1.6; }
.form-hint a { color: var(--orange); }

/* ---------- Buchung (Multi-Step) ---------- */
.booking-shell {
  max-width: 760px; margin: 0 auto;
  background: #fff; border-radius: 5px;
  box-shadow: 0 12px 56px rgba(26,44,61,.18), 0 2px 16px rgba(26,44,61,.1);
  border: 1.5px solid rgba(200,114,58,.28);
  outline: 4px solid rgba(200,114,58,.06);
  overflow: hidden;
}
.booking-progress { display: flex; border-bottom: 1px solid var(--gray); background: var(--cream); }
.booking-progress .step {
  flex: 1; padding: 14px 8px; text-align: center;
  font-size: 0.73rem; font-weight: 500; color: var(--muted);
  border-bottom: 2px solid transparent; white-space: nowrap;
}
.booking-progress .step.active { color: var(--orange); border-bottom-color: var(--orange); background: #fff; }
.booking-progress .step.done { color: var(--navy); }
.booking-body { padding: 36px 40px; }
.booking-pane { display: none; }
.booking-pane.active { display: block; }
.booking-pane h3 { font-size: 1.30rem; }
.booking-nav { display: flex; justify-content: space-between; margin-top: 28px; gap: 12px; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choice {
  border: 1.5px solid #ddd8d0; border-radius: 4px;
  padding: 13px 15px; cursor: pointer;
  transition: all var(--T);
  background: #fff; font-family: var(--font-body);
  font-size: 1rem; text-align: left;
  box-shadow: 0 1px 3px rgba(26,44,61,.06);
  min-height: 44px;
}
.choice:hover { border-color: var(--orange); box-shadow: 0 3px 14px rgba(200,114,58,.14); transform: translateY(-1px); }
.choice.selected { border-color: var(--orange); background: rgba(200,114,58,.06); box-shadow: 0 3px 14px rgba(200,114,58,.18); }
.choice .t { font-weight: 500; color: var(--navy); display: block; font-size: 0.85rem; margin-bottom: 2px; }
.choice .d { font-size: 0.72rem; color: var(--muted); font-weight: 300; line-height: 1.4; }

.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cal-head strong { font-size: 0.86rem; font-weight: 500; }
.cal-head button {
  background: none; border: 1px solid var(--gray);
  border-radius: 3px; width: 34px; height: 34px;
  cursor: pointer; font-size: 0.9rem; color: var(--navy);
  transition: all var(--T);
}
.cal-head button:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; background: var(--cream); border: 1px solid var(--gray); border-radius: 4px; padding: 10px; }
.cal-grid .dow { text-align: center; font-size: 0.58rem; font-weight: 500; color: var(--muted); padding: 4px 0; letter-spacing: 0.05em; text-transform: uppercase; }
.cal-day {
  aspect-ratio: 1; border: none; background: none;
  border-radius: 3px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.78rem;
  color: var(--navy); transition: all var(--T); min-height: 34px;
}
.cal-day:hover:not(:disabled) { background: var(--orange); color: #fff; }
.cal-day.selected { background: var(--orange); color: #fff; font-weight: 600; }
.cal-day:disabled { color: #c9c4bb; cursor: default; }
.slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 14px; }
.slot {
  padding: 10px 8px; border: 1.5px solid var(--gray);
  border-radius: 3px; background: var(--cream);
  cursor: pointer; font-family: var(--font-body);
  font-weight: 500; font-size: 0.78rem; color: var(--navy);
  transition: all var(--T); min-height: 44px;
}
.slot:hover { border-color: var(--orange); color: var(--orange); background: #fff; }
.slot.selected { background: var(--orange); border-color: var(--orange); color: #fff; }
.booking-summary { background: var(--cream); border: 1px solid var(--gray); border-radius: 4px; padding: 20px 22px; margin-bottom: 20px; display: grid; gap: 8px; }
.booking-summary .row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.84rem; }
.booking-summary .row span { color: var(--muted); font-weight: 300; }
.booking-summary .row b { color: var(--navy); font-weight: 500; text-align: right; }
.booking-success { text-align: center; padding: 24px 0; }
.booking-success .big { font-size: 2.4rem; margin-bottom: 10px; color: var(--orange); font-family: var(--font-display); }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; }
.contact-line .ic {
  width: 38px; height: 38px; border-radius: 3px;
  background: rgba(200,114,58,.12);
  border: 1px solid rgba(200,114,58,.22);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-line .t { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 2px; }
.contact-line .d { color: var(--muted); font-size: 0.88rem; line-height: 1.6; font-weight: 300; }
.contact-line .d a { color: var(--navy); }
.contact-line .d a:hover { color: var(--orange); }

/* ---------- Page-Hero (Unterseiten) ---------- */
.page-hero {
  position: relative;
  background: linear-gradient(140deg, var(--navy-deep) 0%, #17354e 60%, var(--navy-deep) 100%);
  color: rgba(255,255,255,.6);
  padding: 60px 0 56px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 40%, rgba(45,95,166,.16) 0%, transparent 52%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 300; }
.page-hero h1 strong { font-weight: 600; }
.page-hero p { max-width: 760px; margin-top: 16px; font-size: 0.96rem; line-height: 1.76; font-weight: 300; }
.page-hero .kicker { color: var(--orange); }
.page-hero .kicker::after { background: var(--orange); }
.page-hero .band-actions { margin-top: 24px; }
.breadcrumb { font-size: 0.72rem; margin-bottom: 18px; color: rgba(255,255,255,.38); letter-spacing: 0.04em; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: #0b1a25; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.05); margin-top: 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 52px 0 40px;
}
.footer-top h4 {
  color: rgba(255,255,255,.82);
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.footer-top ul { display: grid; gap: 9px; }
.footer-top a { color: rgba(255,255,255,.42); font-size: 0.82rem; transition: color var(--T); }
.footer-top a:hover { color: var(--orange); }
.footer-top span { font-size: 0.82rem; }
.footer-brand .logo-name { color: #fff; font-family: var(--font-display); font-size: 1.18rem; font-weight: 600; }
.footer-brand p { font-size: 0.78rem; margin-top: 10px; max-width: 300px; line-height: 1.65; font-weight: 300; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap; font-size: 0.75rem;
}
.footer-bottom a { color: rgba(255,255,255,.3); margin-left: 18px; transition: color var(--T); }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom button.linklike {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.3); font-size: 0.75rem;
  font-family: var(--font-body); margin-left: 18px; padding: 0;
  transition: color var(--T);
}
.footer-bottom button.linklike:hover { color: var(--orange); }

/* ---------- WhatsApp Float ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 990;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: all var(--T);
  animation: wa-pulse 3s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.6); animation: none; }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.07); } }

/* ---------- Mobile Quick-Action-Bar ---------- */
.action-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 980;
  background: var(--navy-d);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.action-bar a {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 3px; padding: 9px 4px 8px;
  color: rgba(255,255,255,.72);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  min-height: 56px;
}
.action-bar a svg { flex-shrink: 0; }
.action-bar .ab-call { background: var(--orange); color: #fff; }
.action-bar .ab-wa { color: #4fdf85; }

/* ---------- Cookie-Consent ---------- */
#ck-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 9998;
  opacity: 0; visibility: hidden; transition: all .35s;
}
#ck-overlay.show { opacity: 1; visibility: visible; }
#ck {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); color: var(--white); z-index: 9999;
  border-top: 2px solid var(--orange);
  box-shadow: 0 -6px 40px rgba(0,0,0,.4);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  max-height: 90vh; overflow-y: auto;
}
#ck.show { transform: translateY(0); }
.ck-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 36px; flex-wrap: wrap; }
.ck-bar-text { font-size: 0.8rem; line-height: 1.65; color: rgba(255,255,255,.68); max-width: 620px; font-weight: 300; }
.ck-bar-text a { color: var(--orange); }
.ck-bar-text a:hover { text-decoration: underline; }
.ck-bar-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; align-items: center; }
.ck-btn-all, .ck-btn-ess {
  border: none; padding: 10px 22px; border-radius: 3px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  cursor: pointer; white-space: nowrap; transition: all var(--T); min-height: 44px;
}
.ck-btn-all { background: var(--orange); color: #fff; }
.ck-btn-all:hover { background: var(--orange-h); }
.ck-btn-ess { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.28); }
.ck-btn-ess:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.ck-btn-settings {
  background: transparent; color: rgba(255,255,255,.42); border: none;
  padding: 10px; font-family: var(--font-body); font-size: 0.76rem;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px; white-space: nowrap;
}
.ck-btn-settings:hover { color: rgba(255,255,255,.8); }
.ck-detail { display: none; border-top: 1px solid rgba(255,255,255,.1); padding: 24px 36px 22px; }
.ck-detail.open { display: block; }
.ck-detail-title { font-family: var(--font-display); font-size: 1.25rem; color: #fff; margin-bottom: 6px; font-weight: 600; }
.ck-detail-sub { font-size: 0.76rem; color: rgba(255,255,255,.48); line-height: 1.65; margin-bottom: 18px; max-width: 680px; font-weight: 300; }
.ck-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.ck-cat { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 16px; }
.ck-cat-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; gap: 10px; }
.ck-cat-name { font-size: 0.83rem; font-weight: 500; color: #fff; }
.ck-cat-desc { font-size: 0.73rem; color: rgba(255,255,255,.42); line-height: 1.6; font-weight: 300; }
.ck-toggle { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.ck-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.ck-toggle-slider { position: absolute; inset: 0; background: rgba(255,255,255,.15); border-radius: 100px; cursor: pointer; transition: background .25s; }
.ck-toggle-slider::before { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .25s; box-shadow: 0 1px 4px rgba(0,0,0,.3); }
.ck-toggle input:checked + .ck-toggle-slider { background: var(--orange); }
.ck-toggle input:checked + .ck-toggle-slider::before { transform: translateX(18px); }
.ck-required-badge {
  font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); background: rgba(200,114,58,.14);
  border: 1px solid rgba(200,114,58,.28);
  padding: 2px 7px; border-radius: 100px; white-space: nowrap;
}
.ck-detail-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ck-btn-save {
  background: var(--orange); color: #fff; border: none;
  padding: 10px 26px; border-radius: 3px;
  font-family: var(--font-body); font-size: 0.83rem; font-weight: 500;
  cursor: pointer; transition: background var(--T); min-height: 44px;
}
.ck-btn-save:hover { background: var(--orange-h); }
.ck-btn-back {
  background: transparent; color: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.16);
  padding: 10px 22px; border-radius: 3px;
  font-family: var(--font-body); font-size: 0.83rem;
  cursor: pointer; transition: all var(--T); min-height: 44px;
}
.ck-btn-back:hover { color: #fff; border-color: rgba(255,255,255,.5); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .split, .band-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .card-grid, .card-grid.two { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-strip .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-strip .stat:nth-child(2) { border-right: none; }
  .stats-strip .stat:nth-child(3) { border-top: 1px solid rgba(255,255,255,.07); }
  .band-dark { padding: 44px 32px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .hdr-phone { display: none; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--navy-d);
    flex-direction: column; align-items: stretch;
    padding: 12px 18px 22px; gap: 2px;
    box-shadow: 0 24px 48px rgba(0,0,0,.45);
    display: none;
    border-bottom: 2px solid var(--orange);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 12px; font-size: 0.94rem; }
  .has-dropdown::after { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; display: none; pointer-events: all; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown-inner { box-shadow: none; border: none; border-left: 2px solid rgba(200,114,58,.4); border-radius: 0; padding: 0 0 0 6px; margin: 0 0 6px 12px; min-width: 0; background: transparent; }
  .dropdown-inner a { padding: 10px 12px; }
  .dropdown-inner a:hover { padding-left: 12px; }

  .btn-emergency { padding: 8px 12px; font-size: 0.78rem; }

  .action-bar { display: flex; }
  body { padding-bottom: 60px; }
  .wa-float { display: none; }
  #ck { bottom: 0; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .hero .container { padding-left: 20px; padding-right: 0; }
  section { padding: 44px 0; }
  section.tight { padding: 28px 0; }
  .hero { padding: 52px 0 56px; min-height: 480px; }
  .page-hero { padding: 44px 0 44px; }
  .card-grid, .card-grid.two { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-body { padding: 22px 16px; }
  .booking-progress .step { font-size: 0.6rem; padding: 11px 2px; letter-spacing: 0; }
  .band-dark { padding: 36px 22px; }
  .band-actions .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-row { gap: 12px; }
  .stats-strip .stats-row { grid-template-columns: 1fr 1fr; }
  .stats-strip .stat { padding: 18px 12px; }
  .split { gap: 28px; }
  .split-media img { aspect-ratio: 16/11; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom a, .footer-bottom button.linklike { margin-left: 0; margin-right: 16px; }
  .ck-bar { padding: 12px 16px; }
  .ck-detail { padding: 18px 16px 14px; }
  .ck-categories { grid-template-columns: 1fr; }
  .ck-bar-actions { width: 100%; }
  .ck-btn-all, .ck-btn-ess { flex: 1; }
  #map { height: 320px; }
  .contact-grid { gap: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn-emergency, .wa-float { animation: none; }
  .ticker-track { animation: none; }
}
