/* ============================================================
   MARIO GOLDINGER — Schönheitssalon Wien
   Design-Draft · Startseite + Behandlungen
   Palette (Kundenvorgabe):
   Gold #dac078 · Elfenbein #fdfbf6 · Petrol #09595d
   Dunkelgrün #277550 · Pastellgrün #92b38b
   Kontrast: Aubergine #472c4c / #6a4372
   ============================================================ */

:root {
  --ivory: #fdfbf6;
  --ivory-deep: #f7f2e6;
  --gold: #dac078;
  --gold-soft: rgba(218, 192, 120, 0.42);
  --petrol: #09595d;
  --petrol-deep: #07484b;
  --forest: #277550;
  --sage: #92b38b;
  --sage-tint: rgba(146, 179, 139, 0.14);
  --aubergine: #472c4c;
  --aubergine-light: #6a4372;
  --ink: #22322d;
  --ink-soft: #51625c;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Mulish", "Helvetica Neue", Arial, sans-serif;

  --w-wide: 1240px;
  --w-text: 720px;
  --pad-x: clamp(1.25rem, 4vw, 3rem);
  --sec-y: clamp(4.5rem, 9vw, 8.5rem);

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

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--forest); text-decoration: none; }

::selection { background: var(--gold-soft); color: var(--petrol); }

/* ---------- Typo-Grundgerüst ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--petrol);
  line-height: 1.12;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.25rem, 6.2vw, 4.9rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }

h1 em, h2 em, h3 em, .quote em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1.4rem;
}


.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 40rem;
}

/* ---------- Layout-Helfer ---------- */

.container { max-width: var(--w-wide); margin: 0 auto; padding-inline: var(--pad-x); }
.container--text { max-width: var(--w-text); }

.section { padding-block: var(--sec-y); }
.section--tight { padding-block: calc(var(--sec-y) * 0.6); }

/* ---------- Header ---------- */

.topline {
  background: var(--petrol);
  color: rgba(253, 251, 246, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.45rem var(--pad-x);
}
.topline a { color: var(--gold); font-weight: 600; }
@media (max-width: 640px) {
  .topline { font-size: 0.74rem; padding-block: 0.4rem; }
  .topline__addr { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 251, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(218, 192, 120, 0.35);
}

.site-header__bar {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0.9rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark { display: block; flex-shrink: 0; }
.wordmark img { height: clamp(44px, 5vw, 58px); width: auto; }

.main-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.4vw, 2.2rem); }

.main-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-block: 0.3rem;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s var(--ease-soft);
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.main-nav a[aria-current="page"] { color: var(--forest); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1px solid var(--petrol);
  color: var(--petrol);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft);
}
.btn:hover { background: var(--petrol); color: var(--ivory); }

.btn--solid { background: var(--petrol); color: var(--ivory); }
.btn--solid:hover { background: var(--forest); border-color: var(--forest); }

.btn--gold { border-color: var(--gold); color: var(--petrol); }
.btn--gold:hover { background: var(--gold); border-color: var(--gold); color: var(--petrol); }

.btn--light { border-color: rgba(253,251,246,0.6); color: var(--ivory); }
.btn--light:hover { background: var(--ivory); color: var(--petrol); }

/* Mobile-Navigation */
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .site-header .btn { display: none; }
  .site-header__bar { padding: 0.55rem var(--pad-x); }
  .wordmark img { height: 42px; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 0.4rem;
    cursor: pointer;
  }
  .nav-toggle span { width: 26px; height: 1.5px; background: var(--petrol); transition: transform .3s, opacity .3s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

}
@media (min-width: 861px) { .mobile-nav { display: none; } }

/* ---------- Mobile-Menü (Vollbild, Petrol) ---------- */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--petrol);
  color: var(--ivory);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-soft);
  overflow: hidden;
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; }

