/* ===== CLYN Beauty – Stylesheet ===== */
:root {
  --bg: #f6f3ec;        /* warm sand */
  --bg-card: #ffffff;
  --cream: #ece7dc;     /* logo cream */
  --ink: #1a1a1a;       /* near-black */
  --ink-soft: #4a4742;
  --line: #e2dccf;
  --accent: #b9926a;    /* warm bronze */
  --accent-soft: #cdb79a;
  --gold: #c8a24a;
  --max: 1180px;
  --r: 22px;
  --r-sm: 14px;
  --hairline: #e7e1d4;
  --shadow: 0 1px 2px rgba(26,26,26,.04), 0 18px 50px -28px rgba(26,26,26,.30);
  --shadow-lift: 0 4px 14px rgba(26,26,26,.06), 0 28px 60px -30px rgba(26,26,26,.40);

  /* iOS-Easing & Timing (Apple-Sprache) */
  --ease-ios: cubic-bezier(.32, .72, 0, 1);
  --ease-ios-back: cubic-bezier(.34, 1.56, .64, 1);
  --dur-fast: 220ms;
  --dur: 360ms;
  --dur-slow: 620ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.06; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 6.8vw, 5.2rem); letter-spacing: -.025em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -.02em; }
h3 { font-size: 1.4rem; }

/* Cormorant-Italic als luxuriöser Display-Akzent (Apple „display-edit") */
.display-edit { font-style: italic; font-weight: 500; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .72rem;
  font-weight: 600; color: var(--accent); margin-bottom: 1.1rem;
}
.eyebrow.light { color: var(--accent-soft); }

/* ===== Apple-Mikrointeraktionen (Utilities) ===== */
.tap-press { transition: transform var(--dur-fast) var(--ease-ios); -webkit-tap-highlight-color: transparent; }
.tap-press:active { transform: scale(.96); transition-duration: 90ms; }
@media (hover: hover) {
  .hover-lift { transition: transform var(--dur) var(--ease-ios), box-shadow var(--dur) var(--ease-ios); }
  .hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
}
.hairline-t { border-top: 1px solid var(--hairline); }
.hairline-b { border-bottom: 1px solid var(--hairline); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.9rem; border-radius: 100px; font-size: .92rem;
  font-weight: 500; letter-spacing: .01em; cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-ios), background var(--dur-fast) var(--ease-ios),
    color var(--dur-fast) var(--ease-ios), box-shadow var(--dur-fast) var(--ease-ios);
  border: 1.5px solid transparent; white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.97); transition-duration: 90ms; }
