/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
/* barlow-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow-v13-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/barlow-v13-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* barlow-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/barlow-v13-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* bonheur-royale-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Bonheur Royale';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/bonheur-royale-v15-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  /* Wein – Hauptfarbe */
  --wein:     rgb(105, 25, 15);

  /* Stein – Sekundärfarbe (ersetzt wein-lt) */
  --stein:    rgb(160, 105, 80);
  --stein-lt: rgb(200, 180, 165);
  --stein-dk: rgb(100,  58,  40);

  /* Neutrale Töne */
  --greige:   rgb(245, 241, 232);
  --weiss:    rgb(252, 250, 248);
  --dunkel:   rgb(15, 10, 5);
  --text:     rgb(42, 32, 24);
  --text-mid: rgb(104, 88, 72);

  --f-logo: 'Bonheur Royale', cursive;
  --f-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ══════════════════════════════════════
   RESET & BASIS
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-y: scroll;
}
@media (min-width: 768px)  { html { font-size: 19px; } }
@media (min-width: 1024px) { html { font-size: 20px; } }

body {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  background: var(--weiss);
  line-height: 1.75;
}
img     { max-width: 100%; height: auto; display: block; }
a       { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
address { font-style: normal; }
p       { margin: 0 0 1em; font-size: 1rem; font-weight: 500; }
h1, h2, h3 { margin: 0 0 .5em; line-height: 1.2; }
ul      { margin: 0; padding: 0; list-style: none; }
button  { cursor: pointer; }

h2 {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  letter-spacing: .1em;
  color: var(--wein);
  text-transform: uppercase;
  margin-bottom: .2em;
}
h3 {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .4rem;
}

/* ══════════════════════════════════════
   V-DEKO HINTER H2
══════════════════════════════════════ */
.section-head,
.intro-text,
.split-text { position: relative; }

.section-head::before,
.intro-text::before,
.split-text::before {
  content: 'V';
  font-family: var(--f-logo);
  font-size: clamp(12rem, 24vw, 20rem);
  position: absolute;
  top: -.25em; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  color: var(--stein-lt);
  opacity:0.25;
}
@media (max-width: 767px) {
  .section-head::before,
  .intro-text::before,
  .split-text::before { left: 0; transform: none; }
}
.section-head > *,
.intro-text > *,
.split-text > * { position: relative; z-index: 1; }

/* ══════════════════════════════════════
   LABEL-AKZENT (Zeile nach H2 – größer, bold)
══════════════════════════════════════ */
.label-accent {
  display: block;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--stein);
  letter-spacing: .05em;
  margin-bottom: 1.2rem;
  margin-top: .1rem;
}
.label-hell { color: var(--stein-lt); }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.js-ready .reveal.d1 { transition-delay: .12s; }
.js-ready .reveal.d2 { transition-delay: .24s; }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.reveal-up { animation: fadeUp .9s ease both; }
.d1 { animation-delay: .2s; }
.d2 { animation-delay: .4s; }
.d3 { animation-delay: .6s; }

/* ══════════════════════════════════════
   HEADER
   ≥ 1000px : Logo | Nav | Icons  (eine Reihe)
   768–999px: Logo | Icons | Burger  (Reihe 1)
              Nav ausklappbar        (Reihe 2)
   < 768px  : Logo | Icons | Burger  (Reihe 1, kompakter)
              Nav ausklappbar        (Reihe 2)
   scrolled : logo-sub2 weg, Header schmaler
══════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(245, 241, 232, .92);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 12px rgba(0,0,0,.08);
  transition: background .3s, box-shadow .3s;
}
#site-header.scrolled {
  background: rgba(245, 241, 232, .98);
  box-shadow: 0 2px 18px rgba(0,0,0,.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 1rem;
  transition: padding .3s;
}
#site-header.scrolled .header-inner {
  padding-top: .35rem;
  padding-bottom: .35rem;
}

/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }

.logo-vbl {
	font-family: var(--f-logo);
	font-size: 2.6rem;
	line-height: 1.05;
	display: block;
	color: var(--wein);
	letter-spacing: 0.08em;  /* aufgelockertes Spacing im Logo */
	transition: font-size .3s;
}
#site-header.scrolled .logo-vbl { font-size: 2.5rem; }