.mobile-nav__deco {
  position: absolute;
  top: -18vh;
  right: -30vw;
  width: 78vw;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.6;
}
.mobile-nav__deco circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.4;
  stroke-dasharray: 0.5 4.5;
  stroke-linecap: round;
}

.mobile-nav__close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ivory);
  font-size: 1.05rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.mobile-nav__close:hover { background: var(--gold); color: var(--petrol); transform: rotate(90deg); }

.mobile-nav__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(1.2rem + env(safe-area-inset-top)) 1.8rem calc(1.6rem + env(safe-area-inset-bottom));
}

.mobile-nav__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.9rem;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 3.2vh, 1.6rem);
}
.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6.4vh, 2.6rem);
  line-height: 1.1;
  color: var(--ivory);
  display: inline-block;
  width: fit-content;
  position: relative;
}
.mobile-nav__links a em { font-style: italic; color: var(--gold); }
.mobile-nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width 0.35s var(--ease-soft);
}
.mobile-nav__links a:active::after, .mobile-nav__links a:hover::after { width: 100%; }

.mobile-nav__contact {
  border-top: 1px solid rgba(218, 192, 120, 0.35);
  padding-top: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.mobile-nav__phone {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold);
}
.mobile-nav__addr {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(253, 251, 246, 0.7);
}
.mobile-nav__contact .btn { align-self: flex-start; margin-top: 0.4rem; }

/* ---------- Goldring-Portale (Signature-Element) ---------- */

.portal {
  position: relative;
  display: block;
}

.portal__frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ivory-deep);
}
.portal__frame--arch { border-radius: 999px 999px 12px 12px; }
.portal__frame--circle { border-radius: 50%; }

.portal__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* rotierender Punktring */
.portal__ring {
  position: absolute;
  inset: -4.5%;
  width: 109%;
  height: 109%;
  pointer-events: none;
}
.portal__ring circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.45;
  stroke-dasharray: 0.5 4.5;
  stroke-linecap: round;
}

/* feiner Vollring, leicht versetzt */
.portal::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-soft);
  border-radius: inherit;
  transform: translate(10px, 10px);
  pointer-events: none;
}
.portal--arch::after { border-radius: 999px 999px 12px 12px; }
.portal--circle::after { border-radius: 50%; }

/* ---------- Hero ---------- */

.hero { position: relative; overflow: hidden; }

.hero__grid {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) var(--pad-x) clamp(3.5rem, 7vw, 6.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.hero h1 { margin-bottom: 1.6rem; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }

.hero__note {
  margin-top: 2.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.hero__note strong { color: var(--petrol); font-weight: 700; }

.hero__visual {
  position: relative;
  justify-self: center;
  width: min(100%, 480px);
  /* Optischer Ausgleich: Die Bogenform läuft oben spitz zu und steht unten
     auf voller Breite — ihr visueller Schwerpunkt liegt rund 4 % tiefer als
     die geometrische Mitte. Der Abstand unten hebt das Bild bei
     align-items:center um die Hälfte an, sodass beide Spalten optisch
     auf einer Mittelachse sitzen. */
  margin-bottom: clamp(1.6rem, 3.2vw, 2.9rem);
}
.hero__visual .portal__frame { aspect-ratio: 4 / 5; }

.hero__badge {
  position: absolute;
  left: -8%;
  bottom: 6%;
  width: clamp(110px, 12vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--petrol);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  box-shadow: 0 18px 40px rgba(9, 89, 93, 0.25);
}
.hero__badge span { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; color: var(--gold); }
.hero__badge small { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; padding-inline: 0.8rem; }

/* dekorative Blattlinie */
.leafline {
  position: absolute;
  z-index: -1;
  opacity: 0.5;
  color: var(--sage);
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; width: min(100%, 400px); margin-bottom: 0; }
  .hero__badge { left: auto; right: -4%; }
}

/* ---------- Laufband ---------- */

.ticker {
  border-block: 1px solid var(--gold-soft);
  padding-block: 1.1rem;
  overflow: hidden;
  background: var(--ivory);
}
.ticker__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  white-space: nowrap;
}
.ticker__item {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petrol);
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.ticker__item::after { content: "❧"; color: var(--gold); font-size: 1rem; }
@media (max-width: 640px) {
  .ticker__item { font-size: 1rem; gap: 2.2rem; }
  .ticker__track { gap: 2.2rem; }
}

