/* =========================================================
   Holzbau Prümmer — Stylesheet
   ========================================================= */

:root {
  /* Brand */
  --bordeaux:        #411B3A;
  --bordeaux-dark:   #2A1124;
  --bordeaux-deep:   #1B0A18;
  --bordeaux-soft:   #5C2851;

  --gold:            #B59758;
  --gold-light:      #D4B97A;
  --gold-dark:       #8C7240;

  --cream:           #F7F3EC;
  --cream-deep:      #EDE6D7;
  --off-white:       #FBF9F5;
  --paper:           #FFFFFF;

  --ink:             #1B161B;
  --ink-soft:        #3A323A;
  --muted:           #6B616A;
  --line:            rgba(27, 22, 27, 0.10);
  --line-light:      rgba(255, 255, 255, 0.14);

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius:    14px;
  --radius-lg: 22px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --t-fast: 180ms;
  --t-med:  320ms;
  --t-slow: 600ms;
}

/* ----------------- RESET ----------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ----------------- TYPE ----------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0 0 .4em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw + .3rem, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.4vw + .5rem, 3.4rem); }
h3 { font-size: 1.35rem; font-weight: 600; line-height: 1.25; }
h4 { font-size: .95rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); }

p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--bordeaux);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bordeaux);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--light { color: var(--gold-light); }

/* ----------------- LAYOUT ----------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(64px, 10vw, 140px) 0;
  position: relative;
}
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--bordeaux-dark);
  color: var(--cream);
}
.section--dark h2,
.section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(247, 243, 236, .78); }

.section--bordeaux {
  background:
    radial-gradient(80% 100% at 80% 0%, rgba(181,151,88,.18), transparent 60%),
    linear-gradient(160deg, var(--bordeaux) 0%, var(--bordeaux-deep) 100%);
  color: var(--cream);
}
.section--bordeaux h2,
.section--bordeaux h3,
.section--bordeaux h4 { color: var(--cream); }
.section--bordeaux p,
.section--bordeaux .lead { color: rgba(247, 243, 236, .82); }

.section__head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__head--center .eyebrow { justify-content: center; }
.section__lead {
  font-size: 1.15rem;
  margin-top: 1rem;
}

.section__cta {
  margin-top: 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.section__cta p { margin: 0; color: var(--ink-soft); }

/* ----------------- BUTTONS ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--small { padding: 10px 18px; font-size: .85rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: var(--bordeaux);
  color: var(--cream);
  box-shadow: 0 8px 24px -8px rgba(65, 27, 58, .55);
}
.btn--primary:hover { background: var(--bordeaux-soft); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(65,27,58,.55); }

.btn--gold {
  background: var(--gold);
  color: var(--bordeaux-deep);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--ghost.btn--light {
  border-color: rgba(247,243,236, .55);
  color: var(--cream);
}
.btn--ghost.btn--light:hover { background: var(--cream); color: var(--bordeaux); border-color: var(--cream); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--bordeaux);
  margin-top: auto;
  padding-top: 1rem;
  font-size: .95rem;
  transition: gap var(--t-fast) var(--ease);
}
.link-arrow:hover { gap: .4rem; color: var(--bordeaux-soft); }

/* ----------------- HEADER ----------------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(251, 249, 245, 0);
  transition: background var(--t-med) var(--ease),
              backdrop-filter var(--t-med) var(--ease),
              padding var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}
.header.is-scrolled {
  background: rgba(251, 249, 245, .92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  padding: 8px 0;
  box-shadow: 0 1px 0 var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo img {
  height: 56px;
  width: auto;
  transition: height var(--t-med) var(--ease), filter var(--t-med) var(--ease);
  filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,.45));
}
.header.is-scrolled .header__logo img {
  height: 44px;
  filter: none;
}

.nav {
  display: flex;
  gap: 32px;
  font-size: .95rem;
  font-weight: 500;
}
.nav a {
  color: var(--cream);
  position: relative;
  padding: 4px 0;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast) var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.header.is-scrolled .nav a {
  color: var(--ink);
  text-shadow: none;
}
.header.is-scrolled .nav a:hover { color: var(--bordeaux); }

.header__cta .btn {
  border-color: rgba(247,243,236, .55);
  color: var(--cream);
}
.header__cta .btn:hover { background: var(--cream); color: var(--bordeaux); border-color: var(--cream); }
.header.is-scrolled .header__cta .btn { border-color: var(--bordeaux); color: var(--bordeaux); background: transparent; }
.header.is-scrolled .header__cta .btn:hover { background: var(--bordeaux); color: var(--cream); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 50%;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.header.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------- HERO ----------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
  padding: 140px 0 80px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(27,10,24,.55) 0%, rgba(27,10,24,.35) 40%, rgba(65,27,58,.78) 100%),
    radial-gradient(70% 80% at 20% 90%, rgba(65,27,58,.55), transparent 60%);
}

.hero__content {
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.hero__title {
  color: var(--cream);
  margin-bottom: 1rem;
}
.hero__title em { color: var(--gold-light); font-weight: 400; }
.hero__lead {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  max-width: 600px;
  color: rgba(247, 243, 236, .9);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 720px;
}
.badge {
  background: rgba(251, 249, 245, .08);
  border: 1px solid rgba(251, 249, 245, .15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.badge strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-light);
}
.badge span { font-size: .85rem; color: rgba(247,243,236, .75); }

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1.5px solid rgba(247, 243, 236, .55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--cream);
  margin-top: 8px;
  border-radius: 2px;
  animation: scrollHint 1.8s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { opacity: 0; transform: translateY(-4px); }
  40%  { opacity: 1; }
  80%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ----------------- SERVICES ----------------- */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.services .service:first-child { grid-column: span 2; grid-row: span 2; }

