*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --night: #241c15;         /* warmes dunkelbraun */
  --night-2: #2d241b;       /* alternierende sektionen */
  --night-3: #372c21;       /* panels */
  --ivory: #f0ebe1;         /* warmes elfenbein */
  --muted: rgba(240,235,225,0.5);
  --champagne: #c8a878;     /* champagner-bronze */
  --champagne-light: #e0c9a4;
  --line: rgba(240,235,225,0.1);
  --line-strong: rgba(240,235,225,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--night);
  color: var(--ivory);
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--champagne); color: var(--night); }

.serif { font-family: 'Cormorant Garamond', serif; }

/* ─── PRELOADER ──────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--night);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease 0.2s, visibility 0.8s ease 0.2s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--ivory);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0;
  animation: preFade 1.4s ease forwards;
}
.preloader-text b { color: var(--champagne); font-weight: 500; }
@keyframes preFade {
  0%   { opacity: 0; letter-spacing: 0.5em; }
  100% { opacity: 1; letter-spacing: 0.32em; }
}

/* ─── NAV ────────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 5vw, 64px);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
header.scrolled {
  background: rgba(36,28,21,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px clamp(24px, 5vw, 64px);
  box-shadow: 0 1px 0 var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ivory);
}
.brand img { width: 38px; height: 38px; object-fit: contain; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.brand-sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

nav { display: flex; align-items: center; gap: 42px; }
nav a {
  position: relative;
  text-decoration: none;
  color: var(--ivory);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 0;
}
nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-btn {
  border: 1px solid var(--champagne) !important;
  color: var(--champagne) !important;
  padding: 12px 28px !important;
  transition: background 0.35s, color 0.35s !important;
}
.nav-btn::after { display: none; }
.nav-btn:hover { background: var(--champagne); color: var(--night) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}
.menu-toggle span { width: 26px; height: 1px; background: var(--ivory); transition: all 0.3s; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: var(--night);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.1em;
}
.mobile-menu a:hover { color: var(--champagne); font-style: italic; }

/* ─── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px clamp(24px, 5vw, 64px) 100px;
  position: relative;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s 1.5s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--champagne);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6.5vw, 5.8rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 36px;
}
.hero h1 .reveal-line { display: block; overflow: hidden; }
.hero h1 .reveal-line > span {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1.1s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero h1 .reveal-line:nth-child(1) > span { animation-delay: 1.35s; }
.hero h1 .reveal-line:nth-child(2) > span { animation-delay: 1.5s; }
.hero h1 .reveal-line:nth-child(3) > span { animation-delay: 1.65s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero h1 em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 400;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 1s 1.9s ease forwards;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 2.1s ease forwards;
}

.btn-solid {
  display: inline-block;
  background: var(--champagne);
  color: var(--night);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 20px 44px;
  transition: background 0.35s, letter-spacing 0.35s;
}
.btn-solid:hover { background: var(--champagne-light); letter-spacing: 0.32em; }

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ivory);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 6px;
  transition: border-color 0.3s, gap 0.3s;
}
.link-line:hover { border-color: var(--champagne); gap: 18px; }
.link-line svg { width: 16px; height: 16px; }

.hero-right { position: relative; overflow: hidden; }
.hero-right .img-mask { position: absolute; inset: 0; overflow: hidden; }
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  animation: slowSettle 2.4s 1.2s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes slowSettle { to { transform: scale(1.02); } }

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--night);
  z-index: 2;
  transform: translateY(0);
  animation: curtain 1.3s 1.1s cubic-bezier(0.76,0,0.24,1) forwards;
}
@keyframes curtain { to { transform: translateY(-101%); } }

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(36,28,21,0.5), transparent 40%);
  z-index: 1;
}

.hero-caption {
  position: absolute;
  bottom: 36px;
  left: 36px;
  z-index: 3;
  color: var(--ivory);
  opacity: 0;
  animation: fadeUp 1s 2.4s ease forwards;
}
.hero-caption .cap-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}
.hero-caption .cap-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 1s 2.5s ease forwards;
}
.hero-scroll-hint .scroll-line {
  width: 1px;
  height: 44px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.hero-scroll-hint .scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 40%;
  background: var(--champagne);
  animation: scrollDrip 2s ease-in-out infinite;
}
@keyframes scrollDrip {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(280%); }
}

/* ─── SECTION BASE ───────────────────────── */
section { padding: 130px clamp(24px, 5vw, 64px); }
.container { max-width: 1240px; margin: 0 auto; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
}
.eyebrow::before { content: ''; width: 48px; height: 1px; background: var(--champagne); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content: ''; width: 48px; height: 1px; background: var(--champagne); }

.heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ivory);
}
.heading em { font-style: italic; color: var(--champagne); font-weight: 400; }

.sub {
  font-size: 0.98rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
}

/* reveal on scroll */
[data-r] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1);
}
[data-r].vis { opacity: 1; transform: none; }
[data-rd="1"] { transition-delay: 0.12s; }
[data-rd="2"] { transition-delay: 0.24s; }
[data-rd="3"] { transition-delay: 0.36s; }

/* ─── PHILOSOPHIE ────────────────────────── */
.philosophy { padding-top: 150px; background: var(--night-2); }
.philosophy .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.phil-img-wrap {
  position: relative;
  padding: 0 40px 40px 0;
}
.phil-img-wrap::after {
  content: '';
  position: absolute;
  top: 40px; left: 40px; right: 0; bottom: 0;
  border: 1px solid var(--champagne);
  opacity: 0.35;
  z-index: 0;
}
.phil-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3.4/4;
  object-fit: cover;
  display: block;
}
.phil-sig {
  margin-top: 44px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ivory);
}
.phil-sig span { display: block; font-family: 'Jost'; font-style: normal; font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

.phil-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 36px;
  gap: 24px;
}
.phil-stat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1;
}
.phil-stat .n i { font-style: normal; color: var(--champagne); }
.phil-stat .l {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

/* ─── GRÜNDER / GESCHÄFTSFÜHRER ───────────── */
.founder { background: var(--night-2); }
.founder .container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.founder-img-wrap {
  position: relative;
  padding: 40px 0 0 40px;
}
.founder-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 40px; bottom: 40px;
  border: 1px solid var(--champagne);
  opacity: 0.35;
  z-index: 0;
}
.founder-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3.4/4;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15);
}
.founder-tag {
  position: absolute;
  z-index: 2;
  bottom: -22px;
  left: 0;
  background: var(--champagne);
  color: var(--night);
  padding: 16px 26px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.founder-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--champagne);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 4px;
}
.founder-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--ivory);
  margin-bottom: 30px;
}
.founder-bio {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 34px;
}
.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ivory);
}
.founder-role {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 6px;
}

/* ─── LEISTUNGEN (editorial list) ────────── */
.services-lux { background: var(--night); }

.lux-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.lux-list { border-top: 1px solid var(--line); }
.lux-item {
  display: grid;
  grid-template-columns: 80px 1fr 340px 60px;
  align-items: center;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ivory);
  position: relative;
  transition: padding-left 0.45s cubic-bezier(0.22,1,0.36,1);
}
.lux-item:hover { padding-left: 24px; }

.lux-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--champagne);
}
.lux-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  transition: color 0.3s;
}
.lux-item:hover .lux-title { color: var(--champagne-light); }
.lux-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.lux-arrow {
  width: 52px; height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}
.lux-item:hover .lux-arrow {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--night);
  transform: rotate(45deg);
}
.lux-arrow svg { width: 18px; height: 18px; }

/* hover preview image */
.lux-preview {
  position: fixed;
  width: 320px;
  height: 220px;
  pointer-events: none;
  z-index: 90;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lux-preview.show { opacity: 1; transform: scale(1); }
.lux-preview img { width: 100%; height: 100%; object-fit: cover; }

/* ─── SHOWCASE ───────────────────────────── */
.showcase { background: var(--night-2); }
.showcase-head { text-align: center; max-width: 640px; margin: 0 auto 90px; }
.showcase-head .sub { margin: 24px auto 0; }

.show-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.show-item { position: relative; overflow: hidden; }
.show-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.22,1,0.36,1), filter 0.5s;
}
.show-item:hover img { transform: scale(1.05); filter: brightness(1.08); }

