/* KurvenKult – minimal, clean design (shared across pages) */
:root {
  color-scheme: light;
  --bg: #fbfbfd;
  --ink: #0b0f14;
  --muted: rgba(11, 15, 20, 0.56);
  --muted-2: rgba(11, 15, 20, 0.36);
  --card: rgba(255, 255, 255, 0.92);
  --accent: #171717;
  --accent-strong: #0b0f14;
  --border: rgba(11, 15, 20, 0.09);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.06);
  --radius: 999px;
  --page-content-width: min(1240px, calc(100% - 48px));
  --page-content-width-wide: min(1480px, calc(100% - 64px));
}

* { box-sizing: border-box; }
html, body { height: 100%; }
[hidden] { display: none !important; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: -140px;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,0.04) 0 34%, transparent 35%),
    radial-gradient(circle at 50% 40%, rgba(0,0,0,0.02) 0 52%, transparent 53%),
    radial-gradient(circle at 50% 40%, rgba(0,0,0,0.012) 0 70%, transparent 71%),
    conic-gradient(from 210deg at 50% 40%, rgba(0,0,0,0.03) 0deg, transparent 36deg 310deg, rgba(0,0,0,0.03) 310deg 360deg);
  opacity: 0.65;
  filter: blur(0.4px);
}

body.fullscreen-active::before {
  opacity: 0;
  background: transparent;
}

body.fullscreen-active {
  background: #fff;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: var(--page-content-width);
  margin: 0 auto;
}

/* Header / Nav */
header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 15, 20, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 10px;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: none;
}

.logo__name {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 14px;
  color: rgba(11, 15, 20, 0.9);
}

.logo__tagline {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
  flex-wrap: wrap;
  row-gap: 10px;
  min-width: 0;
  letter-spacing: -0.01em;
}

.nav-links a {
  white-space: nowrap;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 120ms ease, color 120ms ease;
}
.nav-links a:hover {
  color: rgba(11, 15, 20, 0.76);
  background: rgba(11, 15, 20, 0.04);
}
.nav-links a[aria-current="page"] {
  color: rgba(11, 15, 20, 0.86);
  background: rgba(11, 15, 20, 0.06);
  border: 1px solid rgba(11, 15, 20, 0.08);
}

.nav > .btn {
  min-height: 46px;
  padding: 12px 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 12px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, opacity 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
}
.btn:hover { opacity: 0.92; }
.btn:active { transform: translateY(1px); }

.btn-spotlight {
  background: linear-gradient(180deg, #171717, #0b0f14);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.16);
}
.btn-spotlight:hover {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: rgba(11, 15, 20, 0.18);
  opacity: 1;
  background: rgba(11, 15, 20, 0.04);
}

/* Utilities */
.btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-row--spaced { margin-top: 18px; }
.btn-row--start { justify-content: flex-start; }

/* Simple bullet list */
.bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.bullets li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(11, 15, 20, 0.78);
  font-size: 14px;
}
.bullets li::before {
  content: "•";
  color: rgba(11, 15, 20, 0.38);
  line-height: 1.2;
  transform: translateY(2px);
}

/* Layout */
main { display: block; }
section { padding: 64px 0; }
section + section { padding-top: 0; }

.section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  font-weight: 600;
}
.section-title p { margin: 0; color: var(--muted); }

/* Hero (home) */
.hero {
  padding: 86px 0 58px;
  text-align: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  justify-items: center;
}
.hero-grid > div:first-child { max-width: 820px; }

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.05;
  margin: 14px 0 14px;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.hero p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
}

.page--home .hero-search {
  width: min(820px, 100%);
  margin: 18px auto 0;
  display: grid;
  gap: 10px;
}
.page--home .hero-search__row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.page--home .hero-search__row .input {
  flex: 1 1 320px;
  min-width: 220px;
}
.page--home .hero-search__field {
  position: relative;
  flex: 1 1 320px;
  min-width: 220px;
}
.page--home .hero-search__field .input {
  width: 100%;
}
.page--home .hero-search__hint {
  margin: 0;
}
.page--home .hero-search__options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}
.page--home .hero .bullets {
  margin: 18px auto 0;
  width: min(720px, 100%);
  text-align: left;
}

.page--home .section-title {
  align-items: center;
  text-align: center;
}

.page--home #map .split {
  justify-items: center;
}