.service {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.service::after {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(65,27,58,.06), transparent 70%);
  transition: transform var(--t-slow) var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 27, 58, .25);
  box-shadow: 0 24px 48px -28px rgba(65, 27, 58, .35);
}
.service:hover::after { transform: translate(-30%, -30%) scale(1.4); }

.service__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--bordeaux);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.service__icon svg { width: 28px; height: 28px; }

.service h3 { margin: 0; }
.service p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

.service--feature {
  background: linear-gradient(160deg, var(--bordeaux) 0%, var(--bordeaux-dark) 100%);
  color: var(--cream);
  border-color: transparent;
  padding: 44px;
}
.service--feature h3 { color: var(--cream); font-size: 1.85rem; font-family: var(--serif); font-weight: 500; }
.service--feature p { color: rgba(247,243,236,.85); font-size: 1.05rem; }
.service--feature .service__icon { background: rgba(255,255,255,.08); color: var(--gold-light); width: 64px; height: 64px; }
.service--feature .service__icon svg { width: 32px; height: 32px; }
.service--feature .link-arrow { color: var(--gold-light); }
.service--feature .link-arrow:hover { color: var(--cream); }
.service--feature::after { display: none; }

/* ----------------- SPLIT (Sanierung / Über mich / Kontakt) ----------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__content > .btn { margin-top: 1.5rem; }
.split__content h2 { margin-bottom: 1rem; }

.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 30px 60px -30px rgba(27, 10, 24, .55);
}
.split__media--portrait img { aspect-ratio: 4 / 5; }

.stat-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gold);
  color: var(--bordeaux-deep);
  padding: 24px 28px;
  border-radius: var(--radius);
  max-width: 260px;
  box-shadow: 0 24px 40px -20px rgba(0,0,0,.35);
}
.stat-card strong {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card span { font-size: .9rem; line-height: 1.4; }

.signature-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(251, 249, 245, .95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 16px 32px -16px rgba(27, 10, 24, .45);
}
.signature-card span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.4;
}
.signature-card strong {
  font-size: .85rem;
  color: var(--bordeaux);
  font-weight: 600;
  letter-spacing: .04em;
}

.bullets {
  margin: 1.4rem 0 2rem;
  display: grid;
  gap: 12px;
}
.bullets li {
  position: relative;
  padding-left: 28px;
  color: rgba(247,243,236,.86);
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 14px; height: 2px;
  background: var(--gold-light);
}
.section--dark .bullets li strong { color: var(--cream); }

.profile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 1.6rem 0 2rem;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.profile__item { display: flex; flex-direction: column; gap: 2px; }
.profile__item strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--bordeaux);
}
.profile__item span { font-size: .85rem; color: var(--muted); }

/* ----------------- GALLERY ----------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  box-shadow: 0 12px 30px -16px rgba(27, 10, 24, .35);
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); filter: brightness(.85); }

.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(27,10,24,.85));
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(20%);
  opacity: 0;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.gallery__item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.gallery__item figcaption span {
  font-size: .75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.gallery__item figcaption strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
}

/* ----------------- FEATURES ----------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(65,27,58,.3); }
.feature__num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.feature h3 { font-size: 1.15rem; margin: 0; }
.feature p { margin: 0; font-size: .95rem; }

/* ----------------- CONTACT ----------------- */
.split--contact { gap: 80px; align-items: start; }

