:root{
  --max: 1200px;
  --pad: 18px;

  --brand: #6A83A8;

  --text: #1a2430;
  --text-soft: rgba(26,36,48,0.88);
  --text-muted: rgba(26,36,48,0.78);
  --text-faint: rgba(26,36,48,0.65);

  --bg: #F3F6FA;
  --surface: #ffffff;
  --surface-soft: rgba(255,255,255,0.72);
  --surface-tint: rgba(106,131,168,0.06);

  --border: rgba(0,0,0,0.10);
  --border-soft: rgba(0,0,0,0.06);
  --border-strong: rgba(0,0,0,0.14);

  --shadow-soft: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-card: 0 12px 28px rgba(106,131,168,0.10);
  --shadow-card-hover: 0 18px 38px rgba(106,131,168,0.16);
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= HEADER ================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
  transition:
    background-color .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    backdrop-filter .25s ease;
}

.site-header.is-scrolled{
  background: rgba(255,255,255,0.94);
  box-shadow: 0 12px 28px rgba(106,131,168,0.10);
  border-bottom-color: rgba(0,0,0,0.07);
  backdrop-filter: blur(10px);
}

.site-header .wrap{
  padding-left: clamp(18px, 3vw, 34px);
  padding-right: clamp(18px, 3vw, 34px);
}

.header-inner{
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  height: 76px;
  position: relative;
  padding: 0;
  transition: min-height .30s ease, height .30s ease;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s ease;
}

.site-header .brand{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-header .brand img{
  height: 100px;
  width: auto;
  display: block;
  position: relative;
  left: -12px;
  top: 0;
  z-index: 3;
  opacity: 0.94;
  transform: translateY(30px);
  transition:
    transform .58s cubic-bezier(.22,.61,.36,1),
    height .30s ease,
    opacity .30s ease;
}

.site-header.is-scrolled .header-inner{
  min-height: 64px;
  height: 64px;
  padding: 0;
}

.site-header.is-scrolled .brand{
  transform: none;
}

.site-header.is-scrolled .brand img{
  height: 74px;
  transform: translateY(8px);
  opacity: 0.96;
}

.site-nav{
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: auto;
  transform: translateX(0);
  transition: transform .68s cubic-bezier(.22,.61,.36,1) .06s;
}

.site-header.is-scrolled .site-nav{
  transform: translateX(6px) translateY(0);
}

.site-nav a,
.dropbtn{
  text-decoration: none;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: var(--text);
}

.site-nav a.is-active,
.site-nav .dropdown.is-active > .dropbtn{
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: .25em;
}

.directbooking{
  margin-left: 20px;
  padding-left: 18px;
  border-left: 1px solid rgba(20,30,40,0.12);
  font-size: 0.85rem;
  text-align: right;
  line-height: 1.2;
  white-space: nowrap;
}

.db-kicker{
  display: block;
  font-weight: 700;
  color: var(--brand);
}

.db-sub{
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
}

.directbooking a,
.directbooking a:visited,
.directbooking a:hover,
.directbooking a:active{
  color: inherit;
  text-decoration: none;
}

.directbooking a{
  display: block;
}

.directbooking a:hover .db-kicker{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ================= DROPDOWN ================= */

.dropdown{
  position: relative;
}

@media (hover: hover) and (pointer: fine){
  .dropdown::after{
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 12px;
  }
}

.dropbtn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chev{
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
  transition: transform .18s ease, opacity .18s ease;
}

.dropdown.open .chev{
  transform: rotate(-135deg);
  opacity: 1;
}

.dropmenu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 28px rgba(106,131,168,0.12);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.dropmenu a{
  display: block;
  padding: 8px 14px;
  color: var(--text);
  text-decoration: none;
}

.dropmenu a:hover{
  background: rgba(106,131,168,0.08);
}

.dropdown.open .dropmenu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
}

/* ================= BURGER MENU ================= */

.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.9);
  place-items: center;
  cursor: pointer;
}

.nav-toggle .burger{
  position: relative;
  width: 22px;
  height: 16px;
}

.nav-toggle .burger span{
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
  transition: transform .22s ease, opacity .18s ease, top .22s ease, width .22s ease;
}

.nav-toggle .burger span:nth-child(1){
  top: 0;
  width: 18px;
}

.nav-toggle .burger span:nth-child(2){
  top: 7px;
  width: 22px;
}

.nav-toggle .burger span:nth-child(3){
  top: 14px;
  width: 14px;
}

@media (hover: hover) and (pointer: fine){
  .nav-toggle:hover{
    border-color: rgba(106,131,168,0.35);
    box-shadow: 0 10px 22px rgba(106,131,168,0.12);
  }
}

.nav-toggle.is-open .burger span:nth-child(1){
  top: 7px;
  width: 22px;
  transform: rotate(45deg);
}

.nav-toggle.is-open .burger span:nth-child(2){
  opacity: 0;
}

.nav-toggle.is-open .burger span:nth-child(3){
  top: 7px;
  width: 22px;
  transform: rotate(-45deg);
}

/* ================= HERO ================= */

.hero{
  padding: 22px 0 clamp(32px, 5vw, 44px);
  margin-top: -6px;
}

.hero-media{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 52px rgba(106,131,168,0.14);
  aspect-ratio: 16 / 9;
}

.hero-media picture{
  display: block;
  width: 100%;
  background: #0f141a;
}

.hero-media img{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 768px){
  .hero-media img{
    aspect-ratio: 16 / 9;
  }
}

.hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #fff;
}

.hero-overlay::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,30,40,0.68) 0%,
    rgba(20,30,40,0.42) 28%,
    rgba(20,30,40,0.12) 58%,
    rgba(20,30,40,0.00) 82%
  );
}

