/* ==========================================
   GLOBAL BACKGROUND
========================================== */

:root {
  --layout-padding: clamp(3rem, 10vw, 12rem);
}
@media (max-width: 900px) {

  /* Verhindert jegliches horizontales Scrollen */
  body, html {
    overflow-x: hidden !important;
  }
}
/* ============================================
   SECTION-DIVIDER — MOBILE OPTIMIERUNG
============================================ */
@media (max-width: 600px) {

  .section-divider {
    display: none
}
}


.section-divider {
  width: calc(100% - 66px);
  margin: clamp(4rem, 8vw, 6rem) auto;
  position: relative;
  margin-top: 0px;
  height: 1px;
  background: rgba(0,0,0,0.02);
  border-radius: 14px;
}

/* Icon exakt zentriert */
.section-divider .divider-icon {
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -51%);

  width: 130px;
  height: 130px;

  background-image: url('/assets/icons/divider.png'); /* dein Pfad */
  background-size: contain;
  background-repeat: no-repeat;

  opacity: .55; /* sehr subtil, nicht zu präsent */
  pointer-events: none;
}


.container {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: clamp(3rem, 10vw, 12rem);
}

html {
  height: auto;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: #f7f6f4;
  background-repeat: repeat;
  background-size: 500px 500px;
  background-position: 0 0;
}






/* ==========================================
   HERO — FACTS (links unten)
========================================== */
.hero-facts {
  position: absolute;
  bottom: clamp(1rem, 4vw, 3rem);
  left: clamp(2.4rem, 4vw, 4rem);
  display: flex;
  gap: 3rem;
  z-index: 5;
  pointer-events: none;
}

.fact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fact-line {
  display: block;
  width: 1px;
  height: 65px;
  background: rgba(255,255,255,.65);
}

.fact-value {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--base-bg);
  margin: 0;
  line-height: 1;
}

.fact-label {
  margin: .25rem 0 0 0;
  font-size: clamp(.75rem, .95vw, .9rem);
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
}


/* ==========================================
   HERO — LOCATION CARD (rechts unten)
========================================== */
.hero-location-card {
  position: absolute;
  right: clamp(2.4rem, 4vw, 4rem);
  bottom: clamp(2rem, 4vw, 4rem);

  display: flex;
  align-items: center;
  gap: .9rem;

  padding: 1rem 1.4rem;
  border-radius: 14px;

  backdrop-filter: blur(14px);
  background: rgba(0,0,0,.28);

  z-index: 5;
  pointer-events: none;
}

.loc-icon {
  width: 30px;
  height: 30px;
  opacity: .85;
}

.loc-text {
  display: flex;
  flex-direction: column;
}

.loc-eyebrow {
  font-size: clamp(.65rem, .85vw, .8rem);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 2px 0;
  color: rgba(255,255,255,.75);
}

.loc-coords {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--base-bg);
  letter-spacing: .02em;
}

.hero-img-current,
.hero-img-next {
  position: absolute !important;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;

  transition: opacity 1.4s ease;
}

.hero-img-current.active {
  opacity: 1;
}
/* ==========================================
   HERO — EXISTING CONTENT (NICHT ANGREIFEN)
   (Belässt alles was du schon hattest)
========================================== */
.hero {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--base-bg);
  isolation: isolate;
  border-bottom: 4px solid #b4b0a978;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background: radial-gradient(
    circle at bottom left,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.45) 35%,
    rgba(0,0,0,0.20) 50%,
    rgba(0,0,0,0.00) 100%
  );
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center +50px;
  transform: scale(1.15);
  opacity: 0;
  transition:
    transform 1.8s cubic-bezier(.22,.61,.36,1),
    opacity 1.2s ease-out;
}

.hero-loaded .hero-img {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: absolute;
  z-index: 5;
  left: clamp(2.0rem, 3vw, 3rem);
  bottom: clamp(11rem, 20vh, 8rem);
  max-width: 800px;
  color: var(--base-bg);
}

.hero-title {
  font-size: clamp(2.0rem, 3.2vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.4rem;
  color: var(--bg2);
}

.hero-text {
    font-size: clamp(1.4rem, 2.2vw, 1.4rem);
    margin-bottom: 1.5rem;
    color: var(--bg2);
    font-weight: 300;
    line-height: normal;
  } 

.hero-separator {
  position: absolute;
  left: clamp(2.4rem, 4vw, 4rem);
  transform: none;
  width: 35%;
  bottom: clamp(10rem, 20vh, 9rem);
  height: 1px;
  background: rgba(255,255,255,.28);
  z-index: 5;
}

/* ============================================
   HERO – CTA BUTTONS
============================================ */

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.6rem;
}

.hero-btn {
  padding: .75rem 1.6rem;
  border-radius: 10px;
  font-size: 1.05rem;
  letter-spacing: .01em;
  text-decoration: none;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: .25s ease;
  font-weight: 300;
}

/* PRIMARY: heller Glasbutton, sandig, leicht weiß */
.hero-btn-primary {
  background: rgba(247,245,241,0.28); /* NCO sand + transparent */
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
}

.hero-btn-primary:hover {
  background: rgba(247,245,241,0.38);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

/* SECONDARY: dezente Outline-Variante */
.hero-btn-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}

.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.45);
  color: white;
  transform: translateY(-2px);
}

.hero-preis {
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--base-bg);
  letter-spacing: 0.02em;
}