.btn-dark { background: var(--ink); color: #fff; }
@media (hover: hover) { .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -12px rgba(26,26,26,.55); } }
.btn-dark:active { transform: scale(.97); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
@media (hover: hover) { .btn-ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); } }
.btn-light { background: var(--cream); color: var(--ink); }
@media (hover: hover) { .btn-light:hover { transform: translateY(-2px); background: #fff; } }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,243,236,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled { border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1.5rem; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-family: 'Oswald', 'Inter', sans-serif; font-weight: 600; font-size: 1.5rem; letter-spacing: .12em; }
.brand-sub { font-family: 'Barlow', sans-serif; font-size: .58rem; letter-spacing: .55em; margin-top: 2px; color: var(--ink-soft); padding-left: 2px; }
.nav-links { display: flex; gap: 2rem; margin-left: auto; }
.nav-links a { font-size: .9rem; color: var(--ink-soft); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: .65rem 1.4rem; }
.nav-ig { display: inline-flex; align-items: center; justify-content: center; color: var(--ink-soft); transition: color .2s, transform .2s; }
.nav-ig:hover { color: var(--ink); transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile-Drawer (von rechts) */
.drawer-overlay {
  display: none; position: fixed; inset: 0; z-index: 60;
  background: rgba(26,26,26,.42);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity var(--dur) var(--ease-ios);
}
.drawer-overlay.show { display: block; }
.drawer-overlay.open { opacity: 1; }

.mobile-menu {
  display: none; position: fixed; top: 0; right: 0; bottom: 0; z-index: 70;
  width: min(360px, 86vw);
  flex-direction: column;
  background: var(--bg);
  border-top-left-radius: 26px; border-bottom-left-radius: 26px;
  box-shadow: -24px 0 70px -34px rgba(26,26,26,.55);
  padding: 18px 22px calc(22px + env(safe-area-inset-bottom));
  transform: translateX(100%);
  transition: transform var(--dur) var(--ease-ios);
  overflow-y: auto; overscroll-behavior: contain;
}
.mobile-menu.open { transform: translateX(0); }

.mm-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 2px 2px; }
.mm-brand { flex-direction: column; }
.mm-close {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--bg-card);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer; transition: background .2s, transform .2s;
}
.mm-close:hover { background: var(--cream); }
.mm-close:active { transform: scale(.94); }
.mm-close svg { width: 20px; height: 20px; }

.mm-nav { display: flex; flex-direction: column; gap: 2px; margin-top: 18px; }
.mm-nav a {
  font-size: 1.1rem; color: var(--ink);
  padding: .95rem 1.1rem; border-radius: 16px;
  transition: background .2s, color .2s;
}
.mm-nav a:hover { background: var(--cream); }
.mm-nav a.active { background: var(--ink); color: #fff; font-weight: 500; }

.mm-contact { margin-top: auto; padding-top: 18px; }
.mm-phone {
  display: flex; align-items: center; gap: 12px;
  background: var(--cream); border-radius: 18px;
  padding: 13px 15px; margin-bottom: 12px;
}
.mm-phone-ic {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  background: var(--bg-card); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
}
.mm-phone-ic svg { width: 20px; height: 20px; }
.mm-phone-txt { display: flex; flex-direction: column; line-height: 1.3; }
.mm-phone-txt strong { font-size: 1.02rem; color: var(--ink); }
.mm-phone-txt em { font-style: normal; font-size: .82rem; color: var(--ink-soft); }
.mm-cta { width: 100%; justify-content: center; }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { margin-bottom: 1.6rem; }
.hero-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 560px; margin-bottom: 2.2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero-trust { display: flex; align-items: baseline; gap: .7rem; font-size: .92rem; color: var(--ink-soft); }
.hero-trust .stars { flex-shrink: 0; }
.hero-trust strong { color: var(--ink); }
.hero-trust em { font-style: normal; color: var(--accent); font-weight: 600; }
.trust-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; text-decoration-color: var(--accent-soft); transition: color .2s, text-decoration-color .2s; }
.trust-link:hover { color: var(--accent); text-decoration-color: var(--accent); }
.stars { color: var(--gold); letter-spacing: 2px; }

/* Hero-Slideshow rechts, weich in den Sandton übergehend */
.hero-media {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 50%; z-index: 1; pointer-events: none; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 44%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 44%, #000 100%);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: 50% 42%; background-repeat: no-repeat;
  opacity: 0; transition: none;
}
/* Aktives Foto: sichtbar + sehr langsamer Ken-Burns-Zoom. Der Wechsel selbst
   ist ein Schnitt – so ist immer genau EIN Foto sichtbar, ohne Überblenden. */
.hero-slide.is-active { opacity: .95; animation: hero-zoom 7s linear forwards; }
@keyframes hero-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active { animation: none; transform: none; }
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, transparent 62%, var(--bg) 100%);
}

.hero-deco {
  position: absolute; top: -10%; right: -8%; width: 620px; height: 620px;
  background: radial-gradient(circle at 30% 30%, var(--cream), rgba(236,231,220,0) 68%);
  border-radius: 50%; z-index: 0; pointer-events: none;
}
.hero-deco::after {
  content: ""; position: absolute; inset: 18% 20%; border-radius: 50%;
  border: 1px solid var(--accent-soft); opacity: .4;
}