.contact-list {
  margin-top: 2rem;
  display: grid;
  gap: 18px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
}
.contact-list li svg { color: var(--gold-light); flex-shrink: 0; }
.contact-list a { border-bottom: 1px solid rgba(212,185,122,.4); }
.contact-list a:hover { color: var(--gold-light); border-color: var(--gold-light); }

.form {
  background: rgba(251, 249, 245, .06);
  border: 1px solid rgba(251, 249, 245, .14);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  gap: 18px;
  backdrop-filter: blur(8px);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__field > span {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}
.form input,
.form select,
.form textarea {
  background: rgba(251, 249, 245, .04);
  border: 1px solid rgba(251, 249, 245, .2);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--cream);
  outline: none;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  font-size: 1rem;
  resize: vertical;
}
.form input::placeholder,
.form textarea::placeholder { color: rgba(247,243,236,.4); }
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold-light);
  background: rgba(251, 249, 245, .08);
}
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4B97A' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.form select option { background: var(--bordeaux-dark); color: var(--cream); }

.form__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  color: rgba(247,243,236,.7);
  line-height: 1.5;
  cursor: pointer;
}
.form__check input { margin-top: 4px; accent-color: var(--gold); width: 18px; height: 18px; }

.form__note {
  font-size: .85rem;
  color: rgba(247, 243, 236, .55);
  text-align: center;
  margin: 0;
}
.form__note a { color: var(--gold-light); border-bottom: 1px solid rgba(212,185,122,.4); }

.form__success {
  background: rgba(212, 185, 122, .15);
  color: var(--gold-light);
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(212, 185, 122, .35);
  font-size: .95rem;
  margin: 0;
}

.form input:invalid:not(:placeholder-shown),
.form textarea:invalid:not(:placeholder-shown) { border-color: rgba(255, 120, 120, .5); }