.logo-sub,
.logo-sub2 {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: block;
  width: 100%;
  text-align: right;
  color: var(--text-mid);
  overflow: hidden;
  max-height: 2em;
  opacity: 1;
  transition: max-height .3s ease, opacity .3s ease, margin .3s ease;
}
.logo-sub { margin-top: -.3rem; }

/* dritte Zeile beim Scrollen ausblenden */
#site-header.scrolled .logo-sub2 {
  max-height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}

/* Footer logo */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.footer-logo .logo-vbl  {
  color: var(--wein);
  font-size: 2.6rem;
  letter-spacing: .08em; /* gleich wie hero */
}
.footer-logo .logo-sub  { color: rgba(255,255,255,.25); }
.footer-logo .logo-sub2 { color: rgba(255,255,255,.25); }

/* NAV – Desktop sichtbar, Tablet/Mobile ausklappbar */
#main-nav ul { display: flex; gap: 1.8rem; }
#main-nav a {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .2s;
  padding: .2em .1em;
}
#main-nav a:hover { color: var(--wein); text-decoration: none; }
#main-nav a.aktiv {
  color: var(--wein);
  outline: 1px solid var(--wein);
  outline-offset: 3px;
}

/* HEADER ICONS */
.header-icons {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.header-icons i {
  font-size: 1.2rem;
  color: var(--wein);
  transition: transform .2s ease;
}
.header-icons a:hover i {
  transform: scale(1.1);
  color: var(--text);
}

/* BURGER – nur auf Tablet & Handy */
.burger {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--wein);
  border-radius: 0;
  transition: all .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ══════════════════════════════════════
   HERO – mittig, Text etwas tiefer
══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;   /* Text unten */
  justify-content: center; /* mittig horizontal */
  overflow: hidden;
}
.hero > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(15,10,3,.15) 55%, rgba(15,10,3,.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 2rem 6rem;   /* mehr Abstand unten */
  max-width: 760px;
  width: 100%;
}
.hero-label {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--greige);
  margin-bottom: .6em;
}
.hero-title {
  font-family: var(--f-logo);
  font-size: clamp(4rem, 11vw, 7.5rem);
  color: #fff;
  font-weight: 400;
  line-height: 1;
  margin-bottom: .15em;
  text-shadow: 0 2px 28px rgba(0,0,0,.35);
  letter-spacing: .08em; /* wie footer */
}
.hero-sub {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  margin-bottom: 2rem;
}
.hero-cta {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.5);
  padding: .75em 2em;
  transition: background .25s, border-color .25s;
}
.hero-cta:hover { background: var(--wein); border-color: var(--wein); text-decoration: none; }

.scroll-down {
  position: absolute;
  bottom: 0; right: 2.5rem;
  z-index: 2;
  background: var(--wein);
  color: #fff;
  width: 44px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  animation: bob 2.2s ease-in-out infinite;
}
.scroll-down:hover { background: var(--stein-dk); text-decoration: none; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ══════════════════════════════════════
   CTA MITTIG
══════════════════════════════════════ */
.cta-center { text-align: center; margin-top: 1.4rem; }

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section   { padding: 5.5rem 0; }

.bg-weiss  { background: var(--weiss); }
.bg-greige { background: var(--greige); }
.bg-dunkel { background: var(--wein); }

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .section-head { text-align: left; }
  h2 { text-align: left; }
}

/* ══════════════════════════════════════
   WOHNUNG-HERO
══════════════════════════════════════ */
.wohnung-hero {
  padding: 3.5rem 1rem;
  position: relative;
}
.wohnung-hero img {
  width: 100%;
  height: clamp(380px, 55vw, 680px);
  object-fit: cover;
  object-position: center 60%;
}
.wohnung-hero-caption {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  text-align: center;
  padding: .6rem 0 0;
  letter-spacing: .04em;
}

