/* ── Fonts ── */
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/karla-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Vollkorn';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/vollkorn-variable.woff2') format('woff2');
}
@font-face {
  font-family: 'Vollkorn';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/vollkorn-italic.woff2') format('woff2');
}

/* ── Tokens ── */
:root {
  --salbei:      #6D765B;
  --salbei-dim:  rgba(109,118,91,0.15);
  --zwetschge:   #7E4A52;
  --latsche:     #31382C;
  --schneefeld:  #F7F6F1;
  --nebel:       #E7E9DE;
  --nebel-mid:   #CDD5C3;
  --text:        #31382C;
  --muted:       #6b7060;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Base ── */
body {
  font-family: 'Karla', system-ui, sans-serif;
  background: var(--schneefeld);
  color: var(--text);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Utilities ── */
.section { padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px); }
.section-inner { max-width: 1040px; margin: 0 auto; width: 100%; }
.label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--salbei);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 33px;
  font-weight: 500;
  color: var(--latsche);
  line-height: 1.25;
  margin-bottom: 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s;
}
.btn:hover { opacity: .85; }
.btn-primary       { background: var(--salbei); color: white; }
.btn-ghost-white   { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-salbei  { background: transparent; color: var(--salbei); border: 1.5px solid var(--salbei); }

/* ── Nav ── */
.nav {
  background: var(--latsche);
  padding: 0 48px;
  height: 62px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 19px;
  color: white;
  text-decoration: none;
  margin-right: auto;
}
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: white; }
.nav-cta a {
  background: var(--salbei);
  color: white !important;
  padding: 7px 16px;
  border-radius: 4px;
}

/* ── Hero ── */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 80px 48px 56px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left bottom;
  background-color: var(--latsche);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(49,56,44,.92) 0%,
    rgba(49,56,44,.84) 25%,
    rgba(49,56,44,.40) 50%,
    rgba(49,56,44,.08) 72%,
    rgba(49,56,44,.0)  100%
  );
}
.hero-fade {
  display: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-align: left;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--nebel-mid);
}
.hero h1 {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 500;
  color: white;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--nebel);
  display: block;
}
.hero-sub {
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Intro ── */
.intro {
  background: var(--schneefeld);
  padding: 80px 48px;
  text-align: center;
  border-radius: 24px 24px 0 0;
  margin-top: -28px;
  position: relative;
  z-index: 1;
}
.intro .section-inner { max-width: 700px; }
.intro .section-title { font-size: 37px; margin-bottom: 16px; }
.intro p { color: var(--muted); font-size: 18px; line-height: 1.75; }

/* ── Highlights ── */
.highlights { background: white; }
.highlights .label,
.highlights .section-title { text-align: center; }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hi {
  background: var(--schneefeld);
  border-radius: 8px;
  padding: 26px 20px 22px;
  border-bottom: 3px solid var(--nebel);
}
.hi.lage {
  border-bottom-color: var(--salbei);
  background: rgba(109,118,91,.07);
}
.hi-icon {
  width: 48px;
  height: 48px;
  background: var(--nebel);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--salbei);
  font-size: 24px;
  margin-bottom: 14px;
}
.hi.lage .hi-icon { background: var(--salbei-dim); }
.hi-title { font-weight: 700; font-size: 15px; color: var(--latsche); margin-bottom: 5px; line-height: 1.3; }
.hi-desc  { font-size: 15px; color: var(--muted); line-height: 1.5; }
/* Gallery intro */
.gallery-intro {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 660px;
  margin: -16px auto 32px;
  text-align: center;
}

/* ── Calendar CTA ── */
.cal-cta {
  background: var(--latsche);
  padding: 72px 48px;
  text-align: center;
}
.cal-cta h2 {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  font-style: italic;
  color: white;
  margin-bottom: 12px;
}
.cal-cta p {
  color: rgba(255,255,255,.55);
  font-size: 15px;
  margin-bottom: 30px;
}

/* CTA on light bg (subpages — sits before dark footer) */
.cal-cta-light {
  background: var(--nebel);
  padding: 72px 48px;
  text-align: center;
}
.cal-cta-light h2 {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  font-style: italic;
  color: var(--latsche);
  margin-bottom: 12px;
}
.cal-cta-light p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 30px;
}

