/* ============================================================
   hotels-in.at — Theme-Stile
   Basis: Design-Übergabe "Austrian hotel directory design"
   (DÁP Design System: Inter, pill buttons, 16px card radius,
    hairline borders, dezente Schatten)

   Aufbau:
     1. Fonts
     2. Design-Tokens
     3. Saisonale Themes
     4. Reset & Basis
     5. Layout-Container
     6. Komponenten
     7. Templates
     8. Responsive (mobile-first Overrides sind inline,
        Desktop-Erweiterungen in den Media-Queries am Ende
        jedes Abschnitts)
   ============================================================ */

/* ---------- 1. Fonts (lokal, DSGVO) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-variable.woff2") format("woff2-variations"),
       url("../fonts/inter-variable.woff2") format("woff2");
}

/* ---------- 2. Design-Tokens ---------- */
:root {
  --white: #ffffff;
  --off-white: #f5f7fa;
  --grey-100: #e9edf2;
  --grey-200: #d1d7df;
  --grey-300: #a3abba;
  --grey-400: #707a8a;
  --grey-500: #606b7a;
  --grey-600: #404753;
  --ink: #1c1f26;

  --star: #f98900;
  --ok: #027133;
  --warn: #b33c00;

  --font-sans: "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;
  --tracking-heading: -0.02em;

  --r-4: 4px;
  --r-8: 8px;
  --r-16: 16px;
  --r-pill: 1000px;

  --shadow-100: 0 1px 2px rgba(0, 0, 0, 0.08);
  --shadow-200: 0 2px 4px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-300: 0 4px 8px -2px rgba(0, 0, 0, 0.06), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-400: 0 6px 16px -2px rgba(0, 0, 0, 0.04), 0 24px 40px -4px rgba(0, 0, 0, 0.08);
  --shadow-500: 0 12px 32px -4px rgba(0, 0, 0, 0.1), 0 40px 60px -10px rgba(0, 0, 0, 0.12);
  --focus-ring: 0 0 0 4px rgba(66, 88, 237, 0.3);

  --ease: cubic-bezier(0.2, 0, 0, 1);
  --dur: 180ms;

  /* Layout */
  --gutter: 16px;
  --max-w: 1440px;
  --header-h: 60px;

  /* Fallback-Akzent (wird von der Saison überschrieben) */
  --acc: #4258ed;
  --acc-dark: #3130ab;
  --acc-soft: #d9e4fe;
  --acc-soft-fg: #262d71;
}

/* ---------- 3. Saisonale Themes ----------
   Das Attribut data-season am <body> schaltet die Akzentfamilie.
   Werte werden vom Plugin "hotels-in.at Saison" gesetzt und koennen
   dort pro Saison ueberschrieben werden (Inline-Style im <head>). */
body[data-season="winter"] {
  --acc: #4258ed;
  --acc-dark: #3130ab;
  --acc-soft: #d9e4fe;
  --acc-soft-fg: #262d71;
  --focus-ring: 0 0 0 4px rgba(66, 88, 237, 0.3);
}
body[data-season="fruehling"] {
  --acc: #027133;
  --acc-dark: #005012;
  --acc-soft: #c8e6ce;
  --acc-soft-fg: #005012;
  --focus-ring: 0 0 0 4px rgba(2, 113, 51, 0.3);
}
body[data-season="sommer"] {
  --acc: #01719d;
  --acc-dark: #024b68;
  --acc-soft: #d3ecf6;
  --acc-soft-fg: #024b68;
  --focus-ring: 0 0 0 4px rgba(1, 113, 157, 0.3);
}
body[data-season="herbst"] {
  --acc: #b33c00;
  --acc-dark: #7a2900;
  --acc-soft: #ffe9d8;
  --acc-soft-fg: #7a2900;
  --focus-ring: 0 0 0 4px rgba(179, 60, 0, 0.3);
}

/* ---------- 4. Reset & Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Das hidden-Attribut muss jede display-Regel schlagen — sonst blenden
   Komponenten mit eigenem display (Flex, Grid) sich selbst wieder ein. */
[hidden] {
  display: none !important;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--acc);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--acc-dark); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid transparent;
  box-shadow: var(--focus-ring);
  border-radius: var(--r-4);
}

h1, h2, h3, h4 {
  letter-spacing: var(--tracking-heading);
  margin: 0;
  line-height: 1.2;
}

p { margin: 0; }

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol { margin: 0; padding: 0; }

hr {
  border: none;
  border-top: 1px solid var(--grey-100);
  margin: 32px 0;
}

/* Icon-Basis (SVG-Sprite) */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  flex: none;
}

/* Screenreader-only */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--white);
  clip: auto !important;
  clip-path: none;
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 16px;
  line-height: normal;
  padding: 14px 22px;
  text-decoration: none;
  top: 16px;
  width: auto;
  z-index: 100000;
  border-radius: var(--r-8);
  box-shadow: var(--shadow-300);
}

.skip-link:focus { outline: none; box-shadow: var(--focus-ring); }