/* ══════════════════════════════════════
   INTRO: Text + USP
══════════════════════════════════════ */
.intro-grid {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}
.intro-grid > * { flex: 1; }
.intro-text p { color: var(--text-mid); line-height: 1.85; }

/* ══════════════════════════════════════
   USP BLOCK
══════════════════════════════════════ */
.usp-block {
  background: var(--stein-dk);
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
}
.usp-v-deko {
  font-family: var(--f-logo);
  font-size: 18rem;
  color: rgba(255,255,255,.04);
  position: absolute;
  top: -.3em; right: -.1em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.usp-item:last-of-type { border-bottom: none; }
.usp-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--stein-lt); margin-top: 2px; }
.usp-item div { display: flex; flex-direction: column; }
.usp-item strong { font-weight: 500; font-size: 1rem; color: #fff; }
.usp-item span   { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.55); margin-top: .1rem; }

/* ══════════════════════════════════════
   PREISE & INFOS – 4-Block-Grid
══════════════════════════════════════ */
.info-preise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid rgba(42,32,24,.1);
}

/* Basis-Block */
.info-block {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(42,32,24,.1);
}
.info-block:last-child { border-right: none; }

.info-block-titel {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  margin-top: 0;
}

/* Wein-Block (Preise) */
.info-block--wein {
  background: var(--wein);
  color: #fff;
}
.info-block--wein .info-block-titel { color: var(--stein-lt); }