/* ---------- Zitat ---------- */

.quote-sec { background: var(--sage-tint); }

.quote {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.4vw, 2.7rem);
  line-height: 1.45;
  color: var(--petrol);
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}
.quote .line { display: block; }

.quote-attrib {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
}
.quote-attrib::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.1rem;
}

/* ---------- Behandlungs-Vorschau (Start) ---------- */

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.t-card { text-align: center; }
.t-card .portal { width: 100%; }
.t-card .portal__frame { aspect-ratio: 1; }
.t-card h3 { margin-top: 1.6rem; font-size: 1.28rem; }
.t-card .t-card__meta {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.t-card .t-card__meta strong { color: var(--forest); font-weight: 700; }
.t-card a.t-card__link {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
}
.t-card .portal__frame img { transition: transform 0.8s var(--ease-soft); }
.t-card:hover .portal__frame img { transform: scale(1.06); }

@media (max-width: 980px) { .treatment-grid { grid-template-columns: repeat(2, 1fr); } }

.swipe-hint { display: none; }

@media (max-width: 640px) {
  .treatment-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    margin-inline: calc(-1 * var(--pad-x));
    padding: 1.2rem var(--pad-x) 1.4rem;
    scrollbar-width: none;
  }
  .treatment-grid::-webkit-scrollbar { display: none; }
  .t-card { flex: 0 0 72%; scroll-snap-align: center; }
  .swipe-hint {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .swipe-hint::before, .swipe-hint::after {
    content: "";
    width: 2.2rem;
    height: 1px;
    background: var(--gold);
  }
}

/* ---------- Über Mario ---------- */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-grid .portal { width: min(100%, 380px); justify-self: center; }
.about-grid .portal__frame { aspect-ratio: 1; }

.about-copy p + p { margin-top: 1.2rem; }

.milestones {
  margin-top: 2.2rem;
  border-top: 1px solid var(--gold-soft);
}
.milestone {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1.5rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--gold-soft);
  align-items: baseline;
}
.milestone b {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
}
.milestone span { font-size: 0.95rem; color: var(--ink-soft); }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .milestone { grid-template-columns: 4rem 1fr; gap: 1rem; }
  .milestone b { font-size: 1.35rem; }
  .milestone span { font-size: 0.88rem; }
}

/* ---------- Salon-Band ---------- */

.salon-band { position: relative; }

.salon-band__media {
  position: relative;
  height: clamp(420px, 68vh, 640px);
  overflow: hidden;
  border-radius: 16px;
}
.salon-band__media img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.salon-band__card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  padding: clamp(1.8rem, 4vw, 3rem);
  max-width: 34rem;
  margin: -6rem auto 0;
  box-shadow: 0 30px 60px rgba(9, 89, 93, 0.10);
  z-index: 2;
}
.salon-band__card h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 1rem; }
.salon-band__card p { color: var(--ink-soft); }

.salon-features {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--sage-tint);
  color: var(--forest);
  border: 1px solid rgba(146, 179, 139, 0.4);
}

/* ---------- Sothys ---------- */

.sothys-sec { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%); }

.sothys-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.sothys-grid img.sothys-logo { max-width: 320px; margin-bottom: 1.6rem; }
.sothys-grid p + p { margin-top: 1.1rem; }
.sothys-grid .portal { width: min(100%, 400px); justify-self: center; }
.sothys-grid .portal__frame { aspect-ratio: 1; }

