/* ============================================================
   seeRAUM — Villa Emmersdorf · main.css
   Montserrat only · #38383d / #d1c9bc palette
   ============================================================ */

/* ── FONT FACE (self-hosted) ── */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/montserrat/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --beige:       #d1c9bc;
  --beige-lt:    #e8e3db;
  --beige-dk:    #b8af9f;
  --anth:        #38383d;
  --anth-lt:     #5a5a61;
  --white:       #ffffff;
  --off-white:   #f5f3f0;
  --black:       #1a1a1c;
  --muted:       #8c8b86;
  --font:        'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--anth);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html, body { max-width: 100%; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
svg { overflow: hidden; }
a { color: inherit; text-decoration: none; }

/* ── SCROLL REVEAL ── */
.reveal, .reveal-l, .reveal-r {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal   { transform: translateY(20px); }
.reveal-l { transform: translateX(-20px); }
.reveal-r { transform: translateX(20px); }
.revealed { opacity: 1 !important; transform: none !important; }
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .15s; }
.d3 { transition-delay: .25s; }
.d4 { transition-delay: .35s; }
.d5 { transition-delay: .45s; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: transparent;
  transition: background .35s, box-shadow .35s;
}
.nav.scrolled {
  background: rgba(26,26,28,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.nav-logo { height: 60px; }
.nav-logo img { height: 60px; width: auto; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .62rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  transition: color .25s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--beige);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: .6rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--anth);
  background: var(--beige); padding: .65rem 1.4rem;
  transition: background .25s, transform .2s;
}
.nav-cta:hover { background: var(--beige-dk); transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none; outline: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  transition: all .3s;
}

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(26,26,28,.6) 0%,
    rgba(26,26,28,.0) 35%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem 5rem;
  max-width: 820px;
}
/* subtle dark backdrop behind text block only */
.hero-text-backdrop {
  display: inline-block;
  background: rgba(26,26,28,.45);
  backdrop-filter: blur(2px);
  padding: 2.5rem 3rem 2.5rem 2rem;
}
.hero-eyebrow {
  font-size: .58rem; font-weight: 500; letter-spacing: .32em;
  text-transform: uppercase; color: var(--beige);
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1.1rem;
  animation: fadeUp .9s ease .3s both;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--beige);
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300; line-height: 1.05; color: var(--white);
  margin-bottom: .4rem;
  animation: fadeUp .9s ease .45s both;
}
.hero-title strong { font-weight: 700; }
.hero-sub {
  font-size: clamp(.7rem, 1.3vw, .85rem); font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 2.5rem;
  animation: fadeUp .9s ease .55s both;
}
.hero-stats {
  display: flex; gap: 2.5rem; margin-bottom: 2.5rem; flex-wrap: wrap;
  animation: fadeUp .9s ease .65s both;
}
.hero-stat { border-left: 2px solid var(--beige); padding-left: 1rem; }
.hero-stat-val { font-size: 1.5rem; font-weight: 600; color: var(--white); line-height: 1.1; }
.hero-stat-lbl {
  font-size: .52rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--beige); margin-top: .2rem;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .9s ease .75s both;
}
.hero-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 58px; padding: 1rem 3rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .25s, transform .3s, box-shadow .3s;
  white-space: nowrap;
  position: relative;
}
.hero-cta-email {
  background: var(--beige-lt); color: var(--anth);
  animation: heroWobble 3.5s ease 2s infinite;
  transform-origin: center;
}
.hero-cta-email:hover {
  background: var(--beige-dk);
  animation: none;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

@keyframes heroWobble {
  0%,100%  { transform: rotate(0deg) scale(1); }
  10%      { transform: rotate(-2deg) scale(1.03); }
  20%      { transform: rotate(2deg) scale(1.03); }
  30%      { transform: rotate(-1.5deg) scale(1.02); }
  40%      { transform: rotate(1.5deg) scale(1.02); }
  50%      { transform: rotate(0deg) scale(1); }
}

/* infobar */
.infobar {
  background: var(--anth); padding: 1.1rem 4rem;
  display: flex; gap: 0; flex-wrap: wrap;
}
.infobar-item {
  font-size: .58rem; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  padding: .25rem 2.2rem .25rem 0; margin-right: 2.2rem;
  border-right: 1px solid rgba(255,255,255,.12);
}
.infobar-item:last-child { border-right: none; margin-right: 0; }
.infobar-item strong { color: var(--white); font-weight: 600; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION HELPERS ── */
.eyebrow {
  font-size: .56rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: .9rem;
}
.eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--muted);
}
.eyebrow-light { color: var(--beige); }
.eyebrow-light::before { background: var(--beige); }