.hero-overlay > *{
  position: relative;
}

.hero-kicker{
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.9;
}

.hero-overlay h1{
  margin: 0 0 10px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-sub{
  margin: 0 0 16px;
  max-width: 60ch;
  line-height: 1.45;
  opacity: 0.9;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

.hero-primary{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn-booking{
  padding: 12px 18px;
  font-size: 1rem;
}

.booking-sub{
  font-size: 0.78rem;
  opacity: 0.78;
  letter-spacing: 0.01em;
  line-height: 1.25;
  max-width: 28ch;
}

.hero .btn-ghost,
.subhero .btn-ghost{
  background: rgba(20,30,40,0.12);
  backdrop-filter: blur(4px);
  border-color: rgba(255,255,255,0.28);
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.82);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.hero .btn-ghost:hover,
.subhero .btn-ghost:hover{
  background: rgba(20,30,40,0.28);
  border-color: rgba(255,255,255,0.46);
}

/* ================= SUBHERO ================= */

.subhero{
  padding: 22px 0 10px;
  margin-top: -6px;
}

.subhero-media{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #dfe7f1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.subhero-media picture{
  display: block;
  width: 100%;
}

.subhero-media img{
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.subhero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.54) 100%);
}

.subhero-kicker{
  margin: 0;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .92;
}

.subhero-overlay h1{
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.subhero-sub{
  max-width: 760px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.subhero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.subhero-overlay h1{
  max-width: 540px;
}

.subhero-sub{
  max-width: 480px;
}

@media (max-width: 768px){

  .subhero-media img{
    aspect-ratio: 16 / 9;
  }

  .subhero-overlay{
    max-width: 100%;
    padding: 24px 20px 22px;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.58) 45%,
      rgba(0,0,0,0.22) 75%,
      rgba(0,0,0,0.05) 100%
    );
  }

  .subhero-kicker{
    font-size: 0.82rem;
    letter-spacing: 0.08em;
  }

  .subhero h1{
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.04;
    max-width: 10ch;
    margin-bottom: 12px;
  }

  .subhero-sub{
    font-size: 1rem;
    line-height: 1.5;
    max-width: 30ch;
  }
}

/* ================= HOME VIEW / AUSBLICK ================= */

.home-view{
  padding: 10px 0 38px;
}

.home-view-media{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(106,131,168,0.12);
  background: #dfe7f1;
  min-height: 330px;
}

.home-view-media picture,
.home-view-media img{
  display: block;
  width: 100%;
  height: 100%;
}

.home-view-media img{
  min-height: 330px;
  max-height: 460px;
  object-fit: cover;
}

.home-view-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}

.home-view-overlay::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,30,40,0.64) 0%,
    rgba(20,30,40,0.38) 28%,
    rgba(20,30,40,0.11) 58%,
    rgba(20,30,40,0.00) 84%
  );
}

.home-view-overlay > *{
  position: relative;
}

.home-view-overlay .kicker{
  color: rgba(255,255,255,0.88);
  margin-bottom: 8px;
}