/* ==========================================
   HERO – MOBILE FIX: Buttons NEBENEINANDER
========================================== */
@media (max-width: 600px) {

  .hero-cta-group {
    flex-direction: row !important;   /* NEBENEINANDER */
    justify-content: flex-start;
    align-items: center;
    gap: .8rem;
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-btn {
    flex: 1 1 auto;                    /* Buttons gleichmäßig */
    text-align: center;
    padding: .9rem 1.2rem;
    white-space: nowrap;
  }
}
/* =======================
   HERO FADER
======================= */
.hero-fader {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-fade-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.hero-fade-img.active {
  opacity: 1;
}

/* Indicators */
.hero-slider-indicators {
  position: absolute;
  bottom: clamp(4rem, 7vw, 6rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: .6rem;
}

.hero-indicator {
  width: 42px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.28);
  transition: 0.3s ease;
  cursor: pointer;
}

.hero-indicator.active {
  background: rgba(255,255,255,0.75);
}
/*
   HERO – MOBILE CTA FIX (Buttons nebeneinander, kleiner, sauber begrenzt)
*/
@media (max-width: 600px) {

  .hero-cta-group {
    flex-direction: row !important;
    justify-content: flex-start;
    align-items: center;
    gap: .7rem;
    width: 100%;
    margin-bottom: 14px;
  }

  .hero-btn {
    flex: 1 1 auto;
    padding: .7rem 1rem;
    font-size: .9rem;
    border-radius: 10px;
    max-width: 48%;
    white-space: nowrap;
    text-align: center;
  }
}

/* ============================================================
   HERO — MOBILE & TABLET BREAKPOINTS
============================================================ */

/* --- TABLET (max-width 992px) --- */
@media (max-width: 1100px) {

  .hero {
    height: 92vh; /* stabilere Bildhöhe */
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .hero-img {
    object-position: center;
    transform: scale(1.05);
  }

  .hero-content {
    bottom: 18vh; /* höher setzen */
    left: clamp(1.6rem, 4vw, 3rem);
    max-width: 85%;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-text {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    margin-bottom: 1.5rem;
  }

  .hero-facts {
    bottom: 5rem;
    left: clamp(1.6rem, 4vw, 3rem);
    gap: 2rem;
  }

  .hero-separator {
    width: 88%;
    bottom: clamp(12rem, 22vh, 8rem);
  }

  /* Tablet → nur 2 Facts anzeigen */
  .fact-item:nth-child(n+3) {
    display: none;
  }

  .hero-location-card {
    right: clamp(1.6rem, 4vw, 3rem);
    bottom: 4.5rem;
    padding: .8rem 1.2rem;
    transform: scale(.95);
  }
}


/* --- SMALL MOBILE (max-width: 600px) --- */
@media (max-width: 600px) {

  .hero {
    height: 92vh; /* wichtig */
  }

  .hero-content {
    bottom: 20vh;
    max-width: 90%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 1.2;
  }


  /* nur 2 Facts behalten */
  .fact-item:nth-child(n+3) {
    display: none;
  }

  .hero-facts {
    bottom: 13vh;
    gap: 2rem;
  }

  .hero-separator {
    display: none;
    width: 85%;
    bottom: clamp(7rem, 16vh, 7rem);
  }

  /* Location-Card unten über die ganze Breite */
  .hero-location-card {
    left: 50%;
    right: auto;
    bottom: 4rem;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    justify-content: center;
    padding: .9rem 1.4rem;
  }

  .loc-icon {
    width: 26px;
    height: 26px;
  }

  .loc-coords {
    font-size: .95rem;
  }

  .hero-slider-indicators {
    bottom: 1rem !important;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Hide location card on mobile in hero */
  .hero-location-card {
    display: none !important;
  }

  /* Hero-Facts compact styling for mobile */
  .hero-facts {
    bottom: 6vh;
    gap: 1.4rem;
  }

  .fact-line {
    height: 42px;
    opacity: 0.45;
  }

  .fact-value {
    font-size: 1.4rem;
    line-height: 1;
  }

  .fact-label {
    font-size: .7rem;
    letter-spacing: .04em;
    opacity: .75;
  }
}


/* --- VERY SMALL DEVICES (max-width: 420px) --- */
@media (max-width: 420px) {

  .hero-content {
    bottom: 16vh;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .fact-item {
    transform: scale(.9);
  }

  .hero-location-card {
    bottom: 1.6rem;
    padding: .8rem 1.2rem;
  }
}





/* ==========================================
   SECTION 2 — INTRO + KEYFACTS 
   (bereinigt, global-typografisch)
========================================== */

.section-intro {
  padding-block: clamp(4rem, 8vw, 8rem);
  background: transparent; 
}

/* INTRO WRAPPER */
.section-intro .intro-block {
  max-width: 900px;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

/* KEY FACT GRID */
.keyfacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-64) var(--s-48);
  max-width: 1200px;
  margin-inline: auto;
}

/* FACT SINGLE ITEM */
.fact {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.fact-icon {
  width: 28px;
  height: 28px;
  opacity: .75;
  margin-bottom: var(--s-16);
}

/* TITEL (global: h3-Logik) */
.fact-title {
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--ink-h);
}

/* SUBTEXT (global body) */
.fact-sub {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--ink-body);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .keyfacts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-48) var(--s-32);
  }
}

@media (max-width: 600px) {
  .keyfacts-grid {
    grid-template-columns: 1fr;
    gap: var(--s-40);
  }
}





/* SECTION 2 — INTRO + KEYFACTS */

.section-intro {
  padding-block: clamp(4rem, 8vw, 8rem);
}

/* EYEBROW */
.section-intro .intro-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-meta);
  margin-bottom: var(--s-16);
}

/* HEADLINE */
.section-intro .intro-headline {
  font-family: var(--font-headline);
  font-size: var(--fs-h2);
  font-weight: 200;
  line-height: var(--lh-title);
  color: var(--brand);
  margin-bottom: var(--s-32);
}

/* PARAGRAPH */
.section-intro .intro-text {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--ink-body);
  max-width: 75ch;
  margin-bottom: var(--s-48);
}

/* ==========================================
   GRID-VERBESSERUNG: LINIEN + KREUZ-TRENNER
========================================== */

/* Linke Linie an jeder FACT */
.fact {
  position: relative;
  padding-left: 18px; /* minimaler Abstand, bleibt clean */
}

.fact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;

  width: 1px;
  height: calc(100% - 8px);

  background: rgba(0,0,0,0.08);
  opacity: .75;
}