/* ---------- 5. Layout-Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding: 32px 0 8px; }
.section:first-of-type { padding-top: 28px; }
.section--last { padding-bottom: 40px; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.section h2 {
  font-size: 22px;
  font-weight: 700;
}
.section h2.sm { font-size: 20px; }
.section-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* Vollbild-Element innerhalb eines Containers */
.full-bleed {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* ---------- 6. Komponenten ---------- */

/* 6.1 Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--r-pill);
  font-weight: 600;
  border: 1px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  text-align: center;
  padding: 11px 20px;
  font-size: 14px;
  line-height: 1.2;
  min-height: 44px; /* Touch-Target */
  cursor: pointer;
}
.btn-primary {
  background: var(--acc);
  color: var(--white);
  border-color: var(--acc);
}
.btn-primary:hover,
.btn-primary:focus { background: var(--acc-dark); border-color: var(--acc-dark); color: var(--white); }
.btn-secondary {
  background: var(--white);
  color: var(--acc);
  border-color: var(--acc);
}
.btn-secondary:hover,
.btn-secondary:focus { background: var(--acc-soft); color: var(--acc-soft-fg); }
.btn-ghost {
  background: var(--white);
  color: var(--grey-600);
  border-color: var(--grey-200);
}
.btn-ghost:hover { border-color: var(--acc); color: var(--acc); }
.btn-white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-white:hover { background: var(--grey-100); color: var(--ink); border-color: var(--grey-100); }
.btn.lg { padding: 13px 26px; font-size: 15px; min-height: 48px; }
.btn.sm { padding: 8px 14px; font-size: 13px; min-height: 36px; }
.btn-block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }

/* 6.2 Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: var(--header-h);
  padding-block: 10px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  flex: none;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--r-8);
  background: var(--acc);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex: none;
  transition: background var(--dur) var(--ease);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; }
.brand-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-tagline { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--grey-600);
  border: 1px solid transparent;
  background: none;
}
.icon-btn:hover { color: var(--acc); background: var(--off-white); }

.main-nav { display: none; }
.site-header .header-search { display: none; }
.header-cta { display: none; }

/* Off-Canvas-Navigation (mobil) */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(28, 31, 38, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.nav-drawer[data-open="true"] { opacity: 1; visibility: visible; }
.nav-drawer__panel {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: min(340px, 88vw);
  background: var(--white);
  padding: 16px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-drawer[data-open="true"] .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-100);
  margin-bottom: 8px;
}
.nav-drawer__list { list-style: none; display: flex; flex-direction: column; }
.nav-drawer__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
}
.nav-drawer__list a:hover { color: var(--acc); }
.nav-drawer__list .current-menu-item > a { color: var(--acc); }
.nav-drawer__foot { margin-top: auto; padding-top: 16px; }

/* Header-Suchpanel (mobil aufklappbar) */
.header-search-panel {
  display: none;
  border-top: 1px solid var(--grey-100);
  padding: 12px 0;
  background: var(--off-white);
}
.header-search-panel[data-open="true"] { display: block; }

/* 6.3 Suchformular */
.search-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border-radius: var(--r-16);
  padding: 12px;
  box-shadow: var(--shadow-300);
}
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border-radius: var(--r-8);
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  color: var(--grey-400);
  font-size: 15px;
  min-height: 48px;
}
.search-field > .icon:first-child { color: var(--acc); font-size: 18px; }
.search-field input,
.search-field select {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  width: 100%;
  min-width: 0;
  padding: 0;
  height: 46px;
  appearance: none;
}
.search-field input:focus,
.search-field select:focus { outline: none; box-shadow: none; }
.search-field:focus-within { border-color: var(--acc); box-shadow: var(--focus-ring); }
.search-field input::placeholder { color: var(--grey-300); }
.search-field.select { position: relative; }
.search-field.select > .icon:last-child {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: var(--grey-400);
}
.search-field.grow { flex: 1; }

/* Kompakte Suchleiste (Header/Listing) */
.search-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-pill);
  padding: 0 8px 0 16px;
  color: var(--grey-400);
  font-size: 14px;
  min-height: 44px;
  width: 100%;
}
.search-inline input {
  border: none;
  background: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  flex: 1;
  min-width: 0;
  height: 42px;
}
.search-inline input:focus { outline: none; box-shadow: none; }
.search-inline:focus-within { border-color: var(--acc); box-shadow: var(--focus-ring); }
.search-inline .btn { min-height: 34px; padding: 6px 14px; font-size: 13px; }

/* 6.4 Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: #262d71;
  color: var(--white);
  padding: 40px 0 36px;
}
.hero-img,
.band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.5) 0%, rgba(13, 13, 13, 0.72) 100%);
}
.hero-content { position: relative; }
.hero h1 {
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-top: 16px;
}
.hero-lead {
  font-size: clamp(15px, 3.6vw, 18px);
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin-top: 14px;
}
.hero .search-box { margin-top: 24px; max-width: 900px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  list-style: none;
}
.hero-stats strong { color: var(--white); font-weight: 700; }

.season-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--acc);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  transition: background var(--dur) var(--ease);
}
.season-pill:hover { color: var(--white); }

/* 6.5 Hotelart-Karten */
.art-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.art-card {
  position: relative;
  display: block;
  height: 140px;
  border-radius: var(--r-16);
  overflow: hidden;
  color: var(--white);
  background: var(--grey-600);
}
.art-card:hover { color: var(--white); box-shadow: var(--shadow-300); }
.art-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms var(--ease);
}
.art-card:hover img { transform: scale(1.04); }
.art-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.15) 0%, rgba(13, 13, 13, 0.75) 100%);
}
.art-icon {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--acc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-100);
}
.art-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 11px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.art-meta .t {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  display: block;
}
.art-meta .c {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  display: block;
}
.art-arrow {
  background: rgba(28, 31, 38, 0.6);
  border-radius: var(--r-pill);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex: none;
}