.page--home #map .split > div:first-child {
  width: 100%;
  max-width: 560px;
}

.page--home #map .card {
  text-align: center;
}

.hero-card {
  width: min(520px, 100%);
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  display: grid;
  gap: 14px;
  text-align: left;
}
.hero-card .stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 15, 20, 0.04);
  color: rgba(11, 15, 20, 0.7);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(11, 15, 20, 0.06);
}
.chip--link {
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
}
.chip--link:hover {
  background: rgba(11, 15, 20, 0.06);
  border-color: rgba(11, 15, 20, 0.10);
  color: rgba(11, 15, 20, 0.82);
}

.page--home .step {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(11, 15, 20, 0.04);
  border: 1px solid rgba(11, 15, 20, 0.08);
  color: rgba(11, 15, 20, 0.78);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 10px;
}

/* Cards / grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  min-height: 150px;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.card:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 15, 20, 0.14);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}
.card h3 { margin: 0 0 8px; font-size: 1.05rem; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: center;
}

/* Map preview (home) */
.map-preview {
  position: relative;
  background: rgba(11, 15, 20, 0.015);
  border-radius: 22px;
  padding: 12px;
  border: 1px solid var(--border);
  min-height: 340px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.page--home #leafletMap {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  border: 1px solid rgba(11, 15, 20, 0.08);
  background: rgba(11, 15, 20, 0.04);
}

.page--home #features .grid-3 {
  justify-content: center;
}

.page--home #map {
  padding: 88px 0;
}

.page--home #map > .container {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.page--home #map .section-title {
  text-align: center;
}

.page--home #map .split {
  max-width: 920px;
}

.page--home #map .map-preview {
  width: min(620px, 100%);
}

.page--home #map .card {
  max-width: 420px;
  margin: 0 auto;
}

/* Map page */
.page-head {
  display: grid;
  gap: 10px;
  margin: 10px 0 18px;
  max-width: 760px;
}
.page-head h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.page-head p { margin: 0; color: var(--muted); }

.page--hotels .container,
.page--hotel .container,
.page--map .container,
.page--submit .container,
.page--contact .container,
.page--legal .container {
  width: var(--page-content-width-wide);
}

.page--hotels .page-head,
.page--map .page-head,
.page--submit .page-head,
.page--contact .page-head,
.page--legal .page-head {
  max-width: 920px;
  margin: 12px 0 28px;
}

.page--hotels .page-head p,
.page--map .page-head p,
.page--submit .page-head p,
.page--contact .page-head p,
.page--legal .page-head p {
  color: rgba(11, 15, 20, 0.7);
  font-size: 1.02rem;
}

.page--hotels footer {
  padding-top: 44px;
  color: rgba(11, 15, 20, 0.68);
}

/* Submit (betrieb eintragen) layout */
.submit-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
  align-items: start;
}

/* Countdown */
.countdown-hero {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 22px 0 26px;
  margin: 8px 0 16px;
}

.countdown-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  width: min(980px, 120vw);
  height: min(980px, 120vw);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 46%, rgba(0, 0, 0, 0.03) 47% 48%, transparent 49%),
    conic-gradient(from 250deg, rgba(0, 0, 0, 0.03) 0 18deg, transparent 18deg 340deg, rgba(0, 0, 0, 0.03) 340deg 360deg);
  opacity: 0.35;
  filter: blur(0.6px);
}

.countdown-hero__title {
  position: relative;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  letter-spacing: -0.04em;
  font-weight: 500;
}

.countdown-hero__kicker {
  position: relative;
  margin: 0 0 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(84px, 1fr));
  gap: clamp(16px, 3.4vw, 54px);
  align-items: end;
  justify-items: center;
  padding-top: 2px;
  margin-bottom: 18px;
}

.countdown__unit {
  position: relative;
  min-width: 84px;
}

.countdown__unit:not(:last-child)::after {
  content: ":";
  position: absolute;
  right: calc(-1 * clamp(16px, 3.4vw, 54px) / 2);
  top: 50%;
  transform: translate(50%, -62%);
  color: rgba(11, 15, 20, 0.18);
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1;
}

.countdown__value {
  font-size: clamp(56px, 6.8vw, 96px);
  letter-spacing: -0.06em;
  line-height: 1;
  font-weight: 500;
}

.countdown__label {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}