/* ── Gallery Teaser ── */
.gallery { background: var(--schneefeld); }
.gallery .label,
.gallery .section-title { text-align: center; }
.gallery .section-title { margin-bottom: 28px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.gi {
  background-size: cover;
  background-position: center;
  background-color: var(--nebel);
}
.gi-1 { grid-row: span 2; }
.gallery-cta { text-align: center; margin-top: 24px; }

/* ── Reviews ── */
.reviews { background: white; text-align: center; }
.reviews .section-inner { max-width: 680px; }
.reviews .section-title { margin-bottom: 0; }
.review-card {
  background: var(--schneefeld);
  border-radius: 12px;
  padding: 40px 44px 34px;
  margin: 36px 0 28px;
  text-align: left;
  position: relative;
}
.review-card[hidden] { display: none; }
.review-quote-mark {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 96px;
  color: var(--nebel);
  line-height: .5;
  position: absolute;
  top: 30px;
  left: 28px;
  user-select: none;
  pointer-events: none;
}
.review-stars {
  color: var(--zwetschge);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-left: 16px;
}
.review-text {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 19px;
  color: var(--latsche);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-author { font-weight: 700; font-size: 14px; color: var(--latsche); }
.review-date   { font-size: 13px; color: var(--muted); }
.review-badge  {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 4px;
}
.badge-google     { background: #EAF1FB; color: #1a73e8; }
.badge-gaestebuch { background: var(--nebel); color: var(--salbei); }
.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.review-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--nebel-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--salbei);
  font-size: 18px;
  background: white;
  transition: border-color .2s;
}
.review-arrow:hover { border-color: var(--salbei); }
.review-dots { display: flex; gap: 7px; }
.review-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nebel);
  cursor: pointer;
  transition: background .2s;
}
.review-dot.active { background: var(--zwetschge); }
.review-google-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--salbei);
  text-decoration: none;
}
.review-google-link:hover { text-decoration: underline; }

/* ── Page Hero (Unterseiten) ── */
.page-hero {
  height: 52vh;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  background-size: cover;
  background-position: center 82%;
  background-color: var(--latsche);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(49,56,44,.85) 0%,
    rgba(49,56,44,.35) 50%,
    rgba(49,56,44,.10) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-content .label {
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.page-hero-content h1 {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: white;
  line-height: 1.1;
}
.page-hero--compact {
  min-height: 200px;
  background: var(--latsche);
}

/* Legal Pages */
.legal-inner {
  max-width: 720px;
}
.legal-section h2 {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--latsche);
  margin: 32px 0 12px;
}
.legal-section h2:first-of-type { margin-top: 0; }
.legal-section p {
  font-size: 15px;
  color: var(--latsche);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-section a { color: var(--salbei); }

/* ── Ausstattung ── */
.ausstattung { background: white; }
.ausstattung-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ausstattung-block {
  background: var(--schneefeld);
  border-radius: 10px;
  padding: 28px 22px;
  border-top: 3px solid var(--nebel-mid);
}
.ab-icon {
  font-size: 26px;
  color: var(--salbei);
  margin-bottom: 14px;
}
.ab-title {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--latsche);
  margin-bottom: 14px;
}
.ab-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ab-list li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  padding: 5px 0;
  border-bottom: 1px solid var(--nebel);
}
.ab-list li:last-child { border-bottom: none; }

