/* =========================================================
   Fußpflege Ghazani – Design-System
   Warm: Creme / Champagner / Beige / Gold, Schrift in warmem Braun.
   Inspiriert vom hochwertigen, ruhigen Editorial-Stil (kein Grün, keine Preise).
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --cream:      #F8F1E3;
  --cream-2:    #FDFBF4;
  --champagne:  #EFE3CC;
  --beige:      #E4D3B3;
  --gold:       #C2A06A;
  --gold-2:     #B08E54;
  --espresso:   #36291C;
  --espresso-2: #2B2016;

  --text:       #43382A;
  --text-soft:  #6A5C49;
  --text-mute:  #91836C;

  --line:       rgba(67,56,42,.14);
  --line-2:     rgba(255,255,255,.16);

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius:     26px;
  --radius-sm:  16px;
  --shadow:     0 18px 44px -26px rgba(54,41,28,.45);
  --shadow-sm:  0 8px 22px -14px rgba(54,41,28,.4);

  --container:  1200px;
  --ease:       cubic-bezier(.25,.1,.25,1);
  --header-h:   88px;
}

/* ---------- Reset / Base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 4px; }

h1,h2,h3,h4 {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  color: var(--text);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 300; color: var(--gold-2); }
p { text-wrap: pretty; }
strong { color: var(--text); font-weight: 600; }

/* ---------- Layout-Helper ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }
.section--alt { background: var(--champagne); }
.section--cream2 { background: var(--cream-2); }
.center { text-align: center; }
.narrow { max-width: 720px; }
.center.narrow { margin-inline: auto; }
[id] { scroll-margin-top: 104px; }
.no-scroll { overflow: hidden; }

/* Sektion-Label "(LEISTUNGEN)" */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 18px;
}
.eyebrow::before { content: "("; }
.eyebrow::after  { content: ")"; }

