/* ============================================================
   THE CUBE 3.0 — Premium Apartment Onepager
   ============================================================ */

:root {
  --bg:        #0a0a0a;       /* near-black base */
  --bg-alt:    #111111;       /* subtle section split */
  --bg-deep:   #050505;       /* deepest contrast */
  --bg-paper:  #f4f1ea;       /* off-white "paper" for grundriss only */
  --ink:       #ffffff;       /* primary text on dark */
  --ink-soft:  rgba(255,255,255,.78);
  --muted:     rgba(255,255,255,.55);
  --line:      rgba(255,255,255,.1);
  --line-strong: rgba(255,255,255,.18);
  --accent:    #c9a875;       /* warm champagne gold */
  --accent-2:  #e2c48b;
  --accent-deep:#9a7846;
  --white:     #ffffff;
  --black:     #000000;
  --wa:        #25D366;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --radius: 2px;
  --maxw: 1240px;
  --gap: clamp(1.2rem, 2.4vw, 2.4rem);

  --t-fast: 220ms cubic-bezier(.4,0,.2,1);
  --t-med:  420ms cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity var(--t-fast); }
a:hover { opacity: .7; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4,
.highlight__title,
.feature__title,
.map-consent__title,
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--white);
}

.section__eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  margin-bottom: 1.4rem;
  max-width: 900px;
  color: var(--white);
}

.accent { color: var(--accent); font-style: italic; }

/* Subtle grain texture for premium depth on dark backgrounds */
.intro::after,
.features::after,
.location::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.features, .location { position: relative; overflow: hidden; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 1.8rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  transition: all var(--t-fast);
  cursor: pointer;
  border-radius: var(--radius);
  white-space: nowrap;
  color: var(--white);
  background: transparent;
}
.btn--primary { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); color: var(--black); opacity: 1; }
.btn--ghost { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--ghost:hover { background: var(--accent); color: var(--black); border-color: var(--accent); opacity: 1; }
.btn--call {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--call:hover {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  opacity: 1;
}
.btn--call svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn--full { width: 100%; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(10, 10, 10, 0);
  backdrop-filter: blur(0px);
  transition: background var(--t-med), padding var(--t-med), backdrop-filter var(--t-med),
              box-shadow var(--t-med);
}
.nav.is-scrolled {
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: .7rem clamp(1.2rem, 4vw, 3rem);
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  height: 100%;
  transition: opacity var(--t-fast);
  color: var(--white);
}
.nav__brand:hover { opacity: .85; }

.nav__brand-mark-img {
  display: block;
  height: 38px;
  width: 38px;
  flex-shrink: 0;
  transition: height var(--t-med), width var(--t-med);
}
.nav.is-scrolled .nav__brand-mark-img {
  height: 32px;
  width: 32px;
}

.nav__brand-wordmark {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a:not(.nav__contact-btn) {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  transition: color var(--t-fast);
}
.nav.is-scrolled .nav__links a:not(.nav__contact-btn) { color: rgba(255,255,255,.78); }
.nav__links a:not(.nav__contact-btn):hover { color: var(--accent); opacity: 1; }
.nav__cta {
  padding: .7rem 1.3rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent) !important;
}
.nav__cta:hover {
  background: var(--accent);
  color: var(--black) !important;
  border-color: var(--accent);
}

/* Mobile contact block in expanded menu (hidden on desktop) */
.nav__contact { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 1.8px;
  background: var(--accent);
  transition: all var(--t-fast);
  border-radius: 2px;
}
.nav.is-scrolled .nav__toggle span,
.nav.is-open .nav__toggle span { background: var(--accent); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  display: block;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(.45) saturate(.85) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.35) 40%,
      rgba(0,0,0,.95) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,.5) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.2rem 4rem;
  max-width: 900px;
}
.hero__logo-wrap {
  margin-bottom: 1.6rem;
}
.hero__logo {
  width: 130px;
  height: auto;          /* erhält Aspect-Ratio, sonst greift HTML height="784" */
  margin: 0 auto;
  display: block;
}
.hero__eyebrow {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 11vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .95;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__title span { display: block; }
.hero__title-accent {
  font-style: italic;
  color: var(--accent-2);
  font-weight: 300;
}
.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.9);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero__cta-row {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__cta-row .btn--primary { background: transparent; color: var(--accent); border-color: var(--accent); }
.hero__cta-row .btn--primary:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }
.hero__cta-row .btn--ghost { color: var(--accent); border-color: var(--accent); }
.hero__cta-row .btn--ghost:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }

.hero__quickfacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero__quickfacts > div {
  display: flex; flex-direction: column; gap: .15rem;
}
.hero__quickfacts strong {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--white);
}
.hero__quickfacts span {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 38px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 12px;
  z-index: 2;
}
.hero__scroll span {
  display: block;
  width: 2px; height: 6px;
  background: var(--white);
  margin: 6px auto 0;
  border-radius: 2px;
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.intro { background: var(--bg); position: relative; }
.intro::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}
.intro__lead {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255,255,255,.82);
  max-width: 880px;
  font-style: italic;
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights { background: var(--bg-alt); }

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 880px) {
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .highlight-grid { grid-template-columns: 1fr; }
}
.highlight {
  background: var(--bg-alt);
  padding: 2.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: background var(--t-med), transform var(--t-med);
  position: relative;
}
.highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--t-med);
}
.highlight:hover { background: var(--bg-deep); }
.highlight:hover::before { width: 100%; }
.highlight__icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: .3rem;
}
.highlight__icon svg { width: 100%; height: 100%; }
.highlight h3,
.highlight .highlight__title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
}
.highlight p {
  font-size: .94rem;
  color: var(--muted);
  line-height: 1.7;
}
.highlight p strong {
  color: var(--accent-2);
  font-weight: 500;
}

/* CTA tile inside highlights grid */
.highlight--cta {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(201,168,117,0.18) 0%, rgba(201,168,117,0.06) 100%) !important;
  border: 1px solid rgba(201, 168, 117, .35);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .7rem;
  padding: 2.6rem 2.6rem;
  overflow: hidden;
  transition: background var(--t-med);
}
.highlight--cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  width: 100% !important;
}
.highlight--cta::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,117,0.18) 0%, rgba(201,168,117,0) 70%);
  pointer-events: none;
}
.highlight--cta:hover { background: linear-gradient(135deg, rgba(201,168,117,0.26) 0%, rgba(201,168,117,0.10) 100%) !important; }

.highlight--cta__eyebrow {
  font-family: var(--sans) !important;
  font-size: .7rem !important;
  font-weight: 500 !important;
  letter-spacing: .3em !important;
  text-transform: uppercase;
  color: var(--accent) !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.highlight--cta h3,
.highlight--cta .highlight__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin: .1rem 0 .3rem;
}
.highlight--cta__desc {
  font-size: .92rem !important;
  color: rgba(255,255,255,.65) !important;
  margin: 0 0 1.2rem !important;
  max-width: 480px;
}
.highlight--cta__actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.highlight--cta__btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.5rem;
  background: var(--accent);
  color: var(--black);
  border: 1px solid var(--accent);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.highlight--cta__btn svg { width: 15px; height: 15px; transition: transform var(--t-fast); flex-shrink: 0; }
.highlight--cta__btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  opacity: 1;
}
.highlight--cta__btn:not(.highlight--cta__btn--ghost):hover { transform: translateX(2px); }
.highlight--cta__btn:not(.highlight--cta__btn--ghost):hover svg { transform: translateX(3px); }

.highlight--cta__btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.highlight--cta__btn--ghost:hover {
  background: var(--accent);
  color: var(--black);
}

@media (max-width: 880px) {
  .highlight--cta { grid-column: span 2; }
}
@media (max-width: 540px) {
  .highlight--cta { grid-column: span 1; padding: 2rem 1.6rem; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg-deep); padding-bottom: 0; }
.gallery .container { margin-bottom: 3rem; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 6px;
}
.gallery__grid figure {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-deep);
  aspect-ratio: 1 / 1;
}
.gallery__grid figure.is-tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery__grid figure.is-wide { grid-column: span 2; aspect-ratio: 2 / 1; }