/* GRID-TRENNER (kleines Kreuz) */
.fact-divider.cross {
  width: 20px;
  height: 20px;
  margin-inline: auto;
  position: relative;
  opacity: .85;
}

.fact-divider.cross::before,
.fact-divider.cross::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(0,0,0,0.20);

  transform: translate(-50%, -50%);
}

/* vertikal */
.fact-divider.cross::before {
  width: 1px;
  height: 14px;
}

/* horizontal */
.fact-divider.cross::after {
  width: 14px;
  height: 1px;
}

/* GRID-POSITIONEN anpassen (3×3 Layout) */
.keyfacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: var(--s-64) var(--s-48);
  max-width: 1200px;
  margin-inline: auto;
}

/* Trenner sitzt genau mittig zwischen den Zeilen */
.keyfacts-grid .fact-divider {
  grid-column: 1 / 4; /* Ganze Reihe */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--s-8) 0;
}


.fact {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.fact-icon {
  width: 40px;
  height: 40px;
  opacity: .75;
  margin-bottom: var(--s-16);
}

.fact-title {
  font-family: var(--font-body);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: var(--brand);
}

.fact-sub {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--ink-body);
}

/* --- RESPONSIVE FIXES --- */

@media (max-width: 992px) {
  .keyfacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-divider.cross {
    grid-column: 1 / 3;
  }
}

@media (max-width: 600px) {
  .keyfacts-grid {
    grid-template-columns: 1fr;
  }

  /* Kreuz fällt bei 1-spaltigem Layout weg */
  .fact-divider.cross {
    display: none;
  }

  .fact::before {
    height: 100%;
  }
}









/* SECTION BASE */
.section-highlights {
  margin-top: 0;
  margin-top: -97px;
  padding-top: 1rem;
  padding-block: clamp(4rem, 8vw, 8rem);
  width: calc(100% - 30px);
  margin-inline: auto;
  border-radius: 20px;
  background: #b4b0a93b;
  padding-inline: 0;
}

@media (max-width:600px){
  .section-highlights {
    width:100% !important;
    margin-inline:0 !important;
    border-radius:0 !important;
    margin-top: -64px;
  }
}

/* ==========================
   SECTION HIGHLIGHTS
========================== */

.highlights-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-meta);
  margin-bottom: var(--s-16);
}

.highlights-title {
  font-family: var(--font-headline);
  font-size: var(--fs-h2);
  font-weight: 200;
  line-height: var(--lh-title);
  color: var(--brand);
  margin: 0;
  margin-bottom: var(--s-32);
}

.highlights-footnote-text {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--ink-meta);
  margin: 0;
  max-width: 70ch;
}

/* INTRO BLEIBT IM CONTAINER */
.highlights-top {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}
.highlights-intro {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-body);
  max-width: 70ch;
  font-weight: 300;
}

/* ================================
   HIGHLIGHTS – BULLET LIST
================================ */

.highlights-list {
  margin-top: 1.6rem;              /* Abstand zum Intro */
  padding-left: 1.2rem;            /* saubere Bullet-Einrückung */
  max-width: 70ch;
}

.highlights-list li {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  line-height: 1.6;
  font-weight: 300;
  color: var(--ink-body);

  margin-bottom: 0.6rem;
}

/* dezente Bullet-Optik */
.highlights-list li::marker {
  color: var(--brand);
  font-size: 0.85em;
}

/* letzter Punkt ohne extra Abstand */
.highlights-list li:last-child {
  margin-bottom: 0;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 700px) {
  .highlights-list {
    margin-top: 1.4rem;
    padding-left: 1rem;
  }

  .highlights-list li {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}

/* --------------------------------------------- */
/* FULL WIDTH GALLERY WRAPPER                   */
/* --------------------------------------------- */

.highlights-gallery-wrapper {
  width: 100%;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

/* ARROWS */

.highlights-arrow.left,
.highlights-arrow.right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
}

.highlights-arrow.left {
  left: 2vw;
}

.highlights-arrow.right {
  right: 2vw;
}

.highlights-arrow:hover {
  opacity: .9;
  transform: translateY(-50%) scale(1.05);
}

/* --------------------------------------------- */
/* TRACK (SCROLLER)                              */
/* --------------------------------------------- */

.highlights-gallery {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  padding-left: clamp(3.1rem, 11vw, 15rem);
  padding-right: clamp(3.1rem, 11vw, 15rem);
  padding-bottom: 2rem;

  -webkit-overflow-scrolling: touch;
}

.highlights-gallery::-webkit-scrollbar { display: none; }

/* --------------------------------------------- */
/* CARDS                                         */
/* --------------------------------------------- */


.highlight-card {
  max-height: 90vh;
  flex: 0 0 auto;
  width: auto;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  border: 2px solid #5d504e19;
  background: none;
}

.highlight-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  display: block;
}


/* FOOTNOTE BLEIBT IM CONTAINER */
 .highlights-footnote {
   margin-top: clamp(1rem, 3vw, 2rem);
   display: flex;
   align-items: flex-start;
   gap: 1.2rem;
 }

 .highlights-footnote-line {
   width: 1px;
   height: 40px;
   background: rgba(0,0,0,.15);
 }



/* --------------------------------------------- */
/* TABLET — Höhe stark reduziert                 */
/* --------------------------------------------- */
@media (min-width: 600px) and (max-width: 1024px) {

  .highlight-card {
    max-height: 48vh;
  }

  .highlight-img {
    height: 48vh;
    object-fit: cover;          /* behalten */
    object-position: center;    /* nicht oben/unten abschneiden */
  }
}