/* ===== Marquee ===== */
.marquee { background: var(--ink); color: var(--cream); overflow: hidden; padding: 16px 0; }
.marquee-track {
  display: flex; gap: 2.2rem; white-space: nowrap; width: max-content;
  animation: scroll 32s linear infinite;
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; letter-spacing: .03em;
}
.marquee-track span { opacity: .92; }
/* Inhalt ist 2x dupliziert -> -50% entspricht genau einer Kopie -> nahtlose Endlosschleife nach rechts */
@keyframes scroll { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ===== About ===== */
.about { padding: clamp(4rem, 8vw, 7rem) 0; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-visual { display: flex; justify-content: center; }
.about-card {
  width: 100%; max-width: 340px; aspect-ratio: 4/5; border-radius: var(--r);
  background: linear-gradient(160deg, var(--cream), #f3eee4);
  border: 1px solid var(--hairline); box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
  transition: transform var(--dur) var(--ease-ios), box-shadow var(--dur) var(--ease-ios);
}
@media (hover: hover) { .about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); } }
.about-card-logo { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 600; letter-spacing: .14em; }
.about-card-sub { font-size: .7rem; letter-spacing: .55em; color: var(--ink-soft); margin-top: 4px; }
.about-card-line { width: 46px; height: 1px; background: var(--accent); margin: 1.6rem 0; }
.about-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.about-card-role { font-size: .82rem; color: var(--ink-soft); letter-spacing: .04em; margin-top: .2rem; }

/* Foto-Variante der About-Karte – Foto oben, cremefarbener Namensstreifen darunter */
.about-card--photo {
  padding: 0; overflow: hidden; display: block; aspect-ratio: auto;
  background: var(--cream);
}
.about-card--photo img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 14%;
  display: block;
}
.about-card--photo figcaption {
  padding: 1.2rem 1rem 1.4rem; text-align: center;
  display: flex; flex-direction: column; gap: .15rem; background: var(--cream);
}
.about-card--photo .about-card-name { color: var(--ink); font-size: 1.55rem; }
.about-card--photo .about-card-role { color: var(--ink-soft); }
.about-text h2 { margin: .4rem 0 1.3rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.1rem; max-width: 560px; }
.about-points { list-style: none; margin-top: 1.6rem; display: grid; gap: .7rem; }
.about-points li { position: relative; padding-left: 1.8rem; font-size: .96rem; }
.about-points li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%;
}

/* ===== Services ===== */
.services { padding: clamp(4rem, 8vw, 7rem) 0; background: linear-gradient(180deg, var(--bg) 0%, #fbf9f4 9%, #fbf9f4 91%, var(--bg) 100%); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin-bottom: .9rem; }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; }

.services .section-head { margin-bottom: clamp(3.5rem, 7vw, 5.5rem); }
.service-block { margin-bottom: 3rem; text-align: center; }
.price-list { text-align: left; }
.service-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem;
  padding-bottom: .9rem; margin-bottom: 1.2rem; border-bottom: 1.5px solid var(--ink);
  display: inline-flex; align-items: baseline; gap: .7rem;
  cursor: pointer; user-select: none; transition: opacity .2s; scroll-margin-top: 90px;
}
.service-title:hover { opacity: .65; }
.service-title::after {
  content: "+"; font-family: 'Inter', sans-serif; font-size: 1.15rem; font-weight: 400;
  color: var(--accent); transition: transform var(--dur) var(--ease-ios); line-height: 1;
}
.service-block.open .service-title::after { content: "–"; transform: translateY(-1px); }
.price-list {
  list-style: none; display: grid; gap: .2rem;
  max-width: 620px; margin-inline: auto;   /* schmalere Liste → kleinerer Abstand Name↔Preis */
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height var(--dur-slow) var(--ease-ios), opacity var(--dur) var(--ease-ios);
}
.service-block.open .price-list { max-height: 6000px; opacity: 1; }
.price-list li {
  display: flex; align-items: baseline; gap: .6rem; padding: .75rem 0;
  border-bottom: 1px solid var(--line);
}
.pl-name { font-weight: 500; font-size: 1rem; }
.pl-name em { font-style: italic; font-weight: 400; color: var(--accent); font-size: .85rem; margin-left: .3rem; }
.pl-dots { flex: 1; border-bottom: 1px dotted var(--accent-soft); transform: translateY(-4px); min-width: 20px; }
.pl-meta { font-size: .82rem; color: var(--ink-soft); white-space: nowrap; }
.pl-price { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.55rem, 1.25rem + 1.5vw, 1.8rem); font-weight: 600; line-height: 1.05; min-width: 84px; text-align: right; white-space: nowrap; }
.pl-price.note { color: var(--accent); font-style: italic; font-size: 1.1rem; white-space: nowrap; }
.price-note { text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: 1rem; }
.price-list li.pl-note { display: block; border: 0; padding: .9rem .7rem .1rem; font-size: .82rem; font-style: italic; color: var(--ink-soft); line-height: 1.45; }