.s-heading {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 300; line-height: 1.2; letter-spacing: -.01em;
}
.s-heading strong { font-weight: 700; }

/* ── GALLERY SLIDER ── */
.gallery-section { background: var(--white); padding: 5rem 4rem 4rem; }
.gallery-section .gallery-header { margin-bottom: 2rem; }

.slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 560px;
  overflow: hidden;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.slider-btn {
  position: absolute; top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10; width: 48px; height: 48px;
  background: rgba(26,26,28,.65);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff; cursor: pointer;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  outline: none; padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -webkit-transition: background .25s; transition: background .25s;
}
.slider-btn:hover, .slider-btn:focus { background: rgba(26,26,28,.95); }
.slider-btn svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; display: block; pointer-events: none; }
.slider-prev { left: .75rem; }
.slider-next { right: .75rem; }
.slider-counter {
  position: absolute; bottom: .8rem; right: 1rem; z-index: 10;
  font-size: .58rem; font-weight: 600; letter-spacing: .15em;
  color: rgba(255,255,255,.9); background: rgba(26,26,28,.6);
  padding: .25rem .65rem;
}
.slider-thumbs {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  gap: 4px; margin-top: 4px;
}
.slider-thumb {
  -webkit-box-flex: 1; -ms-flex: 1; flex: 1;
  height: 72px; overflow: hidden; cursor: pointer;
  opacity: .5; -webkit-transition: opacity .3s; transition: opacity .3s;
}
.slider-thumb.active { opacity: 1; outline: 2px solid var(--beige-dk); outline-offset: -2px; }
.slider-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

/* ── CTA BANNERS ── */
.cta-dark {
  background: var(--anth); padding: 3.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-beige {
  background: var(--beige); padding: 3.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-text-block { flex: 1; min-width: 0; }
.cta-eyebrow-dark  { font-size: .55rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--beige); margin-bottom: .6rem; }
.cta-eyebrow-beige { font-size: .55rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--anth-lt); margin-bottom: .6rem; }
.cta-title-dark  { font-size: clamp(1.2rem, 2.2vw, 1.75rem); font-weight: 300; color: var(--white); line-height: 1.25; }
.cta-title-beige { font-size: clamp(1.2rem, 2.2vw, 1.75rem); font-weight: 300; color: var(--anth);  line-height: 1.25; }
.cta-title-dark strong  { font-weight: 700; color: var(--white); }
.cta-title-beige strong { font-weight: 700; color: var(--anth); }
.cta-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; flex-shrink: 0; }

.btn-white {
  display: inline-block; padding: .85rem 2rem;
  background: var(--beige-lt); color: var(--anth);
  font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  transition: background .25s, transform .2s; border: none; cursor: pointer; font-family: var(--font);
}
.btn-white:hover { background: var(--beige-dk); transform: translateY(-1px); }
.btn-outline-light {
  display: inline-block; padding: .85rem 2rem;
  background: transparent; color: rgba(255,255,255,.75);
  font-size: .6rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.3); transition: all .25s;
}
.btn-outline-light:hover { border-color: var(--beige); color: var(--beige); transform: translateY(-1px); }
.btn-dark {
  display: inline-block; padding: .85rem 2rem;
  background: var(--anth); color: var(--white);
  font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  transition: background .25s, transform .2s; border: none; cursor: pointer; font-family: var(--font);
}
.btn-dark:hover { background: var(--anth-lt); transform: translateY(-1px); }