/* ── Galerie Seite (Die Hütte) ── */
.galerie-seite { background: var(--schneefeld); }
.galerie-sub-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.galerie-sub-label--gap { margin-top: 48px; }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 8px;
  border-radius: 10px;
  overflow: hidden;
}
.galerie-item {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--nebel);
  cursor: pointer;
  overflow: hidden;
  transition: filter 0.2s;
}
.galerie-item:hover { filter: brightness(0.72); }
.galerie-item-gross { grid-column: span 2; grid-row: span 2; }
.galerie-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.galerie-zoom i {
  font-size: 22px;
  color: white;
  background: rgba(0,0,0,.35);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galerie-item:hover .galerie-zoom { opacity: 1; }

/* ── Lightbox ── */
.lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lb.lb-active { display: flex; }
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 6px;
  object-fit: contain;
  display: block;
}
.lb-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.08);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  width: 44px; height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.15s, background 0.15s;
}
.lb-close:hover { opacity: 1; background: rgba(255,255,255,.16); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  width: 52px; height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.15s, background 0.15s;
}
.lb-prev:hover, .lb-next:hover { opacity: 1; background: rgba(255,255,255,.16); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ── Lage & Anreise ── */
.lage-section { background: var(--nebel); }
.lage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.lage-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lage-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lage-item > i {
  font-size: 22px;
  color: var(--salbei);
  flex-shrink: 0;
  margin-top: 2px;
}
.lage-item strong {
  display: block;
  font-size: 15px;
  color: var(--latsche);
  margin-bottom: 4px;
}
.lage-item p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}
.lage-map {
  border-radius: 12px;
  overflow: hidden;
}
.lage-map iframe { display: block; }

/* ── Ausflugsziele ── */
/* Ski & Winter */
.ski-winter-section { background: var(--nebel); }

.ski-intro {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--latsche);
  margin-bottom: 40px;
}
.ski-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.ski-fact {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 4px solid var(--latsche);
}
.ski-fact > i {
  font-size: 28px;
  color: var(--latsche);
  margin-bottom: 14px;
  display: block;
}
.ski-fact-val {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--latsche);
  margin-bottom: 6px;
}
.ski-fact-label {
  font-size: 14px;
  color: var(--salbei);
  line-height: 1.5;
}
.ski-verleih {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--latsche);
  line-height: 1.6;
}
.ski-verleih > i {
  font-size: 24px;
  color: var(--salbei);
  flex-shrink: 0;
  margin-top: 2px;
}
.ski-verleih a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 6px;
  color: var(--salbei);
  font-weight: 600;
  text-decoration: none;
}
.ski-verleih a:hover { color: var(--latsche); }

/* TennengauPLUS Card */
.tennengau-card-section { background: var(--latsche); }

.tennengau-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 36px 40px;
  max-width: 820px;
  margin: 0 auto;
}
.tc-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}
.tc-badge {
  width: 52px; height: 52px;
  background: var(--salbei);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}
.tc-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--nebel-mid);
  margin-bottom: 4px;
}
.tc-title {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: white;
}
.tc-intro {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.tc-leistungen {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.tc-leistungen li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.tc-leistungen li i {
  color: var(--salbei);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.tc-leistungen li strong { color: white; }
.tc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nebel-mid);
  text-decoration: none;
}
.tc-link:hover { color: white; }

.ausflug-sektion { background: var(--schneefeld); }
.ausflug-sektion--alt { background: white; }

.ausflug-hinweis {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--salbei-dim);
  border-left: 3px solid var(--salbei);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--salbei);
  margin-top: 24px;
}
.ausflug-hinweis i { flex-shrink: 0; margin-top: 2px; }

.ausflug-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ausflug-card {
  background: white;
  border: 1px solid var(--nebel);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.ausflug-sektion--alt .ausflug-card { background: var(--schneefeld); border-color: var(--nebel-mid); }

.ausflug-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ausflug-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.ausflug-tag--s  { background: var(--nebel); color: var(--salbei); }
.ausflug-tag--w  { background: var(--latsche); color: white; }
.ausflug-tag--g  { background: var(--salbei-dim); color: var(--salbei); }
.ausflug-tag--sw { background: var(--nebel-mid); color: var(--latsche); }

.ausflug-icons { display: flex; gap: 6px; }
.ausflug-icon {
  font-size: 15px;
  color: var(--nebel-mid);
}

.ausflug-name {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--latsche);
  margin-bottom: 8px;
  line-height: 1.35;
}

.ausflug-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}

.ausflug-warnung {
  font-size: 13.5px;
  color: #8a4e20;
  background: #fff4ec;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.ausflug-warnung i { flex-shrink: 0; margin-top: 1px; }

.ausflug-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid var(--nebel);
  margin-bottom: 12px;
}
.ausflug-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--muted);
}
.ausflug-meta-item i { color: var(--salbei); font-size: 15px; flex-shrink: 0; }