/* Zwischenüberschrift innerhalb einer Kategorie (z. B. Green Peel) */
.price-list li.pl-subhead { display: block; border: 0; padding: 1.6rem .2rem .4rem; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.35rem; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.pl-subhead .pl-reg { font-family: 'Inter', sans-serif; font-size: .55em; vertical-align: super; color: var(--ink-soft); margin-left: .1em; }
/* Preis-Zeile mit Beschreibung (Name + Text links, Preis + Dauer rechts) */
.price-list li.pl-item { align-items: flex-start; gap: 1.4rem; padding: .95rem 0; }
.pl-item .pl-text { display: flex; flex-direction: column; gap: .3rem; flex: 1 1 auto; min-width: 0; }
.pl-item .pl-desc { font-size: .85rem; color: var(--ink-soft); line-height: 1.5; max-width: 62ch; }
.pl-item .pl-right { display: flex; flex-direction: column; align-items: flex-end; gap: .3rem; flex: 0 0 auto; }
.pl-item .pl-right .pl-meta { font-size: .85rem; }
/* Angebote kaskadieren beim Aufklappen sanft ein (Listen-Reveal).
   --rvi (Reihen-Index) wird pro Eintrag in script.js gesetzt. */
.price-list .pl-item,
.price-list .pl-subhead,
.price-list .pl-note {
  opacity: 0; transform: translateY(10px);
  transition: opacity var(--dur) var(--ease-ios), transform var(--dur) var(--ease-ios);
}
.service-block.open .price-list .pl-item,
.service-block.open .price-list .pl-subhead,
.service-block.open .price-list .pl-note {
  opacity: 1; transform: none;
  transition-delay: calc(var(--rvi, 0) * 45ms);
}
/* „Schließen"-Button am Ende einer aufgeklappten Kategorie */
.price-list li.pl-close-row { display: flex; justify-content: center; border: 0; padding: 1.3rem 0 .3rem; }
.pl-close {
  background: none; border: 1px solid var(--line); color: var(--ink-soft);
  border-radius: 100px; padding: .55rem 1.5rem;
  font-family: 'Inter', sans-serif; font-size: .82rem; letter-spacing: .02em; cursor: pointer;
  transition: background var(--dur-fast) var(--ease-ios), color var(--dur-fast) var(--ease-ios), border-color var(--dur-fast) var(--ease-ios), transform var(--dur-fast) var(--ease-ios);
  -webkit-tap-highlight-color: transparent;
}
.pl-close:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.pl-close:active { transform: scale(.97); }

/* ===== Banner ===== */
.banner { background: var(--ink); color: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0; }
.banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
/* Variante: nur ein zentrierter Button (Schulungs-Seite) */
.banner-inner--center { justify-content: center; }
/* Variante: ohne dunklen Grund, Button weiter oben */
.banner--plain { background: transparent; color: var(--ink); padding-top: 0; }
.banner--plain + .site-footer { border-top: 0; }
/* Heller Text auf dunklem Grund wirkt optisch fetter — daher leichteres Gewicht für die elegante, kontrastreiche Cormorant-Optik */
.banner h2 { color: #fff; margin: .3rem 0 1rem; font-weight: 400; }
.banner h2 .display-edit { font-weight: 400; }
.banner-text { max-width: 620px; color: var(--accent-soft); }

/* ===== Reviews ===== */
.reviews { padding: clamp(4rem, 8vw, 7rem) 0; scroll-margin-top: 90px; }

/* Sprungziele der neuen Nav-Punkte sauber unter dem Sticky-Header */
#schulungen, #ueber-mich { scroll-margin-top: 90px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--hairline); border-radius: var(--r);
  padding: 2.1rem; box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease-ios), box-shadow var(--dur) var(--ease-ios);
}
@media (hover: hover) { .review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); } }
.review-card .stars { font-size: 1rem; display: block; margin-bottom: 1rem; }
.review-card blockquote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; line-height: 1.4;
  color: var(--ink); margin-bottom: 1.2rem;
}
.review-card figcaption { font-size: .85rem; color: var(--ink-soft); }
.review-grid[hidden] { display: none; }
.reviews-more { text-align: center; margin-top: clamp(1.8rem, 4vw, 2.6rem); }