/* ── OBJECT DESCRIPTION ── */
.objekt-section { background: var(--anth); }
.objekt-inner {
  display: grid; grid-template-columns: 42% 1fr;
  min-height: 520px;
}
.objekt-img { position: relative; overflow: hidden; }
.objekt-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.objekt-img:hover img { transform: scale(1.03); }
.objekt-img-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--beige); color: var(--anth);
  font-size: .5rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; padding: .35rem .8rem;
}
.objekt-body {
  padding: 4.5rem;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.objekt-body .eyebrow { margin-bottom: .8rem; }
.objekt-body .s-heading { color: var(--white); margin-bottom: 1.6rem; }
.objekt-text {
  font-size: .82rem; line-height: 1.9; color: rgba(255,255,255,.68);
  margin-bottom: 2rem;
}
.objekt-link {
  display: inline-block; padding: .75rem 1.8rem;
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.75);
  font-size: .58rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  transition: all .25s; align-self: flex-start;
}
.objekt-link:hover { border-color: var(--beige); color: var(--beige); }

/* highlights grid */
.highlights-section { background: var(--anth); padding: 3rem 4rem 5rem; }
.highlights-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.highlight-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.8rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  -webkit-transition: background .25s;
  transition: background .25s;
}
.highlight-item:hover { background: rgba(255,255,255,.03); }
.highlight-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s;
}
.highlight-item:hover .highlight-icon { border-color: var(--beige); }
.highlight-icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.6); fill: none; stroke-width: 1.5; }
.highlight-item:hover .highlight-icon svg { stroke: var(--beige); }
.highlight-name { font-size: .82rem; font-weight: 600; color: var(--white); margin-bottom: .2rem; }
.highlight-sub  { font-size: .72rem; color: rgba(255,255,255,.5); }

/* ── SPECS ── */
.specs-section { background: var(--white); padding: 5rem 4rem; }
.specs-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  margin-top: 3rem;
  border-top: 1px solid rgba(56,56,61,.1);
  border-left: 1px solid rgba(56,56,61,.1);
}
.spec-cell {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(56,56,61,.1);
  border-bottom: 1px solid rgba(56,56,61,.1);
  transition: background .25s;
}
.spec-cell:hover { background: var(--off-white); }
.spec-line {
  width: 20px; height: 2px; background: var(--beige-dk);
  margin-bottom: .8rem;
  transition: width .4s ease;
}
.spec-cell:hover .spec-line { width: 40px; }
.spec-val {
  font-size: 2.4rem; font-weight: 300; color: var(--anth);
  line-height: 1; margin-bottom: .5rem; letter-spacing: -.01em;
}
.spec-unit { font-size: .9rem; color: var(--anth-lt); }
.spec-lbl {
  font-size: .56rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}

/* ── FEATURES ── */
.features-section { background: var(--off-white); padding: 5rem 4rem; }
.features-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.features-intro { font-size: .82rem; line-height: 1.9; color: var(--anth-lt); margin-bottom: 2rem; }
.energy-box {
  display: inline-flex; align-items: center; gap: 1.2rem;
  border: 1px solid rgba(56,56,61,.15); padding: 1rem 1.4rem;
  background: var(--white);
}
.e-badge { font-size: .68rem; font-weight: 700; letter-spacing: .08em; padding: .3rem .65rem; }
.e-b  { background: var(--beige); color: var(--anth); }
.e-ap { background: var(--anth); color: var(--beige); }
.e-sep { width: 1px; height: 38px; background: rgba(56,56,61,.12); }
.e-val { font-size: .7rem; color: var(--anth-lt); line-height: 1.7; }
.e-val strong { color: var(--anth); font-weight: 600; }