.show-item .show-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(36,28,21,0.92);
  backdrop-filter: blur(8px);
  padding: 12px 22px;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne-light);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s;
}
.show-item:hover .show-tag { opacity: 1; transform: translateY(0); }

.show-item:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.show-item:nth-child(2) { grid-column: span 5; aspect-ratio: auto; }
.show-item:nth-child(3) { grid-column: span 6; aspect-ratio: 4/3; }
.show-item:nth-child(4) { grid-column: span 6; aspect-ratio: auto; }

/* ─── QUOTE BREAK ────────────────────────── */
.quote-break {
  text-align: center;
  padding: 150px clamp(24px, 5vw, 64px);
  position: relative;
  background: var(--night);
}
.quote-break .q-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  color: var(--champagne);
  opacity: 0.3;
  line-height: 0.4;
  display: block;
  margin-bottom: 20px;
}
.quote-break blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--ivory);
}
.quote-break cite {
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── GOOGLE REZENSIONEN ─────────────────── */
.reviews { background: var(--night); }
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.g-rating {
  display: flex;
  align-items: center;
  gap: 20px;
}
.g-rating .g-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 500;
  color: var(--ivory);
  line-height: 1;
}
.g-rating .g-meta { display: flex; flex-direction: column; gap: 6px; }
.g-stars {
  color: #fbbc04;
  font-size: 1.15rem;
  letter-spacing: 3px;
}
.g-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.g-label svg { width: 16px; height: 16px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--night-3);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.35s, border-color 0.35s;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(200,168,120,0.4); }

.review-top { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--night);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}
.review-name { font-size: 0.92rem; font-weight: 500; color: var(--ivory); }
.review-src {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 3px;
}
.review-src svg { width: 11px; height: 11px; }
.review-stars { color: #fbbc04; font-size: 0.9rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(240,235,225,0.7);
  line-height: 1.8;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}
.review-service {
  margin-top: auto;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px 34px;
  transition: border-color 0.3s, background 0.3s;
}
.btn-google:hover { border-color: var(--champagne); background: rgba(200,168,120,0.08); }
.btn-google svg { width: 17px; height: 17px; }

/* ─── ABLAUF ─────────────────────────────── */
.method { background: var(--night-2); }
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.method-sticky { position: sticky; top: 130px; }
.method-sticky .sub { margin-top: 24px; margin-bottom: 40px; }

.m-steps { display: flex; flex-direction: column; }
.m-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.m-step:first-child { padding-top: 0; }
.m-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  font-style: italic;
  color: var(--champagne);
  line-height: 1;
}
.m-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ivory);
}
.m-step p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 460px;
}

/* ─── CTA PANEL ──────────────────────────── */
.cta-lux { position: relative; overflow: hidden; padding: 0; }
.cta-lux-inner {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px clamp(24px, 5vw, 64px);
}
.cta-lux-bg {
  position: absolute;
  inset: 0;
  background-image: url('Contents/Kunstharzboden_7.jpeg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.22) saturate(0.85);
}
.cta-lux-content { position: relative; z-index: 2; }
.cta-lux .heading { color: #fff; max-width: 720px; margin-bottom: 24px; }
.cta-lux p {
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.8;
  font-size: 0.95rem;
}
.btn-bronze {
  display: inline-block;
  background: var(--champagne);
  color: var(--night);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 20px 48px;
  transition: background 0.35s, letter-spacing 0.35s;
}
.btn-bronze:hover { background: var(--champagne-light); letter-spacing: 0.32em; }

/* ─── KONTAKT ────────────────────────────── */
.contact-lux { background: var(--night); }
.contact-lux-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 90px;
  align-items: start;
  margin-top: 70px;
}

.contact-detail {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--ivory);
  transition: padding-left 0.35s;
}
.contact-detail:hover { padding-left: 14px; }
.contact-detail:first-child { padding-top: 0; }
.cd-label {
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.cd-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
}
.contact-detail svg {
  width: 20px; height: 20px;
  color: var(--champagne);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.contact-detail:hover svg { transform: translate(4px, -4px); }

.map-container {
  margin-top: 44px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.map-container .map-label {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  background: var(--night-3);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 22px;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  filter: invert(0.88) hue-rotate(185deg) saturate(0.45) brightness(0.92) contrast(0.92);
}

.lux-form {
  background: var(--night-3);
  border: 1px solid var(--line);
  padding: 56px;
}
.lux-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ivory);
}
.lux-form > p {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 40px;
}