/* 6.6 Bundesland-Karten */
.bl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.bl-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-16);
  padding: 14px 18px;
  color: var(--ink);
  overflow: hidden;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
  min-height: 76px;
}
.bl-card:hover { background: var(--acc); border-color: var(--acc); color: var(--white); }
.bl-card:hover .bl-mono { background: rgba(255, 255, 255, 0.2); color: var(--white); }
.bl-card:hover .bl-top { background: rgba(255, 255, 255, 0.22); color: var(--white); }
.bl-mono {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--acc-soft);
  color: var(--acc-soft-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.bl-body { min-width: 0; }
.bl-title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bl-name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.bl-count { display: block; font-size: 13px; font-weight: 500; margin-top: 2px; opacity: 0.72; }
.bl-top {
  display: inline-flex;
  align-items: center;
  background: var(--acc-soft);
  color: var(--acc-soft-fg);
  border-radius: var(--r-pill);
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.bl-svg {
  width: 78px;
  height: 46px;
  flex: none;
  margin-left: auto;
  pointer-events: none;
  opacity: 0.9;
}
.bl-card .arrow { font-size: 20px; flex: none; display: none; }

/* 6.7 Werbeflaechen */
.ad-slot {
  border: 1px dashed var(--grey-300);
  border-radius: var(--r-8);
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--grey-400);
  overflow: hidden;
}
.ad-slot .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ad-slot .size { font-size: 13px; font-weight: 500; }
.ad-slot--live { border: none; background: none; display: block; }
.ad-slot--live .tag {
  display: block;
  text-align: left;
  color: var(--grey-400);
  margin-bottom: 4px;
}
.ad-leaderboard { min-height: 100px; margin: 28px 0 0; }
.ad-mrec { min-height: 250px; }

/* 6.8 Hotelkarte (Raster) */
.hotel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.hotel-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-16);
  overflow: hidden;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
}
.hotel-card:hover { color: var(--ink); box-shadow: var(--shadow-300); border-color: var(--grey-300); }
.hotel-card__media { position: relative; aspect-ratio: 16 / 10; background: var(--grey-100); }
.hotel-card__media img { width: 100%; height: 100%; object-fit: cover; }
.hotel-card.sm .hotel-card__media { aspect-ratio: 16 / 9; }
.hotel-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.hotel-card.sm .hotel-card-body { padding: 14px; }
.stars {
  font-size: 13px;
  font-weight: 700;
  color: var(--star);
  letter-spacing: 1px;
  display: inline-flex;
  gap: 1px;
  align-items: center;
}
.stars .icon { width: 14px; height: 14px; }
.hotel-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.hotel-card.sm .hotel-name { font-size: 15px; }
.hotel-name a { color: inherit; }
.hotel-name a:hover { color: var(--acc); }
.hotel-ort {
  font-size: 14px;
  color: var(--grey-500);
  font-weight: 500;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.hotel-card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--grey-100);
  flex-wrap: wrap;
}
.hotel-card-foot.plain { border: none; padding-top: 0; margin-top: 10px; }
.score-badge {
  background: var(--acc);
  color: var(--white);
  border-radius: var(--r-8);
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 700;
  transition: background var(--dur) var(--ease);
  flex: none;
}
.score-badge.lg { padding: 8px 12px; font-size: 18px; }
.score-badge.empty { background: var(--grey-100); color: var(--grey-500); }
.review-count { font-size: 13px; color: var(--grey-500); font-weight: 500; }
.card-cta { margin-left: auto; font-size: 14px; font-weight: 600; color: var(--acc); }
/* Ganze Karte klickbar, ohne Links zu verschachteln */
.stretched-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* 6.9 Saison-Band */
.season-band {
  position: relative;
  overflow: hidden;
  background: #262d71;
  color: var(--white);
  min-height: 260px;
  display: flex;
  align-items: center;
  margin-top: 32px;
}
.season-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.45), rgba(13, 13, 13, 0.7));
}
.season-band-content {
  position: relative;
  z-index: 1;
  padding-block: 32px;
  max-width: 560px;
}
.season-band .kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.season-band h2 {
  font-size: clamp(22px, 5.4vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 8px;
  letter-spacing: -0.025em;
}
.season-band p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-top: 10px;
}
.season-band .btn { margin-top: 18px; }

/* 6.10 Footer */
.site-footer {
  background: var(--off-white);
  border-top: 1px solid var(--grey-100);
  padding: 36px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.footer-about {
  font-size: 14px;
  color: var(--grey-500);
  font-weight: 500;
  line-height: 1.55;
  max-width: 340px;
  margin-top: 12px;
}
.footer-col { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-col a { color: var(--grey-600); display: inline-block; padding-block: 3px; }
.footer-col a:hover { color: var(--acc); }
.footer-head {
  font-weight: 700;
  font-size: 12px;
  color: var(--grey-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-bottom {
  border-top: 1px solid var(--grey-200);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 13px;
  color: var(--grey-400);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  justify-content: space-between;
}
.footer-disclosure {
  font-size: 12px;
  color: var(--grey-400);
  font-weight: 500;
  line-height: 1.5;
  margin-top: 12px;
  max-width: 720px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  border: 1px solid var(--grey-200);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--grey-600);
  background: var(--white);
}
.footer-social a:hover { border-color: var(--acc); color: var(--acc); }

/* 6.11 Breadcrumb */
.breadcrumb {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-500);
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  padding-block: 14px 0;
  list-style: none;
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--grey-500); }
.breadcrumb a:hover { color: var(--acc); }
.breadcrumb .icon { font-size: 14px; color: var(--grey-300); }

/* 6.12 Chips, Badges */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  color: var(--grey-600);
  border-radius: var(--r-pill);
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease),
    color var(--dur) var(--ease);
  min-height: 38px;
}
.chip.is-active { border-color: var(--acc); background: var(--acc-soft); color: var(--acc-soft-fg); }
.chip:hover { border-color: var(--acc); }
.active-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--acc-soft);
  color: var(--acc-soft-fg);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}