.feat-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.feat-list li {
  display: flex; align-items: center; gap: .65rem;
  padding: .75rem 0; border-bottom: 1px solid rgba(56,56,61,.08);
  font-size: .75rem; color: var(--anth-lt);
  transition: color .2s, padding-left .2s;
}
.feat-list li:hover { color: var(--anth); padding-left: 4px; }
.feat-dot { width: 4px; height: 4px; background: var(--beige-dk); border-radius: 50%; flex-shrink: 0; }

/* ── LAGE ── */
.lage-section { background: var(--anth); }
.lage-top {
  padding: 4.5rem 4rem 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.lage-text { font-size: .82rem; line-height: 1.9; color: rgba(255,255,255,.65); margin-bottom: 2rem; }
.dist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.dist-cell {
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: border-color .25s, background .25s;
}
.dist-cell:hover { border-color: var(--beige); background: rgba(255,255,255,.07); }
.dist-name {
  font-size: .56rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .3rem;
}
.dist-val { font-size: 1.5rem; font-weight: 300; color: var(--white); line-height: 1; }
.dist-unit { font-size: .75rem; color: var(--beige); }
.lage-img { position: relative; overflow: hidden; height: 340px; }
.lage-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── PRICE BAR ── */
.price-bar {
  background: var(--beige); padding: 3.5rem 4rem;
  display: flex; align-items: flex-start; flex-wrap: wrap;
  gap: 0;
}
.price-main-block {
  flex: 0 0 auto;
  padding-right: 4rem;
}
.price-divider {
  width: 1px; align-self: stretch;
  background: rgba(56,56,61,.2);
  margin-right: 4rem; flex-shrink: 0;
}
.price-main-lbl {
  font-size: .53rem; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(26,26,28,.45); margin-bottom: .4rem;
}
.price-main-val {
  font-size: 2.6rem; font-weight: 700; color: var(--anth);
  letter-spacing: -.03em; line-height: 1;
  white-space: nowrap;
}
/* Nebenkosten */
.price-nebenkosten { flex: 1 1 300px; }
.price-nk-head {
  font-size: .52rem; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(26,26,28,.45);
  margin-bottom: 1.2rem;
}
.price-nk-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .9rem 2rem;
}
.price-nk-item { display: flex; flex-direction: column; gap: .15rem; }
.price-nk-item--wide { grid-column: 1 / -1; }
.nk-pct {
  font-size: .9rem; font-weight: 700; color: var(--anth);
  letter-spacing: -.01em; line-height: 1.2;
}
.nk-ust {
  font-size: .7rem; font-weight: 500; color: rgba(26,26,28,.6);
}
.nk-lbl {
  font-size: .68rem; color: rgba(26,26,28,.6); line-height: 1.45;
}
/* keep old classes harmless */
.price-items { display: flex; gap: 3rem; flex-wrap: wrap; }
.price-item-lbl {
  font-size: .52rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(26,26,28,.48); margin-bottom: .2rem;
}
.price-item-val { font-size: .92rem; font-weight: 700; color: var(--anth); }