.map-shell { display: grid; place-items: center; }
.page--map .map-shell {
  padding-top: 0;
}
.map-card {
  width: 100%;
  max-width: 1200px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
}
.page--map .map-card {
  max-width: none;
}
.map-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 20, 0.08);
  background: rgba(11, 15, 20, 0.04);
  cursor: zoom-in;
}
.page--map #leafletMap {
  width: 100%;
  height: min(74vh, 760px);
}

/* Detail map */
.page--hotel #detailMap {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  border: 1px solid rgba(11, 15, 20, 0.08);
  background: rgba(11, 15, 20, 0.04);
}

.map-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 10px;
  z-index: 1200;
}
.mini-btn {
  border-radius: var(--radius);
  border: 1px solid rgba(11, 15, 20, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 600;
  padding: 10px 12px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 120ms ease, border-color 120ms ease, opacity 120ms ease;
}
.mini-btn:hover { border-color: rgba(11, 15, 20, 0.2); }
.mini-btn:active { transform: translateY(1px); }

.map-frame:fullscreen,
.map-frame:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  border: 0;
  cursor: zoom-out;
}
.map-frame:fullscreen #leafletMap,
.map-frame:-webkit-full-screen #leafletMap {
  width: 100%;
  height: 100%;
}

.map-status {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 15, 20, 0.08);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.map-status strong { color: var(--ink); font-weight: 700; }
.map-status .pill {
  background: rgba(11, 15, 20, 0.06);
  color: rgba(11, 15, 20, 0.72);
  border: 1px solid rgba(11, 15, 20, 0.08);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

/* Listings */
.listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 22px;
}
.listing {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid rgba(11, 15, 20, 0.1);
  overflow: hidden;
  display: grid;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.listing:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 15, 20, 0.18);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.1);
}
.listing .image {
  background: rgba(11, 15, 20, 0.04);
  height: 210px;
  display: grid;
  place-items: center;
  color: rgba(11, 15, 20, 0.52);
  font-weight: 700;
}
.listing .image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.listing .content {
  padding: 18px;
  display: grid;
  gap: 12px;
}
.listing .btn-row .btn {
  min-height: 46px;
}
.listing__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.listing__price {
  color: rgba(11, 15, 20, 0.92);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.listing__title {
  display: block;
}
.listing__title strong {
  font-size: 1.14rem;
  line-height: 1.3;
}
.listing__location-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.listing__place {
  color: rgba(11, 15, 20, 0.74);
  font-weight: 600;
}
.listing__primary-signal {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.05);
  border: 1px solid rgba(11, 15, 20, 0.1);
  color: rgba(11, 15, 20, 0.84);
  font-size: 12px;
  font-weight: 700;
}
.listing__signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.listing__signal {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.03);
  border: 1px solid rgba(11, 15, 20, 0.08);
  color: rgba(11, 15, 20, 0.72);
  font-size: 12px;
  font-weight: 700;
}
.listing__feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.listing__feature {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.03);
  border: 1px solid rgba(11, 15, 20, 0.08);
  color: rgba(11, 15, 20, 0.72);
  font-size: 12px;
  font-weight: 700;
}
.listing__highlight {
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(11, 15, 20, 0.035);
  border: 1px solid rgba(11, 15, 20, 0.08);
  color: rgba(11, 15, 20, 0.78);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
.listing__image-fallback {
  padding: 18px;
  text-align: center;
}
.badge {
  display: inline-flex;
  padding: 4px 10px;
  background: rgba(11, 15, 20, 0.04);
  color: rgba(11, 15, 20, 0.72);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
  border: 1px solid rgba(11, 15, 20, 0.06);
}
.muted { color: var(--muted); }
.no-results {
  grid-column: 1 / -1;
  background: #fff;
  border: 1px solid rgba(11, 15, 20, 0.24);
  border-left: 6px solid #171717;
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}
.no-results strong {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}
.no-results p {
  margin: 0;
  color: rgba(11, 15, 20, 0.78);
}

/* CTA + Footer */
.cta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  margin: 0 auto;
}

footer {
  border-top: 1px solid rgba(11, 15, 20, 0.08);
  padding: 34px 0 54px;
  color: var(--muted);
  font-size: 13px;
}
footer strong {
  display: inline-block;
  font-weight: 600;
  color: rgba(11, 15, 20, 0.86);
  margin-bottom: 8px;
}