.lf-group { margin-bottom: 28px; }
.lf-group label {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.lf-group input,
.lf-group textarea,
.lf-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.lf-group input::placeholder,
.lf-group textarea::placeholder { color: rgba(240,235,225,0.3); }
.lf-group input:focus,
.lf-group textarea:focus,
.lf-group select:focus { border-bottom-color: var(--champagne); }
.lf-group textarea { height: 90px; resize: vertical; }
.lf-group select option { background: var(--night-3); color: var(--ivory); }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.lf-submit {
  background: var(--champagne);
  color: var(--night);
  border: none;
  width: 100%;
  padding: 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.35s, letter-spacing 0.35s;
}
.lf-submit:hover { background: var(--champagne-light); letter-spacing: 0.34em; }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: #1c1610;
  color: var(--ivory);
  padding: 90px clamp(24px, 5vw, 64px) 44px;
}
.foot-top {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}
.foot-brand-lux .brand-name { color: var(--ivory); font-size: 1.5rem; }
.foot-brand-lux p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 300px;
  margin-top: 20px;
}
.foot-nav { display: flex; gap: 80px; flex-wrap: wrap; }
.foot-nav-col h6 {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 500;
}
.foot-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-nav-col a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(240,235,225,0.75);
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
}
.foot-nav-col a:hover { color: var(--champagne-light); padding-left: 6px; }

.foot-base {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(240,235,225,0.35);
  letter-spacing: 0.06em;
}
.foot-base a { color: rgba(240,235,225,0.35); text-decoration: none; }
.foot-base a:hover { color: var(--ivory); }
.foot-base .legal { display: flex; gap: 28px; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1020px) {
  nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 52vh; order: -1; }
  .hero-left { padding-top: 60px; padding-bottom: 80px; }
  .hero-scroll-hint { display: none; }
  .philosophy .container { grid-template-columns: 1fr; gap: 70px; }
  .founder .container { grid-template-columns: 1fr; gap: 60px; }
  .founder-img-wrap { max-width: 380px; margin: 0 auto; }
  .lux-item { grid-template-columns: 50px 1fr 60px; }
  .lux-desc { display: none; }
  .method-grid { grid-template-columns: 1fr; gap: 60px; }
  .method-sticky { position: static; }
  .contact-lux-grid { grid-template-columns: 1fr; gap: 60px; }
  .review-grid { grid-template-columns: 1fr; }
  .g-rating .g-score { font-size: 3rem; }
  .show-item:nth-child(1) { grid-column: span 12; }
  .show-item:nth-child(2) { grid-column: span 12; aspect-ratio: 16/9; }
  .show-item:nth-child(3), .show-item:nth-child(4) { grid-column: span 12; margin-top: 0; aspect-ratio: 16/10; }
  .lux-preview { display: none; }
}
@media (max-width: 600px) {
  section { padding: 90px 22px; }
  .lux-form { padding: 34px 24px; }
  .lf-row { grid-template-columns: 1fr; gap: 0; }
  .phil-stats { grid-template-columns: 1fr 1fr; }
  .lux-item { gap: 20px; padding: 32px 0; }
  .lux-arrow { width: 42px; height: 42px; }
  .foot-nav { gap: 44px; }
}