@media (max-width: 900px) { .sothys-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .sothys-grid img.sothys-logo { max-width: 200px; }
}

/* ---------- Stimmen ---------- */

.voices { position: relative; }

.voice-stage {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  min-height: 16rem;
  text-align: center;
}
.voice {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}
.voice.is-active { opacity: 1; visibility: visible; position: relative; }

.voice blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.5;
  color: var(--ink);
}
.voice figcaption {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--forest);
}
.voice figcaption span { color: var(--ink-soft); font-weight: 400; letter-spacing: 0.18em; }

.voice-nav { display: flex; justify-content: center; gap: 0.7rem; margin-top: 2.4rem; }
.voice-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.voice-dot.is-active { background: var(--gold); }

/* ---------- CTA-Band + Footer ---------- */

.cta-band {
  background: var(--petrol);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--ivory); }
.cta-band h2 em { color: var(--gold); }
.cta-band .lead { color: rgba(253, 251, 246, 0.75); margin: 1.2rem auto 0; }

.cta-band__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--gold);
  margin-top: 2rem;
}
.cta-band__meta { margin-top: 1.4rem; font-size: 0.9rem; color: rgba(253,251,246,0.7); }
.cta-band__meta a { color: var(--ivory); border-bottom: 1px solid var(--gold); }
.cta-band .btn { margin-top: 2.2rem; }

.site-footer {
  background: var(--petrol-deep);
  color: rgba(253, 251, 246, 0.72);
  padding: 3.5rem 0 2.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.site-footer img.footer-logo { width: 200px; margin-bottom: 1.2rem; }
.site-footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li + li { margin-top: 0.5rem; }
.site-footer a { color: rgba(253, 251, 246, 0.72); }
.site-footer a:hover { color: var(--gold); }

.footer-base {
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(218, 192, 120, 0.25);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BEHANDLUNGEN — Unterseite
   ============================================================ */

.page-hero { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); }
.page-hero h1 { margin-bottom: 1.4rem; }
.page-hero .hero-notes {
  margin-top: 1.8rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  color: var(--ink-soft);
  max-width: 44rem;
  font-size: 0.98rem;
}

/* --- Behandlungs-Kompass (interaktive Preisliste) --- */

.kompass { align-items: start; }

.kompass__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.menu-item {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--gold-soft);
  padding: 1.35rem 0.5rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s var(--ease-soft);
}
.menu-item:first-child { border-top: 1px solid var(--gold-soft); }
.menu-item:hover { background: rgba(218, 192, 120, 0.08); }
.menu-item.is-active { background: var(--sage-tint); }

.menu-item__row {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
}
.menu-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--petrol);
  white-space: nowrap;
}
.menu-item.is-active .menu-item__name { color: var(--forest); }
.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--gold);
  transform: translateY(-0.35em);
  min-width: 1.5rem;
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--petrol);
}
.menu-item__sub {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.menu-item__tag {
  display: inline-block;
  margin-left: 0.7rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: var(--aubergine);
  color: var(--ivory);
  vertical-align: middle;
}

/* mobile Detailtext im Menü */
.menu-item__detail { display: none; }

.kompass__panel {
  position: sticky;
  top: 7rem;
  text-align: center;
}
.kompass__panel .portal { width: min(100%, 360px); }
.kompass__panel .portal__frame { aspect-ratio: 1; }

.kompass__detail { margin-top: 2rem; text-align: left; }
.kompass__detail h3 { margin-bottom: 0.6rem; }
.kompass__detail p { color: var(--ink-soft); font-size: 0.98rem; }
.kompass__detail .kompass__meta {
  margin-top: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
}

@media (max-width: 900px) {
  .kompass__grid { grid-template-columns: 1fr; }
  .kompass__panel { display: none; }
  .menu-item__name { font-size: 1.2rem; }
  .menu-item__price { font-size: 1.15rem; }
  .menu-item__sub { margin-top: 0.55rem; font-size: 0.72rem; }
  .menu-item__detail {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-soft);
    color: var(--ink-soft);
    font-size: 0.95rem;
  }
  .menu-item.is-active .menu-item__detail { max-height: 16rem; padding-top: 0.8rem; }
}