.active-chip:hover { color: var(--acc-dark); }
.type-badge {
  background: var(--grey-100);
  color: var(--grey-600);
  border-radius: var(--r-8);
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 600;
}
.type-badge.accent { background: var(--acc-soft); color: var(--acc-soft-fg); font-weight: 700; }
.ort-chip {
  border: 1px solid var(--grey-200);
  border-radius: var(--r-pill);
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-600);
  display: inline-flex;
  gap: 6px;
  min-height: 40px;
  align-items: center;
}
.ort-chip:hover { border-color: var(--acc); color: var(--acc); }
.ort-chip .c { color: var(--grey-300); font-weight: 500; }

/* 6.13 Formularelemente */
.input,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
  width: 100%;
  border: 1px solid var(--grey-200);
  border-radius: var(--r-4);
  padding: 11px 14px;
  font-size: 16px; /* verhindert iOS-Zoom */
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  min-height: 46px;
}
input::placeholder, textarea::placeholder { color: var(--grey-300); }
textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.form-field label, .form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-500);
  line-height: 1.5;
}
.form-check input { margin-top: 2px; flex: none; width: 18px; height: 18px; min-height: 0; accent-color: var(--acc); }
.form-note { font-size: 13px; color: var(--grey-500); font-weight: 500; }
.mt-14 { margin-top: 14px; }
.mt-20 { margin-top: 20px; }

/* Checkbox-/Radio-Listen (Filter) */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}
.check-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 7px 0;
  min-height: 38px;
}
.check-list input[type="checkbox"],
.check-list input[type="radio"] {
  width: 18px;
  height: 18px;
  min-height: 0;
  flex: none;
  accent-color: var(--acc);
  margin: 0;
}
.check-count { margin-left: auto; color: var(--grey-300); font-size: 13px; }

/* 6.14 Filter-Sidebar */
.filters {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 0 32px;
}
.filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filters-head strong { font-size: 16px; }
.filters-head a { font-size: 13px; font-weight: 600; }
.filter-group { border-bottom: 1px solid var(--grey-100); padding-bottom: 20px; }
.filter-group:last-of-type { border-bottom: none; }
.filter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 10px;
}
.price-range { display: flex; gap: 10px; align-items: center; }
.price-range input { min-width: 0; }

/* Filter als Drawer auf Mobil */
.filters-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(28, 31, 38, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.filters-drawer[data-open="true"] { opacity: 1; visibility: visible; }
.filters-drawer__panel {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: min(360px, 92vw);
  background: var(--white);
  overflow-y: auto;
  padding: 16px;
  transform: translateX(-100%);
  transition: transform var(--dur) var(--ease);
}
.filters-drawer[data-open="true"] .filters-drawer__panel { transform: translateX(0); }
.filters-toggle { display: inline-flex; }

/* 6.15 Ergebnisliste */
.listing-head { padding: 6px 0 18px; border-bottom: 1px solid var(--grey-100); }
.listing-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.listing-head h1 { font-size: clamp(24px, 6vw, 32px); font-weight: 700; }
.listing-lead {
  margin-top: 8px;
  font-size: 15px;
  color: var(--grey-500);
  font-weight: 500;
  max-width: 720px;
  line-height: 1.55;
}
.sort-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-500);
}
.sort-row select {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  min-height: 40px;
  width: auto;
}
.listing-layout { display: block; }
.listing-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 14px 0;
  flex-wrap: wrap;
}
.results { display: flex; flex-direction: column; gap: 14px; padding-bottom: 32px; }
.results-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  flex-wrap: wrap;
}
.results-meta .n { color: var(--grey-500); font-weight: 500; }

.result-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey-200);
  border-radius: var(--r-16);
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative;
}
.result-card:hover { color: var(--ink); box-shadow: var(--shadow-300); border-color: var(--grey-300); }
.result-card__media { aspect-ratio: 16 / 9; background: var(--grey-100); }
.result-card__media img { width: 100%; height: 100%; object-fit: cover; }
.result-body { padding: 16px; }
.result-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.result-body h2, .result-body h3 { font-size: 19px; font-weight: 700; margin-top: 6px; }
.result-body h2 a, .result-body h3 a { color: inherit; }
.amenity-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  color: var(--grey-500);
  font-size: 17px;
  flex-wrap: wrap;
}
.result-desc {
  font-size: 13px;
  color: var(--grey-500);
  font-weight: 500;
  margin-top: 12px;
  line-height: 1.55;
}
.result-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-top: 1px solid var(--grey-100);
  flex-wrap: wrap;
}
.score-row { display: flex; align-items: center; gap: 8px; }
.score-row .label { font-size: 13px; font-weight: 700; }
.score-row .cnt { font-size: 12px; color: var(--grey-500); font-weight: 500; display: block; }
.price-block { text-align: right; }
.price-block .ab { font-size: 12px; color: var(--grey-500); font-weight: 500; }
.price-block .price { font-size: 19px; font-weight: 700; }
.result-side .btn { margin-left: auto; }