.gallery__grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,0,.2,1), opacity var(--t-med);
  opacity: 0;
}
.gallery__grid img.is-loaded { opacity: 1; }
.gallery__grid figure:hover img { transform: scale(1.04); }
.gallery__grid figure::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--t-fast);
}
.gallery__grid figure:hover::after { background: rgba(0,0,0,.18); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--bg); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem 2.4rem;
  margin-top: 3rem;
}
.feature h4,
.feature .feature__title {
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-strong);
  position: relative;
  color: var(--white);
}
.feature h4::after,
.feature .feature__title::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 36px; height: 1px;
  background: var(--accent);
}
.feature ul { list-style: none; }
.feature li {
  padding: .55rem 0;
  font-size: .96rem;
  color: rgba(255,255,255,.72);
  display: flex; gap: .6rem;
  align-items: flex-start;
}
.feature li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--bg-alt); }
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.location__text p { color: rgba(255,255,255,.72); margin-bottom: 1.2rem; max-width: 540px; }
.location__points {
  list-style: none;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line-strong);
}
.location__points li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: .96rem;
  color: rgba(255,255,255,.78);
}
.location__points strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--accent);
  min-width: 80px;
}
.location__map {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-deep);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.location__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.85) brightness(.95);
}
.location__maplink {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: .7rem 1.1rem;
  font-size: .74rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 3;
  transition: background var(--t-fast), color var(--t-fast);
}
.location__maplink:hover { background: var(--accent); color: var(--black); opacity: 1; }

/* ---- Anfahrt / Directions Cards (Grid) ---- */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
  scroll-margin-top: 100px;
}
@media (max-width: 880px) {
  .directions-grid { grid-template-columns: 1fr; }
}

.directions {
  padding: 1.8rem 1.8rem;
  background: linear-gradient(135deg, rgba(201,168,117,.10) 0%, rgba(201,168,117,.03) 100%);
  border: 1px solid rgba(201, 168, 117, .25);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}
.directions::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.directions__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,117,.15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.directions__icon svg { width: 22px; height: 22px; }

.directions__body { flex: 1; min-width: 0; }

.directions__label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .35rem;
}
.directions__hint {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  margin: 0 0 .8rem;
  line-height: 1.55;
}
.directions__hint strong { color: var(--accent-2); font-weight: 500; }

.directions__address {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  margin: 0 0 .8rem;
  letter-spacing: .01em;
}
.directions__address-sub {
  display: block;
  font-size: .92rem;
  color: var(--accent-2);
  font-weight: 400;
  margin-top: .25rem;
}
.directions__meta {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  margin: 0 0 1.2rem;
}

.directions__actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.directions__btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1rem;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
  line-height: 1;
}
.directions__btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.directions__btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.directions__btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.directions__btn--ghost.is-copied {
  background: rgba(201,168,117,.2);
  border-color: var(--accent);
  color: var(--accent);
}
.directions__btn--primary {
  background: var(--accent);
  color: var(--black);
  border: 1px solid var(--accent);
}
.directions__btn--primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  opacity: 1;
}

@media (max-width: 600px) {
  .directions {
    flex-direction: column;
    padding: 1.4rem 1.2rem;
    gap: 1rem;
  }
  .directions__address { font-size: 1.2rem; }
  .directions__actions { gap: .5rem; }
  .directions__btn { padding: .65rem .85rem; font-size: .68rem; }
}

/* ============================================================
   MAP CONSENT (Click-to-Load für DSGVO)
   ============================================================ */
.map-consent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  overflow: hidden;
}
.map-consent__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.map-consent__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.6rem;
  max-width: 320px;
  background: rgba(10, 10, 10, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-strong);
}
.map-consent__eyebrow {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .8rem;
}
.map-consent__title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 .8rem;
}
.map-consent__text {
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  margin: 0 0 1.4rem;
}
.map-consent__text strong { color: var(--accent-2); font-weight: 500; }
.map-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.6rem;
  background: var(--accent);
  color: var(--black);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.map-consent__btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