/* Forms (contact + filters) */
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.contact-card:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 15, 20, 0.14);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}
.contact-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-head h3 { margin: 0; }
.contact-head p { margin: 6px 0 0; color: var(--muted); }

.contact-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius);
  background: rgba(11, 15, 20, 0.04);
  color: rgba(11, 15, 20, 0.7);
  border: 1px solid rgba(11, 15, 20, 0.08);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 0.95rem; }

.contact-form input,
.contact-form textarea,
.input,
.select {
  border-radius: 14px;
  border: 1px solid rgba(11, 15, 20, 0.12);
  padding: 12px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:hover,
.contact-form textarea:hover,
.input:hover,
.select:hover {
  border-color: rgba(11, 15, 20, 0.20);
}
.contact-form input:focus,
.contact-form textarea:focus,
.input:focus,
.select:focus {
  border-color: rgba(11, 15, 20, 0.22);
  box-shadow: 0 0 0 4px rgba(11, 15, 20, 0.08);
}
.contact-form textarea { resize: vertical; }

input::placeholder,
textarea::placeholder {
  color: rgba(11, 15, 20, 0.42);
}

input[type="checkbox"] { accent-color: #111; }

.field-full { grid-column: 1 / -1; }
.actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  align-items: start;
  justify-items: start;
  margin-top: 4px;
}
.actions > .btn { justify-self: start; }
.contact-switch {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px dashed rgba(11, 15, 20, 0.14);
}
.contact-switch .btn {
  box-shadow: none;
}
.small { font-size: 0.9rem; }

.filters {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}
.filters--compact {
  display: grid;
  gap: 14px;
}
.filters-panel .filters {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.quick-filters {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
}
.quick-filters--panel {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(11, 15, 20, 0.1);
  box-shadow: var(--shadow-soft);
}
.quick-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.hotel-browser {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.hotel-browser__sidebar {
  position: sticky;
  top: 94px;
}
.hotel-browser__results {
  min-width: 0;
  display: grid;
  align-content: start;
}
.results-stage {
  display: grid;
  gap: 22px;
  min-height: 760px;
  padding: 24px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at top right, rgba(11, 15, 20, 0.04), transparent 28%);
  border: 1px solid rgba(11, 15, 20, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}
.filters-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 15, 20, 0.1);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.08);
}
.filters-panel__head {
  display: grid;
  gap: 8px;
}
.filters-panel__head h2 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.18;
}
.filters-panel__head p {
  margin: 0;
  color: rgba(11, 15, 20, 0.66);
  max-width: 34ch;
}
.filters-panel__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 15, 20, 0.54);
}
.quick-filters__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.quick-filter-btn {
  box-shadow: none;
}
.quick-filter-btn.is-active {
  background: #171717;
  color: #fff;
  border-color: #171717;
}
.quick-filter-btn--reset {
  background: rgba(11, 15, 20, 0.04);
}
.filter-collapsible {
  grid-column: 1 / -1;
  border: 1px solid rgba(11, 15, 20, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(11, 15, 20, 0.025);
}
.filter-collapsible summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(11, 15, 20, 0.82);
  outline: none;
}
.filter-collapsible[open] {
  background: rgba(11, 15, 20, 0.04);
}
.price-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.input--compact {
  padding: 10px;
  font-size: 0.95rem;
}
.filters__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 12px;
  align-items: end;
}
.filters__row--primary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.filters__search {
  min-width: 0;
}
.filters__search--primary {
  grid-column: 1 / -1;
}
.filters__search--primary .input {
  min-height: 58px;
  font-size: 1.04rem;
  border-color: rgba(11, 15, 20, 0.16);
  box-shadow: inset 0 0 0 1px rgba(11, 15, 20, 0.02);
}
.filters__grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 12px;
}
.filters__advanced {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}
.filters__location {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: end;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(11, 15, 20, 0.025);
  border: 1px solid rgba(11, 15, 20, 0.09);
  box-shadow: var(--shadow-soft);
}
.filters__location-copy {
  display: grid;
  gap: 4px;
}
.filters__location-copy p {
  margin: 0;
}
.filters__location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}
.filters__location-search {
  position: relative;
  grid-column: 1 / -1;
}
.location-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 6px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(11, 15, 20, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.location-suggestion,
.location-suggestions__empty {
  border-radius: 12px;
  padding: 10px 12px;
  text-align: left;
}
.location-suggestion {
  display: grid;
  gap: 2px;
  border: 1px solid transparent;
  background: rgba(11, 15, 20, 0.02);
  color: var(--ink);
  cursor: pointer;
}
.location-suggestion:hover {
  background: rgba(11, 15, 20, 0.05);
  border-color: rgba(11, 15, 20, 0.08);
}
.location-suggestion small,
.location-suggestions__empty {
  color: rgba(11, 15, 20, 0.66);
}
.filters__advanced-block {
  display: grid;
  gap: 10px;
}
.filters__advanced-block + .filters__advanced-block {
  padding-top: 14px;
  border-top: 1px solid rgba(11, 15, 20, 0.08);
}
.filters__group-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11, 15, 20, 0.58);
}
.filters__checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.check--card {
  width: 100%;
  justify-content: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(11, 15, 20, 0.08);
  background: rgba(11, 15, 20, 0.02);
}
.check--card:has(input:checked) {
  background: rgba(11, 15, 20, 0.06);
  border-color: rgba(11, 15, 20, 0.18);
  color: rgba(11, 15, 20, 0.88);
}
.filters__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  position: sticky;
  bottom: 12px;
  z-index: 4;
  margin-top: 10px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 15, 20, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}