/* ============================================
   MOBILE — Overflow-Fix für Highlight-Galerie
============================================ */
@media (max-width: 600px) {

  /* Verhindert jegliches horizontales Scrollen */
  body, html {
    overflow-x: hidden !important;
  }

  .section-highlights {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    padding-inline: 0 !important;
    margin-top: -100px;
  }

  /* GALLERY WRAPPER darf niemals breiter als der Screen sein */
  .highlights-gallery-wrapper {
    width: 100vw !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 0 !important;
  }

  /* TRACK – entfernt Offscreen-Paddings */
  .highlights-gallery {
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 0.8rem !important;
    width: 100vw !important;
  }

  /* CARDS – erzwingen echte 100% Breite */
  .highlight-card {
    width: 100vw !important;
    flex: 0 0 100vw !important;
    margin: 0 !important;
    border-radius: 0 !important;

    /* leicht höhere Cards auf Mobile (+ ca. 12–15%) */
    aspect-ratio: 4 / 3 !important;

    max-height: none !important;
  }

  /* Remove border/frame on highlight cards for mobile */
  .highlight-card {
    border: none !important;
  }

  .highlights-gallery-wrapper {
    border-radius: 0 !important;
  }

  /* Bild passt sich exakt der Card an */
  .highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Arrows INS Bild verlagern */
  .highlights-arrow.left {
    left: 1rem !important;
  }

  .highlights-arrow.right {
    right: 1rem !important;
  }
}


/* --------------------------------------------- */
/* VERY SMALL DEVICES – Extra Sicherung          */
/* --------------------------------------------- */
@media (max-width: 420px) {

  .highlight-card {
    max-height: 36vh;
  }

  .highlight-img {
    height: 36vh;
    object-fit: cover;
    object-position: center;
  }
}






/* ================================
   SHOWCASE SECTION
================================ */

.section-showcase {
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: clamp(3rem, 5vw, 4rem);
  padding-block: clamp(5rem, 8vw, 7rem);
}

/* INTRO */
.showcase-intro {
  max-width: 900px;
  margin-bottom: clamp(4rem, 6vw, 6rem);
}



.showcase-title-intro {
  font-family: var(--font-headline);
  font-size: var(--fs-h2);
  font-weight: 200;
  color: var(--brand);
  margin-bottom: var(--s-24);
}

/* ================================
   SHOWCASE – SUBTEXT
================================ */

.showcase-sub {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-body);
  max-width: 70ch;
  font-weight: 300;

  color: var(--ink-body);
}

/* MOBILE */
@media (max-width: 700px) {
  .showcase-sub {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}




/* ROWS */
.showcase-row {
  width: 100%;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
  margin-bottom: clamp(5rem, 8vw, 7rem);
}

.showcase-row-2 {
  grid-template-columns: 5fr 7fr;
}

/* MEDIA */
.showcase-media {
  position: relative;
}

.showcase-image {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 19 / 14;
  border: 3px solid #5d504e29;
  width: 105%;
  margin-left: -2.5%;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT */
.showcase-text {
  max-width: 55ch;
}

.showcase-kicker {
  font-size: var(--fs-small);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-meta);
  margin-bottom: .6rem;
}

.showcase-text h3 {
  font-family: var(--font-headline);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--brand);
}


.showcase-text p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 300;
  color: var(--ink-body);
}

/* ============================================
   SHOWCASE – FACTS + PRICE
============================================ */

/* FACTS GRID – identisch zur Keyfacts-Optik */
/* ============================================
   SHOWCASE – FACTS (3-spaltig, kompakter)
============================================ */

.showcase-facts {
  margin-top: clamp(2rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
}

.showcase-fact {
  position: relative;
  padding-left: 14px;              /* weniger Einzug */
  display: flex;
  flex-direction: column;
  gap: 0.35rem;                    /* engerer Vertikalabstand */
}

.showcase-fact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 1px;
  height: calc(100% - 6px);
  background: rgba(0,0,0,0.08);
}

.showcase-fact-title {
  font-family: var(--font-body);
  font-size: 0.95rem;              /* kleiner als vorher */
  font-weight: 400;
  color: var(--brand);
  line-height: 1.3;
}

.showcase-fact-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--ink-body);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .showcase-facts {
    grid-template-columns: 1fr;
    gap: var(--s-32);
  }
}


/* PREISBLOCK */
.showcase-price {
  margin-top: clamp(3rem, 5vw, 4rem);
  padding-top: clamp(2rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(0,0,0,0.12);
  max-width: 520px;
}

.showcase-price-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-meta);
  margin-bottom: .6rem;
}

.showcase-price-value {
  font-family: var(--font-headline);
  font-size: clamp(2.0rem, 2.0vw, 2.6rem) !important;
  font-weight: 300;
  color: var(--brand) !important;
  margin: 0;
}

.showcase-price-note {
  margin-top: .6rem;
  font-family: var(--font-body);
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--ink-meta);
  max-width: 50ch;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .showcase-facts {
    grid-template-columns: 1fr;
    gap: var(--s-32);
  }

  .showcase-price {
    max-width: 100%;
  }
}






/* ============================================
   SHOWCASE – VIDEO BLOCK
============================================ */
.showcase-video-wrapper {
  width: 100%;
  max-width: 1500px;               /* gleiche Breite wie section-showcase */
  margin-inline: auto;
  margin-top: clamp(4rem, 6vw, 6rem);
  margin-bottom: clamp(4rem, 6vw, 6rem);
  border-radius: 18px;             /* gleiche Rundung wie Bilder */
  overflow: hidden;
  border: 3px solid #5d504e29;
}

.showcase-video {
  width: 100%;
  height: 90vh;                    /* gewünschte Höhe */
  object-fit: cover;               /* Video füllt den Frame clean aus */
  display: block;
  background: #000;
}


/* MOBILE (max-width: 600px): Video schlanker halten */
@media (max-width: 600px) {
  .showcase-video {
    height: 60vh;
    border-radius: 14px;
  }
}
/* STANDARD: Video überall ausblenden (Desktop & Tablet) */
.showcase-video-wrapper {
  display: none;
}

/* MOBILE: Video anzeigen */
@media (max-width: 700px) {
  .showcase-video-wrapper {
    display: block;
  }

  .showcase-video {
    height: 80vh;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
  }
}

/* FOOTNOTE */
.showcase-footnote {
  margin-top: clamp(3rem, 5vw, 4rem);
  display: flex;
  justify-content: flex-end;
  gap: var(--s-24);
}