/* ----------------- FOOTER ----------------- */
.footer {
  background: var(--bordeaux-deep);
  color: rgba(247,243,236, .72);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer__brand img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.footer__brand p { color: rgba(247,243,236,.6); max-width: 320px; }

.footer h4 { color: var(--gold-light); margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer ul a:hover { color: var(--cream); }

.footer__bar {
  border-top: 1px solid rgba(247,243,236, .08);
  padding: 24px 0;
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: rgba(247,243,236, .5);
}

/* ----------------- FLOATING CTA ----------------- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--bordeaux);
  color: var(--cream);
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  box-shadow: 0 16px 36px -12px rgba(65, 27, 58, .55);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease), background var(--t-fast) var(--ease);
}
.floating-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.floating-cta:hover { background: var(--bordeaux-soft); }

/* ----------------- LIGHTBOX ----------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(15, 6, 14, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: min(1200px, 100%);
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
}
.lightbox p {
  color: rgba(247,243,236, .8);
  margin: 0;
  font-size: .95rem;
  text-align: center;
  max-width: 600px;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(251,249,245, .08);
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.lightbox__close:hover { background: var(--bordeaux); transform: rotate(90deg); }

/* ----------------- SCROLL ANIMATIONS ----------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__img { transform: none; }
}

/* ----------------- RESPONSIVE ----------------- */
@media (max-width: 1080px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .services .service:first-child { grid-column: span 2; grid-row: auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }

  .nav-toggle { display: flex; }
  .header__cta { display: none; }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80%, 340px);
    background: var(--bordeaux-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,.5);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    color: var(--cream) !important;
    text-shadow: none !important;
    font-size: 1.4rem;
    font-family: var(--serif);
  }
  .header.is-scrolled .nav a { color: var(--cream) !important; }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 5 / 4; }

  .stat-card { right: 16px; bottom: -16px; padding: 18px 22px; }
  .stat-card strong { font-size: 1.8rem; }

  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }

  .hero__badges { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 60px; min-height: 90vh; }

  .service--feature { grid-column: span 2; }

  .form { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }

  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; }
  .floating-cta span { display: none; }
}

@media (max-width: 540px) {
  h1 { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--wide { grid-column: span 1; }
  .services { grid-template-columns: 1fr; }
  .services .service:first-child, .service--feature { grid-column: span 1; padding: 32px; }
  .features { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: span 1; }
  .profile { grid-template-columns: 1fr 1fr; }
  .footer__bar-inner { flex-direction: column; gap: 8px; }
}

/* ===================== RECHTSSEITEN (Impressum / Datenschutz) ===================== */
.legal-main {
  padding: 132px 0 96px;
  background: var(--off-white);
  min-height: 72vh;
}
.legal-wrap { max-width: 800px; }
.legal-main .eyebrow { color: var(--gold); }
.legal-main h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color: var(--bordeaux);
  margin: 6px 0 12px;
}
.legal-main .legal-intro { color: rgba(27,22,27,.62); margin-bottom: 44px; font-size: 1.02rem; }
.legal-main h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--ink);
  margin: 44px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.legal-main h2:first-of-type { border-top: 0; padding-top: 0; }
.legal-main h3 { font-size: 1.05rem; color: var(--bordeaux); margin: 26px 0 6px; }
.legal-main p, .legal-main li { color: rgba(27,22,27,.78); }
.legal-main p { margin: 0 0 14px; }
.legal-main ul { padding-left: 1.25em; margin: 10px 0 18px; list-style: disc; display: grid; gap: 6px; }
.legal-main a { color: var(--bordeaux); text-decoration: underline; text-underline-offset: 2px; }
.legal-main a:hover { color: var(--bordeaux-soft); }
.legal-main .legal-address { line-height: 1.7; }
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 48px; font-weight: 600; color: var(--bordeaux); text-decoration: none;
}
.legal-back:hover { gap: 12px; }
/* Platzhalter deutlich markiert – vor Live-Schaltung ersetzen */
.ph {
  background: #FFF1A8;
  color: #6b5300;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ===================== KOMPLETTBETREUUNG / ABLAUF ===================== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 56px;
}
.process__step { display: flex; flex-direction: column; }
.process__media {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0 0 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px -24px rgba(27, 22, 27, .5);
}
.process__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--t-med) var(--ease);
}
.process__step:hover .process__media img { transform: scale(1.04); }
.process__num {
  position: absolute;
  top: 14px; left: 14px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, .5);
}
.process__step h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 0 0 8px;
}
.process__step p { margin: 0; color: var(--ink-soft); }
.process__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 52px;
}

@media (max-width: 1080px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) {
  .process { grid-template-columns: 1fr; gap: 26px; }
  .process__cta .btn { width: 100%; }
}