.ausflug-tipp {
  font-size: 12.5px;
  color: var(--salbei);
  background: var(--salbei-dim);
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.ausflug-tipp i { flex-shrink: 0; margin-top: 1px; }

.ausflug-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--salbei);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}
.ausflug-link:hover { color: var(--latsche); }

/* ── Scroll Animations ── */
.js-anim .fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-anim .fade-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Footer ── */
.footer {
  background: var(--latsche);
  padding: 48px 48px 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 18px;
  align-items: start;
}
.footer-brand {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 20px;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  color: rgba(255,255,255,.38);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-addr {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.35);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}
.footer-addr:hover { color: rgba(255,255,255,.65); }
/* VV */
.footer-vv-card {
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-vv-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 2px;
}
.footer-vv-name {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: white;
}
.footer-vv-desc {
  color: rgba(255,255,255,.38);
  font-size: 13px;
  line-height: 1.7;
}
.footer-vv-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--salbei);
  text-decoration: none;
  margin-top: 4px;
  transition: color .2s;
}
.footer-vv-link:hover { color: white; }
/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { color: rgba(255,255,255,.2); font-size: 12px; }
.footer-legal {
  display: flex;
  gap: 18px;
}
.footer-legal a {
  color: rgba(255,255,255,.2);
  font-size: 12px;
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── Preise & Buchung ── */

/* Preistabelle */
.preise-sektion { background: var(--schneefeld); }
.preis-table-wrap { overflow-x: auto; margin-top: 32px; }
.preis-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.preis-table thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--salbei);
  padding: 0 16px 12px;
  border-bottom: 2px solid var(--nebel-mid);
}
.preis-th-betrag { text-align: right; }
.preis-table tbody tr {
  border-bottom: 1px solid var(--nebel);
  transition: background .15s;
}
.preis-table tbody tr:hover { background: var(--nebel); }
.preis-table tbody td { padding: 14px 16px; color: var(--latsche); vertical-align: middle; }
.preis-row--xmas td { background: rgba(126,74,82,.04); }
.preis-row--hauptski td { background: rgba(49,56,44,.04); }
.preis-betrag {
  text-align: right;
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
.preis-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
}
.preis-tag--neben    { background: var(--nebel); color: var(--salbei); }
.preis-tag--wander   { background: rgba(109,118,91,.15); color: var(--salbei); }
.preis-tag--ski      { background: rgba(49,56,44,.12); color: var(--latsche); }
.preis-tag--hauptski { background: var(--latsche); color: white; }
.preis-tag--xmas     { background: var(--zwetschge); color: white; }

/* Inklusivleistungen */
.inklusiv-sektion { background: white; }
.inklusiv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.inklusiv-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.inklusiv-item > i {
  font-size: 24px;
  color: var(--salbei);
  flex-shrink: 0;
  margin-top: 2px;
}
.inklusiv-item strong {
  display: block;
  font-size: 15px;
  color: var(--latsche);
  margin-bottom: 4px;
}
.inklusiv-item p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

.buchung-konditionen {
  background: var(--nebel);
  border-radius: 12px;
  padding: 28px 32px;
}
.buchung-konditionen-title {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--latsche);
  margin-bottom: 20px;
}
.buchung-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.buchung-liste li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--latsche);
  line-height: 1.55;
}
.buchung-liste li i { font-size: 18px; color: var(--salbei); flex-shrink: 0; margin-top: 2px; }

/* Buchungskalender */
.kalender-sektion { background: var(--nebel); }
.cal-widget-wrap {
  margin-top: 32px;
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(49,56,44,.06);
}
/* CalendarApp Overrides – #zhcal-root ID nötig um CalendarApp-Spezifität zu schlagen */
#zhcal-root,
#zhcal-root * {
  font-family: 'Karla', sans-serif !important;
}
#zhcal-root div.zhcal_margin table.zhcal_month {
  border: 1px solid var(--nebel-mid) !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}