.map-consent__small {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin: .9rem 0 0;
}
.map-consent__small a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   FLOORPLAN
   ============================================================ */
.floorplan { background: var(--bg-deep); text-align: center; }
.floorplan .section__title { margin-left: auto; margin-right: auto; }
.floorplan__wrap {
  max-width: 820px;
  margin: 3rem auto 2.5rem;
  padding: 2.6rem 2.6rem 1.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.04);
  position: relative;
}
.floorplan__wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.floorplan__wrap img {
  width: 100%; height: auto;
}
.floorplan-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 760px;
  margin: 0 auto;
}
.floorplan__legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem 2rem;
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  text-align: left;
}
.floorplan__legend li {
  font-size: .92rem;
  color: rgba(255,255,255,.72);
  padding: .6rem 0;
  border-bottom: 1px solid var(--line-strong);
  display: flex; gap: 1rem;
}
.floorplan__legend span {
  font-family: var(--serif);
  color: var(--accent);
  font-weight: 500;
  min-width: 70px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3.5rem;
}

.review {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: 2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background var(--t-med), border-color var(--t-med), transform var(--t-med);
}
.review:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(201,168,117,.25);
  transform: translateY(-2px);
}

.review::before {
  content: '"';
  position: absolute;
  top: -.4rem;
  right: 1.5rem;
  font-family: var(--serif);
  font-size: 5rem;
  color: rgba(201,168,117,.18);
  line-height: 1;
  pointer-events: none;
  font-style: italic;
}

.review__stars {
  display: flex;
  gap: .25rem;
  color: var(--accent);
}
.review__stars svg {
  width: 18px;
  height: 18px;
}

.review__text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(255,255,255,.86);
  margin: 0;
  flex-grow: 1;
}

.review__author {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.review__name {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.review__date {
  font-family: var(--sans);
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews__grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .review { padding: 1.6rem 1.4rem 1.4rem; }
  .review__text { font-size: 1rem; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--bg);
}

.faq__list {
  margin-top: 3rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--line-strong);
}

.faq__item {
  border-bottom: 1px solid var(--line-strong);
  transition: background var(--t-fast);
}
.faq__item[open] {
  background: rgba(255,255,255,.02);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--white);
  transition: color var(--t-fast);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--accent-2); }
.faq__item[open] .faq__question { color: var(--accent-2); }

.faq__icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform var(--t-med);
}
/* Horizontal line (always visible) */
.faq__icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}
/* Vertical line (rotates to form X / minus) */
.faq__icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}
.faq__item[open] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  padding: 0 0 1.6rem;
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 760px;
}
.faq__answer p {
  margin: 0 0 .9rem;
}
.faq__answer p:last-child { margin-bottom: 0; }
.faq__answer strong {
  color: var(--accent-2);
  font-weight: 500;
}
.faq__answer ul {
  list-style: none;
  margin: .5rem 0 .9rem;
  padding: 0;
}
.faq__answer ul li {
  padding: .35rem 0;
  display: flex;
  gap: .65rem;
  align-items: flex-start;
}
.faq__answer ul li::before {
  content: '—';
  color: var(--accent);
  flex-shrink: 0;
}

/* Smooth open animation (browser-supported) */
.faq__item {
  interpolate-size: allow-keywords;
}

@media (max-width: 600px) {
  .faq__question { padding: 1.2rem 0; gap: 1rem; }
  .faq__answer { font-size: .94rem; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg);
  color: var(--white);
  position: relative;
  border-top: 1px solid var(--line);
}
.contact .section__title { color: var(--white); }
.contact .section__eyebrow { color: var(--accent-2); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact__intro p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2.4rem;
}
.contact__channels {
  display: flex; gap: 1rem;
  flex-wrap: wrap;
}
.contact__channel {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 1.4rem;
  border: 1px solid var(--accent);
  font-size: .82rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  transition: all var(--t-fast);
}
.contact__channel svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact__channel:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  opacity: 1;
}
#waBtn:hover { background: var(--wa); border-color: var(--wa); color: var(--white); }

/* form */
.contact__form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: flex; flex-direction: column; gap: .4rem; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row--split > div { display: flex; flex-direction: column; gap: .4rem; }