.preis-zeile {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.preis-zeile--last { border-bottom: none; }
.preis-zeile span   { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.65); }
.preis-zeile strong { font-size: 1rem; font-weight: 600; color: #fff; }
.preis-hinweis {
  font-size: .85rem;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  margin-top: .8rem;
  margin-bottom: 0;
  line-height: 1.5;
  flex: 1;
}

/* Stein-Block (Inklusiv) */
.info-block--stein {
  background: var(--stein-dk);
  color: #fff;
}
.info-block--stein .info-block-titel { color: var(--stein-lt); }

/* Greige-Block (Check-in) */
.info-block--greige {
  background: var(--greige);
}
.info-block--greige .info-block-titel { color: var(--wein); }

/* KONUS-Block */
.info-block--konus {
  background: var(--weiss);
  border-right: none;
}
.info-block--konus .info-block-titel { color: var(--wein); }

/* Info-Zeilen innerhalb der Blöcke */
.info-zeile {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.info-block--wein .info-zeile,
.info-block--stein .info-zeile { border-bottom-color: rgba(255,255,255,.1); }
.info-zeile:last-of-type { border-bottom: none; }

.info-zeile svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; opacity: .7; }
.info-block--wein .info-zeile svg,
.info-block--stein .info-zeile svg { color: var(--stein-lt); opacity: 1; }
.info-block--greige .info-zeile svg { color: var(--stein); }
.info-block--konus .info-zeile svg  { color: var(--wein); }

.info-zeile > span,
.info-zeile > div { font-size: .95rem; font-weight: 400; line-height: 1.5; }
.info-block--wein .info-zeile span,
.info-block--stein .info-zeile span { color: rgba(255,255,255,.8); }

.info-zeile-text { display: flex; flex-direction: column; }
.info-zeile-text strong { font-weight: 500; font-size: .95rem; }
.info-zeile-text span   { font-size: .9rem; opacity: .7; }
.info-block--greige .info-zeile-text strong { color: var(--text); }
.info-block--greige .info-zeile-text span   { color: var(--text-mid); }

/* KONUS spezifisch */
.konus-icon {
  width: 36px; height: 36px;
  background: var(--wein);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.konus-icon svg { width: 20px; height: 20px; color: var(--stein-lt); }
.info-block--konus p { font-size: .95rem; color: var(--text-mid); line-height: 1.75; }
.konus-detail {
  font-size: .82rem !important;
  color: var(--stein) !important;
  letter-spacing: .04em;
  margin-top: .5rem;
}

/* Responsive: 4→2→1 Spalten */
@media (max-width: 1100px) {
  .info-preise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-block {
    border-right: 1px solid rgba(42,32,24,.1);
    border-bottom: 1px solid rgba(42,32,24,.1);
  }
  .info-block:nth-child(2n) { border-right: none; }
  .info-block:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .info-preise-grid { grid-template-columns: 1fr; }
  .info-block { border-right: none; border-bottom: 1px solid rgba(42,32,24,.1); }
  .info-block:last-child { border-bottom: none; }
}


/* ══════════════════════════════════════
   PREISE KARTE
══════════════════════════════════════ */
.preise-karte {
  display: flex;
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid rgba(42,32,24,.1);
  background: var(--weiss);
}
.preise-karte-links {
  flex: 1;
  padding: 2.2rem 2rem;
  border-right: 1px solid rgba(42,32,24,.1);
}
.preise-karte-rechts {
  flex: 1;
  padding: 2.2rem 2rem;
}
.preise-karte-titel {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wein);
  margin-bottom: 1.2rem;
  margin-top: 0;
}
.preise-karte .preis-zeile {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(42,32,24,.07);
}
.preise-karte .preis-zeile--last,
.preise-karte .preis-zeile:last-of-type { border-bottom: none; }
.preise-karte .preis-zeile span   { font-size: 1rem; font-weight: 400; color: var(--text-mid); }
.preise-karte .preis-zeile strong { font-size: 1rem; font-weight: 600; color: var(--text); }
.preise-karte .preis-hinweis {
  font-size: .85rem;
  color: var(--text-mid);
  opacity: .7;
  margin-top: .9rem;
  line-height: 1.55;
}
.preise-karte-rechts .info-zeile {
  border-bottom: 1px solid rgba(42,32,24,.07);
}
.preise-karte-rechts .info-zeile:last-of-type { border-bottom: none; }
.preise-karte-rechts .info-zeile svg { color: var(--stein); opacity: 1; }
@media (max-width: 767px) {
  .preise-karte { flex-direction: column; }
  .preise-karte-links { border-right: none; border-bottom: 1px solid rgba(42,32,24,.1); }
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--wein);
  color: #fff;
  padding: .8em 2.2em;
  border: 1px solid var(--wein);
  transition: background .25s;
}
.btn:hover { background: var(--stein-dk); border-color: var(--stein-dk); text-decoration: none; color: #fff; }

.btn-hell {
  display: inline-block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  padding: .8em 2.2em;
  border: 1px solid rgba(255,255,255,.5);
  transition: background .25s;
}
.btn-hell:hover { background: rgba(255,255,255,.15); text-decoration: none; }

/* ══════════════════════════════════════
   GALERIEN
   Desktop: 4 Spalten · Tablet: 3 · Handy: 2
   Alle Bilder gleiches Format (4:3)
══════════════════════════════════════ */
.galerie-wrap       { padding: 0 2rem; }
.galerie-wrap-inner { padding: 0 2rem 4rem; }

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.galerie-item {
  overflow: hidden;
  cursor: pointer;
  margin: 0;
}
.galerie-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.galerie-item:hover img { transform: scale(1.04); }

@media (max-width: 1249px) {
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .galerie-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   AUSSTATTUNG
══════════════════════════════════════ */
.merkmale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}
.merkmal-icon { width: 34px; height: 34px; color: var(--wein); margin-bottom: .9rem; }
.merkmal-icon svg { width: 100%; height: 100%; }
.merkmal p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin: 0; }

/* ══════════════════════════════════════
   FULLBILD
══════════════════════════════════════ */
.fullbild {
  position: relative;
  height: 55vw;
  max-height: 520px;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.fullbild > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.fullbild-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,3,.72) 0%, rgba(15,10,3,.08) 55%);
}
.fullbild-text {
  position: relative; z-index: 2;
  padding: 2.5rem 3.5rem;
}
.fullbild-text p {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stein-lt);
  margin-bottom: .3rem;
}
.fullbild-text h2 {
  font-family: var(--f-logo);
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}