#zhcal-root div.zhcal_margin table.zhcal_month th.zhcal_month {
  font-family: 'Vollkorn', Georgia, serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: var(--latsche) !important;
  background: var(--nebel) !important;
  background-image: none !important;
  text-shadow: none !important;
  border-bottom: 1px solid var(--nebel-mid) !important;
  line-height: 42px !important;
  height: 42px !important;
}
#zhcal-root div.zhcal_margin table.zhcal_month tr.zhcal_month_days th {
  color: var(--salbei) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  background-color: white !important;
  border: none !important;
}
#zhcal-root div.zhcal_margin table.zhcal_month tr.zhcal_month_days td {
  color: var(--latsche) !important;
  border-top: 1px solid var(--nebel) !important;
}
#zhcal-root div.zhcal_margin div.zhcal_tag div {
  color: var(--latsche) !important;
}
#zhcal-root td.zhcal_tag_leer {
  color: var(--nebel-mid) !important;
}
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_reserved {
  background-color: rgba(109,118,91,.3) !important;
}
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_blocked {
  background-color: rgba(126,74,82,.25) !important;
}
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_blocked div,
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_anfang_blocked div,
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_ende_blocked div {
  color: var(--zwetschge) !important;
}
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_reserved div {
  color: var(--salbei) !important;
}
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_anfang_reserved > div.zhcal_before,
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_reserved > div.zhcal_after,
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_ende_reserved > div.zhcal_after {
  border-top-color: rgba(109,118,91,.3) !important;
  border-bottom-color: rgba(109,118,91,.3) !important;
}
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_anfang_blocked > div.zhcal_before,
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_blocked > div.zhcal_after,
#zhcal-root div.zhcal_margin div.zhcal_tag.zhcal_ende_blocked > div.zhcal_after {
  border-top-color: rgba(126,74,82,.25) !important;
  border-bottom-color: rgba(126,74,82,.25) !important;
}
#zhcal-root div.zhcal_legend span div.zhcal_reserved {
  background-color: var(--salbei) !important;
}
#zhcal-root div.zhcal_legend span div.zhcal_blocked {
  background-color: var(--zwetschge) !important;
}
#zhcal-root div.zhcal_buchunglink > a.zhcal_btn,
#zhcal-root a.zhcal_btn {
  background-color: var(--salbei) !important;
  color: white !important;
  font-family: 'Karla', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 8px !important;
  height: auto !important;
  line-height: 1 !important;
  padding: 14px 28px !important;
  transition: background .2s !important;
}
#zhcal-root a.zhcal_btn:hover {
  background-color: var(--latsche) !important;
  color: white !important;
  border: none !important;
}
#zhcal-root a.zhcal_submit {
  background-color: var(--salbei) !important;
  color: white !important;
  font-family: 'Karla', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 8px !important;
  height: auto !important;
  line-height: 1 !important;
  padding: 14px 28px !important;
  transition: background .2s !important;
}
#zhcal-root a.zhcal_submit:hover {
  background-color: var(--latsche) !important;
}
#zhcal-root div.zhcal_buchungcont h3 {
  font-family: 'Vollkorn', Georgia, serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--latsche) !important;
}
#zhcal-root div.zhcal_form label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--salbei) !important;
}
#zhcal-root div.zhcal_form div.zhcal_row input[type="text"],
#zhcal-root div.zhcal_form div.zhcal_row input[type="email"],
#zhcal-root div.zhcal_form div.zhcal_row select,
#zhcal-root div.zhcal_form div.zhcal_row textarea {
  font-family: 'Karla', sans-serif !important;
  font-size: 14px !important;
  color: var(--latsche) !important;
  border: 1px solid var(--nebel-mid) !important;
  border-radius: 6px !important;
  background: var(--schneefeld) !important;
}
#zhcal-root div.zhcal_form div.zhcal_row input[type="text"]:focus,
#zhcal-root div.zhcal_form div.zhcal_row input[type="email"]:focus,
#zhcal-root div.zhcal_form div.zhcal_row select:focus,
#zhcal-root div.zhcal_form div.zhcal_row textarea:focus {
  border: 2px solid var(--salbei) !important;
  outline: none !important;
}
#zhcal-root div.zhcal_banner,
.cal-widget-wrap #zhcal-root div.zhcal_banner,
div.zhcal_banner.zhcal_252505 {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
}
#zhcal-root div.zhcal_response {
  color: var(--salbei) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
}