.showcase-footnote-line {
  width: 1px;
  height: 42px;
  background: rgba(0,0,0,.15);
}

.showcase-footnote-text {
  font-size: var(--fs-small);
  font-weight: 300;
  color: var(--ink-meta);
  max-width: 65ch;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .showcase-row,
  .showcase-row-2 {
    grid-template-columns: 1fr;
  }

  .showcase-text {
    max-width: 100%;
  }
}

/* =====================================
   SHOWCASE CTA – Dark Variant
===================================== */

.showcase-cta {
  margin-top: 2rem;
}

.hero-btn-dark {
  background: var(--brand);
  color: #fff;
  border: none;
}

.hero-btn-dark:hover {
  background: color-mix(in srgb, var(--brand) 90%, black 10%);
}

@media (max-width: 1024px) {
  .showcase-row {
    gap: clamp(2.5rem, 4vw, 4rem);
  }

  .showcase-image {
    aspect-ratio: 16 / 11;
  }

  .showcase-text {
    max-width: 60ch;
  }
}


@media (max-width: 900px) {
  .showcase-row,
  .showcase-row-2 {
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 4rem);
  }

  /* Bild zuerst, Text danach */
  .showcase-media {
    order: 1;
  }

  .showcase-text {
    order: 2;
    max-width: 100%;
  }

  .showcase-image {
    aspect-ratio: 16 / 10;
    border-width: 2px;
  }

  .showcase-facts {
    grid-template-columns: 1fr;
    gap: var(--s-32);
  }

  .showcase-price {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .section-showcase {
    padding-inline: clamp(1.5rem, 6vw, 2rem);
    padding-block: clamp(4rem, 10vw, 5rem);
  }

  .showcase-image {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .showcase-row {
    margin-bottom: clamp(4rem, 10vw, 5rem);
  }

  .showcase-text h3 {
    font-size: 1.5rem;
  }

  .showcase-price-value {
    font-size: 2.2rem !important;
  }

  .showcase-cta {
    margin-top: 1.6rem;
  }
}
@media (max-width: 420px) {
  .showcase-image {
    aspect-ratio: 1 / 1;
  }

  .showcase-fact {
    padding-left: 14px;
  }

  .showcase-fact-title {
    font-size: 1.05rem;
  }
}

/* ==========================
   SECTION – FLOORPLANS
========================== */
/* ============================================
   SECTION FLOORPLANS — FULL-WIDTH SECTION
============================================ */

/* NEU: gleicher linker Abstand wie Highlights / Facts */
.section-floorplans {
  position: relative;
  padding-inline: clamp(3rem, 10vw, 12rem);
  padding-block: clamp(4rem, 8vw, 7rem);
  width: calc(100% - 30px);
  margin-inline: auto;
  border-radius: 20px;
  background: rgba(67,109,113,0.1);
}

/* Full-width Hintergrund */
.section-floorplans::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* INTRO */
.floorplans-intro {
  max-width: 900px;
  margin-bottom: clamp(3rem, 6vw, 6rem);

  /* NEU: gleicher linker Abstand wie Highlights / Facts */
  margin-inline: 0;
}
.section-floorplans {
  padding-inline: clamp(3rem, 10vw, 12rem);
}

.floorplans-eyebrow {
  font-size: var(--fs-small);
  letter-spacing: .08em;
  color: var(--ink-meta);
  margin-bottom: var(--s-16);
}

.floorplans-title {
  font-family: var(--font-headline);
  font-size: var(--fs-h2);
  font-weight: 200;
  color: rgb(65, 79, 80);
  margin-bottom: var(--s-24);
}

.floorplans-sub {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-body);
  max-width: 75ch;
  font-weight: 300;
}

/* GRID */
.floorplans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-64);
  align-items: center; /* Bild & Text vertikal zentrieren */
}

/* LEFT SIDE (IMAGE) */
.floorplans-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floorplans-right {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Titel + Text mittig zum Bild */
}

.fp-image-wrapper {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  cursor: zoom-in;
}

.fp-image-wrapper img {
  width: 100%;
  display: block;
  transition: transform .45s ease;
}

.fp-image-wrapper:hover img {
  transform: scale(1.03);
}


/* RIGHT SIDE (TEXT) */
.fp-unit-title {
  font-family: var(--font-headline);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: rgb(65, 79, 80);
  margin-bottom: 1rem; /* konsistenter Abstand */
}

.fp-desc {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-body);
  max-width: 65ch;
  font-weight: 300;
  margin-top: 0; /* entfernt Layout-Hack */
}


@media (max-width: 600px) {

  .section-floorplans {
    width: 100% !important;
    margin-inline: 0 !important;

    /* HIER: Statt padding 0 → Standard-Mobile-Abstand */
    padding-inline: clamp(1.8rem, 6vw, 2.4rem) !important;

    border-radius: 0 !important;
  }

  .floorplans-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .floorplans-left {
    width: 100% !important;
    justify-content: center !important;
  }

  .fp-image-wrapper {
    width: 100% !important;
    height: 220px !important;
    max-height: 220px !important;
    min-height: 220px !important;
  }

  .fp-image-wrapper img,
  #fp-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  /* Titel + Text bekommen automatisch den Standardabstand,
     weil wir das section-padding wieder aktiviert haben */
}


/* ============================
   FLOORPLAN POPUP GALLERY
============================ */

.fp-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fp-popup-overlay.active {
  display: flex;
}

/* Popup Container */
.fp-popup {
  position: relative;
  background: rgba(247,245,241,0.92);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: clamp(1rem, 4vw, 2rem);
  max-width: 1200px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* Popup Image */
.fp-popup-img {
  width: 100%;
  height: 90vh;
  display: block;
  border-radius: 14px;
  pointer-events: none;
}

/* Close button */
.fp-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--ink-h);
}



/* Mini-Intro */
.floorplan-materials-intro {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 100px;
  
}

