:root {
  --wine: #7b1e2b;
  --wine-dark: #5c1520;
  --ink: #2a2a2a;
  --muted: #6b6566;
  --bg: #ffffff;
  --blush: #f7f1ef;
  --line: #eadfdc;
  --wa: #25d366;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Poppins", system-ui, sans-serif;
  --radius: 14px;
  --shadow: 0 18px 40px -18px rgba(60, 20, 25, 0.25);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

svg {
  width: 1.2em;
  height: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: 1.4rem; }
h1 em, h2 em { color: var(--wine); font-style: normal; }
h2, h3, p, .eyebrow, .profile__text span { text-wrap: balance; }

.container { width: min(1140px, 100% - 32px); margin-inline: auto; }
.container--narrow { width: min(820px, 100% - 32px); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.8em 1.5em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { font-size: 0.85rem; padding: 0.6em 1.2em; }
.btn--lg { font-size: 1rem; padding: 1em 1.6em; }
.btn--primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(123, 30, 43, 0.7);
}
.btn--primary:hover { background: var(--wine-dark); }
.btn--primary svg { transition: transform 0.2s; }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }

/* ---------- Topbar & Header ---------- */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55em 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand__mark { height: 34px; width: auto; }
.brand__name {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.brand__name b { color: var(--wine); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 7vw, 90px) 0 50px; overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}
.line-accent { display: block; width: 52px; height: 2px; background: var(--wine); margin-bottom: 24px; }
.hero__services {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1.4em;
}
.hero__services i { color: var(--wine); font-style: normal; margin: 0 0.5em; }
.nowrap { white-space: nowrap; }
.hero__lead { font-size: 1.1rem; color: var(--muted); max-width: 32em; margin: 0 0 2em; }
.hero__lead strong { color: var(--ink); font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__micro { margin: 14px 0 0 4px; font-size: 0.85rem; color: var(--muted); }

.hero__visual { position: relative; }
.hero__visual img {
  position: relative;
  mix-blend-mode: multiply;
  --fade: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent),
    linear-gradient(to bottom, transparent, #000 7%, #000 90%, transparent);
  -webkit-mask-image: var(--fade);
  -webkit-mask-composite: source-in;
  mask-image: var(--fade);
  mask-composite: intersect;
  animation: float 7s ease-in-out infinite;
}
.hero__blob {
  position: absolute;
  inset: 8% -10% 0 12%;
  background: radial-gradient(circle at 60% 40%, #f3e4e1, transparent 70%);
  border-radius: 50%;
}
@keyframes float {
  50% { transform: translateY(-10px); }
}

.usp {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 64px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}
.usp li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 4px 12px;
}
.usp li + li { border-left: 1px solid var(--line); }
.usp svg { width: 36px; height: 36px; color: var(--wine); stroke-width: 1.4; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--blush { background: var(--blush); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow--light { color: #f0b9c1; }

/* ---------- Angebot ---------- */
.offer {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--wine);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(32px, 5vw, 56px);
  max-width: 820px;
  margin: 0 auto;
}
.offer__ribbon {
  position: absolute;
  top: 26px;
  right: -58px;
  transform: rotate(35deg);
  text-align: center;
  width: 240px;
  background: var(--wine);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 0;
}
.offer__list { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 14px; }
.offer__list li {
  position: relative;
  padding-left: 36px;
  color: var(--muted);
}
.offer__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--wine) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.offer__list b { color: var(--ink); font-weight: 600; }

/* Preis */
.price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px; margin: 4px 0 24px; }
.price__old { font-size: 1.3rem; color: var(--muted); text-decoration: line-through; text-decoration-color: var(--wine); }
.price__new { font-family: var(--serif); font-size: clamp(2.8rem, 7vw, 3.8rem); color: var(--wine); line-height: 1; }
.price__note { font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }
.offer__cta { margin-top: 30px; }

/* ---------- Ablauf ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__num {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 16px;
}
.step p { margin: 0; color: var(--muted); }

/* ---------- Kontakt ---------- */
.section--final {
  background:
    radial-gradient(circle at 85% 0%, rgba(123, 30, 43, 0.55), transparent 55%),
    var(--ink);
  color: #fff;
}
.section--final h1 em,
.section--final h2 em { color: #f0b9c1; }
/* Kontaktseite */
.page-contact .header { background: #fff; }
.page-contact main { padding: 56px 0 64px; }
.page-contact h1 { font-size: clamp(2.3rem, 4.5vw, 3.3rem); margin-bottom: 0.3em; }
.page-contact .final__lead { margin-bottom: 32px; }
.page-contact .contact { padding: 24px 16px; }
.page-contact .details {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 32px;
  text-align: left;
  margin-top: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}
.page-contact .details__title { font-size: 1.35rem; margin-bottom: 14px; }
.page-contact .details__list { grid-template-columns: repeat(2, auto); justify-content: start; gap: 18px 48px; text-align: inherit; }
.page-contact .details__list > div:last-child { grid-column: 1 / -1; }
.page-contact .details__list dt { white-space: nowrap; }
.page-contact .footer { padding: 36px 0; }
.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.profile__img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--wine), 0 12px 28px -10px rgba(0, 0, 0, 0.6);
}
.profile__text { display: flex; flex-direction: column; max-width: 190px; }
.profile__text b { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; line-height: 1.2; margin-bottom: 4px; }
.profile__text span { font-size: 0.68rem; letter-spacing: 0.08em; line-height: 1.5; text-transform: uppercase; color: #f0b9c1; }
@media (min-width: 901px) {
  .page-contact main { min-height: calc(100svh - 102px); display: flex; align-items: center; }
}
@media (max-width: 900px) {
  .page-contact .details { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .page-contact .details__list { grid-template-columns: 1fr; justify-content: stretch; }
  .page-contact .details__title { margin-bottom: 18px; }
  .profile { padding: 0 0 24px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .profile__text { max-width: none; }
}
@media (max-width: 640px) {
  .page-contact main { padding: 40px 0 48px; }
  .page-contact .eyebrow { font-size: 0.68rem; letter-spacing: 0.12em; }
  .page-contact .final__lead { font-size: 0.95rem; margin-bottom: 24px; }
  .page-contact .contact-grid { gap: 12px; }
  .page-contact .details { margin-top: 12px; padding: 28px 20px; }
  .profile__img { width: 104px; height: 104px; }
}
.page-contact .footer { padding-bottom: 48px; }
.final__lead { color: rgba(255, 255, 255, 0.75); margin: 0 auto 40px; max-width: 30em; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 30px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.contact:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.1); }
.contact svg { width: 34px; height: 34px; margin-bottom: 6px; stroke-width: 1.5; }
.contact b { font-weight: 500; font-size: 1.05rem; }
.contact span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.65); word-break: break-all; }
.contact--cal { background: var(--wine); border-color: var(--wine); }
.contact--cal:hover { background: #8e2433; }
.contact--wa svg { color: var(--wa); }

/* Kontaktdaten */
.details {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.details__title { font-size: 1.6rem; margin-bottom: 24px; }
.details__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin: 0;
  text-align: left;
}
.details__list dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0b9c1;
  margin-bottom: 4px;
}
.details__list dd { margin: 0; color: rgba(255, 255, 255, 0.85); }
.details__list a { border-bottom: 1px solid rgba(255, 255, 255, 0.3); transition: border-color 0.2s; }
.details__list a:hover { border-color: #fff; }

/* ---------- Rechtliches ---------- */
.legal { padding: clamp(48px, 7vw, 90px) 0; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3rem); margin-bottom: 0.3em; }
.legal h2 { font-size: 1.35rem; margin: 2em 0 0.5em; }
.legal p { margin: 0 0 1em; color: var(--muted); }
.legal a { color: var(--wine); text-decoration: underline; text-underline-offset: 3px; }
.legal__back { display: inline-block; margin-bottom: 28px; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--wine); }