/* ===== Contact ===== */
.contact { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.contact-info h2 { margin: .4rem 0 1rem; }
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.8rem 0 2.4rem; }
.contact-list { list-style: none; display: grid; gap: 1.3rem; }
.contact-list li { display: grid; gap: .2rem; }
.ci-label { text-transform: uppercase; letter-spacing: .2em; font-size: .68rem; color: var(--accent); font-weight: 600; }
.contact-list a { font-size: 1.05rem; transition: color .2s; }
.contact-list a:hover { color: var(--accent); }

.hours-card { padding: 0; margin-bottom: 1.5rem; }
.hours-card h3 { font-size: 1.5rem; margin-bottom: 1.2rem; }
.hours-list { list-style: none; display: grid; gap: .55rem; }
.hours-list li { display: flex; justify-content: space-between; font-size: .95rem; padding-bottom: .55rem; border-bottom: 1px solid var(--line); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .closed { color: var(--ink-soft); }
.hours-list .d-short { display: none; }
.hours-note { font-size: .82rem; color: var(--ink-soft); margin-top: 1rem; }
.map-wrap { border-radius: var(--r); overflow: hidden; border: 1px solid var(--hairline); box-shadow: var(--shadow); height: 260px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2); }

/* Google-Maps Klick-zum-Laden (DSGVO – kein Datentransfer vor dem Klick) */
.map-consent {
  height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: .45rem; padding: 1.4rem; background: var(--bg-card);
}
.map-consent-pin { color: var(--accent); }
.map-consent-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--ink); }
.map-consent-text { font-size: .85rem; color: var(--ink-soft); max-width: 360px; line-height: 1.5; }
.map-consent-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.map-consent-actions { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-top: .55rem; }
.map-consent-actions .btn { padding: .68rem 1.3rem; font-size: .84rem; }