.fp-materials-title {
  font-family: var(--font-headline);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: rgb(65, 79, 80);
  margin-bottom: 0.75rem;
  text-align: center;
}

.fp-materials-sub {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink-meta);
  font-weight: 300;
  max-width: 55ch;         /* <-- zentrierung entfernt */
  text-align: center;
  margin-inline: auto;
}


/* GRID */
.floorplan-materials-grid {
  width: calc(100% - 30px);
  margin: 0 auto;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}


/* Kachel */
.fp-material-card {
  background: transparent;
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid #e0dcd7;
}

.fp-material-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.fp-material-label {
  font-size: .95rem;
  color: #5d504e;
  font-weight: 400;
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .floorplan-materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .floorplan-materials-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   FLOORPLAN POPUP — MOBILE OPTIMIERUNG
============================================ */
@media (max-width: 700px) {

  .fp-popup {
    width: 94%;
    padding: 1rem;
    border-radius: 18px;
  }

  .fp-popup-img {
    height: 65vh;          /* vorher 90vh → verhindert Strecken */
    object-fit: contain;   /* wichtig für natürliche Darstellung */
    border-radius: 12px;
  }

  .fp-popup-close {
    top: 10px;
    right: 12px;
    font-size: 1.6rem;
  }
  /* Mini-Intro */
.floorplan-materials-intro {
  text-align: left;
  margin-bottom: 3rem;
  margin-top: 100px;
}

}


.fp-image-wrapper {
  position: relative;
  width: 100%;
  height: 520px;          /* fester Wert = kein Springen */
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

#fp-image {
  height: 100%;
  width: auto;
  object-fit: contain;    /* Bild passend einpassen */
}

/* Pfeile fix mittig */
.fp-prev,
.fp-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.fp-prev { left: -20px; }
.fp-next { right: -20px; }






/* ================================
   LOCATION — INTRO BLOCK
================================ */

.location-intro {
  max-width: 1000px;

  /* exakt gleiche Logik wie Floorplans / Highlights */
  margin-inline: 0;
    padding-inline: clamp(3rem, 10vw, 12rem);

  padding-block: clamp(4rem, 8vw, 6rem);
  margin-top: -100px;
}

.location-intro-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-meta);
  margin-bottom: var(--s-16);
}

.location-intro-title {
  font-family: var(--font-headline);
  font-size: var(--fs-h2);
  font-weight: 200;
  line-height: var(--lh-title);
  color: var(--brand);
  margin-bottom: var(--s-32);
}

.location-intro-text {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: var(--lh-body);
  color: var(--ink-body);
  max-width: 75ch;
}

/* ================================
   LOCATION SECTION
================================ */

.section-location {
  width: calc(100% - 30px);
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 6rem);
  padding-inline: 0;
}


/* GRID 50/50 */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-24);
}



.location-card-img,
.location-card-text {
  border-radius: 18px;
  overflow: hidden;
}


.location-left-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
  border: 3px solid #5d504e0e;
}

/* TEXT RIGHT */
.location-card-text {
  background: none;
  backdrop-filter: blur(8px);
  padding: clamp(3rem, 4vw, 3.6rem);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 18px;
  border: 3px solid #5d504e0e;
  background: #b4b0a93b;
}

/* TYPOGRAPHY */
.location-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink-meta);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--s-16);
}

.location-title {
  font-family: var(--font-headline);
  font-size: var(--fs-h3);
  font-weight: 200;
  color: var(--brand);
  margin-bottom: var(--s-24);
}

.location-body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-body);
  margin-top: var(--s-24);
  font-weight: 300;
}

.location-card-icon {
  margin-top: auto;            /* Icon wandert an das untere Ende der Card */
  display: flex;
  justify-content: flex-end;   /* nach rechts ausrichten */
  width: 100%;
  margin-bottom: -8px;
  margin-top: -0px;
}

.location-card-icon img {
  width: 120px;                 /* fein, zurückhaltend */
  height: auto;
  opacity: 0.55;               /* ruhiger, hochwertiger Look */
  pointer-events: none;
}


.location-map {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0.6;
}

.location-map-iframe {
  width: 100%;
  height: 330px;   /* geringere Höhe für die Map */
  border: 0;
  border-radius: 14px;
}




/* =============================================
   LOCATION HIGHLIGHTS (eigene Galerie)
============================================= */

.section-location-highlights {
  padding-block: clamp(4rem, 8vw, 8rem);
  margin-top: -205px;
}

.location-gallery-wrapper {
  width: calc(100% - 26px);
  margin: 0 auto;
  border-radius: 18px; /* an Cards angepasst */
  overflow: hidden;
  position: relative;
}

/* ARROWS */
.location-arrow.left,
.location-arrow.right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .25s ease, transform .25s ease;
}

.location-arrow.left { left: 2vw; }
.location-arrow.right { right: 2vw; }

.location-arrow:hover {
  opacity: .9;
  transform: translateY(-50%) scale(1.05);
}

/* TRACK */
.location-gallery {
  display: flex;
  gap: clamp(1rem, 1.1vw, 1.1rem);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  /* WICHTIG: kein vertikales Padding mehr */
  padding-bottom: 0;

  -webkit-overflow-scrolling: touch;
}

.location-gallery::-webkit-scrollbar {
  display: none;
}

/* CARDS */
.location-card {
  max-height: 90vh;
  flex: 0 0 auto;
  width: auto;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  border: 2px solid #5d504e19;
  background: none;
}

/* IMAGE */
.location-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  display: block;
}


.location-footnote {
  margin-top: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.location-footnote-line {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,.15);
}

.location-footnote-text {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 300;
  color: var(--ink-meta);
  margin: 0;
  max-width: 70ch;
}