/* ── CONTACT ── */
.contact-section { background: var(--off-white); padding: 5.5rem 4rem; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.contact-eyebrow { margin-bottom: .8rem; color: var(--muted); }
.contact-eyebrow::before { background: var(--muted); }
.contact-heading { margin-bottom: 1.4rem; }
.contact-text { font-size: .82rem; line-height: 1.9; color: var(--anth-lt); margin-bottom: 2rem; }
.contact-person { display: flex; gap: 1.2rem; align-items: center; margin-bottom: 1.6rem; }
.contact-avatar-wrap { flex-shrink: 0; }
.contact-avatar {
  width: 100px; height: 100px; object-fit: cover;
  border-radius: 0;
}
.contact-avatar-fallback {
  width: 100px; height: 100px; background: var(--anth);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--beige); letter-spacing: .05em;
}
.contact-name { font-size: 1rem; font-weight: 700; color: var(--anth); margin-bottom: .1rem; }
.contact-role { font-size: .58rem; font-weight: 500; letter-spacing: .1em; color: var(--muted); margin-bottom: .6rem; text-transform: uppercase; }
.contact-detail { font-size: .75rem; color: var(--anth); line-height: 1.8; }
.contact-detail a { transition: color .2s; }
.contact-detail a:hover { color: var(--anth-lt); }
.contact-addr { font-size: .68rem; color: var(--anth-lt); line-height: 1.7; margin-top: 1rem; }
.contact-addr strong { color: var(--anth); font-weight: 600; }

/* FORM */
.form-panel { background: var(--anth); padding: 2.8rem; }
.form-title { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: .2rem; }
.form-sub {
  font-size: .56rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--beige); margin-bottom: 1.8rem;
}
/* Exposé-Optionen */
.expose-options {
  margin-bottom: 1.4rem;
  padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.expose-options-head {
  font-size: .54rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: .85rem;
}
.expose-options-group {
  display: flex; gap: .75rem; flex-wrap: wrap;
}
/* The label is a flex row with a real visible checkbox replaced by custom box */
.expose-check-label {
  position: relative;
  display: flex; align-items: center; gap: .6rem;
  cursor: pointer;
  padding: .7rem .9rem;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  transition: border-color .2s, background .2s;
  flex: 1 1 0; min-width: 0;
  -webkit-tap-highlight-color: transparent;
}
.expose-check-label:hover { border-color: var(--beige); background: rgba(255,255,255,.1); }

/* Hide native checkbox visually but keep it in flow (no absolute!) */
.expose-check {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  width: 18px; height: 18px; min-width: 18px;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.07);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
  margin: 0; padding: 0;
}
.expose-check:checked {
  background: var(--beige); border-color: var(--beige);
}

/* Custom checkmark drawn via label sibling */
.expose-check-box {
  display: none; /* not needed anymore, checkmark is on the input */
}

/* Checkmark overlay using ::after on the input */
.expose-check::after {
  content: '';
  display: block;
  width: 5px; height: 9px;
  border: 2px solid var(--anth);
  border-top: none; border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0; transition: opacity .15s;
}
.expose-check:checked::after { opacity: 1; }

/* Icon next to checkbox */
.expose-icon {
  width: 17px; height: 17px; flex-shrink: 0;
  stroke: rgba(255,255,255,.5);
  transition: stroke .2s;
  display: block;
}
.expose-check-label:has(.expose-check:checked) .expose-icon {
  stroke: var(--beige);
}

/* Label text */
.expose-label-text {
  font-size: .72rem; font-weight: 500;
  color: rgba(255,255,255,.85);
  line-height: 1.3; white-space: nowrap;
  transition: color .2s;
}
.expose-check-label:has(.expose-check:checked) .expose-label-text {
  color: var(--beige-lt);
}
.expose-check-label:has(.expose-check:checked) {
  border-color: var(--beige); background: rgba(209,201,188,.1);
}

/* Fallback for browsers without :has() – Safari <15.4, Firefox <121 */
.expose-check:checked ~ .expose-label-text { color: var(--beige-lt); }

/* Telefon-Pflichtfeld Hinweis */
.tel-required-hint {
  font-size: .55rem; font-weight: 600; letter-spacing: .12em;
  color: var(--beige); text-transform: uppercase; margin-left: .3rem;
}
.tel-required input[type="tel"] { border-color: rgba(209,201,188,.5); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-group { margin-bottom: .75rem; }
.form-group label {
  display: block; font-size: .56rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: .35rem;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: .8rem 1rem;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-family: var(--font); font-size: .75rem;
  letter-spacing: .03em; outline: none; transition: border-color .25s, background .25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.55); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--beige); background: rgba(255,255,255,.12); }