/* Verweis vom Buchungsformular zur Kontakt-Nebenseite */
.booking-more { text-align: center; margin-top: 2rem; color: var(--ink-soft); font-size: .98rem; }
.booking-more a { color: var(--accent); font-weight: 500; transition: color .2s; }
.booking-more a:hover { color: var(--ink); }
/* CTA am Ende der Studio-Seite */
.studio-back { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.studio-cta { padding: clamp(1rem, 3vw, 2rem) 0 clamp(5rem, 11vw, 9rem); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: var(--cream); padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; }
/* Trennlinie, wenn dunkler Banner-CTA direkt vor dem (ebenfalls dunklen) Footer steht */
.banner + .site-footer { border-top: 2px solid rgba(236,231,220,.30); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 2px solid rgba(236,231,220,.30); }
.footer-brand .brand-mark { font-size: 1.7rem; }
.footer-brand .brand-sub { color: var(--accent-soft); }
.footer-brand p { color: var(--accent-soft); margin-top: 1rem; max-width: 320px; font-size: .92rem; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; gap: .7rem; padding-top: .6rem; }
.footer-nav a, .footer-contact a { color: var(--accent-soft); font-size: .92rem; transition: color .2s; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.5rem; font-size: .82rem; color: var(--accent-soft); flex-wrap: wrap; gap: .6rem; }
.footer-legal a:hover { color: #fff; }
.footer-credit { text-align: center; padding-top: 1.25rem; margin-top: 1.25rem; border-top: 1px solid rgba(236,231,220,.12); font-size: .8rem; color: var(--accent-soft); }
.footer-credit a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.footer-credit a:hover { color: #fff; }

/* ===== Online-Buchung CTA ===== */
.booking-band {
  max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); scroll-margin-top: 90px;
}
.bb-head { text-align: center; max-width: 520px; margin: 0 auto 1.8rem; }
.bb-head h2 { margin: .25rem 0 .7rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.bb-head .section-sub { font-size: .96rem; }
.booking-cta-actions { display: flex; justify-content: center; margin-top: .4rem; }
.btn-lg { padding: 1.15rem 2.6rem; font-size: 1rem; }

/* ===== Preis-Zeilen ===== */
.pl-item { padding: .75rem .7rem; margin: 0; border-radius: 12px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity var(--dur-slow) var(--ease-ios), transform var(--dur-slow) var(--ease-ios); }
.reveal.in { opacity: 1; transform: none; }

/* Gestaffeltes Einblenden (Listen & Karten-Grids) – dezenter Fade-up, nacheinander.
   Index pro Kind kommt als --rvi aus script.js (siehe data-stagger). */
[data-stagger] > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease-ios), transform var(--dur-slow) var(--ease-ios);
  transition-delay: calc(var(--rvi, 0) * 80ms);
}
[data-stagger].in > * { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .review-grid { grid-template-columns: 1fr; }
  /* Kontaktdaten & Öffnungszeiten nebeneinander, um vertikalen Platz zu sparen */
  .contact-info, .contact-hours { display: contents; }
  .contact-grid {
    grid-template-columns: calc(50% - 0.55rem) calc(50% - 0.55rem);
    column-gap: 1.1rem; row-gap: 1.6rem;
    align-items: start;
  }
  .contact-intro { grid-column: 1 / -1; grid-row: 1; }
  .contact-list { grid-column: 1; grid-row: 2; align-content: start; min-width: 0; }
  .hours-card { grid-column: 2; grid-row: 2; margin-bottom: 0; min-width: 0; padding: 0 0 0 1rem; }
  .map-wrap { grid-column: 1 / -1; grid-row: 3; min-width: 0; }
  .contact-list a { font-size: .92rem; overflow-wrap: anywhere; }
  .contact-list { gap: 1rem; }
  .hours-card h3 { font-size: 1.3rem; margin-bottom: .75rem; letter-spacing: 0; }
  .hours-list { gap: .35rem; }
  .hours-list li { font-size: .8rem; padding-bottom: .4rem; gap: .35rem; }
  .hours-list li span:last-child { white-space: nowrap; }
  .hours-list .d-full { display: none; }
  .hours-list .d-short { display: inline; }
  .hours-note { font-size: .76rem; }
  /* Footer: Brand oben über volle Breite, Navigation & Angaben nebeneinander */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 2rem; padding-bottom: 1.8rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-nav, .footer-contact { padding-top: 0; }
  .footer-bottom { padding-top: 1.2rem; }
  /* Hero-Foto auf Tablet schmaler & dezenter */
  .hero-media { width: 62%; }
  .hero-slide.is-active { opacity: .75; }
}
@media (max-width: 640px) {
  /* Hero-Foto als ganz feiner Vollflächen-Hauch hinter dem Text */
  .hero-media {
    width: 100%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 100%);
  }
  .hero-slide.is-active { opacity: .32; }
  /* Ring/Kreis-Deko auf dem Handy ausblenden – stört über dem Text */
  .hero-deco::after { display: none; }
  /* "& Ästhetik" kräftiger & lesbarer über dem hellen Foto */
  .hero h1 .display-edit {
    background: linear-gradient(120deg, #8a5e2c 0%, #b8893f 50%, #8a5e2c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 1px 1px rgba(26, 26, 26, .22));
  }
  /* Marquee unter den ersten Viewport schieben – schwarzes Band soll nicht reinlugen */
  .hero { padding-bottom: 5.5rem; min-height: calc(100svh - 88px); }
}
@media (max-width: 600px) {
  /* Buchung auf dem Handy kompakter & etwas schmaler */
  .booking-band { padding: 0 10px; }
  .bb-head { margin-bottom: 1.3rem; }
  .bb-head h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
}
@media (max-width: 520px) {
  .price-list li { flex-wrap: wrap; }
  .pl-dots { display: none; }
  /* Preis + Dauer auf dem Handy in einer Zeile: Dauer links, Preis rechts – mit Abstand */
  .pl-item .pl-right { flex-direction: row; align-items: baseline; width: 100%; justify-content: space-between; gap: 1rem; margin-top: .35rem; }
  .pl-item .pl-right .pl-price { min-width: 0; text-align: right; order: 2; }
  .pl-item .pl-right .pl-meta { width: auto; order: 1; }
  .banner-inner { flex-direction: column; align-items: flex-start; }
  .banner-inner--center { align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  [data-stagger] > * { opacity: 1; transform: none; transition: none; }
  .price-list .pl-item, .price-list .pl-subhead, .price-list .pl-note { transition: none; }
  /* Marquee laeuft bewusst weiter (dekorativ, aria-hidden) – soll dauerhaft rotieren */
  .pkg-dot.active { animation: none; }
  html { scroll-behavior: auto; }
}

/* ===== Rechtsseiten (Impressum / Datenschutz) ===== */
.legal {
  padding: clamp(110px, 16vh, 170px) 0 90px;
  background: var(--bg);
}
.legal-wrap { max-width: 760px; }
.legal .eyebrow { margin-bottom: .8rem; }
.legal h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; line-height: 1.05;
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  color: var(--ink); margin-bottom: 2.2rem;
}
.legal h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-size: 1.5rem; color: var(--ink);
  margin: 2.4rem 0 .7rem;
}
.legal h3 {
  font-size: 1rem; font-weight: 600; color: var(--ink);
  margin: 1.6rem 0 .4rem;
}
.legal p, .legal li {
  color: var(--ink-soft); line-height: 1.75; font-size: 1rem;
  margin-bottom: .9rem;
}
.legal ul { padding-left: 1.2rem; margin-bottom: .9rem; }
.legal li { margin-bottom: .4rem; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--ink); }
.legal strong { color: var(--ink); font-weight: 600; }
.legal .legal-meta { font-size: .9rem; color: var(--ink-soft); margin-top: 2.6rem; opacity: .8; }
.legal hr { border: none; border-top: 1px solid var(--line); margin: 2.4rem 0; }
.legal .btn-ghost { margin-top: 2.4rem; }

