/* ─────────────────────────────────────────────
   Le Clou · cosmetic artist
   ───────────────────────────────────────────── */

@font-face { font-family: "Marcellus"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/marcellus-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Marcellus"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/marcellus-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Jost"; font-style: normal; font-weight: 300 500; font-display: swap;
  src: url(../fonts/jost-latin.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Jost"; font-style: normal; font-weight: 300 500; font-display: swap;
  src: url(../fonts/jost-latin-ext.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  --cream: #f1eee8;
  --sand: #e7e0d4;
  --paper: #faf8f4;
  --gold: #9a7b35;
  --gold-soft: #b89a5a;
  --ink: #2b2622;
  --ink-soft: #5d554d;
  --dark: #221e1a;
  --line: rgba(43, 38, 34, .14);

  --serif: "Marcellus", "Optima", "Candara", serif;
  --sans: "Jost", "Avenir Next", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(72px, 11vw, 150px);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 300 17px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 1.1em; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; margin: 0 0 .6em; letter-spacing: .01em; }
h2 { font-size: clamp(32px, 4.4vw, 54px); }
h3 { font-size: clamp(22px, 2.2vw, 27px); }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font: 500 12px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }

.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--ink-soft); }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px; border: 1px solid var(--gold); background: var(--gold); color: #fff;
  font: 500 13px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn:hover { background: transparent; color: var(--gold); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.link {
  font: 500 13px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; text-decoration: none;
  color: var(--gold); display: inline-flex; align-items: center; gap: 10px;
}
.link::after { content: "→"; transition: transform .3s var(--ease); }
.link:hover::after { transform: translateX(5px); }

/* ── Header ──────────────────────────────── */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 22px 0;
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { height: 38px; width: auto; transition: height .4s var(--ease); }
.header__logo .logo-gold { display: none; }
.header.is-solid { background: rgba(250, 248, 244, .96); box-shadow: 0 1px 0 var(--line); padding: 12px 0; backdrop-filter: blur(8px); }
.header.is-solid .header__logo img { height: 38px; }
.header.is-solid .logo-white { display: none; }
.header.is-solid .logo-gold { display: block; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav a {
  font: 400 13px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; color: #fff; position: relative; padding: 6px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.nav .btn { padding: 12px 20px; color: #fff; }
.nav .btn::after { display: none; }
.header.is-solid .nav a { color: var(--ink); }
.header.is-solid .nav .btn { color: #fff; }
.header.is-solid .nav .btn:hover { color: var(--gold); }

.burger { display: none; background: none; border: 0; padding: 10px; margin-right: -10px; cursor: pointer; color: #fff; }
.burger span { display: block; width: 26px; height: 1px; background: currentColor; margin: 7px 0; transition: transform .35s var(--ease), opacity .2s; }
.header.is-solid .burger { color: var(--ink); }

@media (max-width: 960px) {
  .burger { display: block; position: relative; z-index: 2; }
  .nav {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 28px;
    background: var(--dark); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
  }
  .nav a { color: #fff !important; font-size: 15px; }
  .nav .btn { margin-top: 12px; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav { opacity: 1; visibility: visible; }
  body.nav-open .burger { color: #fff; }
  body.nav-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .burger span:nth-child(2) { opacity: 0; }
  body.nav-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-open .header { background: transparent; box-shadow: none; }
  body.nav-open .header .logo-white { display: block; }
  body.nav-open .header .logo-gold { display: none; }
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: flex-end; color: #fff; overflow: hidden; background: var(--dark);
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 70%; transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,.5) 0%, rgba(20,17,14,.05) 28%, rgba(20,17,14,.2) 50%, rgba(20,17,14,.85) 100%),
              linear-gradient(90deg, rgba(20,17,14,.45) 0%, rgba(20,17,14,0) 60%);
}
.hero__content { position: relative; z-index: 1; padding-bottom: clamp(56px, 10vh, 110px); }
.hero__title { font-size: clamp(44px, 7vw, 96px); line-height: 1.02; margin-bottom: 26px; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero__claim { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.6; max-width: 520px; margin-bottom: 38px; color: rgba(255,255,255,.88); }
.eyebrow--light { color: #e7d6b0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(56px, 10vh, 110px); z-index: 1;
  writing-mode: vertical-rl; font: 400 11px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.75); text-decoration: none; display: flex; align-items: center; gap: 14px;
}
.hero__scroll::after { content: ""; width: 1px; height: 60px; background: rgba(255,255,255,.6); animation: scrollLine 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes heroZoom { to { transform: scale(1); } }
@keyframes scrollLine { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* ── Intro ───────────────────────────────── */
.section { padding: var(--section) 0; }
.intro { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.intro__media { position: relative; padding: 0 12% 14% 0; }
.intro__media .img-main { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.intro__media .img-small {
  position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 3 / 4; object-fit: cover;
  border: 10px solid var(--paper);
}
.intro__text h2 em { font-style: normal; color: var(--gold); }
.signature { margin-top: 34px; display: flex; align-items: center; gap: 18px; color: var(--ink-soft); font-size: 15px; }
.signature strong { display: block; font: 400 22px/1.2 var(--serif); color: var(--ink); }
@media (max-width: 860px) { .intro { grid-template-columns: 1fr; } .intro__media { max-width: 520px; } }

/* ── Leistungen ──────────────────────────── */
.services { background: var(--cream); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(40px, 6vw, 70px); flex-wrap: wrap; }
.section-head h2 { margin: 0; max-width: 620px; }
.section-head p { max-width: 420px; margin: 0; color: var(--ink-soft); }

.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); }
.card { text-decoration: none; display: flex; flex-direction: column; }
.card__img { overflow: hidden; aspect-ratio: 3 / 4; margin-bottom: 24px; background: var(--sand); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__img img { transform: scale(1.05); }
.card__num { font: 400 13px/1 var(--sans); letter-spacing: .2em; color: var(--gold); margin-bottom: 12px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 18px; }
.card .link { margin-top: auto; }
@media (max-width: 1024px) { .cards { grid-template-columns: repeat(2, 1fr); row-gap: 50px; } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } .card__img { aspect-ratio: 4 / 3; } }

/* ── Feature (Hypoxi / Cosmetics) ────────── */
.feature { display: grid; grid-template-columns: 1.1fr 1fr; min-height: 720px; }
.feature--dark { background: var(--dark); color: #efe9df; }
.feature--dark .lead, .feature--dark p { color: #cbc2b5; }
.feature__media { position: relative; overflow: hidden; min-height: 420px; }
.feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__body { padding: clamp(56px, 8vw, 120px) clamp(24px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.feature__body h2 { max-width: 520px; }
.feature--reverse .feature__media { order: 2; }

.ticks { list-style: none; padding: 0; margin: 10px 0 36px; display: grid; gap: 14px; }
.ticks li { display: flex; gap: 16px; align-items: baseline; }
.ticks li::before { content: ""; flex: 0 0 18px; height: 1px; background: var(--gold-soft); transform: translateY(-5px); }

.feature__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 44px; max-width: 460px; }
.feature__thumbs img { aspect-ratio: 1; object-fit: cover; width: 100%; }

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; min-height: 0; }
  .feature__media { aspect-ratio: 4 / 3; min-height: 0; }
  .feature--reverse .feature__media { order: 0; }
}

/* ── Cosmetics ───────────────────────────── */
.cosmetics { background: var(--cream); }
.cosmetics__grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; grid-template-rows: auto auto; gap: clamp(12px, 1.6vw, 22px); }
.cosmetics__grid figure { margin: 0; overflow: hidden; background: var(--sand); }
.cosmetics__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.cosmetics__grid figure:hover img { transform: scale(1.04); }
.cosmetics__grid .tall { grid-row: span 2; }
.cosmetics__grid .wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.cosmetics__grid .sq { aspect-ratio: 1; }
.cosmetics__text { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 90px); margin-bottom: clamp(40px, 6vw, 70px); align-items: end; }
.cosmetics__text h2 { margin: 0; }
.cosmetics__text p:last-child { margin: 0; }
@media (max-width: 860px) {
  .cosmetics__text { grid-template-columns: 1fr; }
  .cosmetics__grid { grid-template-columns: 1fr 1fr; }
  .cosmetics__grid .tall { grid-row: auto; grid-column: span 2; aspect-ratio: 4 / 5; }
}

/* ── Quote band ──────────────────────────── */
.band { position: relative; color: #fff; text-align: center; padding: clamp(110px, 16vw, 200px) 0; overflow: hidden; background: var(--dark); }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.band blockquote { position: relative; margin: 0 auto; max-width: 820px; font: 400 clamp(26px, 3.6vw, 44px)/1.3 var(--serif); }
.band cite { display: block; margin-top: 26px; font: 500 12px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; font-style: normal; color: #e7d6b0; }

/* ── Studio gallery ──────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: clamp(150px, 19vw, 250px); grid-auto-flow: dense; gap: clamp(10px, 1.4vw, 18px); }
.gallery button { padding: 0; border: 0; margin: 0; background: var(--sand); cursor: zoom-in; overflow: hidden; }
.gallery button.is-tall { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery button:hover img { transform: scale(1.04); }
@media (max-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; } }

.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(20,17,14,.94);
  display: flex; align-items: center; justify-content: center; padding: 60px 16px;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox button { position: absolute; background: none; border: 0; color: #fff; cursor: pointer; font: 300 34px/1 var(--sans); padding: 16px; opacity: .8; }
.lightbox button:hover { opacity: 1; }
.lightbox__close { top: 8px; right: 8px; }
.lightbox__prev { left: 4px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 4px; top: 50%; transform: translateY(-50%); }

/* ── Gutscheine ──────────────────────────── */
.voucher { background: var(--cream); }
.voucher__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.voucher__media { position: relative; }
.voucher__media img { aspect-ratio: 5 / 4; object-fit: cover; width: 100%; }
.voucher__media::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--gold-soft); z-index: 0; pointer-events: none; }
.voucher__media img { position: relative; z-index: 1; }
@media (max-width: 860px) { .voucher__inner { grid-template-columns: 1fr; } .voucher__media { margin-left: 18px; } }

/* ── Kontakt ─────────────────────────────── */
.contact { display: grid; grid-template-columns: 1fr 1fr; background: var(--dark); color: #efe9df; }
.contact__media { position: relative; min-height: 520px; }
.contact__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.contact__body { padding: clamp(56px, 8vw, 120px) clamp(24px, 7vw, 110px); }
.contact__list { list-style: none; padding: 0; margin: 0 0 44px; display: grid; gap: 26px; }
.contact__list small { display: block; font: 500 11px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 8px; }
.contact__list a, .contact__list span { font: 400 clamp(19px, 1.8vw, 23px)/1.4 var(--serif); text-decoration: none; color: #fff; }
.contact__list a:hover { color: #e7d6b0; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 44px; font-size: 16px; }
.hours th, .hours td { text-align: left; font-weight: 300; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.hours td { text-align: right; color: #cbc2b5; }
.contact .actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } .contact__media { min-height: 0; aspect-ratio: 3 / 2; } }

/* ── Footer ──────────────────────────────── */
.footer { background: #1a1714; color: #a79d90; padding: 60px 0 40px; font-size: 14px; }
.footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
.footer img { height: 44px; width: auto; opacity: .9; }
.footer nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; }
.footer__legal { flex-basis: 100%; border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; margin-top: 10px; font-size: 13px; }

/* ── Legal page ──────────────────────────── */
.legal { padding: 170px 0 var(--section); }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(38px, 5vw, 60px); }
.legal h2 { font-size: 26px; margin-top: 2em; }
.legal p { color: var(--ink-soft); }
.legal address { font-style: normal; margin-bottom: 1.4em; }

/* ── Reveal ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

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

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 200; background: #fff; padding: 10px 16px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.legal ul { color: var(--ink-soft); padding-left: 1.2em; margin: 0 0 1.1em; }
.legal li { margin-bottom: .35em; }
.legal h3 { font-size: 20px; margin: 1.6em 0 .5em; }
.legal .stand { font-size: 14px; color: var(--ink-soft); margin-top: 50px; }
.legal .todo { background: #fff3c4; padding: 0 .3em; color: var(--ink); }
.legal table { width: 100%; border-collapse: collapse; margin: 0 0 1.4em; font-size: 15px; }
.legal th, .legal td { text-align: left; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); }
.legal th { font-weight: 500; color: var(--ink); }
.footer__links { flex-basis: 100%; display: flex; flex-wrap: wrap; gap: 8px 26px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; margin-top: 10px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer__links + .footer__legal { border-top: 0; padding-top: 0; margin-top: -8px; }

/* ── Rechtsseiten im dunklen Kontakt-Look ─── */
body.page-legal { background: var(--dark); color: #efe9df; }
.page-legal .legal p, .page-legal .legal ul, .page-legal .legal address { color: #cbc2b5; }
.page-legal .legal .lead { color: #d9d1c5; }
.page-legal .legal strong, .page-legal .legal h1, .page-legal .legal h2, .page-legal .legal h3 { color: #fff; }
.page-legal .legal a { color: #e7d6b0; }
.page-legal .legal a:hover { color: #fff; }
.page-legal .legal .link { color: var(--gold-soft); }
.page-legal .legal .eyebrow { color: var(--gold-soft); }
.page-legal .legal .stand { color: #a79d90; }
.page-legal .legal th { color: #fff; }
.page-legal .legal td { color: #cbc2b5; }
.page-legal .legal th, .page-legal .legal td { border-bottom-color: rgba(255,255,255,.12); }
.page-legal .legal .todo { background: #6b5a2a; color: #fff; }
.page-legal .footer { border-top: 1px solid rgba(255,255,255,.06); }

/* ─────────────────────────────────────────────
   Unterseiten
   ───────────────────────────────────────────── */
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.page-hero {
  position: relative; min-height: 64vh; min-height: 64svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; background: var(--dark);
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,14,.55) 0%, rgba(20,17,14,.1) 35%, rgba(20,17,14,.8) 100%),
              linear-gradient(90deg, rgba(20,17,14,.55) 0%, rgba(20,17,14,0) 65%);
}
.page-hero .wrap { position: relative; z-index: 1; padding-bottom: clamp(44px, 8vh, 90px); padding-top: 140px; }
.page-hero h1 { font-size: clamp(42px, 6.4vw, 84px); line-height: 1.04; margin-bottom: 18px; max-width: 900px; }
.page-hero p { font-size: clamp(17px, 1.5vw, 20px); color: rgba(255,255,255,.88); max-width: 560px; margin: 0; }

.crumbs { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: #fff; }

/* Bild-Text-Reihen */
.row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.row + .row { margin-top: clamp(70px, 10vw, 140px); }
.row__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.row__media.is-wide img { aspect-ratio: 4 / 3; }
.row--reverse .row__media { order: 2; }
.row h2 { font-size: clamp(30px, 3.6vw, 46px); }
@media (max-width: 860px) {
  .row { grid-template-columns: 1fr; }
  .row--reverse .row__media { order: 0; }
  .row__media img { aspect-ratio: 4 / 3; }
}

/* Werte / Merkmale */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 60px); }
.value { border-top: 1px solid var(--line); padding-top: 28px; }
.value__num { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--gold); margin-bottom: 18px; }
.value p { color: var(--ink-soft); font-size: 16px; margin: 0; }
.feature--dark .value, .contact .value { border-top-color: rgba(255,255,255,.14); }
@media (max-width: 860px) { .values { grid-template-columns: 1fr; } }

/* Ablauf */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); counter-reset: step; }
.steps li { counter-increment: step; position: relative; padding-top: 70px; }
.steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; top: 0; left: 0;
  font: 400 40px/1 var(--serif); color: var(--gold);
}
.steps li::after { content: ""; position: absolute; top: 20px; left: 70px; right: 0; height: 1px; background: var(--line); }
.steps h3 { font-size: 22px; margin-bottom: 10px; }
.steps p { font-size: 16px; color: var(--ink-soft); margin: 0; }
.feature--dark .steps p, .dark .steps p { color: #cbc2b5; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Dunkle Sektion */
.dark { background: var(--dark); color: #efe9df; }
.dark p, .dark .lead { color: #cbc2b5; }
.dark .value { border-top-color: rgba(255,255,255,.14); }
.dark .value p { color: #cbc2b5; }
.dark .steps li::after { background: rgba(255,255,255,.14); }
.dark .section-head p { color: #cbc2b5; }

/* FAQ */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 26px 50px 26px 0; position: relative;
  font: 400 clamp(19px, 1.8vw, 23px)/1.35 var(--serif);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font: 300 28px/1 var(--sans); color: var(--gold); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--ink-soft); padding-right: 50px; margin-bottom: 26px; }

/* Produktraster */
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 22px); }
.products figure { margin: 0; overflow: hidden; background: #eeecea; }
.products img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 1.1s var(--ease); }
.products figure:hover img { transform: scale(1.04); }
@media (max-width: 640px) { .products { grid-template-columns: repeat(2, 1fr); } }

/* Abschluss-CTA */
.cta { background: var(--paper); text-align: center; border-top: 1px solid var(--line); }
.cta h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.cta p { max-width: 560px; margin: 0 auto 34px; color: var(--ink-soft); }
.cta .hero__actions { justify-content: center; }

/* Leistungs-Übersicht */
.service-list { display: grid; gap: 0; }
.service-item { display: grid; grid-template-columns: 80px 1fr 1.2fr auto; gap: clamp(20px, 3vw, 44px); align-items: center; padding: 34px 0; border-top: 1px solid var(--line); text-decoration: none; }
.service-item:last-child { border-bottom: 1px solid var(--line); }
.service-item__num { font: 400 30px/1 var(--serif); color: var(--gold); }
.service-item h3 { margin: 0; }
.service-item p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.service-item img { width: 150px; aspect-ratio: 4 / 3; object-fit: cover; }
.service-item:hover h3 { color: var(--gold); }
@media (max-width: 860px) {
  .service-item { grid-template-columns: 50px 1fr; }
  .service-item p { grid-column: 2; }
  .service-item img { display: none; }
}

/* Kontakt-Seite */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.contact-card { background: var(--paper); border: 1px solid var(--line); padding: clamp(28px, 3vw, 40px); text-decoration: none; transition: border-color .3s var(--ease), transform .4s var(--ease); display: block; }
a.contact-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.contact-card small { display: block; font: 500 11px/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.contact-card strong { display: block; font: 400 clamp(20px, 1.9vw, 24px)/1.35 var(--serif); margin-bottom: 10px; }
.contact-card span { color: var(--ink-soft); font-size: 15px; }
@media (max-width: 860px) { .contact-cards { grid-template-columns: 1fr; } }
.hours--light th, .hours--light td { border-bottom-color: var(--line); }
.hours--light td { color: var(--ink-soft); }

/* ── Behandlungen ─────────────────────────── */
.cat { background: var(--paper); padding: clamp(50px, 6vw, 80px) 0; scroll-margin-top: 120px; }
.cat:nth-of-type(even) { background: var(--cream); }
.cta--cream { background: #f3e9d8; border-top: 0; }
.cat__grid { max-width: 820px; }
.cat__side { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 2px solid var(--gold-soft); }
.cat__num { display: block; font: 400 15px/1 var(--sans); letter-spacing: .2em; color: var(--gold); margin-bottom: 16px; }
.cat__side h2 { font-size: clamp(32px, 3.6vw, 48px); margin-bottom: 16px; hyphens: manual; }
.cat__side p { color: var(--ink); font-weight: 400; font-size: 17px; margin: 0; }
.cat__side img { display: none; }

.titem { padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.titem:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.titem__head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.titem__head h3 { margin: 0; font-size: clamp(24px, 2.4vw, 30px); }
.titem__head span { font-size: 13px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.titem p { color: var(--ink); font-weight: 400; font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.titem p:last-child { margin-bottom: 0; }
.tsteps { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tsteps li { font-size: 14px; font-weight: 400; color: var(--ink); background: var(--paper); border: 1px solid var(--gold-soft); padding: 6px 14px; border-radius: 999px; }

.tcols { display: grid; gap: 40px; }
.tlabel { font: 500 13px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.tlist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.tlist li { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 400; color: var(--ink); }
.tlist em { font-style: normal; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-left: 10px; white-space: nowrap; }
.tnote { color: var(--ink); font-weight: 400; font-size: 17px; margin-bottom: 24px; }



.cta--photo { position: relative; overflow: hidden; background: var(--dark); color: #fff; border-top: 0; padding: clamp(110px, 14vw, 180px) 0; }
.cta--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.cta--photo .wrap { position: relative; }
.cta--photo h2 { color: #fff; }
.cta--photo p { color: rgba(255,255,255,.88); }
.cta--photo .eyebrow { color: #e7d6b0; }

/* Centered steps (Hypoxi „Ablauf“) */
.section-head--center { justify-content: center; text-align: center; }
.steps--center li { text-align: center; }
.steps--center li::before { left: 50%; transform: translateX(-50%); }
.steps--center li::after { display: none; }
.steps--center h3 { white-space: nowrap; font-size: clamp(18px, 1.7vw, 22px); }
.section-head--center .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; }
.section--tight { padding: clamp(56px, 6vw, 80px) 0; }
.section--tight .section-head { margin-bottom: clamp(30px, 4vw, 44px); }
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer__tagline { margin: 6px 0 0; display: flex; align-items: center; gap: 14px; font-family: var(--serif); font-style: italic; font-size: 19px; letter-spacing: .03em; color: #d9c7a1; }
.footer__tagline::before { content: ""; width: 28px; height: 1px; background: var(--gold); opacity: .8; }
.footer__quick { display: flex; flex-direction: column; gap: 14px; }
.footer__title { font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: #c9a96e; }
.footer__quick nav { flex-direction: column; gap: 8px; }
.footer .wrap { align-items: flex-start; }
/* Footer bottom bar: © left, legal links right */
.footer__addr { margin: 4px 0 0; font-size: 14px; line-height: 1.7; color: #a79d90; }
.footer__bottom { flex-basis: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 30px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; margin-top: 16px; font-size: 13px; }
.footer__bottom .footer__legal { flex-basis: auto; border: 0; padding: 0; margin: 0; }
.footer__bottom .footer__links { flex-basis: auto; border: 0; padding: 0; margin: 0; gap: 8px 26px; letter-spacing: .02em; text-transform: none; font-size: 13px; }
/* Footer: 3 columns – brand | quick links | contact */
.footer .wrap { display: grid; grid-template-columns: 1fr auto 1fr; column-gap: 40px; row-gap: 30px; align-items: start; }
.footer__quick { justify-self: center; }
.footer__contact { justify-self: end; }
.footer__contact address { font-style: normal; line-height: 1.7; }
.footer__contact a, .footer__contact address { color: #a79d90; }
.footer__bottom { grid-column: 1 / -1; }
@media (max-width: 760px) {
  .footer .wrap { grid-template-columns: 1fr; }
  .footer__quick, .footer__contact { justify-self: start; }
}
.footer__desc { margin: 8px 0 0; max-width: 360px; font-size: 14px; line-height: 1.75; color: #a79d90; }
.footer__bottom { padding-top: 14px; margin-top: 24px; }
.footer__contact { gap: 0; line-height: 1.7; }
.footer__contact .footer__title { margin-bottom: 14px; }
@media (min-width: 761px) { .footer .wrap { grid-template-columns: 1.5fr auto 1fr; } }
.footer__social { display: flex; gap: 14px; margin-top: 14px; }
.footer__social a { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #d9cfc0; transition: border-color .25s, color .25s, background .25s; }
.footer__social a:hover { color: #fff; border-color: var(--gold); background: rgba(201,169,110,.12); }
.footer__contact address { margin-bottom: 1.7em; }
.footer__ic { display: inline-flex; align-items: center; gap: 10px; }
.footer__ic svg { flex: none; color: #c9a96e; }
.footer__bottom { margin-top: 0; }
.footer .wrap { row-gap: 28px; }

/* Startseite: Le Clou Cosmetics Banner */
.promo { padding: 0 0 clamp(70px, 9vw, 120px); background: var(--paper); }
.promo__card { position: relative; display: grid; place-items: center; min-height: clamp(360px, 38vw, 480px); overflow: hidden; background: var(--dark); color: #fff; text-align: center; text-decoration: none; }
.promo__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; transition: transform 1.2s var(--ease); }
.promo__card::after { content: ""; position: absolute; inset: 0; background: rgba(20,17,14,.5); }
.promo__card:hover img { transform: scale(1.04); }
.promo__body { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 18px; max-width: 560px; padding: 50px 24px; }
.promo__body .eyebrow { justify-content: center; }
.promo__body .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; }
.promo__title { font: 400 clamp(34px, 4.6vw, 58px)/1.1 var(--serif); }
.promo__text { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.9); }
.promo__body .btn { margin-top: 8px; }
.promo { padding: 0; }
.promo__card { min-height: clamp(420px, 42vw, 600px); }
/* Footer: 4 columns – brand | quick links | contact | partner emblems */
@media (min-width: 761px) {
  .footer .wrap { grid-template-columns: 1.4fr auto auto 1fr; column-gap: clamp(40px, 6vw, 90px); }
  .footer__quick, .footer__contact { justify-self: start; }
}
.footer__partner { justify-self: end; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.footer__partner img { height: 64px; width: auto; }
.footer__partner:empty { min-height: 1px; }
@media (max-width: 760px) { .footer__partner { justify-self: start; } .footer__partner:empty { display: none; } }
.footer__partner { flex-direction: column; align-items: flex-start; flex-wrap: nowrap; gap: 14px; }
.footer__partner img { width: 200px; height: 200px; border-radius: 50%; opacity: 1; box-shadow: 0 6px 24px rgba(0,0,0,.35); }
.footer__partner img { width: 150px; height: 150px; }
@media (min-width: 761px) { .footer .wrap { grid-template-columns: 1.6fr auto auto .6fr; } }

/* Startseite: Studio-Teaser (gespiegeltes Intro) */
.studio-teaser { background: var(--cream); }
.intro--rev { grid-template-columns: 1.05fr 1fr; }
.intro--rev .intro__media { padding: 0 0 14% 12%; }
.intro--rev .intro__media .img-small { right: auto; left: 0; border-color: var(--cream); }
@media (max-width: 860px) { .intro--rev { grid-template-columns: 1fr; } .intro--rev .intro__media { order: -1; } }

/* Studio-Teaser: Bild-Mosaik */
.st-mosaic {
  display: grid; isolation: isolate;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 56px 1fr 1fr 56px;
  gap: 14px; height: clamp(460px, 46vw, 640px);
}
.st-mosaic figure { margin: 0; overflow: hidden; position: relative; }
.st-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.st-mosaic figure:hover img { transform: scale(1.05); }
.st-mosaic__a { grid-column: 1; grid-row: 1 / 4; overflow: visible !important; }
.st-mosaic__a img { position: relative; z-index: 1; }
.st-mosaic__a::before {
  content: ""; position: absolute; inset: 22px 22px -22px -22px;
  border: 1px solid var(--gold); z-index: 0; pointer-events: none;
}
.st-mosaic__b { grid-column: 2; grid-row: 2 / 3; }
.st-mosaic__c { grid-column: 2; grid-row: 3 / 5; }
.st-mosaic__c img { object-position: 50% 30%; }
@media (max-width: 860px) {
  .st-mosaic { height: 118vw; max-height: 620px; gap: 10px; grid-template-rows: 36px 1fr 1fr 36px; margin: 0 0 0 16px; }
  .st-mosaic__a::before { inset: 14px 14px -14px -14px; }
}
.st-mosaic__a:hover img { transform: none; }
.st-mosaic, .st-mosaic figure { min-width: 0; min-height: 0; }
@media (max-width: 860px) { .intro--rev { grid-template-columns: minmax(0, 1fr); } }

/* Studio-Teaser: Slideshow */
.intro--slider { grid-template-columns: .85fr 1.15fr; }
.slider { position: relative; min-width: 0; }
.slider::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px;
  border: 1px solid var(--gold); pointer-events: none;
}
.slider__frame { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.slider__frame figure { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 1.4s ease; }
.slider__frame figure.is-active { opacity: 1; }
.slider__frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 7s ease-out; }
.slider__frame figure.is-active img { transform: scale(1); }
.slider__bar {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; gap: 18px;
  background: var(--cream); padding: 16px 0 0 0; width: min(100%, 360px);
}
.slider__count { font-size: 13px; letter-spacing: .12em; color: var(--ink-soft); white-space: nowrap; }
.slider__count b { font-weight: 500; color: var(--ink); }
.slider__progress { flex: 1; height: 1px; background: rgba(0,0,0,.15); position: relative; overflow: hidden; }
.slider__progress i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--gold); }
.slider__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ink); background: transparent;
  color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: background .3s, color .3s;
}
.slider__btn:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 860px) {
  .intro--slider { grid-template-columns: minmax(0, 1fr); }
  .slider { margin-right: 14px; }
  .slider::before { inset: 14px -14px -14px 14px; }
  .slider__bar { width: 100%; padding-right: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .slider__frame figure, .slider__frame img { transition: none; }
}
.slider::before { content: none; }
.slider__stage { position: relative; isolation: isolate; }
.slider__stage::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px; z-index: -1;
  border: 1px solid var(--gold); pointer-events: none;
}
.slider__bar { position: static; width: 100%; background: none; padding: 0; margin-top: 44px; }
@media (max-width: 860px) {
  .slider__stage::before { inset: 14px -14px -14px 14px; }
  .slider__bar { margin-top: 32px; }
}

/* Startseite: Über mich – dunkles Oliv-Braun als Übergang zum Cosmetics-Banner */
.about-dark {
  background: linear-gradient(180deg, #3b3a2c 0%, #2e2820 100%);
  color: #e9e2d6;
}
.about-dark h2 { color: #f6f1e8; }
.about-dark .intro__text h2 em { color: #c9a96e; }
.about-dark .eyebrow { color: #c9a96e; }
.about-dark .eyebrow::before { background: #c9a96e; }
.about-dark .lead { color: #efe8dc; }
.about-dark p { color: #cfc6b8; }
.about-dark .intro__media .img-small { border-color: #37342a; }
.about-dark .btn--ghost { color: #f6f1e8; border-color: #c9a96e; }
.about-dark .btn--ghost:hover { background: #c9a96e; color: #221e1a; border-color: #c9a96e; }

/* Startseite: Kontaktformular (dunkel, Übergang zum Banner) */
.cform-sec { background: #2e2820; color: #cfc6b8; padding-top: 0; }
.cform-wrap {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 110px); align-items: start;
  border-top: 1px solid rgba(201,169,110,.3); padding-top: var(--section);
}
.cform__intro h2 { color: #f6f1e8; }
.cform__intro h2 em { font-style: normal; color: #c9a96e; }
.cform__intro .eyebrow { color: #c9a96e; }
.cform__intro .lead { color: #efe8dc; margin-bottom: 28px; }
.cform__intro .footer__ic { display: flex; align-items: center; gap: 10px; color: #e9e2d6; text-decoration: none; line-height: 2; }
.cform__intro .footer__ic svg { color: #c9a96e; }
.cform { display: grid; gap: 26px; }
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 32px; }
.cform__field { display: grid; gap: 8px; }
.cform__field > span { font: 500 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: #c9a96e; }
.cform__field input, .cform__field select, .cform__field textarea {
  width: 100%; font: 300 16px/1.5 var(--sans); color: #f6f1e8;
  background: transparent; border: 0; border-bottom: 1px solid rgba(233,226,214,.3); border-radius: 0;
  padding: 8px 0; outline: none; transition: border-color .3s;
  -webkit-appearance: none; appearance: none;
}
.cform__field select { cursor: pointer; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%23c9a96e' stroke-width='1.4'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 4px center; }
.cform__field select option { color: #221e1a; }
.cform__field textarea { resize: vertical; min-height: 110px; }
.cform__field input:focus, .cform__field select:focus, .cform__field textarea:focus { border-bottom-color: #c9a96e; }
.cform__check { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.6; color: #b9b0a2; cursor: pointer; }
.cform__check input { accent-color: #c9a96e; width: 18px; height: 18px; margin-top: 3px; flex: none; }
.cform__check a { color: #e9e2d6; }
.cform__foot { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cform__note { font-size: 13px; color: #9d9486; margin: 0; }
.cform__error { color: #e7b9a0; font-size: 14px; margin: 0; }
@media (max-width: 860px) {
  .cform-wrap { grid-template-columns: minmax(0, 1fr); }
  .cform__row { grid-template-columns: minmax(0, 1fr); }
}

/* Über mich jetzt in Creme; Formular mit eigenem Abstand */
.about-cream { background: var(--cream); }
.about-cream .intro__media .img-small { border-color: var(--cream); }
.cform-sec { padding-top: var(--section); }
.cform-wrap { border-top: 0; padding-top: 0; }
.about-cream { background: #f5ecdd; }
.about-cream .intro__media .img-small { border-color: #f5ecdd; }
.cform-sec { padding: clamp(36px, 4vw, 50px) 0; }
.about-cream { padding-bottom: clamp(40px, 5vw, 64px); }
.studio-teaser { padding-bottom: clamp(40px, 5vw, 64px); }
.about-cream { padding-top: clamp(40px, 5vw, 64px); }
.about-cream { padding-bottom: calc(clamp(40px, 5vw, 64px) - 10px); } /* kleines Bild hat 10px Rahmen in Hintergrundfarbe */

/* Startseite: überall gleicher Abstand oben und unten */
.home { --home-gap: clamp(40px, 5vw, 64px); }
.home .section { padding: var(--home-gap) 0; }
/* Abschnitte mit kleinem, gerahmtem Bild unten: 10px Rahmen ausgleichen */
.home #studio, .home #ueber-mich { padding-bottom: calc(var(--home-gap) - 10px); }
.promo__card { min-height: clamp(280px, 26vw, 380px); }

/* Studio und Über mich: weißer Hintergrund wie der Willkommen-Abschnitt */
.studio-teaser, .about-cream { background: var(--paper); }
.about-cream .intro__media .img-small { border-color: var(--paper); }

/* Homepage: feine goldene Trennlinie mit Raute zwischen Willkommen, Studio und Über mich */
.home .studio-teaser, .home #ueber-mich { position: relative; }
.home .studio-teaser::before, .home #ueber-mich::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1100px, calc(100% - 48px)); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,123,53,.55) 20%, rgba(154,123,53,.55) 80%, transparent);
}
.home .studio-teaser::after, .home #ueber-mich::after {
  content: ""; position: absolute; top: 0; left: 50%; width: 9px; height: 9px;
  background: var(--paper); border: 1px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.home { --home-gap: clamp(56px, 7vw, 96px); }

/* Behandlungen: Kategorie-Überschriften und Dauer im Gold der Trennlinie */
.cat__side h2, .titem__head span { color: var(--gold-soft); }

/* Behandlungen als Karussell */
.tcar-sec { background: var(--paper); }
.tcar__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 10px; margin-bottom: clamp(30px, 4vw, 48px); }
.tcar__tab {
  font: 500 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  background: none; border: 1px solid var(--line); border-radius: 999px; padding: 12px 20px; cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.tcar__tab:hover { border-color: var(--gold-soft); }
.tcar__tab[aria-current="true"] { background: var(--gold-soft); border-color: var(--gold-soft); color: #fff; }
.tcar__track { display: flex; overflow: hidden; transition: height .5s var(--ease); outline: none; }
.tcar__slide {
  flex: 0 0 100%; min-width: 0; align-self: flex-start;
  display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 72px); align-items: start;
  transition: transform .7s var(--ease), opacity .7s var(--ease); opacity: .25;
}
.tcar__slide.is-active { opacity: 1; }
.tcar__media { position: relative; isolation: isolate; margin: 0 24px 24px 0; }
.tcar__media::before { content: ""; position: absolute; inset: 24px -24px -24px 24px; border: 1px solid var(--gold-soft); z-index: -1; }
.tcar__media img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.tcar__content .cat__side { margin-bottom: 30px; }
.tcar__bar { margin-top: clamp(36px, 4vw, 52px); }
.tcar-sec + .cta, .tcar-sec + section { border-top: 0; }
.no-js .tcar__track { flex-direction: column; gap: 60px; }
.no-js .tcar__slide { opacity: 1; }
.no-js .tcar__bar, .no-js .tcar__tabs { display: none; }
@media (max-width: 860px) {
  .tcar__slide { grid-template-columns: 1fr; gap: 28px; }
  .tcar__media { margin: 0 14px 14px 0; }
  .tcar__media::before { inset: 14px -14px -14px 14px; }
  .tcar__media img { aspect-ratio: 16 / 10; }
  .tcar__tab { padding: 10px 14px; font-size: 11px; letter-spacing: .12em; }
}
@media (prefers-reduced-motion: reduce) { .tcar__slide, .tcar__track { transition: none; } }
.tcar__bar .slider__progress i { transition: width .6s var(--ease); }
.tcar { scroll-margin-top: 110px; }
/* Karussell ohne Bilder: nur die Behandlungen, schmal und mittig */
.tcar { max-width: 820px; margin: 0 auto; }
.tcar__slide { display: block; }
@media (min-width: 1000px) { .tcar__tabs { margin-left: -100px; margin-right: -100px; } }
.tcar__content .cat__side { text-align: center; }
.tcar-sec { padding: clamp(36px, 4vw, 56px) 0 clamp(56px, 6vw, 80px); }
.tcar-sec + .cta--cream { padding: clamp(48px, 5vw, 72px) 0; }
.tcar-sec { padding-bottom: clamp(40px, 4vw, 56px); }
/* Karussell: alles mittig */
.tcar__slide { text-align: center; }
.tcar__slide .titem__head { flex-direction: column; align-items: center; gap: 8px; }
.tcar__slide .tsteps { justify-content: center; }
.tcar__slide .tlist em { margin-left: 8px; }
.section--faq { padding: clamp(48px, 5vw, 72px) 0; }
.section--faq .section-head { margin-bottom: clamp(24px, 3vw, 36px); }
/* Hypoxi FAQ: Überschrift und Fragen mittig */
.section--faq .section-head { justify-content: center; text-align: center; }
.section--faq .section-head .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; }
.section--faq .faq { margin: 0 auto; text-align: center; }
.section--faq .faq summary { padding-left: 44px; padding-right: 44px; }
.section--faq .faq details p { padding: 0 44px; }

/* Footer: alle Schrift weiß */
.footer, .footer a, .footer address, .footer__desc, .footer__addr, .footer__title,
.footer__tagline, .footer__legal, .footer__contact a, .footer__contact address, .footer__social a { color: #fff; }
.footer a:hover, .footer__contact a:hover { color: #c9a96e; }
.footer__social a:hover { color: #fff; }
/* FAQ: Fragen kleiner und ruhiger */
.faq summary { font-size: clamp(17px, 1.35vw, 19px); padding-top: 20px; padding-bottom: 20px; }
.faq summary::after { font-size: 22px; }
.faq details p { font-size: 15px; margin-bottom: 22px; }
.section--faq .faq { max-width: 720px; }
.section--faq .section-head h2 { font-size: clamp(28px, 2.8vw, 38px); }
.section--methode { padding: clamp(48px, 5vw, 72px) 0; }
/* Hypoxi 3-Säulen-Prinzip: alles mittig, ohne Nummern */
.section--saeulen .section-head { justify-content: center; text-align: center; }
.section--saeulen .section-head .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; }
.section--saeulen .value { text-align: center; }
div.promo__card:hover img { transform: none; }
.gift { padding: clamp(56px, 6vw, 88px) 0; }
.gift .hero__actions { margin-top: 30px; }
.gift .row { align-items: stretch; }
.gift .row__media { position: relative; }
.gift .row__media img { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; }
@media (max-width: 860px) {
  .gift .row__media img { position: static; aspect-ratio: 4 / 3; }
}

/* Kontakt: ein kompakter Abschnitt */
.kontakt { padding: clamp(56px, 6vw, 88px) 0; }
.kinfo { list-style: none; margin: 28px 0 32px; padding: 0; border-top: 1px solid var(--line); }
.kinfo li { display: grid; grid-template-columns: 110px 1fr; gap: 16px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line); }
.kinfo small { font: 500 11px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.kinfo a, .kinfo span { font-size: 17px; color: var(--ink); text-decoration: none; line-height: 1.5; }
.kinfo a:hover { color: var(--gold); }
.kinfo__note { margin-top: 22px; font-size: 13px; color: var(--ink-soft); }
.kinfo__note a { color: var(--gold); }
@media (max-width: 480px) { .kinfo li { grid-template-columns: 1fr; gap: 6px; } }
/* Kontakt: Bild genau so hoch wie der Text */
.kontakt .row { align-items: stretch; }
.kontakt .row__media { position: relative; }
.kontakt .row__media img { position: absolute; inset: 0; height: 100%; aspect-ratio: auto; }
@media (max-width: 860px) {
  .kontakt .row__media img { position: static; aspect-ratio: 4 / 3; }
}

/* Kontakt: Text links, Karte rechts (lädt erst nach Klick) */
.kontakt .row { align-items: stretch; }
.kmap { position: relative; min-height: 420px; background: var(--cream); border: 1px solid var(--line); overflow: hidden; }
.kmap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.25) sepia(.12); }
.kmap__consent { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; padding: 36px; text-align: center; }
.kmap__consent svg { color: var(--gold); }
.kmap__consent strong { font: 400 20px/1.4 var(--serif); color: var(--ink); }
.kmap__consent p { max-width: 360px; margin: 0; font-size: 13px; line-height: 1.6; color: var(--ink-soft); }
.kmap__consent a { color: var(--gold); }
@media (max-width: 860px) { .kmap { min-height: 340px; } }
.kinfo { margin-bottom: 0; }

/* ── Sprachumschalter ────────────────────── */
.nav .lang { display: flex; align-items: center; gap: 12px; margin-left: -4px; }
.nav .lang a { font-size: 11px; letter-spacing: .12em; padding: 6px 0; opacity: .6; }
.nav .lang a + a::before { content: "/"; position: absolute; left: -9px; opacity: .5; }
.nav .lang a:hover, .nav .lang a[aria-current="true"] { opacity: 1; }
.nav .lang a::after { display: none; }
@media (max-width: 960px) {
  .nav .lang { margin: 8px 0 0; gap: 22px; }
  .nav .lang a { font-size: 14px; }
  .nav .lang a + a::before { left: -14px; }
}
.footer .footer__legal .footer__maker { display: inline-block; height: 17px; width: auto; max-width: none; opacity: 1; vertical-align: -4px; margin: 0 0 0 4px; }
.footer__bottom .footer__legal { white-space: nowrap; }
/* Foto-CTA gleich schmal wie das Le Clou Cosmetics Banner */
.cta--photo { display: grid; place-items: center; min-height: clamp(280px, 26vw, 380px); padding: 50px 0; }
.cta--photo .wrap { width: 100%; }
.cta--photo h2 { margin-bottom: 14px; }
.cta--photo p { margin-bottom: 26px; }
/* Mobile: kürzere Header */
@media (max-width: 640px) {
  .hero { min-height: 0; padding-top: 150px; }
  .hero__content { padding-bottom: 44px; }
  .hero__title { margin-bottom: 18px; }
  .hero__claim { margin-bottom: 26px; }
  .page-hero { min-height: 360px; }
  .page-hero .wrap { padding-top: 150px; padding-bottom: 36px; }
}
/* Mobile: erster Abschnitt – zuerst Text, dann Bild */
@media (max-width: 860px) { #studio .intro__media, #ueber-mich .intro__media { order: 2; } }
/* Mobile: Footer – Quick Links und Kontakt nebeneinander */
@media (max-width: 760px) {
  .footer .wrap { grid-template-columns: 1fr auto; column-gap: 28px; grid-template-areas: "logo partner" "desc desc" "contact quick" "social quick" "bottom bottom"; }
  .footer__brand { display: contents; }
  .footer__brand > a { grid-area: logo; }
  .footer__desc { grid-area: desc; margin-top: -18px; }
  .footer__social { grid-area: social; margin-top: -10px; }
  .footer__partner { align-self: start; justify-self: start; }
  .footer__social { margin-top: -14px; }
  .footer__quick { grid-area: quick; }
  .footer .footer__contact { grid-area: contact; }
  .footer__partner { grid-area: partner; }
  .footer__bottom { grid-area: bottom; }
  .footer__partner img { width: 80px; height: 80px; box-shadow: 0 4px 14px rgba(0,0,0,.3); }
}
/* Mobile: backdrop-filter würde das fixierte Menü im Header einsperren */
@media (max-width: 960px) {
  .header.is-solid { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
/* Mobile-Footer: Hypoxi-Siegel unter den Social-Icons */
@media (max-width: 760px) { .footer__social { margin-top: -6px; } .footer__partner { margin-top: -10px; } }
/* Mobile-Footer: mehr Abstand zwischen Logo und Text */
@media (max-width: 760px) { .footer__desc { margin-top: 2px; } }
/* Mobile-Footer: Hypoxi-Siegel rechts neben dem Logo */
@media (max-width: 760px) { .footer__partner { margin-top: 0; align-self: center; justify-self: end; } }
@media (max-width: 760px) { .footer__desc { margin-top: -12px; } }
@media (max-width: 760px) { .footer__partner { align-self: start; margin-top: -14px; } }
@media (max-width: 760px) { .footer__partner { margin-top: -34px; } }
/* Mobile-Footer: Social-Icons unter den Quick Links */
@media (max-width: 760px) {
  .footer__social { align-self: start; justify-self: start; margin-top: -8px; gap: 10px; }
  .footer .footer__contact address { margin-bottom: .6em; }
  .footer__social a { width: 40px; height: 40px; }
}
/* Mobile-Menü: gut sichtbares X zum Schließen, Logo bleibt sichtbar */
@media (max-width: 960px) {
  body.nav-open .burger, body.nav-open .header.is-solid .burger { z-index: 3; color: #fff; }
  body.nav-open .burger span { height: 2px; width: 28px; }
  body.nav-open .header__logo { position: relative; z-index: 3; }
}
/* Mobile-Footer: Copyright-Zeile näher an die Icons */
@media (max-width: 760px) { .footer__bottom { margin-top: -12px; } }

/* ===== Ganze Website: Texte zentriert ===== */
main { text-align: center; }
main p, main h1, main h2, main h3, main blockquote, main ul, main ol, main address,
.hero__claim, .page-hero p, .section-head h2, .section-head p, .feature__body h2 { margin-left: auto; margin-right: auto; }
main .eyebrow { justify-content: center; }
main .eyebrow::after { content: ""; width: 34px; height: 1px; background: currentColor; }
.hero__content, .page-hero .wrap { text-align: center; }
.hero__actions, .contact .actions, .signature, .tsteps, .ticks li { justify-content: center; }
.section-head { flex-direction: column; align-items: center; justify-content: center; }
.feature__body { align-items: center; }
.titem__head { justify-content: center; flex-direction: column; align-items: center; gap: 4px; }
.legal ul, .legal ol { list-style-position: inside; padding-left: 0; }
.ticks { padding-left: 0; }
/* Mobile: „cosmetic artist · St. Pauls“ in einer Zeile */
@media (max-width: 640px) {
  .hero .eyebrow { white-space: nowrap; letter-spacing: .16em; gap: 10px; font-size: 11px; }
  .hero .eyebrow::before, .hero .eyebrow::after { width: 22px; }
}
/* Impressum, Datenschutz, Cookies: linksbündig */
main.legal { text-align: left; }
main.legal .eyebrow { justify-content: flex-start; }
main.legal .eyebrow::after { display: none; }
main.legal p, main.legal h1, main.legal h2, main.legal h3, main.legal ul, main.legal ol, main.legal address { margin-left: 0; margin-right: 0; }
main.legal ul, main.legal ol { list-style-position: outside; padding-left: 1.2em; }
/* Startseiten-Header: linksbündig (Handy und Desktop) */
.hero .hero__content { text-align: left; }
.hero .eyebrow { justify-content: flex-start; }
.hero .eyebrow::after { display: none; }
.hero .hero__claim, .hero h1 { margin-left: 0; margin-right: 0; }
.hero .hero__actions { justify-content: flex-start; }
/* Unterseiten-Header: Desktop linksbündig, Handy zentriert */
.page-hero .wrap { text-align: left; }
.page-hero h1, .page-hero p { margin-left: 0; margin-right: 0; }
.page-hero .eyebrow { justify-content: flex-start; }
.page-hero .eyebrow::after { display: none; }
@media (max-width: 760px) {
  .page-hero .wrap { text-align: center; }
  .page-hero h1, .page-hero p { margin-left: auto; margin-right: auto; }
  .page-hero .eyebrow { justify-content: center; }
  .page-hero .eyebrow::after { display: block; }
}

/* Hypoxi: 3-Säulen-Prinzip, futuristisch */
@property --hx-a { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
.section--saeulen { position: relative; overflow: hidden; isolation: isolate; }
.section--saeulen::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(231,214,176,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(231,214,176,.06) 1px, transparent 1px);
  background-size: 56px 56px; -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%); mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
  animation: hxGrid 18s linear infinite; }
.section--saeulen::after { content: ""; position: absolute; z-index: -1; pointer-events: none; left: 50%; top: 38%; width: min(900px, 120vw); aspect-ratio: 1; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,169,110,.22), rgba(201,169,110,.06) 40%, transparent 68%); filter: blur(10px); animation: hxBreath 7s ease-in-out infinite; }
@keyframes hxGrid { to { background-position: 0 56px, 56px 0; } }
@keyframes hxBreath { 50% { opacity: .55; transform: translate(-50%, -50%) scale(1.08); } }

.hx { max-width: 1100px; margin: 0 auto; }
.hx__core { position: relative; width: 150px; height: 150px; margin: 0 auto; display: grid; place-items: center; }
.hx__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(231,214,176,.18); }
.hx__ring::before { content: ""; position: absolute; inset: -1px; border-radius: 50%; padding: 1px;
  background: conic-gradient(from var(--hx-a), transparent 0 62%, #e7d6b0 88%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: hxSpin 4s linear infinite; }
.hx__ring--2 { inset: 16px; } .hx__ring--2::before { animation-duration: 6s; animation-direction: reverse; }
.hx__ring--3 { inset: 32px; background: radial-gradient(circle, rgba(201,169,110,.28), rgba(26,23,20,.9) 70%); box-shadow: 0 0 40px rgba(201,169,110,.35), inset 0 0 20px rgba(231,214,176,.15); }
.hx__ring--3::before { animation-duration: 3s; }
.hx__label { position: relative; font-family: var(--serif); font-size: 15px; letter-spacing: .3em; padding-left: .3em; text-transform: uppercase; color: #fff; text-shadow: 0 0 14px rgba(231,214,176,.8); }
@keyframes hxSpin { to { --hx-a: 360deg; } }

.hx__links { display: block; width: 100%; height: 70px; overflow: visible; }
.hx__links path { fill: none; stroke: rgba(231,214,176,.22); stroke-width: 1; vector-effect: non-scaling-stroke; }
.hx__links .hx__flow { stroke: #e7d6b0; stroke-width: 2; stroke-dasharray: 36 420; filter: drop-shadow(0 0 4px #e7d6b0); animation: hxFlow 3.2s linear infinite; }
@keyframes hxFlow { from { stroke-dashoffset: 456; } to { stroke-dashoffset: 0; } }

.hx__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 32px); }
.hx__card { position: relative; text-align: left; padding: clamp(26px, 2.6vw, 36px); border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.015)); border: 1px solid rgba(231,214,176,.14);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 20px 50px rgba(0,0,0,.35);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; }
.hx__card::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: conic-gradient(from var(--hx-a), transparent 0 70%, rgba(231,214,176,.9) 85%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: hxSpin 6s linear infinite; }
.hx__card:nth-child(2)::before { animation-delay: -2s; } .hx__card:nth-child(3)::before { animation-delay: -4s; }
.hx__card:hover { transform: translateY(-6px); border-color: rgba(231,214,176,.35); box-shadow: 0 26px 60px rgba(0,0,0,.45), 0 0 40px rgba(201,169,110,.18); }
.hx__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.hx__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: #e7d6b0;
  background: radial-gradient(circle at 30% 30%, rgba(231,214,176,.22), rgba(231,214,176,.04)); border: 1px solid rgba(231,214,176,.25); box-shadow: 0 0 22px rgba(201,169,110,.25); }
.hx__icon svg { width: 26px; height: 26px; filter: drop-shadow(0 0 4px rgba(231,214,176,.6)); }
.hx__num { font: 500 13px/1 var(--sans); letter-spacing: .25em; color: rgba(231,214,176,.55); }
.hx__card h3 { color: #fff; margin: 0 0 12px; text-align: left; margin-left: 0; }
.hx__card p { color: #cbc2b5; font-size: 15.5px; margin: 0; text-align: left; }
@media (max-width: 860px) {
  .hx__links { display: none; }
  .hx__core { width: 120px; height: 120px; margin-bottom: 34px; }
  .hx__ring--2 { inset: 13px; } .hx__ring--3 { inset: 26px; }
  .hx__label { font-size: 13px; }
  .hx__grid { grid-template-columns: 1fr; gap: 26px; position: relative; }
  .hx__grid::before { content: ""; position: absolute; left: 50%; top: -34px; bottom: 0; width: 1px; z-index: -1; background: linear-gradient(transparent, rgba(231,214,176,.5) 10%, rgba(231,214,176,.5) 90%, transparent); }
  .hx__card { text-align: center; background: linear-gradient(160deg, rgba(40,35,30,.92), rgba(30,26,22,.92)); }
  .hx__top { flex-direction: column; gap: 14px; margin-bottom: 18px; }
  .hx__card h3, .hx__card p { text-align: center; margin-left: auto; margin-right: auto; }
}


/* Hypoxi "Was ist Hypoxi?": auf Mobile Text vor Foto */
@media (max-width: 860px) { .row--text-first .row__media { order: 2; } }

/* Hypoxi Ablauf: Karussell nur auf Mobile */
.steps-dots { display: none; }
@media (max-width: 760px) {
  .steps--carousel { display: flex; grid-template-columns: none; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; margin: 0 -16px; padding: 4px 16px 8px; scroll-padding: 0 16px; }
  .steps--carousel::-webkit-scrollbar { display: none; }
  .steps--carousel li { flex: 0 0 82%; scroll-snap-align: center; padding: 78px 22px 30px; border: 1px solid var(--line);
    border-radius: 16px; background: rgba(255,255,255,.55); }
  .steps--carousel li::before { top: 26px; }
  .steps--carousel h3 { white-space: normal; }
  .steps-dots { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
  .steps-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: var(--line); cursor: pointer; transition: width .3s, background .3s, border-radius .3s; }
  .steps-dots button.is-active { width: 24px; border-radius: 4px; background: var(--gold); }
}

/* Zitat-Banner unten: auf Mobile schmaler */
@media (max-width: 760px) { .band { padding: 64px 0; } .band cite { margin-top: 18px; } }

/* Le Clou Cosmetics Banner: auf Mobile schmaler (wie Hypoxi-Banner) */
@media (max-width: 760px) { .promo__card { min-height: 0; } .promo__body { padding: 56px 20px; gap: 12px; } }

/* Behandlungen: Unterkategorien nebeneinander (Maniküre/Pediküre, Körper/Gesicht, Wimpern/Augenbrauen) */
.tcols { grid-template-columns: 1fr 1fr; align-items: start; column-gap: clamp(20px, 3vw, 40px); }
@media (max-width: 560px) {
  .tcols .tlist li { font-size: 15.5px; padding: 12px 0; }
  .tcols .tlist em { display: block; margin: 4px 0 0; font-size: 10.5px; }
  .tcols .tlabel { font-size: 11.5px; letter-spacing: .16em; }
}

/* Footer: Google-Bewertungen */
.footer .footer__reviews { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; padding: 10px 18px 10px 12px;
  border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: #fff; transition: border-color .25s, background .25s; }
.footer .footer__reviews:hover { color: #fff; border-color: var(--gold); background: rgba(201,169,110,.12); }
.footer .footer__reviews svg.footer__g { flex: none; width: 26px; height: 26px; padding: 5px; box-sizing: content-box; background: #fff; border-radius: 50%; }
.footer__rv { display: flex; flex-direction: column; gap: 3px; line-height: 1; text-align: left; }
.footer__rvtop { display: flex; align-items: center; gap: 8px; }
.footer__rvtop strong { font-size: 17px; font-weight: 500; }
.footer__stars { color: #e7b53c; font-size: 14px; letter-spacing: 2px; }
.footer .footer__rvtxt { font-size: 12px; letter-spacing: .04em; color: #d9cfc0; }
@media (max-width: 760px) {
  .footer .wrap { grid-template-areas: "logo partner" "desc desc" "contact quick" "social quick" "reviews reviews" "bottom bottom"; }
  .footer .footer__reviews { grid-area: reviews; justify-self: start; margin-top: -6px; }
}

/* Desktop: Google-Bewertung unter dem Hypoxi-Logo, Hypoxi-Logo höher */
.footer .footer__reviews--side { display: none; }
@media (min-width: 761px) {
  .footer__brand .footer__reviews { display: none; }
  .footer .footer__reviews--side { display: inline-flex; margin-top: 0; }
  .footer__partner { align-items: center; margin-top: -30px; gap: 18px; width: max-content; justify-self: end; }
  .footer .footer__rvtxt { white-space: nowrap; }
}

/* Mobile: Google-Bewertung unter dem Hypoxi-Logo, Hypoxi-Logo höher */
@media (max-width: 760px) {
  .footer .wrap { column-gap: 14px; grid-template-areas: "logo partner" "desc desc" "contact quick" "social quick" "bottom bottom"; }
  .footer__brand .footer__reviews { display: none; }
  .footer__partner { margin-top: -46px; align-items: center; gap: 10px; }
  .footer .footer__reviews--side { display: inline-flex; margin: 0; gap: 8px; padding: 6px 12px 6px 6px; }
  .footer .footer__reviews--side svg.footer__g { width: 18px; height: 18px; padding: 4px; }
  .footer__reviews--side .footer__rvtop strong { font-size: 14px; }
  .footer__reviews--side .footer__stars { font-size: 11px; letter-spacing: 1px; }
  .footer .footer__reviews--side .footer__rvtxt { font-size: 10px; letter-spacing: 0; white-space: nowrap; }
  .footer__reviews--side .footer__rvtop { gap: 6px; }
  .footer .wrap > .footer__quick:not(.footer__contact) { justify-self: end; }
}

/* Mobile: Google-Bewertung rechts neben den Social-Icons */
@media (max-width: 760px) {
  .footer .wrap { grid-template-areas: "logo partner" "desc desc" "contact quick" "social social" "bottom bottom"; }
  .footer .footer__reviews--side { display: none; }
  .footer__brand .footer__reviews { display: inline-flex; grid-area: social; justify-self: end; align-self: center; margin: -8px 0 0; }
  .footer__social { align-self: center; }
}

@media (max-width: 760px) { .footer__partner { margin-top: -22px; } }

/* Weeeb.ai Logo (neu) */
.footer .footer__legal .footer__maker { height: 26px; vertical-align: -8px; margin-left: 6px; }

/* Standortzeichen "Ein Unternehmen aus Südtirol": unter der Google-Bewertung,
   120px breit (min. 100px), Schutzzone = halbe Zeichenhöhe (28px) frei */
.footer__sz { display: block; line-height: 0; }
.footer .footer__sz img, .footer .footer__partner .footer__sz img { width: 120px; height: auto; opacity: 1; border-radius: 0; box-shadow: none; }
.footer__sz--m { display: none; }
@media (min-width: 761px) { .footer__sz--side { margin-top: 10px; } }
@media (max-width: 760px) {
  .footer .wrap { grid-template-areas: "logo partner" "desc desc" "contact quick" "social social" "sz sz" "bottom bottom"; }
  .footer__sz--side { display: none; }
  .footer .footer__brand > .footer__sz--m { display: block; grid-area: sz; justify-self: center; margin: 10px 0 12px; }
}