/* 6.16 Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--grey-200);
  color: var(--grey-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers:hover { border-color: var(--acc); color: var(--acc); }
.pagination .page-numbers.current { background: var(--acc); border-color: var(--acc); color: var(--white); }
.pagination .page-numbers.dots { border-color: transparent; }

/* 6.17 Regions-Hero */
.region-hero {
  position: relative;
  background: #262d71;
  overflow: hidden;
  color: var(--white);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}
.region-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.25), rgba(13, 13, 13, 0.75));
}
.region-hero-content { position: relative; z-index: 1; padding-block: 24px 26px; width: 100%; }
.region-hero .breadcrumb,
.region-hero .breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.region-hero .breadcrumb .icon { color: rgba(255, 255, 255, 0.6); }
.region-hero h1 {
  font-size: clamp(26px, 6.6vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 10px;
}
.region-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  list-style: none;
}
.region-stats strong { color: var(--white); font-weight: 700; }
.region-season-pill { margin-top: 14px; display: inline-flex; }
.region-intro {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--grey-600);
  max-width: 840px;
}

/* 6.18 Typen-Kacheln */
.tile-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.type-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-16);
  padding: 14px 16px;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.type-tile:hover { border-color: var(--acc); background: var(--white); color: var(--ink); }
.type-tile .icon { font-size: 24px; width: 24px; height: 24px; color: var(--acc); }
.type-tile .t { font-size: 15px; font-weight: 700; display: block; }
.type-tile .c { font-size: 13px; color: var(--grey-500); font-weight: 500; }

/* 6.19 Hotel-Detailseite */
.detail-head-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}
.detail-head-row h1 {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-top: 8px;
}
.detail-addr {
  font-size: 14px;
  color: var(--grey-500);
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.5;
}
.badge-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.detail-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.share-row { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  border: 1px solid var(--grey-200);
  color: var(--grey-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: var(--white);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.share-btn:hover { border-color: var(--acc); color: var(--acc); background: var(--acc-soft); }
.share-btn.is-copied { border-color: var(--ok); color: var(--ok); }
.rating-summary { display: flex; align-items: center; gap: 10px; }
.rating-summary .label { font-size: 14px; font-weight: 700; }
.rating-summary .cnt { font-size: 13px; color: var(--grey-500); font-weight: 500; display: block; }

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
  border-radius: var(--r-16);
  overflow: hidden;
}
.gallery a { display: block; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery .main { aspect-ratio: 16 / 10; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery__thumbs a { aspect-ratio: 1; }
.gallery-more .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 31, 38, 0.5);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.detail-layout { display: block; padding-bottom: 40px; }
.detail-main { min-width: 0; }
.detail-main h2 {
  font-size: 21px;
  font-weight: 700;
  margin: 32px 0 14px;
  scroll-margin-top: 80px;
}
.detail-main > h2:first-child { margin-top: 24px; }
.prose {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--grey-600);
}
.prose p + p { margin-top: 14px; }
.prose ul, .prose ol { margin: 14px 0 14px 20px; }
.prose li + li { margin-top: 6px; }
.prose h3 { font-size: 18px; margin: 24px 0 10px; color: var(--ink); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

.amenity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border-radius: var(--r-8);
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-600);
}
.amenity .icon { font-size: 19px; width: 19px; height: 19px; color: var(--acc); }

.room-table { border: 1px solid var(--grey-200); border-radius: var(--r-16); overflow: hidden; }
.room-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--grey-100);
}
.room-row:last-child { border-bottom: none; }
.room-row .t { font-size: 16px; font-weight: 700; }
.room-row .meta {
  font-size: 13px;
  color: var(--grey-500);
  font-weight: 500;
  margin-top: 2px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.room-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.room-price .p { font-size: 18px; font-weight: 700; }
.room-price .note { font-size: 12px; color: var(--grey-500); font-weight: 500; }

.map-layout { display: grid; grid-template-columns: 1fr; gap: 14px; }
.map-embed {
  border-radius: var(--r-16);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  background: var(--grey-100);
  position: relative;
  aspect-ratio: 16 / 10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  background: var(--off-white);
  color: var(--grey-500);
  font-size: 14px;
  font-weight: 500;
}
.map-consent .icon { font-size: 30px; width: 30px; height: 30px; color: var(--acc); }
.map-attribution { font-size: 11px; color: var(--grey-400); padding: 6px 10px; }
.distance-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-600);
  list-style: none;
}
.distance-list li { display: flex; gap: 10px; align-items: center; }
.distance-list .icon { color: var(--acc); font-size: 18px; width: 18px; height: 18px; }

/* Bewertungs-Box */
.rating-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  background: var(--off-white);
  border-radius: var(--r-16);
  padding: 18px;
  align-items: center;
}
.rating-big { text-align: center; }
.rating-big .num {
  background: var(--acc);
  color: var(--white);
  border-radius: var(--r-16);
  padding: 12px 18px;
  font-size: 30px;
  font-weight: 700;
  display: inline-block;
}
.rating-big .label { font-size: 13px; font-weight: 700; margin-top: 8px; }
.rating-bars { display: flex; flex-direction: column; gap: 8px; }
.rating-bar-row {
  display: grid;
  grid-template-columns: 100px 1fr 34px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-600);
}
.bar { height: 6px; background: var(--grey-200); border-radius: 3px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: var(--acc); border-radius: 3px; }
.rating-bar-row .v { text-align: right; }