.home-view-overlay h2{
  margin: 0 0 10px;
  max-width: 430px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.home-view-overlay p{
  margin: 0;
  max-width: 42ch;
  color: rgba(255,255,255,0.90);
  line-height: 1.6;
}

.main-content > .home-view + .section{
  padding-top: 22px;
}

@media (max-width: 768px){

  .home-view{
    padding: 4px 0 30px;
  }

  .home-view-media,
  .home-view-media img{
    min-height: 0;
  }

  .home-view-media img{
    aspect-ratio: 16 / 9;
    max-height: none;
    object-fit: cover;
  }

  .home-view-overlay{
    padding: 20px;
  }

  .home-view-overlay h2{
    font-size: clamp(1.55rem, 7vw, 2.15rem);
  }
}

/* ================= THEMEN-GALERIE ================= */

.topic-gallery{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  margin: 10px 0 8px;
}

.topic-shot{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #dfe7f1;
  text-decoration: none;
  color: inherit;
  min-height: 220px;
}

.topic-shot--big{
  grid-row: span 2;
  min-height: 100%;
}

.topic-shot picture,
.topic-shot img{
  display: block;
  width: 100%;
  height: 100%;
}

.topic-shot img{
  object-fit: cover;
  transition: transform .45s ease;
}

.topic-shot:hover img,
.topic-shot:focus-visible img{
  transform: scale(1.03);
}

.topic-shot__label{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  font-size: .94rem;
  line-height: 1.35;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ================= CONTENT LAYOUT ================= */

.main-content{
  padding-bottom: 70px;
}

.section{
  padding: 36px 0;
}

.section:first-child{
  padding-top: 0;
}

.main-content > .section:first-of-type{
  padding-top: clamp(18px, 3vw, 26px);
}

.hero + .section{
  padding-top: 22px;
}

.section + .section .wrap{
  position: relative;
}

.section + .section .wrap::before{
  content: "";
  position: absolute;
  top: 0;
  left: 60px;
  right: 60px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(180,160,130,0.15) 20%,
    rgba(160,140,110,0.35) 50%,
    rgba(180,160,130,0.15) 80%,
    transparent 100%
  );
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.content-narrow{
  max-width: 720px;
}

.section-head{
  max-width: 760px;
  margin-bottom: 22px;
}

.section-head--left{
  text-align: left;
}

.section-head--compact{
  margin-bottom: 14px;
}

.section-head--compact .kicker{
  margin-bottom: 4px;
}

.section-head--compact h2{
  margin: 0;
}

.kicker{
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-head h2{
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.sub{
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}
.content-block{
  margin: 0 0 34px;
}

.content-block h2{
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.content-block h3{
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.content-block p{
  margin: 0 0 14px;
  line-height: 1.78;
  color: var(--text-soft);
  max-width: none;
}

.content-block > *:last-child{
  margin-bottom: 0;
}

/* ---------- LINKLISTE ---------- */

.content-links{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.content-links a{
  position: relative;
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .18s ease, color .18s ease, opacity .18s ease;
}

.content-links a:visited{
  color: var(--brand);
}

.content-links a:hover{
  border-bottom-color: rgba(106,131,168,0.55);
}

/* Trenner */
.content-links a:not(:last-child)::after{
  content: "·";
  margin-left: 12px;
  margin-right: 2px;
  opacity: 0.4;
}

/* Content Buttons */
.btn-primary:hover{
  color: #d2deed; /* leicht bläulich, aber deutlich lesbar */
}

/* Hero bleibt kräftig */
.hero .btn-primary:hover,
.subhero .btn-primary:hover{
  color: #ffffff;
}

.main-content .btn{
  transition: transform .18s ease, box-shadow .18s ease;
}

.main-content .btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* ---------- FLIESSTEXT LINKS ---------- */
.main-content p a:not(.content-links a):not(.section-inspiration-links a),
.main-content li a:not(.content-links a):not(.section-inspiration-links a),
.main-content dd a:not(.content-links a):not(.section-inspiration-links a),
.main-content .sub a:not(.content-links a):not(.section-inspiration-links a),
.main-content .content-block a:not(.content-links a):not(.section-inspiration-links a){
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid rgba(106,131,168,0.6);
  font-weight: 500;
  transition: border-color .18s ease, color .18s ease;
}

.main-content p a:not(.content-links a):not(.section-inspiration-links a):hover,
.main-content li a:not(.content-links a):not(.section-inspiration-links a):hover,
.main-content dd a:not(.content-links a):not(.section-inspiration-links a):hover,
.main-content .sub a:not(.content-links a):not(.section-inspiration-links a):hover,
.main-content .content-block a:not(.content-links a):not(.section-inspiration-links a):hover{
  border-bottom-color: currentColor;
}

/* ---------- OVERRIDE für Linkliste ---------- */

.content-links a{
  border-bottom: 1px solid transparent;
}

.content-links a:hover{
  border-bottom-color: rgba(106,131,168,0.55);
}

/* ---------- AUSNAHMEN ---------- */

.btn,
.btn:visited{
  border-bottom: none;
}

.card a,
.card a:visited{
  border-bottom: none;
}

.site-nav a,
.site-nav a:visited{
  border-bottom: none;
}


/* ================= CHECK LIST ================= */

.check-list{
  list-style: none;
  padding: 0;
  margin: 14px 0 16px;
  display: grid;
  gap: 9px;
}

.check-list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  color: var(--text-soft);
}

.check-list li::before{
  content: "✓";
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
  margin-top: 2px;
  color: var(--brand);
  opacity: 0.85;
}

/* ================= SEASON BOX ================= */

.season-box{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.season-box__col{
  padding: 20px 20px 18px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.season-box__col h3{
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.3;
}

.quiet-times-inline{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.quiet-time-pill{
  display: inline-block;
  padding: 6px 10px;
  font-size: 0.85rem;
  border-radius: 999px;
  background: rgba(106,131,168,0.1);
  color: var(--text);
  white-space: nowrap;
}

/* ================= APARTMENT BADGES ================= */

.apt-badges{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 0;
}

.apt-badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.25);
  color: #fff;
  backdrop-filter: blur(6px);
}

.apt-badge--sauna{
  background: rgba(180,140,60,.35);
}

.apt-badge--adultsonly{
  background: rgba(106,131,168,.35);
}

/* ================= FEATURE / INFO BLOCKS ================= */

.feature-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 16px;
  background: var(--surface);
}

.feature h3{
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.feature p{
  margin: 0;
  color: var(--text-muted);
}

.info-grid{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 16px;
  background: var(--surface);
}

.info h3{
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.info p{
  margin: 0;
  color: var(--text-muted);
}

/* ================= CARD BASICS ================= */

.cards{
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card{
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card-media img{
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body{
  padding: 14px 14px 16px;
}

.card-top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.card-title{
  margin: 0;
  font-size: 1.1rem;
}

.card-price{
  font-size: 0.9rem;
  color: rgba(26,36,48,0.7);
  white-space: nowrap;
}

.meta{
  margin: 10px 0 10px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(26,36,48,0.7);
  font-size: 0.88rem;
}

.meta li{
  padding: 4px 10px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  background: rgba(106,131,168,0.06);
}

.card-text{
  margin: 0 0 12px;
  color: var(--text-muted);
  line-height: 1.45;
}

.card-cta{
  text-decoration: none;
  font-weight: 700;
  color: var(--brand);
}

.section-actions{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ================= FERIENWOHNUNGEN OVERVIEW ================= */

.apartment-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.apartment-card{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}

.apartment-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.apartment-card__media{
  display: block;
  background: rgba(0,0,0,.04);
}

.apartment-card__media picture,
.apartment-card__media img{
  display: block;
  width: 100%;
  height: auto;
}

.apartment-card__media img{
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.apartment-card__body{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px 18px;
  height: 100%;
}

.apartment-card__title{
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.apartment-card__title a{
  text-decoration: none;
  color: var(--text);
}

.apartment-card__title a:hover{
  color: var(--brand);
}

.apartment-card__meta{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.apartment-card__meta li{
  padding: 5px 10px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  background: rgba(106,131,168,0.06);
  font-size: 0.85rem;
  line-height: 1.25;
  color: var(--text-muted);
}

.apartment-card__text{
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.apartment-card__bottom{
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.apartment-card__price{
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.apartment-card__link{
  margin: 0;
}

.apartment-card__link a{
  text-decoration: none;
  font-weight: 700;
  color: var(--brand);
}

.apartment-card__link a:hover{
  text-decoration: underline;
  text-underline-offset: .22em;
}

.apartment-card--highlight{
  border-color: rgba(106,131,168,0.18);
  box-shadow: 0 16px 34px rgba(106,131,168,0.14);
}

/* ================= BUTTONS ================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  text-decoration: none;
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
  line-height: 1;
  cursor: pointer;
}

.btn:hover{
  background: rgba(0,0,0,0.02);
}

.btn:focus-visible{
  outline: 3px solid rgba(106,131,168,0.35);
  outline-offset: 2px;
}

.btn-primary{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 16px 40px rgba(106,131,168,0.38);
}

.btn-primary:hover{
  filter: brightness(0.96);
}

.btn-ghost{
  background: transparent;
  border-color: rgba(0,0,0,0.16);
}

.btn-ghost:hover{
  background: rgba(0,0,0,0.03);
}

.btn-sm{
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 999px;
}

.btn-outline{
  background: transparent;
  border: 1px solid currentColor;
}

.hero .btn-primary,
.subhero .btn-primary{
  background: linear-gradient(
    to bottom,
    #6f88ac,
    #5f7698
  );
  box-shadow:
    0 6px 14px rgba(0,0,0,0.18),
    0 2px 4px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}

.hero .btn-primary:hover,
.subhero .btn-primary:hover{
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.22),
    0 4px 8px rgba(0,0,0,0.14);
}

/* ================= FORMS ================= */

.form-card{
  max-width: 760px;
}

.form-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.form-grid{
  display: grid;
  gap: 12px;
}

.form-grid--2{
  grid-template-columns: 1fr 1fr;
}

.field{
  display: grid;
  gap: 6px;
}

.label{
  margin: 0;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.input,
.textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,0.92);
  font: inherit;
  color: var(--text);
}

.textarea{
  min-height: 160px;
  resize: vertical;
}

.input:focus,
.textarea:focus{
  outline: 3px solid rgba(106,131,168,0.28);
  outline-offset: 2px;
  border-color: rgba(106,131,168,0.35);
}

.help{
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.45;
}

.notice{
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.70);
}

.notice--error{
  border-color: rgba(200,0,0,.18);
  background: rgba(200,0,0,.06);
}

.notice--success{
  border-color: rgba(0,140,70,.18);
  background: rgba(0,140,70,.06);
}

/* ================= PANELS / CTA BOXES ================= */

.section-soft{
  background: var(--surface-tint);
  border-radius: 18px;
  padding: 34px 0;
}

.split{
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: start;
}

.panel{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 16px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(106,131,168,0.12);
}

.panel h3{
  margin: 0 0 10px;
}

.checklist{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.checklist li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checklist li::before{
  content: "✓";
  font-weight: 800;
  line-height: 1.2;
  opacity: .8;
}

.cta{
  text-align: center;
}

.cta .sub{
  margin-top: 10px;
}

/* ================= MOBILE BOOKING CTA ================= */

.mobile-booking-cta{
  display: none;
}

/* ================= TRUST ================= */

.section-trust{
  background: rgba(106,131,168,0.05);
  border-radius: 18px;
  padding: 36px 0;
}

.trust-line{
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

/* ================= APARTMENT FACTS ================= */

.apt-facts{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.apt-fact{
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 28px rgba(106,131,168,0.08);
}

.apt-fact b{
  display: block;
}

.apt-fact small{
  opacity: .75;
}

/* ================= STANDARD GALLERY GRID ================= */

.gallery-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery-item{
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(106,131,168,0.10);
  transition: transform .18s ease, box-shadow .18s ease;
}

.gallery-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(106,131,168,0.16);
}

.gallery-item picture,
.gallery-item img{
  display: block;
  width: 100%;
  height: auto;
}

/* ================= ROOM GALLERY ================= */

.room{
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.room-head h2{
  margin: 0 0 6px;
  font-size: clamp(22px, 2.2vw, 28px);
}

.room-head .sub{
  margin: 0 0 16px;
  color: var(--text-muted);
  max-width: 70ch;
}

.room-media{
  display: grid;
  gap: 14px;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: stretch;
}

.shot{
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 42px rgba(16,24,40,.10);
}

.shot picture,
.shot img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot--big{
  grid-row: span 2;
  min-height: 320px;
}

.room-media .shot:not(.shot--big){
  min-height: 150px;
}

.shot::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.18));
  opacity: 0;
  transition: opacity .2s ease;
}

.shot:hover::after{
  opacity: 1;
}

/* ================= GALLERY FILTER CHIPS ================= */

.gallery-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 16px;
}

.chip{
  appearance: none;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.8);
  padding: 8px 12px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  line-height: 1;
}

.chip:hover{
  border-color: rgba(0,0,0,.22);
}

.chip.is-active{
  border-color: rgba(0,0,0,.22);
  background: rgba(0,0,0,.06);
}

.shot.is-hidden{
  display: none;
}

/* ================= LIGHTBOX ================= */

.lb{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lb[aria-hidden="false"]{
  display: block;
}

.lb__bg{
  position: absolute;
  inset: 0;
  background: rgba(106,131,168,.34);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .18s ease;
}

.lb__panel{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(.985);
  width: min(1100px, 92vw);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(16,24,40,.18);
  padding: 14px 14px 12px;
  outline: none;
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
  will-change: opacity, transform;
}

.lb[aria-hidden="false"] .lb__bg{
  opacity: 1;
}

.lb[aria-hidden="false"] .lb__panel{
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}

.lb__topbar{
  display: flex;
  justify-content: center;
  margin: 2px 0 10px;
}

.lb__counter{
  font-size: .92rem;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--brand);
  border: 1px solid rgba(106,131,168,.50);
  background: rgba(255,255,255,.88);
  box-shadow:
    0 6px 18px rgba(16,24,40,.08),
    0 0 0 2px rgba(106,131,168,.08);
}

.lb__close{
  position: absolute;
  right: 14px;
  top: 12px;
  height: 40px;
  min-width: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(106,131,168,.50);
  background: rgba(255,255,255,.88);
  color: var(--brand);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 6px 18px rgba(16,24,40,.08),
    0 0 0 2px rgba(106,131,168,.08);
}

.lb__close:hover{
  background: rgba(106,131,168,.10);
}

.lb__stage{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  cursor: zoom-in;
}

.lb__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .25s ease, transform .18s ease;
  will-change: transform, opacity;
  z-index: 1;
}

.lb__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  min-width: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(106,131,168,.50);
  background: rgba(255,255,255,.88);
  color: var(--brand);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow:
    0 6px 18px rgba(16,24,40,.08),
    0 0 0 2px rgba(106,131,168,.08);
  z-index: 5;
}

.lb__nav--prev{
  left: 16px;
}

.lb__nav--next{
  right: 16px;
}

.lb__nav:hover{
  background: rgba(106,131,168,.10);
}

.lb__thumbs{
  margin-top: 10px;
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 4px 2px 6px;
  scroll-behavior: smooth;
}

.lb__thumbs button{
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 auto;
  outline: 2px solid transparent;
}

.lb__thumbs img{
  width: 84px;
  height: 56px;
  object-fit: cover;
  display: block;
}

.lb__thumbs button[aria-current="true"]{
  outline-color: rgba(106,131,168,.75);
}

.lb__close:focus-visible,
.lb__nav:focus-visible,
.lb__thumbs button:focus-visible{
  outline: 3px solid rgba(106,131,168,.70);
  outline-offset: 2px;
}

.lb__nav,
.lb__close,
.lb__thumbs button{
  cursor: pointer;
}

.lb__stage::before,
.lb__stage::after{
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.lb__stage::after{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(106,131,168,.55);
  box-shadow:
    0 6px 18px rgba(16,24,40,.15),
    0 0 0 2px rgba(106,131,168,.08);
  z-index: 6;
}

.lb__stage::before{
  background: var(--brand);
  z-index: 7;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 18a8 8 0 1 1 5.293-14.293A8 8 0 0 1 10 18Zm0-2a6 6 0 1 0-4.243-10.243A6 6 0 0 0 10 16Zm9.707 5.293-5.387-5.387 1.414-1.414 5.387 5.387-1.414 1.414Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 18a8 8 0 1 1 5.293-14.293A8 8 0 0 1 10 18Zm0-2a6 6 0 1 0-4.243-10.243A6 6 0 0 0 10 16Zm9.707 5.293-5.387-5.387 1.414-1.414 5.387 5.387-1.414 1.414Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 18px 18px;
          mask-size: 18px 18px;
  filter: drop-shadow(0 1px 2px rgba(16,24,40,.25));
}

.lb__stage::before,
.lb__stage::after{
  opacity: .85;
  transform: translateY(0);
}

.lb.is-zoomed .lb__stage{
  cursor: zoom-out;
}

.lb.is-zoomed .lb__img{
  transform: scale(1.8);
}

.lb.is-zoomed .lb__stage::before,
.lb.is-zoomed .lb__stage::after{
  opacity: 0 !important;
}

/* ================= SEASON PAGES ================= */

.season-hero{
  padding: 40px 0 10px;
}

.season-hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.season-hero-text .kicker{
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  opacity: .8;
  margin: 0 0 10px;
}

.season-hero-text h1{
  margin: 0 0 12px;
  line-height: 1.1;
}

.season-hero-text .lead{
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.55;
  opacity: .95;
}

.cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

.season-hero-media{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,0,0,.10);
}

.season-hero-media img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.season-content,
.season-apartments,
.season-faq{
  padding: 26px 0;
}

.grid-2,
.grid-3{
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.grid-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bullet{
  margin: 10px 0 0;
  padding-left: 18px;
}

.bullet li{
  margin: 6px 0;
}

.muted{
  opacity: .78;
}

.season-faq{
  margin-top: 8px;
}

.season-faq details{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 12px 0;
  background: rgba(255,255,255,.6);
}

.season-faq summary{
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

.season-faq summary::-webkit-details-marker{
  display: none;
}

.season-faq details p{
  margin: 10px 0 0;
  line-height: 1.68;
  color: var(--text-soft);
}

/* ================= MINI APARTMENT CARDS ================= */

.apartment-mini{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.apartment-mini h3{
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.mini-actions{
  display: flex;
  gap: 8px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.apt-card{
  overflow: hidden;
}

.apt-media{
  display: block;
  position: relative;
  background: rgba(0,0,0,.04);
}

.apt-media img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.apt-body{
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.apt-head{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}

.apt-title{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.apt-title a{
  text-decoration: none;
}

.apt-price{
  margin: 0;
  font-size: 0.95rem;
  white-space: nowrap;
}

.apt-features{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feat{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.65);
  font-size: 0.85rem;
}

.apt-meta{
  margin: 0;
}

.all-apartments-link{
  margin-top: 28px;
  text-align: center;
}

/* ================= PRICE SECTION ================= */

.price-section{
  padding: 44px 0;
  white-space: normal;
}

.price-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.price-head{
  margin-bottom: 18px;
}

.price-head h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.price-sub{
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.price-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-card{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0,0,0,.06);
  padding: 20px 20px 18px;
  overflow: hidden;
}

.price-card *{
  min-width: 0;
  overflow-wrap: break-word;
}

.price-card-top{
  margin-bottom: 12px;
}

.price-season{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  min-width: 0;
}

.price-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(106,131,168,.08);
  font-weight: 700;
  line-height: 1.2;
}

.price-dates{
  color: var(--text-muted);
  font-size: 14px;
  white-space: nowrap;
}

.price-lead{
  margin: 0;
}

.price-label{
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}

.price-week{
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.price-amt{
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.price-meta{
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.price-checks{
  list-style: none;
  padding: 0;
  margin: 14px 0 10px;
  display: grid;
  gap: 8px;
}

.price-checks li{
  color: var(--text);
  line-height: 1.5;
}

.price-night{
  margin: 10px 0 14px;
  color: var(--text);
}

.price-note{
  color: var(--text-muted);
  font-size: 13px;
}

.price-flex-note{
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.price-cta{
  display: grid;
  gap: 8px;
  margin-top: 14px;
  min-width: 0;
}

.price-mini{
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.price-ultra{
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(106,131,168,.08), rgba(106,131,168,.025));
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.price-ultra-kicker{
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--text);
}

.price-ultra-main{
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.price-ultra-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.price-foot{
  margin-top: 14px;
}

.price-faq summary{
  cursor: pointer;
  font-weight: 700;
  line-height: 1.45;
}

.price-faq p{
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.price-kicker{
  margin: 0 0 6px;
  color: var(--text-muted);
  font-size: 14px;
}

.price-duo{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.price-mini-card{
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(106,131,168,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.price-mini-card small{
  display: block;
  margin: 0 0 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-mini-card b{
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.price-mini-card span{
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* ================= PRICE-FAQ ================= */

.price-faq {
  transition: margin 0.2s ease;
  margin-bottom: 10px;
}

.price-faq[open] {
  margin-bottom: 18px;
}

.price-faq p {
  margin-top: 8px;
  margin: 10px 0 0 20px;
  line-height: 1.6;
}

.price-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 2px 0;
}

.price-faq summary::-webkit-details-marker {
  display: none;
}

.price-faq summary::marker {
  display: none;
}

.price-faq summary::before {
  content: "▸";
  display: inline-block;
  margin-right: 8px;
  transition: transform 0.2s ease;
}

.price-faq[open] summary::before {
  transform: rotate(90deg);
}



/* ================= APARTMENT INFO / GUT ZU WISSEN ================= */

.section-apartment-info{
  padding-top: 10px;
}

.apt-notice{
  margin: 0 0 18px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.apt-notice-title{
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.apt-notice-list{
  margin: 0;
  padding-left: 18px;
}

.apt-notice-list li{
  margin: 5px 0;
  color: rgba(26,36,48,0.88);
  line-height: 1.55;
}

.good-to-know{
  padding: 22px 24px;
}

.good-to-know-list{
  margin: 0;
  display: grid;
  gap: 12px;
}

.good-to-know-item{
  display: grid;
  grid-template-columns: minmax(150px, 210px) 1fr;
  gap: 10px 16px;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.good-to-know-item:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}

.good-to-know-item dt{
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.good-to-know-item dd{
  margin: 0;
  color: rgba(26,36,48,0.88);
}

/* ================= INSPIRATION LINKS ================= */

.section-inspiration-links{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.section-inspiration-links .sep{
  opacity: .45;
}

.section-inspiration-links a,
.section-inspiration-links a:visited{
  color: var(--brand);
  text-decoration: none;
  border-bottom: none;
  font-weight: 500;
  transition: color .18s ease, opacity .18s ease;
}

.section-inspiration-links a:hover,
.section-inspiration-links a:focus-visible{
  text-decoration: none;
  border-bottom: none;
}

/* ================= FOOTER ================= */

.site-footer{
  margin-top: 48px;
  background: var(--surface-soft);
  border-top: 1px solid var(--border-soft);
  padding: 34px 0 26px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 28px 32px;
  align-items: start;
}

.footer-col{
  min-width: 0;
}

.footer-col h3,
.footer-col h4{
  margin: 0 0 12px;
}

.footer-col p,
.footer-col address,
.footer-col li{
  font-size: .98rem;
  line-height: 1.6;
}

.footer-tagline{
  margin: 14px 0 6px;
  font-weight: 700;
  color: rgba(26,36,48,0.92);
}

.footer-note{
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 46ch;
}

.footer-col ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li{
  margin-top: 6px;
}

.site-footer a{
  color: rgba(26,36,48,0.82);
  text-decoration: none;
}

.site-footer a:hover{
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: .22em;
}

.footer-address{
  margin-top: 16px;
  font-style: normal;
}

.site-footer address{
  font-style: normal;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-legal{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding-top: 22px;
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.footer-legal a,
.footer-legal button{
  font: inherit;
  font-size: 0.9rem;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--text-faint);
  text-decoration: none;
  line-height: 1.5;
}

.footer-legal a:hover,
.footer-legal button:hover{
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: .22em;
}

.footer-legal button{
  appearance: none;
}

.footer-bottom{
  margin-top: 12px;
  padding-top: 14px;
  font-size: .95rem;
  color: rgba(26,36,48,0.55);
  opacity: .88;
}

/* ================= PAGE OVERRIDES ================= */

.page-quiet-times .content-narrow,
.page-quiet-times .section-head,
.page-bergblick .content-narrow,
.page-bergblick .section-head,
.page-wandern .content-narrow,
.page-wandern .section-head,
.page-sommerurlaub .content-narrow,
.page-sommerurlaub .section-head,
.page-anreise .content-narrow,
.page-anreise .section-head,
.page-lage .content-narrow,
.page-lage .section-head,
.page-preise .content-narrow,
.page-preise .section-head,
.page-winterurlaub .content-narrow,
.page-winterurlaub .section-head{
  max-width: none;
}

/* ================= RESPONSIVE ================= */

@media (min-width: 700px){
  .gallery-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px){
  .cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px){
  .cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1200px){
  .section + .section .wrap::before{
    left: 40px;
    right: 40px;
  }
}

@media (max-width: 980px){
  .feature-grid,
  .info-grid,
  .split,
  .season-hero-grid,
  .price-grid{
    grid-template-columns: 1fr;
  }

  .apartment-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap: 26px 28px;
  }

  .section-head h2{
    font-size: 1.5rem;
  }

  .apt-facts{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-hero-media img{
    aspect-ratio: 16 / 9;
  }

  .room-media{
    grid-template-columns: 1fr 1fr;
  }

  .shot--big{
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .site-header .brand img{
    height: 44px;
    left: 0;
    transform: translateY(0);
  }

  .site-header.is-scrolled .brand img{
    height: 44px;
    transform: translateY(0);
  }

  .nav-toggle{
    display: grid;
    margin-left: auto;
  }

  .site-nav{
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 18px;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height .28s ease, opacity .22s ease, transform .22s ease;
    border-bottom: 1px solid var(--border-soft);
  }

  .site-nav.open{
    max-height: 70vh;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    overflow: auto;
  }

  .site-nav > a,
  .site-nav > .dropdown{
    width: 100%;
  }

  .site-nav a,
  .dropbtn{
    width: 100%;
    padding: 10px 0;
  }

  .dropmenu{
    position: static;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height .25s ease, opacity .2s ease;
  }

  .dropdown.open .dropmenu{
    max-height: 60vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropmenu a{
    padding: 8px 0 8px 12px;
  }

  .directbooking{
    display: none;
  }

  .mobile-booking-cta{
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 12px;
    text-decoration: none;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 22px rgba(106,131,168,0.18);
    transform: translateY(14px);
    opacity: 0;
    animation: mbCtaIn .5s ease forwards;
    animation-delay: .25s;
  }

  .mb-cta__title{
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.1;
  }

  .mb-cta__sub{
    font-size: 0.72rem;
    opacity: 0.82;
    letter-spacing: 0.01em;
  }

  body.nav-open .mobile-booking-cta{
    opacity: 0;
    pointer-events: none;
  }

  .main-content{
    padding-bottom: 95px;
  }

  .price-ultra{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .price-ultra-actions{
    justify-content: flex-start;
    gap: 10px;
    margin-top: 4px;
    width: 100%;
  }

  @keyframes mbCtaIn{
    to{
      transform: translateY(0);
      opacity: 1;
    }
  }
}

@media (max-width: 700px){
  .section + .section .wrap::before{
    left: 24px;
    right: 24px;
  }

  .hero-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn{
    width: 100%;
    justify-content: center;
  }

  .booking-sub{
    max-width: none;
  }

  .form-grid--2{
    grid-template-columns: 1fr;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-legal{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom{
    padding-bottom: 78px;
  }

.subhero-media{
  border-radius: 18px;
}

  .subhero-overlay{
    padding: 20px;
  }

  .subhero-sub{
    font-size: .98rem;
  }

  .topic-gallery{
    grid-template-columns: 1fr;
  }

  .topic-shot,
  .topic-shot--big{
    min-height: 240px;
  }

  .season-box,
  .apartment-grid,
  .grid-2,
  .grid-3,
  .price-duo{
    grid-template-columns: 1fr;
  }

  .apartment-card__body{
    padding: 14px 16px 16px;
  }

  .good-to-know-item{
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-card{
    padding: 16px 16px 15px;
  }

  .price-season{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .price-dates{
    white-space: normal;
    font-size: 13px;
  }

  .price-week{
    font-size: 18px;
  }

  .price-amt{
    font-size: clamp(24px, 8vw, 30px);
  }

  .price-meta,
  .price-flex-note,
  .price-mini,
  .price-faq p,
  .price-ultra-main,
  .price-checks li{
    font-size: 14px;
    line-height: 1.55;
  }

  .price-cta{
    gap: 10px;
  }

  .price-cta .btn,
  .price-ultra-actions .btn{
    width: 100%;
    justify-content: center;
  }

  .price-ultra{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .price-ultra-actions{
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 4px;
  }

  .season-hero{
    padding: 28px 0 6px;
  }

  .season-hero-text .lead{
    font-size: 1rem;
  }

  .room-media{
    grid-template-columns: 1fr;
  }

  .room-media .shot{
    min-height: 220px;
  }
}

@media (max-width: 520px){
  .wrap{
    padding: 0 18px;
  }

  .site-header .wrap{
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-overlay,
  .subhero-overlay{
    padding: 18px;
  }

  .hero-overlay h1,
  .subhero-overlay h1{
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .section{
    padding: 30px 0;
  }

  .price-card,
  .panel,
  .feature,
  .info{
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (prefers-reduced-motion: reduce){
  .lb__bg,
  .lb__panel,
  .lb__img{
    transition: none !important;
  }
}

@media (hover: hover){
  .lb__stage:hover .lb__img{
    transform: scale(1.03);
  }
}

@media (hover: hover) and (pointer: fine){
  .lb__stage::before,
  .lb__stage::after{
    opacity: 0;
    transform: translateY(4px);
  }

  .lb__stage:hover::before,
  .lb__stage:hover::after{
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= COOKIE BANNER ================= */

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3000;
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.96);
  color: var(--text);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  padding: 18px 18px 16px;
  display: grid;
  gap: 16px;
}

.cookie-banner__title {
  margin: 0 0 6px;
  font-weight: 700;
}

.cookie-banner__text p {
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 3100;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 34, 0.5);
  backdrop-filter: blur(3px);
}

.cookie-modal__panel {
  position: relative;
  width: min(680px, calc(100% - 32px));
  margin: 6vh auto 0;
  background: #fff;
  color: var(--text);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  padding: 24px;
  z-index: 1;
}

.cookie-modal__panel h2 {
  margin: 0 36px 10px 0;
}

.cookie-modal__intro {
  margin: 0 0 18px;
}

.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.cookie-option:first-of-type {
  border-top: 0;
}

.cookie-option p {
  margin: 4px 0 0;
  font-size: 0.96rem;
}

.cookie-option--locked {
  opacity: 0.88;
}

.cookie-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

@media (min-width: 860px) {
  .cookie-banner__inner {
    grid-template-columns: 1.4fr auto;
    align-items: end;
  }

  .cookie-banner__actions {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner,
  .cookie-modal__panel {
    border-radius: 18px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .btn,
  .cookie-modal__actions .btn {
    width: 100%;
  }

  .cookie-option {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px){

  /* Hero + Subhero Buttons raus */
  .hero .hero-actions,
  .hero .button-group,
  .hero .cta-group,
  .subhero .subhero-actions,
  .subhero .button-group,
  .subhero .cta-group{
    display: none !important;
  }

  /* Platz NACH dem Footer schaffen */
  .site-footer{
    margin-bottom: 70px;
  }
}

@media (max-width: 768px){

  html,
  body{
    overflow-x: hidden;
  }

  .hero,
  .hero-inner,
  .hero-media,
  .hero-overlay,
  .mobile-booking-cta{
    max-width: 100%;
  }

  .hero .hero-actions,
  .hero .hero-benefits,
  .subhero .subhero-actions{
    display: none !important;
  }

  .hero .hero-overlay{
    padding: 22px 20px 20px;
    justify-content: flex-end;
  }

  .hero .hero-kicker{
    margin: 0 0 8px;
    font-size: 0.9rem;
  }

  .hero .hero-overlay h1{
    margin: 0 0 10px;
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.05;
  }

  .hero .hero-sub{
    margin: 0;
    font-size: 1rem;
    line-height: 1.45;
    max-width: 24rem;
  }

  .site-footer{
    margin-bottom: 70px;
  }
}

.hero-link{
  display: block;
  width: 100%;
  height: 100%;
}

.hero-link picture,
.hero-link img{
  display: block;
  width: 100%;
  height: 100%;
}

.hero-link img{
  object-fit: cover;
}

.trust-inline-mobile{
  display: none;
}

.trust-inline-mobile{
  display: none;
}

@media (max-width: 768px){
  .trust-inline-mobile{
    display: block;
    margin: 10px 0 22px;
    padding-left: 2px;

    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(26,36,48,0.70);

    max-width: 36ch;
  }
}

/* ================= MOBILE HERO / SUBHERO FINAL ================= */

@media (max-width: 768px){

  html,
  body{
    overflow-x: hidden;
  }

  .hero,
  .hero-inner,
  .hero-media,
  .subhero,
  .subhero-media,
  .mobile-booking-cta{
    max-width: 100%;
  }

  .hero-media,
  .subhero-media{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    background: #eef3f7;
  }

  .hero-media picture,
  .hero-media img,
  .hero-link,
  .hero-link picture,
  .hero-link img,
  .subhero-media picture,
  .subhero-media img{
    display: block;
    width: 100%;
    height: auto !important;
  }

  .hero-media img,
  .hero-link img,
  .subhero-media img{
    aspect-ratio: 16 / 9;
    min-height: 0 !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center center;
  }

  .hero-overlay,
  .subhero-overlay{
    position: static;
    inset: auto;
    color: var(--text, #1f2a33);
    padding: 24px 22px 28px;
    background: #eef3f7;
  }

  .hero-overlay > *,
  .subhero-overlay > *{
    position: relative;
  }

  .hero-kicker,
  .hero-sub,
  .subhero-kicker,
  .subhero-sub{
    color: inherit;
  }

  .hero-kicker,
  .subhero-kicker{
    margin: 0 0 12px;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    opacity: 0.82;
  }

  .hero-overlay h1,
  .subhero-overlay h1{
    color: inherit;
    max-width: none;
    margin: 0 0 14px;
    font-size: clamp(2rem, 8vw, 2.65rem);
    line-height: 1.04;
  }

  .hero-sub,
  .subhero-sub{
    max-width: none;
    margin: 0;
    font-size: 1rem;
    line-height: 1.55;
    opacity: 0.88;
  }

  .hero-actions,
  .hero-benefits,
  .subhero-actions{
    display: none !important;
  }

  .site-footer{
    margin-bottom: 70px;
  }
  
  .hero-overlay::before,
  .subhero-overlay::before{
    display: none !important;
    content: none !important;
    background: none !important;
  }
}

.insurance-frame{
  margin-top: 24px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  min-height: 680px;
}

.insurance-frame iframe{
  width: 100%;
  min-height: 680px;
  border: 0;
  display: block;
}