.filters__actions #applyFilters {
  order: -1;
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.12);
}
.filters__actions #clearFilters {
  width: 100%;
}
.filters label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(11, 15, 20, 0.78);
}
.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(11, 15, 20, 0.72);
}
.check input { width: 16px; height: 16px; }

.results-meta {
  margin: 14px 0 14px;
  color: rgba(11, 15, 20, 0.68);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.results-meta--prominent {
  align-items: flex-end;
  margin: 0 0 10px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 15, 20, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}
.results-meta__primary {
  display: grid;
  gap: 8px;
}
.results-meta__primary strong {
  font-size: 1.35rem;
  color: var(--ink);
}
.results-meta__state {
  width: fit-content;
  background: rgba(11, 15, 20, 0.06);
  color: rgba(11, 15, 20, 0.84);
}
.results-meta__secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.results-meta__sort-control {
  min-width: 220px;
  display: grid;
  gap: 6px;
  color: rgba(11, 15, 20, 0.74);
  font-weight: 600;
}
.results-meta__sort-control .select {
  min-width: 220px;
}
.results-meta__map-btn {
  min-height: 44px;
  border-color: rgba(11, 15, 20, 0.14);
}
.results-loading {
  grid-column: 1 / -1;
  padding: 26px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 15, 20, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  color: rgba(11, 15, 20, 0.72);
  font-weight: 600;
}
.results-spotlight[hidden] {
  display: none;
}
.results-spotlight__shell {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(11, 15, 20, 0.9), rgba(11, 15, 20, 0.78)),
    linear-gradient(135deg, rgba(11, 15, 20, 0.08), rgba(11, 15, 20, 0.18));
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}
.results-spotlight__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.results-spotlight__copy {
  display: grid;
  gap: 6px;
  max-width: 46ch;
}
.results-spotlight__copy h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.results-spotlight__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}
.results-spotlight__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.results-spotlight__actions .btn {
  min-height: 46px;
}
.results-spotlight__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.results-spotlight__notes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.results-spotlight__note {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
}
.results-spotlight__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.results-spotlight__cards .listing {
  box-shadow: none;
}
.active-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.active-filter-chips[hidden] {
  display: none;
}
.active-filter-chip {
  background: rgba(11, 15, 20, 0.06);
  color: rgba(11, 15, 20, 0.84);
  border-color: rgba(11, 15, 20, 0.1);
}
.pagination-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cta--help {
  margin-top: 24px;
}