/* Kommentare */
.comment-list { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; list-style: none; }
.comment-list ol.children { list-style: none; margin-top: 14px; margin-left: 20px; display: flex; flex-direction: column; gap: 14px; }
.comment-body {
  border: 1px solid var(--grey-100);
  border-radius: var(--r-16);
  padding: 16px;
  background: var(--white);
}
.comment-head { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex: none;
  background: var(--grey-400);
}
.avatar img { border-radius: 50%; }
.comment-author { font-size: 14px; font-weight: 700; }
.comment-date { font-size: 12px; color: var(--grey-400); font-weight: 500; }
.comment-score {
  margin-left: auto;
  background: var(--acc-soft);
  color: var(--acc-soft-fg);
  border-radius: var(--r-8);
  padding: 4px 10px;
  font-size: 13px;
  font-weight: 700;
  flex: none;
}
.comment-content { margin-top: 12px; font-size: 14px; line-height: 1.65; font-weight: 500; color: var(--grey-600); }
.comment-content p + p { margin-top: 10px; }
.comment-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-500);
  align-items: center;
  flex-wrap: wrap;
}
.comment-actions button, .comment-actions a { color: var(--grey-500); display: inline-flex; align-items: center; gap: 6px; }
.comment-actions button:hover, .comment-actions a:hover { color: var(--acc); }
.comment-actions .is-voted { color: var(--acc); }
.comment-form,
.comment-respond {
  border: 1px solid var(--grey-200);
  border-radius: var(--r-16);
  padding: 20px 16px;
  margin-top: 22px;
  background: var(--white);
}
.comment-respond .comment-reply-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.comment-form .form-submit { margin-top: 18px; margin-bottom: 0; }
.comment-form p { margin-bottom: 14px; }
.comment-form p:last-child { margin-bottom: 0; }
.comment-notes { font-size: 13px; color: var(--grey-500); font-weight: 500; }
.star-input { display: flex; gap: 2px; }
.star-input input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-input label {
  cursor: pointer;
  color: var(--grey-200);
  font-size: 28px;
  line-height: 1;
  padding: 2px;
  transition: color 120ms var(--ease);
  margin: 0;
}
.star-input label .icon { width: 28px; height: 28px; }
.star-input:hover label { color: var(--star); }
.star-input label:hover ~ label { color: var(--grey-200); }
.star-input input:checked ~ label { color: var(--grey-200); }
.star-input label.is-on { color: var(--star); }
.star-input input:focus-visible + label { box-shadow: var(--focus-ring); border-radius: var(--r-4); }

/* Detail-Sidebar */
.detail-side { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.side-card { border: 1px solid var(--grey-100); border-radius: var(--r-16); padding: 18px; }
.side-card.cta { border-color: var(--grey-200); box-shadow: var(--shadow-200); }
.side-card.subtle { background: var(--off-white); }
.side-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 12px;
}
.price-line { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-line .ab, .price-line .per { font-size: 13px; color: var(--grey-500); font-weight: 500; }
.price-line .p { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.affiliate-note {
  font-size: 12px;
  color: var(--grey-400);
  font-weight: 500;
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.kv-list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; font-weight: 500; color: var(--grey-600); list-style: none; }
.kv-list > li { display: flex; justify-content: space-between; gap: 12px; }
.kv-list .k { color: var(--grey-500); }
.contact-list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; font-weight: 500; list-style: none; }
.contact-list a { display: flex; gap: 10px; color: var(--grey-600); align-items: flex-start; min-height: 32px; align-items: center; }
.contact-list a:hover { color: var(--acc); }
.contact-list .icon { color: var(--acc); flex: none; font-size: 18px; width: 18px; height: 18px; }
.nearby-list { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.nearby { display: flex; gap: 12px; align-items: center; color: var(--ink); }
.nearby:hover { color: var(--acc); }
.nearby img { width: 56px; height: 56px; border-radius: var(--r-8); object-fit: cover; flex: none; }
.nearby .t {
  display: block;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nearby .m { display: block; font-size: 12px; color: var(--grey-500); font-weight: 500; }

/* Sticky Buchungsleiste auf Mobil */
.booking-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.07);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(110%);
  transition: transform 220ms var(--ease);
}
.booking-bar[data-visible="true"] { transform: translateY(0); }
.booking-bar .price-line .p { font-size: 20px; }
.booking-bar .btn { margin-left: auto; flex: 1; max-width: 62%; }

/* 6.20 Nachrichten (Blog) */
.post-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.post-card {
  border: 1px solid var(--grey-200);
  border-radius: var(--r-16);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--dur) var(--ease);
}
.post-card:hover { box-shadow: var(--shadow-300); }
.post-card__media { aspect-ratio: 16 / 9; background: var(--grey-100); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey-500);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.post-meta .cat { color: var(--acc); }
.post-card h2, .post-card h3 { font-size: 18px; font-weight: 700; }
.post-card h2 a, .post-card h3 a { color: var(--ink); }
.post-excerpt { font-size: 14px; color: var(--grey-500); font-weight: 500; line-height: 1.6; }