/* --- Signature-Ritual (8 Schritte) --- */

.ritual { background: var(--sage-tint); overflow: hidden; }

.ritual__intro { max-width: 46rem; }

.ritual__track {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.ritual-step {
  flex: 0 0 clamp(230px, 26vw, 290px);
  scroll-snap-align: start;
  background: var(--ivory);
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  position: relative;
}
.ritual-step b {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.9rem;
}
.ritual-step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.ritual-step p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

.ritual__footnote { margin-top: 1.8rem; font-size: 0.92rem; color: var(--ink-soft); max-width: 44rem; }

/* --- Fountain of Youth (Aubergine-Kontrast) --- */

.tfoym {
  background: var(--aubergine);
  color: rgba(253, 251, 246, 0.85);
  position: relative;
  overflow: hidden;
}
.tfoym .eyebrow { color: var(--gold); }
.tfoym .eyebrow::before { background: var(--aubergine-light); }
.tfoym h2 { color: var(--ivory); }
.tfoym h2 em { color: var(--gold); }
.tfoym h3 { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }

.tfoym__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.tfoym__grid .portal { width: min(100%, 380px); justify-self: center; }
.tfoym__grid .portal__frame { aspect-ratio: 1; }
.tfoym__grid .portal::after { border-color: rgba(218, 192, 120, 0.5); }

.tfoym p + p { margin-top: 1.1rem; }

.tfoym__cols {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.tfoym__cols ul { list-style: none; margin-top: 0.9rem; }
.tfoym__cols li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(218, 192, 120, 0.2);
  font-size: 0.92rem;
}
.tfoym__cols li::before { content: "— "; color: var(--gold); }

@media (max-width: 900px) {
  .tfoym__grid { grid-template-columns: 1fr; }
  .tfoym__cols { grid-template-columns: 1fr; }
}

/* --- Detail-Blöcke (Digi / Matricol / Secrets) --- */

.detail-row {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.detail-row + .detail-row { border-top: 1px solid var(--gold-soft); }
.detail-row:nth-child(even) { grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr); }
.detail-row:nth-child(even) .detail-row__media { order: 2; }

.detail-row__media .portal { width: min(100%, 300px); margin-inline: auto; display: block; }
.detail-row__media .portal__frame { aspect-ratio: 1; }

.detail-row h3 { margin-bottom: 0.8rem; }
.detail-row p { color: var(--ink-soft); font-size: 0.98rem; }
.detail-row p + p { margin-top: 0.9rem; }
.detail-row .chip { margin-top: 1.2rem; display: inline-block; }

@media (max-width: 800px) {
  .detail-row, .detail-row:nth-child(even) { grid-template-columns: 1fr; }
  .detail-row:nth-child(even) .detail-row__media { order: 0; }
}

/* --- Extras-Menü --- */

.extras { max-width: 44rem; margin-inline: auto; }
.extras .menu-item { cursor: default; }
.extras .menu-item:hover { background: none; }

/* ---------- Reveal-Basiszustände (JS setzt Animation) ---------- */

.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal-img { clip-path: inset(0 0 100% 0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  .js .reveal-img { clip-path: none; }
  .ticker__track { transform: none !important; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   BEHANDLUNGS-POPUP (Full-Height-Overlay)
   ============================================================ */

.tmodal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}
.tmodal.is-open { display: block; }

.tmodal__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  background: var(--ivory);
}

.tmodal__close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  z-index: 5;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ivory);
  color: var(--petrol);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease-soft), color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}
.tmodal__close:hover { background: var(--petrol); color: var(--ivory); transform: rotate(90deg); }

