/* =========================================================================
   Salvatore Ditta – Live Musik  ·  styles.css
   Premium, mobil-first, DSGVO-freundlich (lokale Schriften, keine CDNs)
   ========================================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Farbwelt (aus dem Marken-Flyer: Bordeaux + Gold + warmes Schwarz) */
  --wine-900: #2a0d17;
  --wine-800: #3c1220;
  --wine-700: #4c1528;
  --wine-600: #6a1730;
  --wine-500: #7a1b34;
  --wine-400: #a02244;
  --gold-600: #b48a45;
  --gold-500: #c9a25e;
  --gold-400: #e4c989;
  --gold-300: #f0d9a4;
  --ink-900:  #17110f;
  --ink-800:  #241a1c;
  --ink-600:  #4a3c3f;
  --cream-50: #faf6f0;
  --cream-100:#f4ece0;
  --cream-200:#e9ddca;
  --paper:    #fffdfa;

  /* Semantische Tokens */
  --color-bg: var(--cream-50);
  --color-surface: var(--paper);
  --color-text: #241a1c;
  --color-text-soft: #5e4e50;
  --color-primary: var(--wine-500);
  --color-primary-strong: var(--wine-700);
  --color-accent: var(--gold-500);
  --color-border: rgba(42, 13, 23, 0.10);
  --color-ring: var(--wine-400);

  /* Typografie */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radien & Schatten */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(42, 13, 23, 0.06);
  --shadow-md: 0 12px 30px -12px rgba(42, 13, 23, 0.18);
  --shadow-lg: 0 30px 60px -24px rgba(42, 13, 23, 0.30);

  /* Layout */
  --container: 1160px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(3.5rem, 8vw, 7rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1200;
  background: var(--wine-700);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 900; line-height: 1.08; letter-spacing: -0.015em; }