/* ---------- Footer ---------- */
.footer { padding: 48px 0 110px; background: #fff; text-align: center; font-size: 0.85rem; color: var(--muted); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer__logo { width: 220px; }
.footer nav { display: flex; gap: 24px; }
.footer nav a:hover { color: var(--wine); }
.footer p { margin: 0; line-height: 1.8; }
.footer__claim { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- Sticky-Leiste (Handy) ---------- */
.sticky-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 30;
  display: none;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}
.sticky-bar__wa {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
}
.sticky-bar__wa svg { width: 24px; height: 24px; }
.sticky-bar__cta {
  flex: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--wine);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ---------- Animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__visual img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; margin: 0 auto; }
  .usp { margin: 44px 0 0; }
  .usp li { flex-direction: column; text-align: center; gap: 10px; font-size: 0.72rem; padding: 4px 6px; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header .btn { display: none; }
  .hero__cta .btn { width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 0;
    align-items: center;
    text-align: left;
    padding: 18px 20px;
  }
  .contact svg { grid-row: 1 / 3; margin: 0; width: 30px; height: 30px; }
  .contact b { grid-column: 2; line-height: 1.3; }
  .contact span { grid-column: 2; }
  .contact::after { content: "→"; grid-column: 3; grid-row: 1 / 3; font-size: 1.2rem; opacity: 0.6; }
  .section { padding: 56px 0; }
  .details__list { grid-template-columns: 1fr; gap: 18px; }
  .section__head { margin-bottom: 32px; }
  .offer { padding: 28px 22px; }
  .offer h2 { font-size: 1.85rem; padding-right: 40px; }
  .offer__ribbon { font-size: 0.6rem; top: 24px; right: -66px; }
  .offer__cta { width: 100%; }
  .price__old { font-size: 1.1rem; }
  .steps { gap: 12px; }
  .step {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    padding: 20px;
  }
  .step__num { grid-row: 1 / 3; font-size: 2.2rem; margin: 0; }
  .step h3 { font-size: 1.2rem; margin-bottom: 0.25em; }
  .step p { font-size: 0.92rem; }
  .sticky-bar { display: flex; transform: translateY(150%); transition: transform 0.35s ease; }
  .sticky-bar.is-shown { transform: none; }
  .hero__services { font-size: 0.8rem; letter-spacing: 0.08em; }
  .hero__cta .btn--lg { font-size: 0.95rem; padding: 1em 1.2em; }
  .topbar { font-size: 0.68rem; letter-spacing: 0.05em; }
}