.form-group textarea { height: 100px; resize: none; }
.form-privacy {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .65rem; color: rgba(255,255,255,.7); line-height: 1.5; margin-bottom: .9rem;
}
.form-privacy input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--beige); }
.form-privacy a { color: var(--beige); text-decoration: underline; }
.altcha-wrap { margin-bottom: .9rem; }
.form-submit {
  width: 100%; padding: .9rem;
  background: var(--beige); color: var(--anth);
  font-family: var(--font); font-size: .6rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background .25s, transform .2s;
}
.form-submit:hover { background: var(--beige-dk); transform: translateY(-1px); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-note { font-size: .6rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-top: 1rem; }
.form-msg {
  display: none; padding: .8rem 1rem; margin-top: .8rem;
  font-size: .72rem; font-weight: 500;
}
.form-msg.success { background: rgba(209,201,188,.15); color: var(--beige); border-left: 2px solid var(--beige); }
.form-msg.error   { background: rgba(220,50,50,.1); color: #e88; border-left: 2px solid #e44; }

/* ── FOOTER ── */
footer {
  background: var(--anth);
  border-top: 3px solid var(--beige-dk);
}
.footer-main {
  display: grid; grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 4rem; padding: 4rem 4rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 0; }
.footer-logo { display: block; }
img.footer-logo,
.footer-logo img {
  height: 60px; width: auto; max-width: none;
  display: block;
}
.footer-tagline {
  font-size: 1.05rem; font-weight: 300; letter-spacing: .04em;
  color: var(--white); margin-top: 1.1rem; line-height: 1.4;
  font-style: normal;
}
.footer-social {
  display: flex; gap: 1.2rem; margin-top: 1.6rem; flex-wrap: wrap;
  align-items: center;
}
.footer-social-link {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--beige); transition: color .25s, transform .2s;
  font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  line-height: 1;
}
.footer-social-link:hover { color: var(--beige-lt); transform: translateY(-2px); }
.footer-social-link svg {
  width: 22px !important; height: 22px !important;
  min-width: 22px; max-width: 22px;
  min-height: 22px; max-height: 22px;
  stroke: currentColor; flex-shrink: 0;
  display: block; overflow: hidden;
}
.footer-nav-head {
  font-size: .56rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--beige); margin-bottom: .9rem;
}
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: .5rem; }
.footer-nav a {
  font-size: .78rem; color: rgba(255,255,255,.8);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--beige); }
.footer-contact-head {
  font-size: .56rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--beige); margin-bottom: .9rem;
}
.footer-contact-info { font-size: .78rem; color: rgba(255,255,255,.8); line-height: 1.9; }
.footer-contact-info strong { color: var(--white); font-weight: 600; }
.footer-contact-info a { color: rgba(255,255,255,.8); transition: color .2s; }
.footer-contact-info a:hover { color: var(--beige); }
.footer-bottom {
  padding: 1.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: .65rem; color: rgba(255,255,255,.5); }