/* ============================================
   LOCATION — MOBILE LAYOUT (max-width: 600px)
============================================ */
@media (max-width: 600px) {
  /* ============================================ LOCATION — MOBILE LAYOUT (max-width: 600px) ============================================ */

  /* LOCATION INTRO → gleiche linke Linie wie alle anderen Intros */
  .location-intro {
    padding-inline: clamp(1.8rem, 6vw, 2.4rem) !important;
    margin-inline: 0 !important;
  }

  .section-location {
    padding-inline: 0;
  }

  /* 1) Grid ausschalten → Einspaltiges Layout */
  .location-grid {
    grid-template-columns: 1fr !important;
    gap: 1.8rem !important;
    margin-top: -60px;
  }

  /* 5) Textblock (rechte Card) kommt GANZ UNTEN */
  .location-card-text {
    margin-top: 1.6rem;
    padding: 1.8rem 1.6rem 2.2rem 1.6rem !important; 
    border-radius: 18px;
  }

  .location-title {
    margin-bottom: 1.4rem;
    padding-right: 1rem; /* rechter Rand minimal größer */
  }

  .location-body {
    padding-right: 1rem; /* Text rechts leicht eingerückt */
  }

  /* 6) Icon unten in der Card etwas kleiner */
  .location-card-icon img {
    width: 90px;
    opacity: .45;
  }

  /* Force map height on mobile */
  .location-left-map iframe {
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    border-radius: 14px !important;
  }

  /* Gap zwischen Map und Galerie */
  .section-location-highlights {
    margin-top: 10px !important;
  }

  /* Galerie Breite angleichen */
  .location-gallery-wrapper {
    width: calc(100% - 30px) !important;
    margin-inline: auto !important;
    border-radius: 20px !important;
  }
}
/* ============================================================
   LOCATION – MOBILE GALLERY FIX (wie Highlights)
============================================================ */
@media (max-width: 600px) {

  /* SECTION BREITE */
  .section-location-highlights {
    padding-inline: 0 !important;
    margin-inline: 0 !important;
  }

  .location-gallery-wrapper {
    width: calc(100% - 30px) !important;
    margin-inline: auto !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    margin-top: -120px !important;
  }

  /* TRACK → keine seitlichen Abstände */
  .location-gallery {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 0.8rem !important;
    scroll-snap-type: x mandatory;
  }

  /* CARD → 100vw breite Slides */
  .location-card {
    flex: 0 0 100vw !important;
    width: 100vw !important;
    border-radius: 0 !important;
    margin: 0 !important;
    aspect-ratio: 16/9 !important;
    max-height: none !important;
  }

  /* IMAGE → komplett sichtbare Fläche */
  .location-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  /* ARROWS → ins Bild ziehen */
  .location-arrow.left {
    left: 1rem !important;
  }
  .location-arrow.right {
    right: 1rem !important;
  }

  /* FOOTNOTE → unter die volle Breite setzen */
  .location-footnote {
    width: calc(100% - 30px);
    margin-inline: auto;
  }
}




/* ============================================================
   RENTAL SECTION – Doppel-Sticky (Top + Bottom)
=========================================================== */

/* ============================================================
   RENTAL SECTION – Doppel-Sticky (Top + Bottom)
=========================================================== */

.rental-section {
  padding-block: clamp(4rem, 8vw, 8rem);
  padding-inline: clamp(3rem, 10vw, 12rem);

  background: #b4b0a93b;

  width: calc(100% - 30px);
  margin-inline: auto;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: clamp(6rem, 10vw, 10rem);
}
/* ============================================================
   BLOCK A + B – Struktur
=========================================================== */

.rental-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: flex-start;
  position: relative;
  
}


/* ============================================================
   STICKY LEFT PANEL
=========================================================== */

/* ===============================
   RENTAL – LINKER STICKY BLOCK FIX
   (Titel + Text bündig zur Textkante)
================================ */

.rental-sticky {
  position: sticky;
  top: 150px;
  align-self: flex-start;

  padding-right: 2rem;

  /* NEU: bündig setzen */
  padding-left: 0;
  margin-left: 0;
  
}

.rental-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--brand);

  margin-bottom: 1.4rem;

  /* NEU: bündig */
  padding-left: 0;
  margin-left: 0;
}

.rental-intro {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-body);
  max-width: 55ch;
  font-weight: 300;

  /* NEU: bündig */
  padding-left: 0;
  margin-left: 0;
}

/* ============================================================
   RIGHT SIDE – SCROLLING BLOCKS
=========================================================== */

.rental-scroll {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 4vw, 4rem);
}
.rental-block:nth-child(1) .rental-scroll {
  min-height: 92vh; /* nur Block A */
}
.rental-block:nth-child(2) .rental-scroll {
  min-height: 98vh; /* Block B */
}
/* ============================================================
   INFO BLOCKS (oben)
=========================================================== */