/* =========================================================================
   STATISCH – alle Bewegung deaktiviert (hinzugefügt 2026-06-13)
   Friert Scroll-Reveal, Hover-Lift, Tap-Scale, Marquee, Hero-Schweben,
   Gold-Shimmer, Parallax/Tilt/Magnet und Smooth-Scroll ein.
   Strukturelle Transforms (Mobile-Menü, Hamburger, Punkt-Linien) bleiben.
   Zum Reaktivieren: diesen Block entfernen + fx.js wieder einbinden.
   ========================================================================= */
*, *::before, *::after {
  animation: none !important;
  transition: none !important;
}
html { scroll-behavior: auto !important; }

/* Ausnahme vom STATISCH-Block: Der Service-Banner soll dauerhaft nach rechts laufen */
.marquee-track { animation: scroll 32s linear infinite !important; }

/* Scroll-Reveal: Inhalte sofort & dauerhaft sichtbar, keine Einblendung */
.reveal { opacity: 1 !important; transform: none !important; }

/* Hover-/Tap-Bewegungen (Karten- & Button-Lift, Scale) abschalten */
.hover-lift:hover,
.tap-press:active,
.btn:hover, .btn:active,
.btn-dark:hover, .btn-dark:active,
.btn-ghost:hover, .btn-light:hover,
.nav-ig:hover,
.about-card:hover, .review-card:hover, .hours-card:hover,
.mm-close:active {
  transform: none !important;
}