.contact__form label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* Pflichtfeld-Hinweise */
.form__legend {
  font-size: .72rem;
  color: rgba(255,255,255,.62);
  margin: 0 0 .4rem;
  letter-spacing: .04em;
}
.form__req,
.contact__form label.is-required::after {
  color: var(--accent);
  font-weight: 500;
}
.contact__form label.is-required::after {
  content: ' *';
  margin-left: .15rem;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 300;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding: .65rem 0;
  outline: none;
  transition: border-color var(--t-fast);
  border-radius: 0;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-bottom-color: var(--accent-2);
}
.contact__form textarea { resize: vertical; min-height: 120px; }
.contact__form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent-2) 50%), linear-gradient(135deg, var(--accent-2) 50%, transparent 50%); background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 2rem; }
.contact__form select option { color: var(--ink); background: var(--white); }
.contact__form input[type="date"] { color-scheme: dark; }

.form-check {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .82rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgba(255,255,255,.65) !important;
  font-weight: 300 !important;
  line-height: 1.5;
}
.form-check input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; accent-color: var(--accent); }

.contact__form .btn--primary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  margin-top: .8rem;
}
.contact__form .btn--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.form__status {
  font-size: .88rem;
  text-align: center;
  min-height: 1.5em;
  margin-top: .4rem;
}
.form__status.is-success { color: var(--accent); }
.form__status.is-error   { color: #e88; }
.form__status a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Honeypot — für Bots sichtbar (im DOM), für Menschen unsichtbar */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-deep);
  color: rgba(255,255,255,.5);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}
.footer__brand {
  display: flex; align-items: center;
}
.footer__brand-logo {
  height: 64px;
  width: auto;
  opacity: .85;
}
.footer__meta { font-size: .82rem; text-align: center; }
.footer__meta p { margin: .15rem 0; }
.footer__links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__links a {
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.footer__links a:hover { color: var(--accent); opacity: 1; }

.footer__pages {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 1.6rem;
}
.footer__pages a {
  font-size: .78rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
}
.footer__pages a:hover { color: var(--accent); opacity: 1; }

.footer__social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer__social-label {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.footer__social-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.1rem .7rem .85rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px;
  color: rgba(255,255,255,.78);
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all var(--t-fast);
}
.social-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  opacity: 1;
}
.social-icon__label { line-height: 1; }

@media (max-width: 600px) {
  .social-icon { padding: .65rem 1rem .65rem .8rem; font-size: .72rem; }
}

/* Credit row */
.footer__credit {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.footer__credit img {
  height: 22px;
  width: auto;
  opacity: .7;
  transition: opacity var(--t-fast);
  filter: brightness(0) invert(1);
}
.footer__credit a:hover img { opacity: 1; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 58px; height: 58px;
  background: var(--wa);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4), 0 4px 10px rgba(0,0,0,.15);
  z-index: 90;
  transition: transform var(--t-fast), box-shadow var(--t-fast), bottom var(--t-fast);
}

/* ============================================================
   TELEFON-FLOAT (gold, gestapelt über dem WhatsApp-Button)
   ============================================================ */
.tel-float {
  position: fixed;
  bottom: calc(1.5rem + 58px + .9rem);   /* über dem WhatsApp-Button */
  right: 1.5rem;
  width: 58px; height: 58px;
  background: var(--accent);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(201, 168, 117, .35), 0 4px 10px rgba(0,0,0,.2);
  z-index: 90;
  transition: transform var(--t-fast), box-shadow var(--t-fast), bottom var(--t-fast), background var(--t-fast);
}
.tel-float svg { width: 26px; height: 26px; }
.tel-float:hover {
  transform: scale(1.08);
  background: var(--accent-2);
  box-shadow: 0 14px 36px rgba(201, 168, 117, .55), 0 4px 10px rgba(0,0,0,.25);
  opacity: 1;
}
.tel-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--accent);
  z-index: -1;
  animation: pulse-tel 2.4s ease-out infinite;
  animation-delay: 1.2s;   /* leicht versetzt zum WhatsApp-Pulse */
}
@keyframes pulse-tel {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .tel-float::before { animation: none; }
}