/* ══════════════════════════════════════
   SPLIT – Text + Bild nebeneinander
   Bild: feste Proportion, angleichen
══════════════════════════════════════ */
.split {
  display: flex;
  gap: 5rem;
  align-items: stretch;
}
.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split-text p { color: var(--text-mid); line-height: 1.85; }

.split-media {
  flex: 1;
  min-height: 360px;
  overflow: visible;
  padding-right: 12px;
  padding-bottom: 12px;
}
.split-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}
.deko-img {
  width: 100%; height: 360px;
  object-fit: cover;
}
.split--golden .split-text { flex: 1.618; }
.split--golden .split-media { flex: 1; }

.rahmen {
  box-shadow: 0 0 1px var(--text-mid), 10px 10px 0 var(--stein-lt);
  display: block;
}

/* ══════════════════════════════════════
   REGION KARTEN
══════════════════════════════════════ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}
.region-icon { width: 32px; height: 32px; color: var(--wein); margin-bottom: .8rem; }
.region-icon svg { width: 100%; height: 100%; }
.region-karte p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin: 0; }

/* ══════════════════════════════════════
   KONTAKT
══════════════════════════════════════ */
.h-hell { color: #fff; }

/* Kontakt: Anschrift schmaler, Formular breiter */
.kontakt-grid {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}
.kontakt-info  { flex: 1; }
.kontakt-form  { flex: 2; }  /* Formular bekommt doppelt so viel Platz */

.kontakt-name {
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.4rem;
}
.kontakt-zeile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .8rem;
}
.kontakt-zeile i {
  width: 20px;
  text-align: center;
  color: var(--stein-lt);
  font-size: 1.1rem;
}
.kontakt-zeile span,
.kontakt-zeile a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}
.kontakt-zeile a:hover { color: var(--stein-lt); text-decoration: none; }

.kontakt-form {
  background: var(--greige);
  padding: 2rem 2.2rem;
}
.form-row {
  display: flex;
  gap: 1rem;
}
.form-row > * { flex: 1; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  margin-bottom: .9rem;
}
label {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
input, textarea, select {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  background: #fff;
  border: 1px solid rgba(42,32,24,.2);
  color: var(--text);
  padding: .6em .85em;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  appearance: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--wein); }
textarea { resize: vertical; }
.form-pflicht {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: .8rem;
}
.btn-form {
	font-family: var(--f-body);
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: var(--wein);
	color: #fff;
	border: none;
	padding: .85em 1.4em;
	cursor: pointer;
	transition: background .25s;
	display: block;
	width: 100%;
}
.btn-form:hover { background: var(--stein-dk); }
.form-hinweis {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
  margin-top: .8rem;
  margin-bottom: 0;
  text-align: center;
}

/* ══════════════════════════════════════
   SONNENUNTERGANG
══════════════════════════════════════ */
.sunset-bild {
  position: relative;
  height: 100svh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sunset-bild > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.sunset-overlay {
  position: absolute; inset: 0;
  background: rgba(15,8,2,.42);
}
.sunset-text {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
}
.sunset-label {
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--stein-lt);
  margin-bottom: .4rem;
}
.sunset-title {
  font-family: var(--f-logo);
  font-size: clamp(4rem, 12vw, 8rem);
  color: #fff;
  font-weight: 400;
  line-height: 1;
  margin-bottom: .3em;
  text-shadow: 0 3px 30px rgba(0,0,0,.4);
  text-transform: none;
  letter-spacing: .08em;
}
.sunset-sub {
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  letter-spacing: .08em;
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--dunkel);
  color: rgba(255,255,255,.55);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-adresse {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}
.footer-adresse a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-adresse a:hover { color: var(--stein-lt); text-decoration: none; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: flex-end;
}
.footer-links a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-links a:hover { color: var(--stein-lt); text-decoration: none; }
.footer-msbu {
  font-size: .875rem;
  font-weight: 400;
  color: rgba(255,255,255,.2);
  transition: color .2s;
}
.footer-msbu:hover { color: rgba(255,255,255,.4); text-decoration: none; }