/* Hotel detail */
.detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.detail__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.detail__card:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 15, 20, 0.14);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}
.detail__title { margin: 0; font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: -0.02em; }
.detail__meta { margin-top: 6px; color: var(--muted); font-size: 13px; }
.detail__image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 15, 20, 0.08);
  background: rgba(11, 15, 20, 0.04);
}
.detail__image-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.detail__image img {
  width: 100%;
  height: auto;
  max-height: min(76vh, 760px);
  object-fit: contain;
  display: block;
}
.detail__gallery {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}
.detail__thumb-link {
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(11, 15, 20, 0.1);
  overflow: hidden;
  background: rgba(11, 15, 20, 0.03);
  cursor: zoom-in;
}
.detail__thumb {
  display: block;
  width: 100%;
  height: 70px;
  object-fit: cover;
}
.detail__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 15, 20, 0.82);
  backdrop-filter: blur(6px);
}
.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 24px));
  height: min(94vh, 980px);
  margin: 3vh auto;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: stretch;
  gap: 16px;
}
.lightbox__figure {
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 0;
  gap: 14px;
  justify-items: center;
  align-items: stretch;
}
.lightbox__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: min(1320px, 100%);
  max-height: min(86vh, 900px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.lightbox__caption {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  text-align: center;
}
.lightbox__nav,
.lightbox__close {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}
.lightbox__nav {
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.lightbox__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lightbox__nav:hover,
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 14px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 15, 20, 0.12);
  box-shadow: var(--shadow-soft);
  transform: translateY(-140%);
  transition: transform 140ms ease;
  z-index: 3000;
}
.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(11, 15, 20, 0.16);
  outline-offset: 2px;
  border-radius: 10px;
}

/* Responsive */
@media (min-width: 920px) {
  .page--home .hero {
    text-align: left;
  }

  .page--home .hero-grid {
    grid-template-columns: 1fr 520px;
    justify-items: stretch;
    text-align: left;
  }

  .page--home .hero-search {
    margin-left: 0;
    margin-right: 0;
  }

  .page--home .hero-search__options {
    justify-content: flex-start;
  }

  .page--home .hero .bullets {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .hotel-browser {
    grid-template-columns: 1fr;
  }
  .hotel-browser__sidebar {
    position: static;
  }
  .results-stage {
    min-height: 0;
  }
  .results-spotlight__cards {
    grid-template-columns: 1fr 1fr;
  }
  .filters__row { grid-template-columns: 1fr; }
  .filters__row--primary { grid-template-columns: 1fr 1fr; }
  .filters__grid { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
  .filters__checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail { grid-template-columns: 1fr; }
  .submit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  section { padding: 48px 0; }
  .hero { padding-top: 50px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.12; }

  .nav { align-items: flex-start; gap: 12px; }
  .logo { order: 1; }
  .btn-spotlight { order: 2; width: 100%; justify-content: center; }
  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 6px 0 2px;
    margin: -4px 0 0;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    background: rgba(11, 15, 20, 0.04);
    border: 1px solid rgba(11, 15, 20, 0.08);
    padding: 10px 12px;
    border-radius: 12px;
    white-space: nowrap;
    color: rgba(11, 15, 20, 0.86);
    font-weight: 600;
  }

  .page--home .hero-search__row {
    flex-direction: column;
    align-items: stretch;
  }
  .page--home .hero-search__row .input {
    min-width: 0;
  }
  .page--home .hero-search__row .btn,
  .page--home .hero-search__row .btn-outline {
    width: 100%;
    display: flex;
  }
  .page--home .hero-search__options {
    justify-content: flex-start;
  }

  .contact-form { grid-template-columns: 1fr; }
  .filters__row--primary,
  .filters__checks {
    grid-template-columns: 1fr;
  }
  .filters__location {
    grid-template-columns: 1fr;
  }
  .filters__location-actions {
    grid-template-columns: 1fr;
  }
  .filters__actions {
    position: static;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .filters__actions,
  .results-meta__secondary,
  .quick-filters__head {
    justify-content: flex-start;
  }
  .results-meta__sort-control,
  .results-meta__sort-control .select {
    min-width: 0;
    width: 100%;
  }
  .results-stage {
    padding: 18px;
    border-radius: 24px;
  }
  .results-spotlight__shell {
    padding: 20px;
  }
  .results-spotlight__cards {
    grid-template-columns: 1fr;
  }
  .page--home #leafletMap { height: 320px; }
  .page--map #leafletMap { height: 72vh; }
  .map-status { flex-direction: column; align-items: flex-start; gap: 6px; }
  .map-status .pill { align-self: flex-start; }
  .lightbox__dialog {
    width: calc(100% - 16px);
    height: min(94vh, 920px);
    margin: 3vh auto;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
  }
  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  .lightbox__close {
    top: 6px;
    right: 6px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .lightbox__image {
    max-height: calc(84vh - 88px);
  }
  .logo__tagline { display: none; }
}

@media (max-width: 560px) {
  .countdown {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 16px 22px;
  }

  .countdown__unit:not(:last-child)::after {
    content: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .mini-btn { transition: none; }
}