.entry-header { padding-top: 8px; }
.entry-header h1 { font-size: clamp(26px, 6.4vw, 40px); font-weight: 700; margin-top: 10px; }
.entry-hero { margin-top: 20px; border-radius: var(--r-16); overflow: hidden; }
.entry-hero img { width: 100%; }
.entry-content { max-width: 760px; margin-top: 24px; }
.entry-content > * + * { margin-top: 16px; }
.entry-content h2 { font-size: 24px; margin-top: 32px; }
.entry-content h3 { font-size: 19px; margin-top: 26px; }
.entry-content p, .entry-content li { font-size: 16px; line-height: 1.7; color: var(--grey-600); font-weight: 500; }
.entry-content ul, .entry-content ol { margin-left: 20px; }
.entry-content img { border-radius: var(--r-16); }
.entry-content blockquote {
  border-left: 3px solid var(--acc);
  padding-left: 16px;
  margin-left: 0;
  color: var(--grey-600);
  font-style: italic;
}
.entry-content figure { margin: 0; }
.entry-content figcaption { font-size: 13px; color: var(--grey-400); margin-top: 8px; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 14px; }
.entry-content th, .entry-content td { border: 1px solid var(--grey-200); padding: 10px; text-align: left; }
.entry-content th { background: var(--off-white); font-weight: 700; }
.table-scroll { overflow-x: auto; }

/* 6.21 Hinweise, leere Zustaende */
.notice {
  border: 1px solid var(--grey-200);
  border-radius: var(--r-16);
  padding: 16px 18px;
  background: var(--off-white);
  font-size: 14px;
  color: var(--grey-600);
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.notice .icon { color: var(--acc); font-size: 20px; width: 20px; height: 20px; flex: none; margin-top: 1px; }
.empty-state {
  text-align: center;
  padding: 48px 16px;
  color: var(--grey-500);
}
.empty-state .icon { font-size: 40px; width: 40px; height: 40px; color: var(--grey-300); }
.empty-state h2 { font-size: 20px; margin: 14px 0 8px; color: var(--ink); }

/* 6.22 Saison-Umschalter im Frontend (optional) */
.season-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.season-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  color: var(--grey-600);
  border-radius: var(--r-pill);
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 600;
  min-height: 38px;
  transition: all var(--dur) var(--ease);
}
.season-switch__btn[aria-pressed="true"] { background: var(--acc); border-color: var(--acc); color: var(--white); }

/* 6.23 Cookie-Banner / Consent */
.hia-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
}
.hia-consent[hidden] { display: none !important; }
.hia-consent__inner { max-width: 1000px; margin: 0 auto; }
.hia-consent h2 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.hia-consent p { font-size: 14px; color: var(--grey-600); line-height: 1.6; font-weight: 500; }
.hia-consent__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.hia-consent__links { margin-top: 12px; font-size: 13px; display: flex; gap: 16px; flex-wrap: wrap; }
.hia-consent__cats { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.hia-consent__cat {
  border: 1px solid var(--grey-100);
  border-radius: var(--r-8);
  padding: 12px 14px;
  background: var(--off-white);
}
.hia-consent__cat label { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 14px; cursor: pointer; }
.hia-consent__cat input { width: 18px; height: 18px; min-height: 0; accent-color: var(--acc); }
.hia-consent__cat .desc { font-size: 13px; color: var(--grey-500); font-weight: 500; margin-top: 6px; line-height: 1.5; }
.hia-consent-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 31, 38, 0.4);
  z-index: 199;
}
.hia-consent-backdrop[hidden] { display: none !important; }

/* Blockierte Drittinhalte */
.hia-blocked {
  border: 1px dashed var(--grey-300);
  border-radius: var(--r-16);
  background: var(--off-white);
  padding: 24px 18px;
  text-align: center;
  color: var(--grey-500);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* 6.24 Tabs / Sprungnavigation auf der Detailseite */
.detail-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  overflow-x: auto;
  scrollbar-width: none;
  margin-top: 18px;
}
.detail-nav::-webkit-scrollbar { display: none; }
.detail-nav ul { display: flex; gap: 4px; list-style: none; padding: 0; }
.detail-nav a {
  display: inline-block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-500);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.detail-nav a:hover, .detail-nav a.is-active { color: var(--acc); border-bottom-color: var(--acc); }