/* ══════════════════════════════════════
   NACH OBEN
══════════════════════════════════════ */
.to-top {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 42px; height: 42px;
  background: var(--wein);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, background .2s;
  z-index: 800;
}
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top svg, .to-top i { width: 18px; height: 18px; font-size: 1rem; }
.to-top:hover { background: var(--stein-dk); text-decoration: none; }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
}
#lightbox.lb-open { display: block; }
#lb-overlay {
  position: absolute; inset: 0;
  background: rgba(10,5,2,.92);
}
#lb-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
#lb-img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  opacity: 0; transition: opacity .3s;
}
#lb-img.lb-loaded { opacity: 1; }
#lb-caption {
  position: absolute; bottom: 1.5rem; left: 0; right: 0;
  text-align: center;
  font-weight: 400; font-size: 1rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}
#lb-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: none; color: #fff;
  font-size: 1.5rem; cursor: pointer; z-index: 1; padding: .5rem;
}
#lb-prev, #lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer; padding: .5rem 1rem;
  transition: background .2s; z-index: 1;
}
#lb-prev { left: 1rem; }
#lb-next { right: 1rem; }
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,.2); }

/* ══════════════════════════════════════
   RESPONSIVE – TABLET & HANDY
   ≤ 1249px: Burger sichtbar, Nav dropdown
   Logo | Icons+Burger  →  Nav darunter
══════════════════════════════════════ */
@media (max-width: 1249px) {
  .burger { display: flex; }

  /* Header: Logo links, Icons+Burger rechts – eine Zeile */
  .header-inner {
    flex-wrap: nowrap;
    padding: .6rem 1.6rem;
  }

  /* Nav: Dropdown unter dem Header */
  #main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(245, 241, 232, .99);
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    z-index: 500;
  }
  #main-nav.open { max-height: 400px; }
  #main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: .5rem 0 .8rem;
    text-align: center;
  }
  #main-nav a {
    display: block;
    padding: .7rem 2rem;
    color: var(--text);
    font-size: 1rem;
  }
  #main-nav a.aktiv {
    color: var(--wein);
    outline: none;
    background: rgba(105,25,15,.07);
  }

  .intro-grid,
  .split,
  .kontakt-grid { flex-direction: column; gap: 2.5rem; }
  .kontakt-info,
  .kontakt-form { flex: unset; width: 100%; }
  .split-media { min-height: 280px; }
  .split-img    { min-height: 280px; }
  .merkmale-grid, .region-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .section { padding: 4rem 0; }
  .form-row { flex-direction: column; }
}

/* ══════════════════════════════════════
   RESPONSIVE – HANDY  ≤ 767px
══════════════════════════════════════ */
@media (max-width: 767px) {
  .header-inner { padding: .5rem 1rem; gap: .4rem; }
  .logo { align-items: flex-start; flex: 0; }
  .logo .logo-sub,
  .logo .logo-sub2 {
	text-align: right;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
}

  .merkmale-grid, .region-grid { grid-template-columns: 1fr; }
  .galerie-wrap, .galerie-wrap-inner { padding: 0 0 3rem; }
  .fullbild { height: 65vw; min-height: 220px; }
  .fullbild-text { padding: 1.5rem 1.4rem; }
  .container { padding: 0 1.2rem; }
  footer .footer-inner { flex-direction: column; }
  .footer-links { align-items: flex-start; }
  .usp-block { padding: 1.6rem 1.4rem; }
  .wohnung-hero img { height: 55vw; }
  .hero-content { padding: 0 1.4rem 4rem; }
  .hero-cta { display: none; }
  .hero-title { font-size: clamp(4rem, 18vw, 6rem); }
  .sunset-title { font-size: clamp(4rem, 16vw, 6rem); }
  .footer-logo .logo-vbl { font-size: 3.2rem; }
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: .5rem;
}
/* Impressum/Datenschutz inline styles override */
main.page-content { padding-top: 8rem; padding-bottom: 5rem; min-height: 80vh; }