.section-title { font-size: clamp(30px, 4.6vw, 52px); }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--text-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15.5px; line-height: 1;
  letter-spacing: .01em; white-space: nowrap;
  transition: transform .25s var(--ease), background-color .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn .ico { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold     { background: var(--gold); color: #2C2114; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-2); color: #fff; }
.btn--dark     { background: var(--espresso); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--dark:hover { background: var(--espresso-2); }
.btn--outline  { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn--outline:hover { border-color: var(--gold-2); color: var(--gold-2); background: rgba(194,160,106,.08); }
.btn--ghost-light { background: rgba(253,251,244,.12); color: #fff; border: 1px solid rgba(253,251,244,.4); backdrop-filter: blur(6px); }
.btn--ghost-light:hover { background: rgba(253,251,244,.22); }
.btn--light    { background: var(--cream-2); color: var(--text); box-shadow: var(--shadow-sm); }
.btn--light:hover { background: #fff; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; justify-content: center;
  padding: 18px 16px;
  pointer-events: none;
}
.header__bar {
  pointer-events: auto;
  width: 100%; max-width: var(--container);
  display: flex; align-items: center; gap: 20px;
  padding: 10px 14px 10px 16px;
  background: rgba(248,241,227,.72);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 6px 20px -14px rgba(54,41,28,.35);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.header.scrolled .header__bar { background: rgba(248,241,227,.94); box-shadow: var(--shadow); }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { width: 46px; height: 46px; border-radius: 12px; object-fit: cover; box-shadow: 0 2px 8px -4px rgba(54,41,28,.4); }
.brand__name { font-family: var(--font-serif); font-size: 22px; color: var(--text); line-height: 1; }
.brand__sub  { display: block; font-family: var(--font-sans); font-size: 9.5px; letter-spacing: .18em;
               text-transform: uppercase; color: var(--text-mute); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-family: var(--font-sans); font-size: 15px; font-weight: 500; color: var(--text);
  position: relative; padding: 6px 2px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--gold-2); transition: right .3s var(--ease);
}
.nav a:hover::after { right: 0; }

.header__actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 999px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after  { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 75% 15%, rgba(120,96,60,.55), transparent 60%),
    linear-gradient(160deg, #4a3b28 0%, #36291c 55%, #241a10 100%);
}
.hero__media video { width: 100%; height: 100%; object-fit: cover; }
/* Standard (Desktop/iPad-quer): 16:9-Hero zeigen, 9:16-Handy- und 3:4-iPad-Video aus */
.hero__video--mobile { display: none; }
.hero__video--ipad { display: none; }
/* iPad-Hochkant-Zeilenumbruch (Abschlusstext) – nur dort sichtbar */
.ipad-br { display: none; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(28,20,12,.82) 0%, rgba(28,20,12,.35) 45%, rgba(28,20,12,.25) 100%);
}
.hero__content { position: relative; z-index: 2; color: #fdfbf4; padding-block: 150px 64px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(253,251,244,.12); border: 1px solid rgba(253,251,244,.32);
  backdrop-filter: blur(6px);
  font-size: 13px; font-weight: 500; letter-spacing: .03em; color: #fdfbf4;
}
.hero__badge .stars { color: #F1C97A; letter-spacing: .05em; }
.hero h1 {
  color: #fff; font-size: clamp(42px, 7.2vw, 92px); line-height: 1.02; max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero h1 em { color: #F0D9A8; }
.hero__sub { margin-top: 22px; max-width: 52ch; font-size: clamp(16px, 1.7vw, 20px); color: rgba(253,251,244,.9); }
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__tags {
  margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(253,251,244,.2);
  display: flex; flex-wrap: wrap; gap: 14px 34px; color: rgba(253,251,244,.85);
  font-size: 14.5px; letter-spacing: .02em;
}
.hero__tags span { display: inline-flex; align-items: center; gap: 9px; }
.hero__tags span::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--gold); }

/* ---------- Trust-Strip ---------- */
.trust { background: var(--espresso); color: var(--cream); }
.trust .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 20px 0; padding-block: 30px; }
.trust__item { flex: 1 1 200px; text-align: center; padding-inline: 16px; position: relative; }
.trust__item + .trust__item::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 38px; background: rgba(253,251,244,.18);
}
.trust__num { font-family: var(--font-serif); font-size: 30px; color: #F0D9A8; line-height: 1; }
.trust__num .stars { font-size: 22px; }
.trust__label { font-size: 13px; letter-spacing: .04em; color: rgba(253,251,244,.75); margin-top: 8px; }

/* ---------- Feature-Grid (Warum Ghazani) – dunkel ---------- */
.dark { background: var(--espresso); color: rgba(253,251,244,.82); }
.dark .eyebrow { color: #E2BE83; }
.dark h2, .dark h3 { color: #fff; }
.dark h2 em { color: #F0D9A8; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px 36px; margin-top: 56px; }
.feature__icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: 18px; }
.feature h3 { font-size: 21px; margin-bottom: 10px; }
.feature p { font-size: 15.5px; color: rgba(253,251,244,.72); }

/* ---------- Leistungen ---------- */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 56px; }
.card {
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.card__body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card__kicker { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-2); }
.card__body h3 { font-size: 26px; }
.card__list { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 9px; }
.card__list li { position: relative; padding-left: 24px; font-size: 15.5px; color: var(--text-soft); }
.card__list li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 11px; height: 7px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ---------- Bild-Platzhalter / Bild-Fläche ---------- */
.media-ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    radial-gradient(130% 100% at 30% 20%, #F3E8D2, transparent 60%),
    linear-gradient(150deg, #EFE3CC 0%, #E4D3B3 60%, #D9C39E 100%);
  color: var(--gold-2);
}
.media-ph::after {
  content: attr(data-label);
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; opacity: .8; padding: 0 18px;
}
.media-ph img, .media-ph video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Ergebnis-CTA ---------- */
.result { text-align: center; }
.result h2 { font-size: clamp(32px,5vw,58px); max-width: 18ch; margin-inline: auto; }
.result p { margin: 22px auto 32px; max-width: 56ch; font-size: 18px; }

/* ---------- Bewertungen ---------- */
/* Festes 2x3-Raster (6 Bewertungen); beim Hover deutlicher Pop nach vorne */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.review {
  position: relative; z-index: 1;
  background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 28px; box-shadow: var(--shadow-sm);
  transform-origin: center center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review:hover { transform: scale(1.18) translateY(-6px); z-index: 30; box-shadow: 0 30px 60px -22px rgba(54,41,28,.55); }
.review__stars { color: var(--gold); letter-spacing: .08em; font-size: 16px; margin-bottom: 12px; }
.review__text { font-family: var(--font-serif); font-size: 17px; line-height: 1.5; color: var(--text); }
.review__meta { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 40px; height: 40px; border-radius: 999px; flex: none;
  background: var(--beige); color: #6b5634; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px;
}
.review__who { font-size: 14px; line-height: 1.3; }
.review__who b { color: var(--text); font-weight: 600; }
.review__who span { color: var(--text-mute); }
.review__src { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-mute); margin-top: 2px; }
.review__src svg { width: 13px; height: 13px; }
/* Touch-Geräte (kein Hover): kein Pop */
@media (hover: none) { .review:hover { transform: none; box-shadow: var(--shadow-sm); } }
/* Raster responsiv */
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- Über uns (Text-Variante) ---------- */
.about-text .lead { margin-inline: auto; }
.about-signature {
  font-family: var(--font-serif); font-style: italic; font-size: clamp(22px, 3vw, 30px);
  color: var(--gold-2); margin-top: 30px;
}

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,4vw,56px); align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 26px; }
.info-block h4 { font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-2); margin-bottom: 10px; }
.info-block p, .hours { font-size: 16px; color: var(--text-soft); }
.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; max-width: 320px; padding: 5px 0; border-bottom: 1px solid var(--line); }
.hours .closed { color: var(--text-mute); }
.contact__buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.note {
  background: var(--cream-2); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 12px; padding: 16px 18px; font-size: 14.5px; color: var(--text-soft);
}

/* Map */
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); background: var(--champagne); }
.map__canvas { position: relative; aspect-ratio: 4/3; min-height: 320px; }
.map__canvas iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__blocked {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 30px;
  background:
    radial-gradient(120% 90% at 70% 20%, #F3E8D2, transparent 60%),
    linear-gradient(150deg, #EFE3CC, #E4D3B3);
  color: var(--text-soft);
}
.map__blocked p { max-width: 36ch; font-size: 14.5px; }
.map__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; }
.map__bar span { font-size: 14px; color: var(--text-soft); }
.map__bar a { font-size: 14px; font-weight: 600; color: var(--gold-2); }

/* ---------- Abschluss-CTA mit Video ---------- */
/* Bereich übernimmt das 16:9-Format des Videos → Video läuft komplett & randlos,
   wird nie oben/unten beschnitten; Text liegt mittig darüber. */
.final { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.final__media { position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #5a4730, #36291c 70%); }
.final__media video, .final__media .media-ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final__overlay { position: absolute; inset: 0; z-index: 1; background: rgba(28,20,12,.62); }
.final__content { position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff; padding-block: clamp(24px,4vw,60px); }
.final__content h2 { color: #fff; font-size: clamp(32px,5.4vw,62px); max-width: 18ch; margin-inline: auto; }
.final__content h2 em { color: #F0D9A8; }
.final__content p { margin: 22px auto 34px; max-width: 50ch; color: rgba(253,251,244,.9); font-size: 18px; }
/* Inline-Video nur fürs Handy – auf Desktop/iPad ausgeblendet */
.final__inline-video { display: none; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--champagne); border-block: 1px solid var(--line); padding-block: 26px; }
.marquee__track { display: flex; width: max-content; gap: 60px; animation: marquee 38s linear infinite; }
.marquee__track span { font-family: var(--font-serif); font-size: clamp(28px,4vw,46px); color: var(--gold-2); white-space: nowrap; opacity: .8; }
.marquee__track span::after { content: "·"; margin-left: 60px; color: var(--beige); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
.footer { background: var(--espresso-2); color: rgba(253,251,244,.72); padding-block: 64px 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand__name { color: #fff; }
.footer__brand p { margin-top: 16px; font-size: 15px; max-width: 34ch; }
.footer h4 { font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: #E2BE83; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer a:hover { color: #fff; }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(253,251,244,.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13.5px; color: rgba(253,251,244,.55); }

/* ---------- WhatsApp Floating-Button ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 95;
  width: 60px; height: 60px; border-radius: 999px;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 16px 36px -8px rgba(37,211,102,.7); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float .wa-tip {
  position: absolute; right: 72px; white-space: nowrap; background: var(--espresso); color: #fff;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-family: var(--font-sans); font-weight: 500;
  opacity: 0; transform: translateX(8px); pointer-events: none; transition: opacity .25s, transform .25s;
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

/* ---------- Cookie-Banner ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 110;
  max-width: 520px; margin-inline: auto;
  background: var(--cream-2); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 24px 60px -20px rgba(54,41,28,.5);
  padding: 22px 24px;
  transform: translateY(140%); transition: transform .5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { font-family: var(--font-serif); font-size: 20px; margin-bottom: 8px; }
.cookie p { font-size: 14px; color: var(--text-soft); }
.cookie p a { color: var(--gold-2); text-decoration: underline; }
.cookie__row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.cookie__row .btn { padding: 12px 22px; font-size: 14px; }

/* ---------- Legal-Seiten ---------- */
.legal { padding-top: calc(var(--header-h) + 40px); }
.legal__wrap { max-width: 800px; }
.legal h1 { font-size: clamp(32px,5vw,52px); margin-bottom: 10px; }
.legal h2 { font-size: 24px; margin: 36px 0 12px; }
.legal h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: var(--text); margin: 22px 0 6px; }
.legal p, .legal li { color: var(--text-soft); font-size: 16px; }
.legal p + p { margin-top: 12px; }
.legal ul { margin: 10px 0 10px 22px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; color: var(--gold-2); font-weight: 600; }
.legal .agb-item { border-top: 1px solid var(--line); padding-top: 18px; margin-top: 22px; }
.legal .agb-item .n { font-family: var(--font-serif); font-size: 22px; color: var(--gold-2); margin-right: 6px; }

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.d1.is-visible { transition-delay: .08s; }
.reveal.d2.is-visible { transition-delay: .16s; }
.reveal.d3.is-visible { transition-delay: .24s; }
.reveal.d4.is-visible { transition-delay: .32s; }

/* Hero-Einzug beim Laden */
.hero__content > * { animation: rise .9s var(--ease) both; }
.hero__content > *:nth-child(1) { animation-delay: .05s; }
.hero__content > *:nth-child(2) { animation-delay: .17s; }
.hero__content > *:nth-child(3) { animation-delay: .29s; }
.hero__content > *:nth-child(4) { animation-delay: .41s; }
.hero__content > *:nth-child(5) { animation-delay: .53s; }
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .feature-grid { grid-template-columns: repeat(2,1fr); gap: 34px 28px; }
  .cards { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .reviews-grid { columns: 2; }
  .contact { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .brand__sub { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream-2); border: 1px solid var(--line); border-radius: 22px;
    padding: 14px; box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all .3s var(--ease);
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 12px 14px; border-radius: 12px; }
  .nav a:hover { background: var(--champagne); }
  .nav a::after { display: none; }
  .header__actions .btn span.lbl { display: none; }
  .header__actions .btn { padding: 12px; }
  .reviews-grid { columns: 1; }
  .trust__item { flex-basis: 45%; }
  .trust__item + .trust__item::before { display: none; }
  .hero__content { padding-block: 130px 48px; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* ===================================================================
   HANDY-ANPASSUNGEN (nur Smartphone, max 600px breit).
   Desktop & iPad bleiben unberührt – alles steht in dieser max-width-Query.
   =================================================================== */
@media (max-width: 600px) {
  /* (1) Obere Leiste schlanker & eleganter */
  .header { padding: 9px 12px; }
  .header__bar { padding: 6px 10px 6px 12px; gap: 10px; }
  .brand img { width: 34px; height: 34px; border-radius: 9px; }
  .brand__name { font-size: 16.5px; }
  .header__actions .btn { padding: 9px; }

  /* (2) Hero-Badge (Sterne · 5,0 · 22+) klein & dezent */
  .hero__badge { font-size: 10.5px; padding: 5px 11px; gap: 6px; margin-bottom: 16px; }
  .hero__badge .stars { font-size: 10px; }

  /* (3) Hero fürs Handy: Höhe richtet sich nach dem Inhalt (wie beim Desktop-Hero); das Video
     füllt diesen Bereich randlos als Hintergrund. So sitzen die Tags bei JEDER Handybreite
     direkt über der Trust-Leiste -> kein brauner Bereich, kein Leerraum. */
  .hero { min-height: 0; }
  .hero__video--desktop { display: none; }
  .hero__media video.hero__video--mobile { display: block; width: 100%; height: 100%; object-fit: cover; }
  /* Inhalt insgesamt weiter nach unten -> oben mehr Bild/Video sichtbar */
  .hero__content { padding-block: 162px 40px; }
  /* Stichpunkte (Tags): IMMER untereinander (nicht nebeneinander), kleinere Schrift,
     enger Zeilenabstand; Linie + Tags etwas tiefer, damit darüber mehr Platz entsteht. */
  .hero__tags { flex-direction: column; font-size: 11.5px; gap: 9px; margin-top: 60px; padding-top: 20px; }
  .hero__tags span::before { width: 5px; height: 5px; }

  /* (4) Trust-Leiste: 3 Werte klein, in EINER Reihe */
  .trust .container { flex-wrap: nowrap; gap: 0; padding-block: 16px; }
  .trust__item { flex: 1 1 0; min-width: 0; padding-inline: 6px; }
  .trust__item + .trust__item::before { display: block; height: 26px; }
  .trust__num { font-size: 17px; }
  .trust__num .stars { font-size: 13px; }
  .trust__label { font-size: 9px; letter-spacing: .01em; line-height: 1.25; margin-top: 4px; }

  /* (5) "Warum Ghazani": 4 Kästchen + Icons kleiner */
  .feature-grid { gap: 24px 18px; margin-top: 36px; }
  .feature__icon { width: 22px; height: 22px; margin-bottom: 11px; }
  .feature h3 { font-size: 16.5px; margin-bottom: 7px; }
  .feature p { font-size: 13px; }

  /* (6) Leistungen: Karten gleich breit, aber flacher (Bild niedriger) */
  .card__media { aspect-ratio: 16 / 10; }

  /* (7) Marquee schmaler & Schrift kleiner */
  .marquee { padding-block: 15px; }
  .marquee__track { gap: 38px; }
  .marquee__track span { font-size: 21px; }
  .marquee__track span::after { margin-left: 38px; }

  /* (8) Bewertungen: 2 pro Reihe, sehr kompakt (alle 6 auf einen Blick) */
  #bewertungen { padding-block: 42px 38px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 24px; }
  .review { padding: 12px 11px; border-radius: 12px; }
  .review__stars { font-size: 11px; margin-bottom: 5px; }
  .review__text { font-size: 11px; line-height: 1.32;
    display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
  .review__meta { margin-top: 8px; gap: 7px; }
  .review__avatar { width: 24px; height: 24px; font-size: 11px; }
  .review__who { font-size: 9.5px; }
  .review__src { font-size: 8px; gap: 3px; margin-top: 1px; }
  .review__src svg { width: 9px; height: 9px; }

  /* (9) Kontakt (Handy): normales Seitenraster wie der Rest der Seite.
     Überschrift bleibt zentriert; alle Inhalte am normalen Container-Rand (gleicher
     Abstand links/rechts wie z. B. die Bewertungen). Adresse links / Telefon rechts,
     Öffnungszeiten über die volle Breite, Hinweistext als normaler Fließtext (kein
     Kasten), Buttons nebeneinander und etwas kleiner. */
  #kontakt .eyebrow, #kontakt .section-title { text-align: center; }
  .contact__info { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 14px; align-items: start; }
  .contact__info > .info-block:nth-child(3),
  .contact__info > .note,
  .contact__info > .contact__buttons { grid-column: 1 / -1; }
  .contact__info > .info-block:nth-child(1) { text-align: left; }    /* Adresse: linker Rand */
  .contact__info > .info-block:nth-child(2) { text-align: right; }   /* Telefon: rechter Rand */
  .contact__info > .info-block:nth-child(3) { margin-top: 8px; }     /* Öffnungszeiten */
  .hours li { max-width: none; }                                     /* Tage links, Uhrzeiten rechts – volle Breite */
  /* Hinweistext: wieder als Kasten (heller/weißer Hintergrund wie zuvor – Kasten-Stil
     wird von der .note-Basis geerbt), Text bleibt linksbündig wie aktuell. */
  .note { text-align: left; }
  /* Buttons nebeneinander, etwas kleiner */
  .contact__buttons { flex-wrap: nowrap; gap: 8px; }
  .contact__buttons .btn { flex: 1 1 0; padding: 10px 10px; font-size: 13px; }
  .contact__buttons .btn .ico { width: 16px; height: 16px; }

  /* (10) Abschluss-CTA: Text/Buttons aus dem Video lösen.
     Das Desktop-Hintergrundvideo wird ausgeblendet; stattdessen läuft das Video
     im Textfluss: Headline + kleiner Text ÜBER, Buttons UNTER dem Video.
     Hintergrund = gleiches Braun wie der Footer (durchgängiger Abschluss). */
  .final { background: var(--espresso); aspect-ratio: auto; }
  .final__media, .final__overlay { display: none; }
  .final__content { position: static; display: block; padding-block: 40px; }
  .final__content h2 { font-size: 27px; line-height: 1.18; }
  .final__content > p { display: none; }   /* Desktop-Untertext aus – wandert ins Video */
  /* Video randlos über die volle Bildschirmbreite (negative Ränder heben das 24px-Container-Padding auf).
     width:auto + aspect-ratio 16/9 => weiterhin kein Zoom/Beschnitt. */
  .final__inline-video { display: block; position: relative; width: auto; aspect-ratio: 16 / 9;
    margin: 22px -24px 4px; border-radius: 0; overflow: hidden; background: var(--espresso); }
  .final__inline-video video { width: 100%; height: 100%; object-fit: cover; }
  /* Untertext auf dem Video entfernt (nur Handy) */
  .final__inline-sub { display: none; }
  .final__content .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 18px; }
  .final__content .hero__cta .btn { justify-content: center; }

  /* (11) Footer: gleiches Braun wie der Video-/Abschlussbereich */
  .footer { background: var(--espresso); padding-block: 40px 26px; }
}

/* ===================================================================
   iPad HOCHKANT (Portrait, 601–1024px). iPad-Quer (Landscape) = wie PC,
   bleibt unberührt. Handy (≤600px) und PC/Laptop ebenfalls unberührt.
   =================================================================== */
@media (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  /* (1) Hero: 3:4-iPad-Video füllt den GANZEN Bildschirm (100svh), randlos – Video UNVERÄNDERT.
     Anordnung: Badge + Titel + Untertitel + Buttons vertikal MITTIG (linksbündig);
     Strich + die 3 Tags ganz nach unten. */
  .hero { min-height: 100svh; align-items: stretch; }
  .hero__video--desktop { display: none; }
  .hero__video--mobile  { display: none; }
  .hero__video--ipad    { display: block; }
  .hero__media video.hero__video--ipad { width: 100%; height: 100%; object-fit: cover; }
  /* Oberer Innenabstand = 100 Basis + 95 (Ausgleich Untertitel-Versatz) + 50 (Badge+Titel
     zusätzlich ein Stück tiefer). Untertitel/Buttons/Tags bleiben dabei an Ort und Stelle. */
  .hero__content { display: flex; flex-direction: column; padding-block: 245px 100px; }
  .hero h1 { font-size: clamp(50px, 8vw, 82px); }                                  /* Titel etwas größer */
  /* Untertitel + Buttons als Paket tiefer; Unterkante der Buttons auf der gewünschten Linie.
     margin-top = 36 Basis + 95 (Paket-Versatz) − 50 (Badge+Titel rücken um 50 nach unten und
     verkürzen den Titel↔Untertitel-Abstand entsprechend). Abstand Badge↔Titel + Buttongröße
     unverändert; Tags bleiben fix (hängen nur an padding-bottom). */
  .hero__sub { font-size: clamp(18px, 2.4vw, 24px); max-width: 42ch; margin-top: 81px; }
  .hero__badge { margin-top: auto; align-self: flex-start; font-size: 15px; }      /* kompakt, etwas größer; Freiraum oben -> Gruppe mittig */
  .hero__badge .stars { font-size: 14px; }
  .hero__tags  { margin-top: auto; flex-wrap: nowrap; gap: 14px 10px; justify-content: space-between; }  /* Strich + alle 3 Tags ganz unten, in EINER Reihe */
  .hero__tags span { white-space: nowrap; }
  /* Tags + Buttons NICHT vergrößern (bleiben wie Basis) */

  /* (2) Leistungen: 3 Karten kleiner & nebeneinander; Abschnitt dadurch kürzer */
  .cards { grid-template-columns: repeat(3, 1fr); max-width: none; gap: 16px; }
  .card__body { padding: 18px; gap: 10px; }
  .card__body h3 { font-size: 20px; }
  .card__kicker { font-size: 11px; }
  .card__list li { font-size: 13.5px; padding-left: 22px; }

  /* (3) Kontakt: Öffnungszeiten rechts NEBEN Adresse & Telefon.
     Linke Spalte = Adresse (oben) über Telefon (darunter); rechte Spalte = Öffnungszeiten.
     Notiz und Buttons bleiben unverändert über die volle Breite darunter. */
  .contact__info { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(24px,4vw,48px); row-gap: 26px; align-items: start; }
  .contact__info > .info-block:nth-child(1) { grid-column: 1; grid-row: 1; }          /* Adresse: links oben */
  .contact__info > .info-block:nth-child(2) { grid-column: 1; grid-row: 2; }          /* Telefon: links darunter */
  .contact__info > .info-block:nth-child(3) { grid-column: 2; grid-row: 1 / span 2; } /* Öffnungszeiten: rechts daneben */
  .contact__info > .note,
  .contact__info > .contact__buttons { grid-column: 1 / -1; }                          /* volle Breite, unverändert */

  /* (4) Abschluss-Text: Zeilenumbruch nach "und" einblenden */
  .ipad-br { display: inline; }
}

/* ===================================================================
   DESKTOP / iPad-quer (ab 941px, Querformat): Hero-Tags exakt spaltenbündig
   ÜBER den drei Trust-Werten ausrichten – 3 gleiche Spalten, jeweils zentriert
   (gleiche Aufteilung wie die Trust-Leiste). Tags bleiben in EINER Reihe.
   Handy (≤600px) und iPad-Hochkant (Portrait) bleiben unberührt.
   =================================================================== */
@media (min-width: 941px) and (orientation: landscape) {
  .hero__tags { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
  .hero__tags span { justify-content: center; }
}