/* FAQ */
.faq-sektion { background: var(--schneefeld); }
.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}
.faq-item {
  border: 1px solid var(--nebel-mid);
  border-radius: 10px;
  overflow: hidden;
  background: white;
}
.faq-item summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--latsche);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--salbei);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary { background: var(--nebel); }
.faq-item[open] summary::after { content: '–'; }
.faq-item p {
  padding: 4px 20px 18px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Bewertungen ── */

/* Featured Reviews */
.bew-featured-section { background: var(--schneefeld); }
.bew-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.bew-card {
  background: white;
  border-radius: 12px;
  padding: 32px 28px 22px;
  border: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--salbei);
  position: relative;
  overflow: hidden;
}
.bew-card::before {
  content: '\201E';
  position: absolute;
  top: -20px;
  left: -5px;
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 180px;
  line-height: 1;
  color: rgba(205,213,195,.3);
  pointer-events: none;
  z-index: 0;
}
.bew-card-text,
.bew-card-author {
  position: relative;
  z-index: 1;
}
.bew-card-text {
  font-size: 14.5px;
  color: var(--latsche);
  line-height: 1.65;
  margin-bottom: 16px;
}
.bew-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--salbei);
}
.bew-card-author i { font-size: 16px; }

/* Google CTA */
.bew-google-section { background: white; }
.bew-google-card {
  background: var(--latsche);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.bew-google-left {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.bew-google-left > i {
  font-size: 36px;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
}
.bew-google-title {
  font-family: 'Vollkorn', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-bottom: 6px;
}
.bew-google-text {
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
}
.bew-google-card .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Alle Einträge */
.bew-alle-section { background: var(--nebel); }
.bew-liste {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.bew-eintrag {
  background: white;
  border-radius: 10px;
  padding: 22px 24px;
}
.bew-eintrag-text {
  font-size: 14.5px;
  color: var(--latsche);
  line-height: 1.65;
  margin-bottom: 10px;
}
.bew-eintrag-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--salbei);
}
.bew-eintrag-name i { font-size: 15px; }
.bew-hidden { display: none; }
.bew-mehr-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 24px auto 0;
  background: white;
  border: 1px solid var(--nebel-mid);
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--salbei);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.bew-mehr-btn:hover { background: var(--schneefeld); color: var(--latsche); }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* Hamburger – hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
  .section-inner { padding: 0 28px; }
  .section { padding: 48px 0; }

  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .ausstattung-grid { grid-template-columns: repeat(2, 1fr); }
  .ski-facts { grid-template-columns: repeat(2, 1fr); }
  .ausflug-grid { grid-template-columns: repeat(2, 1fr); }
  .inklusiv-grid { grid-template-columns: repeat(2, 1fr); }
  .bew-featured-grid { grid-template-columns: repeat(2, 1fr); }

  .galerie-grid { grid-auto-rows: 180px; }
}