/* ============================================================
   KONTAKT-FLOAT (gold-outline, gestapelt über Tel + WA)
   ============================================================ */
.contact-float {
  position: fixed;
  bottom: calc(1.5rem + 2 * (58px + .9rem));   /* über dem Telefon-Button */
  right: 1.5rem;
  width: 58px; height: 58px;
  background: var(--bg);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(201, 168, 117, .25), 0 4px 10px rgba(0,0,0,.2);
  z-index: 90;
  text-decoration: none;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.contact-float svg { width: 24px; height: 24px; }
.contact-float:hover {
  transform: scale(1.08);
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 14px 36px rgba(201, 168, 117, .5), 0 4px 10px rgba(0,0,0,.25);
  opacity: 1;
}

/* ============================================================
   MOBILE STICKY BAR (mobile only)
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  padding: .7rem .8rem calc(.7rem + env(safe-area-inset-bottom, 0));
  gap: .55rem;
  background: linear-gradient(180deg, rgba(5,5,5,.55) 0%, rgba(5,5,5,.92) 60%, rgba(5,5,5,.98) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid rgba(201, 168, 117, .25);
}
.mobile-bar__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem .8rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.mobile-bar__btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.mobile-bar__btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.mobile-bar__btn--ghost:hover { background: var(--accent); color: var(--black); opacity: 1; }
.mobile-bar__btn--cta {
  background: var(--accent);
  color: var(--black);
  border: 1px solid var(--accent);
  box-shadow: 0 6px 18px rgba(201, 168, 117, .25);
}
.mobile-bar__btn--cta:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  opacity: 1;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37, 211, 102, .55), 0 4px 10px rgba(0,0,0,.2);
  opacity: 1;
}
.wa-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--wa);
  z-index: -1;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: rgba(255,255,255,.85);
  font-size: 2.4rem;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--t-fast), color var(--t-fast);
}
.lightbox__close { top: 1rem; right: 1rem; font-size: 2rem; }
.lightbox__nav--prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,.1); color: var(--white); }
.lightbox__counter {
  position: absolute;
  bottom: 1.4rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2,0,.2,1), transform 700ms cubic-bezier(.2,0,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; }
  .wa-float::before { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: min(86vw, 380px);
    height: 100vh;
    background: var(--bg-deep);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.1rem;
    padding: 5.5rem 2rem 2.5rem;
    transform: translateX(100%);
    transition: transform var(--t-med);
    box-shadow: -10px 0 40px rgba(0,0,0,.6);
    border-left: 1px solid var(--line-strong);
    overflow-y: auto;
  }
  .nav.is-open .nav__links { transform: translateX(0); }
  .nav__links > a:not(.nav__contact-btn) { color: var(--white) !important; font-size: 1rem; }
  /* "Anfragen"-Button im Mobile-Menü ausblenden — der "Direkt kontaktieren"-Block übernimmt */
  .nav__links .nav__cta { display: none; }

  /* Mobile contact block */
  .nav__contact {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 1.6rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line-strong);
  }
  .nav__contact-label {
    font-family: var(--sans);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .3rem;
  }
  .nav__contact-btn {
    all: unset;
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--t-fast);
    box-sizing: border-box;
  }
  .nav__contact-btn svg {
    width: 22px; height: 22px;
    flex-shrink: 0;
  }
  .nav__contact-btn span {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    line-height: 1.2;
    min-width: 0;
  }
  .nav__contact-btn strong {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: .01em;
  }
  .nav__contact-btn small {
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .7;
  }
  .nav__contact-btn--ghost {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
  }
  .nav__contact-btn--ghost:active,
  .nav__contact-btn--ghost:hover {
    background: var(--accent);
    color: var(--black);
  }
  .nav__contact-btn--wa {
    background: var(--wa);
    color: var(--white);
    border: 1px solid var(--wa);
  }
  .nav__contact-btn--wa:active,
  .nav__contact-btn--wa:hover {
    background: #1ebe5a;
    border-color: #1ebe5a;
  }

  .location__inner { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid figure.is-wide { grid-column: span 2; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
}

@media (max-width: 760px) {
  .mobile-bar { display: flex; }
  .wa-float {
    bottom: calc(5.2rem + env(safe-area-inset-bottom, 0));
    width: 50px; height: 50px;
    right: 1rem;
  }
  .wa-float svg { width: 24px; height: 24px; }
  /* Tel-Float wird auf Mobile NICHT benötigt — ANRUFEN ist bereits in der Sticky-Bar */
  .tel-float { display: none; }
  /* Kontakt-Float ebenfalls nur Desktop — auf Mobile übernimmt die Sticky-Bar */
  .contact-float { display: none; }
  /* Footer Abstand, damit Bar nichts verdeckt */
  .footer { padding-bottom: calc(2.5rem + 4.6rem + env(safe-area-inset-bottom, 0)); }
}

@media (max-width: 600px) {
  /* Hero kompakter auf Mobile — weniger Leerraum oben */
  .hero { min-height: auto; align-items: flex-start; }
  .hero__content { padding: 4.5rem 1.2rem 3rem; }
  .hero__logo-wrap { margin-bottom: 1.1rem; }
  .hero__eyebrow { margin-bottom: 1rem; }
  .hero__title { margin-bottom: 1.1rem; }
  .hero__subtitle { margin-bottom: 1.8rem; }
  .hero__cta-row { margin-bottom: 2.4rem; }
  .hero__quickfacts { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; padding-top: 1.6rem; }
  .hero__scroll { display: none; }

  .form-row--split { grid-template-columns: 1fr; }
  .contact__form { padding: 1.6rem 1.2rem; }
  .floorplan__wrap { padding: 1rem; }
  .hero__cta-row .btn { padding: .9rem 1.3rem; font-size: .76rem; }
  .gallery__grid { gap: 4px; padding: 0 4px; }
  .mobile-bar__btn { font-size: .72rem; letter-spacing: .1em; padding: .9rem .6rem; }
}

/* ============================================================
   LIVE-VIEWERS — Social-Proof-Toast (nur Desktop)
   ============================================================ */
.live-viewers {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(17, 17, 17, .92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(201, 168, 117, .28);
  color: rgba(255, 255, 255, .9);
  border-radius: 999px;
  padding: .65rem 1.15rem .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 300;
  letter-spacing: .01em;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .55);
  z-index: 89;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;       /* nicht interaktiv */
  user-select: none;
}
.live-viewers.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.live-viewers__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .22);
  position: relative;
  flex-shrink: 0;
}
.live-viewers__dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #22c55e;
  opacity: .4;
  animation: live-pulse 1.9s ease-out infinite;
  z-index: -1;
}
@keyframes live-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(2.4); opacity: 0; }
}
.live-viewers__text strong {
  color: var(--accent);
  font-weight: 500;
  display: inline-block;
  transition: transform .26s cubic-bezier(.5,1.8,.3,1), color .26s;
}
.live-viewers__text strong.is-changing {
  transform: scale(1.22);
  color: var(--accent-2);
}
.live-viewers__period {
  font-size: .78em;
  color: rgba(255, 255, 255, .55);
  margin-left: .15rem;
}
@media (prefers-reduced-motion: reduce) {
  .live-viewers__dot::after { animation: none; }
  .live-viewers__text strong.is-changing { transform: none; }
  .live-viewers { transition: opacity .2s; transform: none; }
}
/* Nur Desktop — auf Mobile ausblenden, dort übernimmt die sticky bar den unteren Bereich */
@media (max-width: 960px) {
  .live-viewers { display: none; }
}

/* ============================================================
   Crosslinks zu anderen Hauptseiten (gleich wie auf Landingpages)
   ============================================================ */
.lp-crosslinks { background: var(--bg); }
.lp-crosslink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}
.lp-crosslink {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.5rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.15rem;
  text-decoration: none;
  transition: all var(--t-fast);
}
.lp-crosslink:hover { border-color: var(--accent); background: rgba(201,168,117,.1); color: var(--accent); opacity: 1; }
.lp-crosslink svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