.section__title {
  font-size: clamp(1.85rem, 1.3rem + 2.6vw, 3.05rem);
  color: var(--wine-800);
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine-500);
  margin-bottom: 0.7rem;
}
.eyebrow--light { color: var(--gold-400); }
.muted { color: var(--color-text-soft); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.82rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(135deg, var(--wine-500), var(--wine-700));
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(122, 27, 52, 0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(122, 27, 52, 0.75); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(240, 217, 164, 0.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
.btn--lg { min-height: 54px; padding: 1rem 1.9rem; font-size: 1.03rem; }
.btn--block { width: 100%; }
.btn:active { transform: translateY(0) scale(0.99); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 246, 240, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { display: inline-flex; border-radius: 12px; box-shadow: var(--shadow-sm); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 900; font-size: 1.18rem; color: var(--wine-800); letter-spacing: -0.01em; }
.brand__tag { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-600); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__list { display: flex; align-items: center; gap: 1.55rem; }
.nav__list a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--color-text);
  position: relative;
  padding: 0.4rem 0;
  transition: color .2s var(--ease);
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__list a:hover { color: var(--wine-500); }
.nav__list a:hover::after { transform: scaleX(1); }

/* Burger */
.burger {
  display: none;
  width: 48px; height: 48px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 12px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.burger span {
  position: absolute;
  left: 13px;
  width: 22px; height: 2px;
  background: var(--wine-700);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 62% 30%, transparent 0%, rgba(20,12,16,0.55) 100%),
    linear-gradient(to bottom, rgba(20,12,16,0.15), rgba(20,12,16,0.35));
  z-index: -1;
}
.hero__inner {
  padding-top: clamp(3.5rem, 9vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 9vw, 6.5rem);
  max-width: 860px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 600; font-size: 0.9rem;
  color: var(--gold-300);
  background: rgba(20, 12, 16, 0.35);
  border: 1px solid rgba(240, 217, 164, 0.28);
  padding: 0.5rem 0.95rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.4rem;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(228,201,137,0.25); }
.hero__title {
  font-size: clamp(2.35rem, 1.4rem + 4.6vw, 4.5rem);
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero__title em { font-style: italic; font-weight: 900; color: var(--gold-300); }
.hero__lead {
  font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.28rem);
  color: rgba(255,255,255,0.9);
  margin-top: 1.4rem;
  max-width: 620px;
}
.hero__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-300);
  margin-top: 1.1rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 2.2rem; }
.hero__chips li {
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 0.45rem 0.95rem;
  border-radius: var(--r-pill);
}

/* ---------- Trust Bar ---------- */
.trust {
  background: var(--wine-800);
  color: #fff;
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  padding-block: clamp(2rem, 5vw, 3rem);
}
.trust__item { display: flex; align-items: center; gap: 0.9rem; }
.trust__ico {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(240, 217, 164, 0.14);
  border: 1px solid rgba(240,217,164,0.22);
}
.trust__ico svg { width: 24px; height: 24px; fill: none; stroke: var(--gold-400); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust__item strong { display: block; font-size: 1rem; color: #fff; }
.trust__item span span, .trust__item div span { font-size: 0.88rem; color: rgba(255,255,255,0.72); }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section--tint { background: linear-gradient(180deg, var(--cream-100), var(--cream-50)); }
.section--dark { background: radial-gradient(120% 120% at 50% 0%, var(--wine-700), var(--wine-900)); color: #fff; }
.section__head { max-width: 680px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section--dark .section__title { color: #fff; }
.section__intro { margin-top: 0.9rem; color: var(--color-text-soft); font-size: 1.08rem; }
.section--dark .section__intro { color: rgba(255,255,255,0.8); }
.section__cta { margin-top: 2.4rem; }

/* ---------- Cards / Leistungen ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,162,94,0.5); }
.card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.25rem;
  background: transparent;
  border: 0;
  text-align: left;
}
.card__ico {
  flex: none;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(122,27,52,0.10), rgba(201,162,94,0.14));
  border: 1px solid rgba(122,27,52,0.12);
}
.card__ico svg { width: 26px; height: 26px; fill: none; stroke: var(--wine-500); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card__title { font-size: 1.2rem; color: var(--wine-800); flex: 1; }
.acc__toggle {
  flex: none;
  position: relative;
  width: 22px; height: 22px;
}
.acc__toggle::before, .acc__toggle::after {
  content: ""; position: absolute; background: var(--wine-500);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.acc__toggle::before { top: 10px; left: 2px; width: 18px; height: 2px; }
.acc__toggle::after  { left: 10px; top: 2px; width: 2px; height: 18px; }
.card__body {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows .35s var(--ease);
}
.card__body > p { padding: 0 1.25rem 1.3rem; color: var(--color-text-soft); overflow: hidden; }

/* Accordion nur auf Mobil aktiv */
@media (max-width: 719px) {
  .acc .card__body { grid-template-rows: 0fr; }
  .acc.is-open .card__body { grid-template-rows: 1fr; }
  .acc.is-open .acc__toggle::after { transform: rotate(90deg); opacity: 0; }
}

/* ---------- Über / About ---------- */
.about { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute;
  left: 1rem; bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(23,17,15,0.82);
  color: var(--gold-300);
  padding: 0.55rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem; font-weight: 600;
  backdrop-filter: blur(6px);
}
.about__badge svg { fill: none; stroke: var(--gold-400); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.about__text p { margin-top: 1rem; color: var(--color-text-soft); }
.about__list { margin-top: 1.4rem; display: grid; gap: 0.65rem; }
.about__list li { display: flex; align-items: center; gap: 0.7rem; font-weight: 600; color: var(--color-text); }
.about__list span { color: var(--wine-500); font-size: 1.15rem; }
.about__quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.3rem; color: var(--wine-600);
  margin: 1.6rem 0; padding-left: 1.1rem;
  border-left: 3px solid var(--gold-500);
}

/* ---------- Warum / Benefits ---------- */
.benefits { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.benefit {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.5rem; color: var(--gold-500);
}
.benefit h3 { font-size: 1.22rem; color: var(--wine-800); margin: 0.6rem 0 0.5rem; }
.benefit p { color: var(--color-text-soft); }

/* ---------- Ablauf / Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.4rem; counter-reset: step; }
.step {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(240,217,164,0.18);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  backdrop-filter: blur(4px);
}
.step__num {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--wine-900);
  font-family: var(--font-display); font-weight: 900; font-size: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px -8px rgba(228,201,137,0.6);
}
.step h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { color: rgba(255,255,255,0.8); }

/* ---------- Galerie ---------- */
.gallery { margin-top: 0.5rem; }
.gallery__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem var(--gutter) 1.2rem;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__item {
  flex: 0 0 82%;
  scroll-snap-align: center;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__controls { display: flex; justify-content: flex-end; gap: 0.6rem; margin-top: 0.4rem; }
.gallery__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.gallery__btn svg { fill: none; stroke: var(--wine-600); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.gallery__btn:hover { background: var(--wine-500); transform: translateY(-2px); }
.gallery__btn:hover svg { stroke: #fff; }

/* ---------- Standort ---------- */
.location { display: grid; gap: clamp(2rem, 5vw, 3rem); align-items: center; }
.location__info { margin: 1.5rem 0; display: grid; gap: 1rem; }
.location__info li { display: flex; gap: 0.85rem; align-items: flex-start; font-weight: 600; }
.location__ico {
  flex: none; width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(122,27,52,0.08);
  border: 1px solid rgba(122,27,52,0.12);
}
.location__ico svg { width: 22px; height: 22px; fill: none; stroke: var(--wine-500); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.location__map img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

/* ---------- Kontakt ---------- */
.contact { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact__intro p { color: var(--color-text-soft); margin-top: 0.9rem; }
.contact__direct { margin-top: 1.8rem; display: grid; gap: 1rem; }
.contact__direct li { display: flex; align-items: center; gap: 0.9rem; }
.contact__ico {
  flex: none; width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--wine-500), var(--wine-700));
}
.contact__ico svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-300); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.contact__direct small { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-soft); }
.contact__direct a { font-weight: 700; color: var(--wine-700); font-size: 1.1rem; }
.contact__direct a:hover { color: var(--wine-500); }

.contact__form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 1.1rem;
}
.field { display: grid; gap: 0.4rem; }
.field-row { display: grid; gap: 1.1rem; }
.field label { font-weight: 700; font-size: 0.92rem; color: var(--wine-800); }
.req { color: var(--wine-400); }
.field input, .field select, .field textarea {
  font: inherit;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  background: var(--cream-50);
  color: var(--color-text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--wine-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(160,34,68,0.12);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #c0392b; }
.field--check {
  grid-auto-flow: column;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
}
.field--check input {
  width: 26px; height: 26px; min-height: 26px;
  margin-top: 2px;
  accent-color: var(--wine-500);
  cursor: pointer;
}
.field--check label { font-weight: 500; font-size: 0.92rem; color: var(--color-text-soft); line-height: 1.5; }
.field--check a { color: var(--wine-600); text-decoration: underline; font-weight: 600; }
.form__note { font-size: 0.82rem; color: var(--color-text-soft); }
.form__status {
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.95rem;
}
.form__status.is-success { background: rgba(122,27,52,0.08); color: var(--wine-700); border: 1px solid rgba(122,27,52,0.2); }
.form__status.is-error { background: #fdecea; color: #b0341f; border: 1px solid #f3c6bf; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: rgba(255,255,255,0.78); }
.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
}
.brand--footer .brand__name { color: #fff; }
.footer__claim { font-family: var(--font-display); font-style: italic; color: var(--gold-400); margin-top: 1rem; }
.footer__social {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  margin-top: 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.footer__social svg { fill: none; stroke: var(--gold-400); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer__social:hover { background: rgba(240,217,164,0.14); transform: translateY(-2px); }
.footer__h { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 1rem; }
.footer__nav ul, .footer__contact ul { display: grid; gap: 0.7rem; }
.footer__nav a:hover, .footer__contact a:hover { color: #fff; text-decoration: underline; }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); }
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding-block: 1.4rem;
  text-align: center;
}
.footer__copy { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer__powered { font-size: 0.9rem; }
.wowobot { color: #22b8e0; font-weight: 700; }
.wowobot:hover { text-decoration: underline; }

/* ---------- Reveal-Animationen (nur wenn JS aktiv) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================================
   Breakpoints
   ========================================================================= */

/* Tablet & Grid-Aufteilungen */
@media (min-width: 560px) {
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .gallery__item { flex-basis: 60%; }
}

/* Desktop */
@media (min-width: 720px) {
  /* Leistungen: keine Accordion-Logik, alles offen */
  .card__head { cursor: default; padding-bottom: 0.4rem; }
  .acc__toggle { display: none; }
  .card__title { font-size: 1.15rem; }
  .cards { gap: 1.2rem; }

  .about { grid-template-columns: 0.9fr 1.1fr; }
  .location { grid-template-columns: 1.1fr 1fr; }
  .contact { grid-template-columns: 0.95fr 1.05fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer__main { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }

  .footer__bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 960px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .benefits { grid-template-columns: repeat(4, 1fr); }
  .gallery__item { flex-basis: 40%; }
}

/* ---------- Mobile Navigation (Off-Canvas) ---------- */
@media (max-width: 899px) {
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(84vw, 360px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6rem 1.6rem 2rem;
    background: linear-gradient(160deg, var(--wine-700), var(--wine-900));
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.5);
    transform: translateX(100%);
    transition: transform .38s var(--ease);
    z-index: 110;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav__list a {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    padding: 1rem 0;
  }
  .nav__list a::after { display: none; }
  .nav__cta { margin-top: 1.6rem; }
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(20,12,16,0.5);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
    z-index: 105;
  }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }
  body.nav-lock { overflow: hidden; }
}

/* ---------- Rechtliche Seiten (Impressum / Datenschutz) ---------- */
.legal { padding-block: clamp(2.5rem, 7vw, 5rem); }
.legal__inner { max-width: 780px; margin-inline: auto; }
.legal h1 {
  font-size: clamp(2rem, 1.4rem + 3vw, 3rem);
  color: var(--wine-800);
  margin-bottom: 0.6rem;
}
.legal__lead { color: var(--color-text-soft); margin-bottom: 2.4rem; font-size: 1.05rem; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--wine-700);
  margin: 2.2rem 0 0.7rem;
}
.legal p { color: var(--color-text-soft); margin-bottom: 0.8rem; }
.legal a { color: var(--wine-600); text-decoration: underline; }
.legal__ph {
  display: block;
  background: rgba(201,162,94,0.12);
  border: 1px dashed var(--gold-600);
  color: var(--wine-700);
  border-radius: var(--r-sm);
  padding: 0.15rem 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.legal__note {
  margin-top: 2.6rem;
  padding: 1.1rem 1.3rem;
  background: rgba(122,27,52,0.06);
  border-left: 3px solid var(--wine-500);
  border-radius: var(--r-md);
  font-size: 0.92rem;
}
.legal__back { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-weight: 600; color: var(--wine-600); }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