/* 6.25 Widgets / Sidebar allgemein */
.widget { margin-bottom: 24px; }
.widget-title { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.widget ul { list-style: none; display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.widget a { color: var(--grey-600); }
.widget a:hover { color: var(--acc); }

/* ---------- 7. Responsive Erweiterungen ---------- */

@media (min-width: 480px) {
  .art-card { height: 160px; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .hia-consent__actions { flex-direction: row; flex-wrap: wrap; }
  .hia-consent__actions .btn { flex: 1 1 180px; }
}

@media (min-width: 640px) {
  :root { --gutter: 24px; }
  .hotel-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .bl-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 2fr 1fr; grid-template-rows: auto; }
  .gallery .main { aspect-ratio: 4 / 3; height: 100%; }
  .gallery__thumbs { grid-template-columns: repeat(2, 1fr); }
  .gallery__thumbs a { aspect-ratio: 4 / 3; }
  .detail-head-row { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .detail-meta-row { flex-direction: column; align-items: flex-end; gap: 12px; }
  .rating-summary { border-left: 1px solid var(--grey-100); padding-left: 16px; }
  .rating-summary .label, .rating-summary .cnt { text-align: right; }
  .room-row { flex-direction: row; align-items: center; justify-content: space-between; padding: 16px 20px; }
  .room-foot { justify-content: flex-end; gap: 18px; flex: none; }
  .room-price { text-align: right; }
  .rating-box { grid-template-columns: auto 1fr; gap: 24px; padding: 22px; }
  .result-card { display: grid; grid-template-columns: 240px 1fr; }
  .result-card__media { aspect-ratio: auto; height: 100%; min-height: 190px; }
  .result-side { border-top: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .season-band { min-height: 280px; }
}

@media (min-width: 900px) {
  :root { --gutter: 32px; --header-h: 68px; }
  .art-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .art-card { height: 180px; }
  .bl-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .tile-grid { grid-template-columns: repeat(4, 1fr); }
  .hotel-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .hotel-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .post-grid { grid-template-columns: repeat(3, 1fr); }
  .amenity-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .map-layout { grid-template-columns: 1fr 280px; }
  .rating-bar-row { grid-template-columns: 110px 1fr 34px; }
  .section { padding: 44px 0 8px; }
  .section h2 { font-size: 26px; }
  .section h2.sm { font-size: 23px; }
  .hero { padding: 72px 0 64px; }
  .hero-scrim {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.5) 55%, rgba(13, 13, 13, 0.18) 100%);
  }
  .hero .search-box { flex-direction: row; gap: 12px; }
  .hero .search-box .btn { min-width: 170px; }
  .region-hero { min-height: 320px; }
  .region-season-pill { position: absolute; right: var(--gutter); bottom: 30px; margin-top: 0; }
  .season-band::after {
    background: linear-gradient(90deg, rgba(13, 13, 13, 0.72), rgba(13, 13, 13, 0.15));
  }
  .season-band { min-height: 300px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
  .site-footer { padding: 48px 0 32px; }
  .bl-card { padding: 18px 22px; min-height: 84px; }
  .bl-svg { width: 94px; height: 56px; }
  .result-card { grid-template-columns: 260px 1fr 190px; }
  .result-side {
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    border-left: 1px solid var(--grey-100);
    padding: 18px;
    text-align: right;
  }
  .result-side .btn { margin-left: 0; width: 100%; }
  .score-row .label, .score-row .cnt { text-align: right; }
  .detail-main h2 { font-size: 24px; margin: 40px 0 16px; }
  .comment-form, .comment-respond { padding: 26px; }
  .side-card { padding: 22px; }
  .filters-toggle { display: none; }
  .listing-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
  .filters-drawer {
    position: static;
    opacity: 1;
    visibility: visible;
    background: none;
    z-index: auto;
  }
  .filters-drawer__panel {
    position: sticky;
    top: calc(var(--header-h) + 16px);
    inset: auto;
    width: auto;
    transform: none;
    padding: 0;
    overflow: visible;
    max-height: calc(100vh - var(--header-h) - 32px);
    overflow-y: auto;
  }
  .filters-drawer__head { display: none; }
  .detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; padding-bottom: 56px; }
  .detail-side {
    margin-top: 24px;
    position: sticky;
    top: calc(var(--header-h) + 16px);
    max-height: calc(100vh - var(--header-h) - 32px);
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .booking-bar { display: none; }
  .main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
    font-weight: 500;
    list-style: none;
  }
  .main-nav a { color: var(--grey-600); padding-block: 6px; }
  .main-nav a:hover { color: var(--acc); }
  .main-nav .current-menu-item > a,
  .main-nav .current-menu-parent > a { color: var(--acc); font-weight: 600; }
  .site-header .header-search { display: flex; flex: 0 1 300px; }
  .header-cta { display: inline-flex; }
  .nav-toggle, .search-toggle { display: none; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 19px; }
  .gallery { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; }
  .gallery .main { grid-row: span 2; aspect-ratio: auto; }
  .gallery__thumbs { display: contents; }
  .gallery__thumbs a { aspect-ratio: auto; }
}

@media (min-width: 1200px) {
  :root { --gutter: 48px; }
  .detail-layout { gap: 48px; grid-template-columns: minmax(0, 1fr) 380px; }
  .listing-layout { grid-template-columns: 300px 1fr; gap: 40px; }
}

/* ---------- 8. Druck ---------- */
@media print {
  .site-header, .site-footer, .booking-bar, .hia-consent, .ad-slot,
  .share-row, .detail-nav, .comment-respond, .filters-drawer { display: none !important; }
  body { background: #fff; }
  .detail-layout { display: block; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 11px; color: #666; }
}

/* ---------- 9. Kontrastmodus ---------- */
@media (prefers-contrast: more) {
  :root { --grey-200: #8a93a3; --grey-100: #c7cedb; }
  .hotel-card, .result-card, .side-card { border-width: 2px; }
}

/* ---------- 10. Symbolbild (Hotel ohne eigenes Foto) ---------- */
.symbolbild {
  position: relative;
  margin: 18px 0 0;
  border-radius: var(--r-16);
  overflow: hidden;
  background: var(--grey-100);
}

.symbolbild img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  filter: saturate(0.85);
}

.symbolbild figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(28, 31, 38, 0.78);
  color: var(--white);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  max-width: 100%;
  line-height: 1.4;
}

@media (min-width: 900px) {
  .symbolbild img { aspect-ratio: 3 / 1; }
}