/* Reste der JS-Effekte neutralisieren (Parallax, 3D-Tilt, Magnet, Progressbar) */
.hero-visual, .highlight-visual, .about-visual, [data-fx-parallax],
.fx-magnetic, .fx-tilt { transform: none !important; }
.fx-progress { display: none !important; }
.fx-tilt::after { display: none !important; }


/* ===== Schulungen / Academy ===== */
.training-hero { padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(1.2rem, 3vw, 2rem); text-align: center; }
.training-hero h1 { margin: .1em 0 .55em; }
.training-hero .lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 640px; margin: 0 auto 1.1rem; }
.training-hero p { max-width: 640px; color: var(--ink-soft); margin: 0 auto; }

.training-incl { padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 3.5rem); }
.training-incl h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.4rem; text-align: center; }
.check-list { list-style: none; display: grid; grid-template-columns: auto auto; justify-content: center; column-gap: 3.5rem; row-gap: .75rem; }
.check-list li { position: relative; padding-left: 1.85rem; color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }

.training-packages { padding: 0 0 clamp(3rem, 6vw, 5rem); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; margin-top: 2.2rem; }
.pkg-card { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r); padding: 2.1rem 1.9rem; box-shadow: var(--shadow); }
.pkg-card h3 { font-size: 1.6rem; line-height: 1.1; }
.pkg-desc { color: var(--ink-soft); margin: .55rem 0 1.3rem; font-size: .98rem; }
.pkg-label { text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 600; color: var(--accent); margin-bottom: .75rem; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin: 0 0 1.3rem; }
.pkg-list li { position: relative; padding-left: 1.3rem; color: var(--ink); font-size: .96rem; }
.pkg-list li::before { content: "–"; position: absolute; left: 0; color: var(--accent); }
.pkg-incl { font-size: .86rem; color: var(--ink-soft); font-style: italic; margin-top: auto; padding-top: .3rem; }

/* Punkte-Indikator fürs Karussell (nur Handy sichtbar) */
.pkg-dots { display: none; justify-content: center; gap: .6rem; margin-top: 1.5rem; }
.pkg-dot {
  position: relative; width: 11px; height: 11px; border-radius: 50%;
  border: 1.5px solid var(--accent-soft); background: transparent;
  padding: 0; cursor: pointer; -webkit-tap-highlight-color: transparent;
  transition: background var(--dur-fast) var(--ease-ios), border-color var(--dur-fast) var(--ease-ios);
}
/* kleiner heller Punkt oben – macht die 360°-Drehung sichtbar */
.pkg-dot::before {
  content: ""; position: absolute; top: 1.5px; left: 50%; margin-left: -1.25px;
  width: 2.5px; height: 2.5px; border-radius: 50%; background: var(--bg-card);
  opacity: 0; transition: opacity var(--dur-fast) var(--ease-ios);
}
.pkg-dot.active {
  background: var(--accent); border-color: var(--accent); transform: scale(1.25);
  animation: pkg-dot-spin .6s var(--ease-ios);
}
.pkg-dot.active::before { opacity: 1; }
@keyframes pkg-dot-spin { from { transform: rotate(0) scale(1.25); } to { transform: rotate(360deg) scale(1.25); } }

@media (max-width: 900px) {
  /* Eine Spalte, linksbündig – alle Haken sauber untereinander, Block mittig */
  .check-list { grid-template-columns: 1fr; gap: .7rem; justify-items: start; max-width: 21rem; margin-inline: auto; }

  /* Schulungs-Karten als horizontales Wisch-Karussell */
  .pkg-grid {
    display: flex; grid-template-columns: none; gap: 1rem;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    margin: 2.2rem -24px 0; padding: .4rem 24px .6rem;
    scrollbar-width: none;
  }
  .pkg-grid::-webkit-scrollbar { display: none; }
  .pkg-card { flex: 0 0 84%; scroll-snap-align: center; }
  .pkg-dots { display: flex; }
}