/* ── Mobile ≤ 768px ── */
@media (max-width: 768px) {

  /* Nav → Hamburger */
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--latsche);
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-cta { margin-top: 8px; }
  .nav-cta a { display: block; text-align: center; padding: 12px; }
  .nav { position: sticky; }

  /* Sections */
  .section { padding: 40px 0; }
  .section-inner { padding: 0 20px; }
  .section-title { font-size: 26px; }
  .intro { padding: 60px 20px; }
  .intro .section-inner { max-width: 100%; }
  .intro .section-title { font-size: 30px; }
  .intro p { font-size: 16px; }

  /* Hero → stacked on mobile */
  .hero {
    min-height: 0;
    flex-direction: column;
    padding: 0;
  }
  .hero-bg {
    position: relative;
    height: 50vh;
    width: 100%;
  }
  .hero-overlay {
    height: 50vh;
    width: 100%;
    background: linear-gradient(
      to top,
      rgba(49,56,44,.6) 0%,
      rgba(49,56,44,.0) 60%
    );
  }
  .hero-content {
    background: var(--latsche);
    padding: 32px 20px 52px;
    max-width: 100%;
    text-align: center;
  }
  .hero-eyebrow::before { display: none; }
  .hero-sub { max-width: 100%; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
  .page-hero { min-height: 260px; }

  /* Lage → stack */
  .lage-grid { grid-template-columns: 1fr; }
  .lage-map { min-height: 300px; }

  /* Highlights → 1 col */
  .highlight-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Homepage gallery → stack */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gi-1 { grid-row: span 2; }

  /* Review card padding */
  .review-card { padding: 28px 20px 24px; }

  /* Ausstattung → 1 col */
  .ausstattung-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Gallery → 2 col */
  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .galerie-item-gross {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Ski section */
  .ski-facts { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ski-intro { font-size: 15px; }
  .ski-verleih { flex-direction: column; }

  /* TennengauPLUS */
  .tennengau-card { padding: 24px 20px; }
  .tc-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Ausflugsziele → 1 col */
  .ausflug-grid { grid-template-columns: 1fr; }

  /* Preistabelle */
  .preis-table-wrap { margin: 0 -20px; padding: 0 20px; }
  .preis-table { font-size: 14px; }
  .preis-table thead th { font-size: 11px; padding: 0 10px 10px; }
  .preis-table tbody td { padding: 12px 10px; }
  .preis-betrag { font-size: 16px; }

  /* Inklusiv → 2 col */
  .inklusiv-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .buchung-konditionen { padding: 20px; }

  /* Calendar */
  .cal-widget-wrap { padding: 16px; }

  /* FAQ */
  .faq-list { max-width: 100%; }

  /* Bewertungen → 1 col */
  .bew-featured-grid { grid-template-columns: 1fr; }
  .bew-google-card {
    flex-direction: column;
    padding: 24px 20px;
    text-align: center;
  }
  .bew-google-left { flex-direction: column; align-items: center; }

  /* CTA */
  .cal-cta, .cal-cta-light { padding: 48px 20px; }
  .cal-cta h2, .cal-cta-light h2 { font-size: 28px; }

  /* Footer → stack */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Reviews carousel */
  .review-text { font-size: 15px; }

  /* Lightbox */
  .lb-img { max-height: 80vh; max-width: 95vw; }
  .lb-close { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 18px; }
  .lb-prev, .lb-next { width: 36px; height: 36px; font-size: 16px; }
}

/* ── Small mobile ≤ 480px ── */
@media (max-width: 480px) {
  .section-title { font-size: 22px; }
  .intro .section-title { font-size: 26px; }
  .intro p { font-size: 15px; }

  .hero-bg { height: 40vh; }
  .page-hero { min-height: 220px; }

  /* Gallery → 1 col, spans reset */
  .galerie-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .galerie-item-gross {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Homepage gallery → 1 col */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gi-1 { grid-row: span 1; }

  /* Ski → 1 col */
  .ski-facts { grid-template-columns: 1fr; }
  .ski-fact { padding: 20px 18px; }

  /* Inklusiv → 1 col */
  .inklusiv-grid { grid-template-columns: 1fr; }

  /* Preis table scroll */
  .preis-table { font-size: 13px; }
  .preis-tag { font-size: 11px; padding: 2px 7px; }
  .preis-betrag { font-size: 15px; }

  .cb-inner { padding: 28px 20px; }
  .cb-buttons { flex-direction: column; }
}

/* ── Cookie Banner (Modal Overlay) ── */
html.cb-locked { overflow: hidden; }


.cb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cb-inner {
  background: var(--latsche);
  max-width: 520px;
  width: 100%;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 12px 48px rgba(0,0,0,.35);
  text-align: center;
}
.cb-text {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 24px;
}
.cb-text a { color: white; text-decoration: underline; }
.cb-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.cb-btn {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.cb-btn--accept {
  background: var(--salbei);
  color: white;
}
.cb-btn--accept:hover { background: #7d8669; }
.cb-btn--reject {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25);
}
.cb-btn--reject:hover { color: white; border-color: rgba(255,255,255,.5); }

/* Google Maps Consent Wall */
.maps-consent-wall {
  background: var(--nebel);
  border-radius: 12px;
  padding: 48px 24px;
  text-align: center;
  color: var(--latsche);
}
.maps-consent-wall p { font-size: 15px; margin-bottom: 16px; color: var(--muted); }
.maps-consent-wall button {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  background: var(--salbei);
  color: white;
  cursor: pointer;
}