.footer-legal { font-size: .62rem; color: rgba(255,255,255,.4); text-align: right; }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 150;
  display: flex; align-items: center; gap: .65rem;
  background: var(--anth); color: var(--white);
  padding: .85rem 1.4rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  opacity: 0; transform: translateY(14px) scale(.95);
  pointer-events: none;
}
.float-cta.visible { opacity: 1; transform: none; pointer-events: auto; }
.float-cta:hover { background: var(--beige); color: var(--anth); transform: translateY(-2px) scale(1); }
.float-cta svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .nav { padding: 0 1.5rem; }
  .nav-logo { height: 48px; }
  .nav-logo img { height: 48px; width: auto; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 80px; left: 0; right: 0;
    background: rgba(26,26,28,.97); padding: 2rem;
    gap: 1.2rem;
  }
  .nav.menu-open .nav-cta {
    display: block; position: fixed;
    bottom: 0; left: 0; right: 0; top: auto;
    text-align: center; padding: 1rem;
    font-size: .65rem;
  }

  /* Hero */
  .hero-content { padding: 0 1.5rem 3.5rem; }
  .hero-stats { gap: 1.5rem; }
  .hero-text-backdrop {
    padding: 1.8rem 1.5rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .hero-cta-group { flex-direction: column; }
  .hero-cta { width: 100%; text-align: center; }

  .infobar { padding: 1rem 1.5rem; flex-direction: column; gap: .4rem; }
  .infobar-item { border-right: none; padding-right: 0; margin-right: 0; }

  .gallery-section { padding: 4rem 1.5rem 3rem; }
  .slide { height: 260px; }
  .slider-thumbs { display: none; }
  .slider-btn { width: 40px; height: 40px; }

  .cta-dark, .cta-beige { padding: 2.5rem 1.5rem; flex-direction: column; align-items: flex-start; }

  /* Objekt */
  .objekt-inner { grid-template-columns: 1fr; }
  .objekt-img { height: 260px; }
  .objekt-body { padding: 2.5rem 1.5rem; background: var(--anth); }
  .highlights-section { padding: 2rem 1.5rem 3rem; }
  .highlight-item { width: 100%; }

  .specs-section { padding: 4rem 1.5rem; }
  .specs-grid { grid-template-columns: repeat(2,1fr); }

  .features-section { padding: 4rem 1.5rem; }
  .features-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feat-list { grid-template-columns: 1fr; }

  .lage-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 2rem; }
  .lage-img { height: 220px; }

  .price-bar { padding: 2.2rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 0; }
  .price-main-block { padding-right: 0; padding-bottom: 1.6rem; margin-bottom: 1.6rem; width: 100%; }
  .price-divider { width: 100%; height: 1px; margin-right: 0; margin-bottom: 1.6rem; align-self: auto; }
  .price-main-val { font-size: 2rem; }
  /* Items als kompakte Zeilen auf Mobile */
  .price-nk-grid { grid-template-columns: 1fr; gap: 0; }
  .price-nk-item {
    display: flex; flex-direction: row; align-items: baseline;
    gap: .7rem; padding: .55rem 0;
    border-bottom: 1px solid rgba(56,56,61,.1);
  }
  .price-nk-item:last-child { border-bottom: none; }
  .price-nk-item--wide { grid-column: 1; flex-wrap: wrap; }
  .nk-pct { font-size: .82rem; min-width: 5.5rem; flex-shrink: 0; }
  .nk-lbl { font-size: .72rem; }
  /* Checkboxen auf Mobile: untereinander */
  .expose-options-group { flex-direction: column; gap: .5rem; }
  .expose-label-text { white-space: normal; }
  .expose-check-label { flex: 1 1 auto; }

  /* Contact */
  .contact-section { padding: 4rem 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-avatar { width: 80px; height: 80px; }
  .contact-avatar-fallback { width: 80px; height: 80px; }

  /* Footer */
  .footer-main {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem 2rem;
  }
  .footer-brand { width: 100%; min-width: 0; }
  img.footer-logo,
  .footer-logo img { height: 48px; width: auto; max-width: 140px; }
  .footer-tagline { font-size: .9rem; }
  .footer-social { gap: 1.5rem; }
  .footer-social-link svg {
    width: 22px !important; height: 22px !important;
    min-width: 22px; max-width: 22px;
    min-height: 22px; max-height: 22px;
  }
  .footer-bottom { padding: 1.2rem 1.5rem; flex-direction: column; }
  .footer-legal { text-align: left; }

  .float-cta { bottom: 1.2rem; right: 1.2rem; font-size: .56rem; padding: .75rem 1.1rem; }

  /* Reveal: ensure elements are visible if JS hasn't fired */
  .reveal, .reveal-l, .reveal-r {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