/* linke Bühne */
.tmodal__visual {
  background: var(--petrol);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
}
.tmodal__visual .portal { width: min(62%, 300px); margin-bottom: 2.2rem; }
.tmodal__visual .portal__frame { aspect-ratio: 1; }
.tmodal__visual .portal::after { border-color: rgba(218, 192, 120, 0.5); }

.tmodal__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.tmodal__visual h2 {
  color: var(--ivory);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  max-width: 22ch;
}
.tmodal__meta {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
}

.tmodal__facts {
  list-style: none;
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.tmodal__facts li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  line-height: 1.3;
}
.tmodal__facts svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

/* rechte Inhaltsspalte */
.tmodal__content {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.tmodal__body {
  flex: 1;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4.5rem) clamp(2rem, 3vw, 3rem);
  max-width: 46rem;
}
.tmodal__body h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 2.2rem 0 0.9rem;
}
.tmodal__body h3:first-child { margin-top: 0; }
.tmodal__body p { color: var(--ink-soft); font-size: 1rem; }
.tmodal__body p + p { margin-top: 0.9rem; }
.tmodal__body p strong { color: var(--ink); }

.tmodal__body ul {
  list-style: none;
  margin-top: 0.4rem;
}
.tmodal__body li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gold-soft);
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.tmodal__body li::before { content: "— "; color: var(--gold); }
.tmodal__body li strong { color: var(--ink); font-weight: 600; }

/* Ablauf als nummeriertes Ritual */
.tmodal__body ol {
  list-style: none;
  counter-reset: schritt;
  margin-top: 0.4rem;
}
.tmodal__body ol li { display: flex; gap: 1rem; align-items: baseline; }
.tmodal__body ol li::before {
  counter-increment: schritt;
  content: counter(schritt);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  min-width: 1.4rem;
  text-align: right;
}

.tmodal__hinweis {
  margin-top: 2rem;
  border-left: 2px solid var(--gold);
  padding: 0.2rem 0 0.2rem 1.2rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.tmodal__variant {
  margin-top: 2rem;
  background: var(--sage-tint);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.tmodal__variant span { font-size: 0.95rem; color: var(--ink); }
.tmodal__variant b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--petrol);
  white-space: nowrap;
}

/* Buchungsleiste */
.tmodal__book {
  position: sticky;
  bottom: 0;
  background: rgba(253, 251, 246, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--gold-soft);
  padding: 1.3rem clamp(1.5rem, 5vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.tmodal__book-label { font-family: var(--font-display); font-size: 1.2rem; color: var(--petrol); }
.tmodal__book-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}
.tmodal__book-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

@media (max-width: 860px) {
  .tmodal__panel { grid-template-columns: 1fr; grid-template-rows: auto 1fr; overflow-y: auto; display: block; }
  .tmodal__visual { padding: 3.6rem 1.5rem 1.8rem; }
  .tmodal__visual .portal { width: min(42%, 180px); margin-bottom: 1.4rem; }
  .tmodal__visual h2 { font-size: 1.65rem; }
  .tmodal__meta { font-size: 1.05rem; margin-top: 0.8rem; }
  .tmodal__facts { margin-top: 1.2rem; gap: 0.55rem; }
  .tmodal__facts li { font-size: 1.05rem; }
  .tmodal__content { overflow: visible; }
  .tmodal__body { padding: 2rem 1.5rem 1.6rem; }
  .tmodal__close { position: fixed; top: 1rem; right: 1rem; width: 44px; height: 44px; }
  .tmodal__book {
    padding: 0.85rem 1.5rem calc(0.85rem + env(safe-area-inset-bottom));
    gap: 0.7rem;
  }
  .tmodal__book-label { display: none; }
  .tmodal__book-actions { width: 100%; flex-wrap: nowrap; }
  .tmodal__book-actions .btn { flex: 1; justify-content: center; padding-inline: 1rem; font-size: 0.72rem; }
}