.rental-info-block {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.rental-info-block.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.rental-info-title {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: var(--brand);
  margin-bottom: .4rem;
}

.rental-info-text {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 300;
  color: var(--ink-body);
  max-width: 55ch;
}


/* ============================================================
   SERVICE LIST (unten)
=========================================================== */

.rental-services {
  margin-top: 1rem;
}

.rental-service-item {
  padding-right: 1rem;
}

.service-heading {
  font-family: var(--font-headline);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 400;
  color: var(--brand);
  margin-bottom: .3rem;
}

.service-text {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 300;
  color: var(--ink-body);
  max-width: 60ch;
  margin-bottom: 1rem;
}

.service-separator {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 1.6rem;
  margin-top: .4rem;
}

/* ================================
   RENTAL – FOOTNOTE / DISCLAIMER
================================ */

.rental-footnote {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: 60ch;
}

.rental-footnote-line {
  width: 1px;
  height: 38px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.rental-footnote-text {
  font-size: var(--fs-small);
  line-height: 1.55;
  font-weight: 300;
  color: var(--ink-meta);
}
@media (max-width: 700px) {
  .rental-section {
    width: 100% !important;
    margin-inline: 0 !important;
    border-radius: 0 !important;
    padding-inline: clamp(1.8rem, 6vw, 2.4rem);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .rental-footnote {
    max-width: 100%;
  }
}
/* ============================================================
   RESPONSIVE – MOBILE / TABLET
=========================================================== */

@media (max-width: 900px) {
  .rental-block {
    grid-template-columns: 1fr;
  }

  .rental-sticky {
    position: relative;
    top: 0;
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .rental-scroll {
    gap: 3rem;
  }

  .service-text {
    max-width: 100%;
  }
}



/* =========================
   BROKER / MAKLER-SECTION
========================= */

.section-broker{
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section-broker .container{
  max-width: 1300px;
}

/* HEADER */
.broker-head{
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(2.5rem, 4vw, 3.5rem);
}

/* =========================
   BROKER – LOGO (Header)
========================= */

.broker-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
}

.broker-logo img {
  max-width: 100px;
  width: 100%;
  height: auto;
  opacity: 0.9;
}

.broker-kicker{
  margin: 0 0 .6rem;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
}

.broker-title{
  margin: 0 0 .75rem;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--brand);
}

.broker-subtitle{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: .85;
}

/* GRID */
.broker-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

/* CARD */
.broker-card{
  position: relative;
  height: 320px;                 /* WICHTIG: deutlich höher */
  padding: 2rem;
  border-radius: 26px;
  background: #f8f7f4;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;     /* Text nach unten */
}

/* dezenter Lichtverlauf */
.broker-card::before{
  content:"";
  position:absolute;
  inset: -20%;
  background:
    radial-gradient(
      420px 420px at 0% 100%,
      #b4b0a93b 0%,
      rgba(180,176,169,0.18) 35%,
      rgba(180,176,169,0.08) 55%,
      transparent 70%
    ),
    linear-gradient(
      135deg,
      rgba(180,176,169,0.18) 0%,
      transparent 60%
    );
  pointer-events:none;
}

/* =========================
   BROKER ICON – IMAGE VARIANTE
========================= */

.broker-icon{
  position: absolute;
  top: 22px;
  left: 22px;

  width: 48px;
  height: 48px;

  border-radius: 14px;
  background: rgba(0,0,0,0.035);

  display: flex;
  align-items: center;
  justify-content: center;
}

.broker-icon img{
  width: 50px;
  height: 50px;
  object-fit: contain;
  opacity: 0.85;
  pointer-events: none;
}

/* TEXTBLOCK UNTEN FIXIERT */
.broker-card-content{
  margin-top: auto;
}

/* FEINJUSTIERUNG TYPO */
.broker-card-title{
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.broker-card-text{
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 30ch;
}

/* FOOT */
.broker-foot{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .7rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  flex-wrap: wrap;
  opacity: .85;
}

.broker-link{
  text-decoration: none;
  padding-bottom: .08rem;
}

.broker-link:hover{
  border-color: rgba(0,0,0,.45);
}

.broker-sep{
  opacity: .5;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .broker-cards{
    grid-template-columns: 1fr;
  }

  .broker-card{
    height: 300px;
    border-radius: 22px;
  }
  .broker-logo img {
    max-width: 90px;
  }

  .broker-logo {
    margin-bottom: 1rem;
  }
} 




/* ============================================
   SECTION — KONTAKT
============================================ */
.contact-section {
  padding-block: clamp(5rem, 8vw, 9rem);
  padding-inline: clamp(3rem, 10vw, 12rem);
  background: rgba(67,109,113,0.1);
  width: calc(100% - 30px);
  margin-inline: auto;
  border-radius: 20px;
  margin-top: -97px;
}

.contact-wrapper {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* INTRO */
.contact-title {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: rgb(65, 79, 80);
  margin-bottom: .6rem;
}

.contact-sub {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-body);
  max-width: 75ch;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ROWS */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

/* INPUT FIELDS */
.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.contact-form label {
  font-size: .9rem;
  color: var(--ink-meta);
  letter-spacing: .04em;
}

/* LINIENSTYLE — Keine Boxen, keine Ränder */
.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.22);
  padding: .6rem .2rem;
  font-size: 1rem;
  background: transparent;
  transition: border-color .25s ease;
  font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--brand);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* CHECKBOX */
.contact-checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  line-height: 1.4;
}

.contact-checkbox input {
  transform: scale(1.15);
  margin-top: 2px;
}

.contact-checkbox a {
  color: var(--brand);
  text-decoration: underline;
}

/* SUBMIT BUTTON */
.contact-submit {
  margin-top: .6rem;
  background: rgb(65, 79, 80);
  color: white;
  border: none;
  padding: .9rem 1.4rem;
  border-radius: 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity .3s ease;
}

.contact-submit:hover {
  opacity: .85;
}

/* SUCCESS MESSAGE */
.contact-success {
  margin-top: .4rem;
  color: var(--brand);
  font-size: 1rem;
}

.hidden {
  display: none !important;
}

.contact-form select {
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.22);
  padding: .6rem .2rem;
  font-size: 1rem;
  background: transparent;
  font-family: var(--font-body);
}

.contact-form select:focus {
  outline: none;
  border-bottom-color: var(--brand);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 700px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .contact-section {
  padding-block: clamp(5rem, 8vw, 9rem);
  padding-inline: clamp(3rem, 10vw, 12rem);
  background: rgba(67,109,113,0.1);
  width: 100%;
  margin-inline: auto;
  border-radius: none;
  margin-top: 50px;
}
}

/* ============================
   MAKLERCOURTAGE – FOOTNOTE (FIXED)
============================ */
.contact-footnote {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: row;           /* ← wichtig! Linie + Text NEBENEINANDER */
  align-items: flex-start;
  gap: 1rem;
}

.contact-footnote-line {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,.15);
  flex-shrink: 0;
  margin: 0;                     /* kein Abstand unten */
}

.contact-footnote-text {
  font-size: var(--fs-small);
  font-weight: 300;
  color: var(--ink-meta);
  line-height: 1.55;
  max-width: 65ch;
}

/* MOBILE */
@media (max-width: 600px) {
  .contact-footnote {
    gap: .8rem;
  }

  .contact-footnote-line {
    height: 34px;
  }
}




