/* ============================================================
   Steffi's Haarstudio – Probewebsite (DT Webstudio)
   Warm paper + plum accent · Cormorant Garamond + Outfit
   ============================================================ */

:root {
  --paper:    #f6f1ec;
  --paper-2:  #efe6dc;
  --panel:    #fbf8f4;
  --ink:      #271f24;
  --ink-soft: #6a5d63;
  --plum:     #743c57;
  --plum-deep:#5a2c43;
  --line:     rgba(39, 31, 36, 0.12);
  --line-soft:rgba(39, 31, 36, 0.07);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --radius: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; margin: 0; }
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--plum); color: #fff; padding: 10px 16px; border-radius: 8px;
  text-decoration: none; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

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

/* ---------- Eyebrow (rationed) ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 1.1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 500; font-size: .95rem;
  text-decoration: none; white-space: nowrap;
  padding: .85rem 1.5rem; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--primary { background: var(--plum); color: #fdfaf7; }
.btn--primary:hover { background: var(--plum-deep); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--plum); color: var(--plum); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .9rem clamp(1.1rem, 4vw, 2.6rem);
  height: 72px;
  background: rgba(246, 241, 236, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav__mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--plum); color: var(--paper);
  font-family: var(--serif); font-style: italic; font-size: 1.35rem;
}
.nav__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; letter-spacing: .01em; }

.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a { text-decoration: none; font-size: .95rem; color: var(--ink-soft); transition: color .2s var(--ease); }
.nav__links a:hover { color: var(--plum); }
.nav__cta { color: #fdfaf7 !important; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   SCROLL-FORTSCHRITT (oben, CSS scroll-driven)
   ============================================================ */
.scrollbar {
  position: fixed; top: 0; left: 0; z-index: 60;
  height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--plum), #c98aa6);
  transform: scaleX(0); transform-origin: 0 50%;
}
@supports (animation-timeline: scroll()) {
  .scrollbar {
    animation: scrollGrow linear both;
    animation-timeline: scroll(root);
  }
  @keyframes scrollGrow { to { transform: scaleX(1); } }
}

/* ============================================================
   NAV underline
   ============================================================ */
.nav__links a:not(.nav__cta) { position: relative; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1.5px; background: var(--plum);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }

/* ============================================================
   HERO  (Cinematic Foto-Montage)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: clamp(560px, 92vh, 880px);
  display: flex; align-items: flex-end;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; will-change: opacity, transform;
  animation: heroFade 21s linear infinite;
}
.hero.is-paused .hero__slide { animation-play-state: paused; }
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 7s; }
.hero__slide:nth-child(3) { animation-delay: 14s; }
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.06); }
  3%   { opacity: 1; }
  28%  { opacity: 1; }
  33%  { opacity: 0; transform: scale(1.13); }
  100% { opacity: 0; transform: scale(1.13); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(28,18,24,0.82) 0%, rgba(28,18,24,0.30) 48%, rgba(28,18,24,0.12) 100%),
    linear-gradient(to right, rgba(28,18,24,0.55), rgba(28,18,24,0.05) 62%);
}
.hero__content {
  position: relative; z-index: 1;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.1rem, 4vw, 2.6rem) clamp(2.8rem, 6vw, 4.5rem);
  color: var(--paper);
}
.eyebrow--light { color: #f0c9d9; }
.hero__title {
  font-size: clamp(3.2rem, 9vw, 6.6rem);
  letter-spacing: -0.01em; margin: 0 0 1.3rem; color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.28);
}
.hero__title .line { display: block; }
.hero__title em { font-style: italic; color: #f0c9d9; display: inline-block; padding-bottom: .06em; }
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,0.92);
  max-width: 38ch; margin-bottom: 2rem; text-shadow: 0 1px 18px rgba(0,0,0,0.35);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Entrance-Animation der Hero-Inhalte */
.hero__content > * { opacity: 0; transform: translateY(26px); animation: heroIn .9s var(--ease) forwards; }
.hero__content > .eyebrow--light { animation-delay: .15s; }
.hero__content > .hero__title { animation-delay: .30s; }
.hero__content > .hero__sub   { animation-delay: .52s; }
.hero__content > .hero__actions { animation-delay: .70s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* Glas-Button (über Foto) + Sheen */
.btn--glass {
  background: rgba(255,255,255,0.14); color: #fff;
  border-color: rgba(255,255,255,0.55); backdrop-filter: blur(6px);
}
.btn--glass:hover { background: rgba(255,255,255,0.26); border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn--sheen { position: relative; overflow: hidden; }
.btn--sheen::after {
  content: ""; position: absolute; top: 0; left: -150%;
  width: 55%; height: 100%; transform: skewX(-18deg);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.40), transparent);
  animation: sheen 5.5s ease-in-out infinite;
}
@keyframes sheen { 0% { left: -150%; } 14% { left: 170%; } 100% { left: 170%; } }

/* ============================================================
   FAKTENLEISTE
   ============================================================ */
.factbar {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap;
  border-bottom: 1px solid var(--line-soft);
}
.factbar__item {
  flex: 1 1 220px; display: flex; flex-direction: column; gap: .25rem;
  padding: 1.1rem clamp(1.1rem, 4vw, 2.6rem);
  text-decoration: none; color: var(--ink);
  border-left: 1px solid var(--line-soft);
  transition: background .25s var(--ease);
}
.factbar__item:first-child { border-left: 0; }
.factbar__item span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--plum); }
.factbar__item strong { font-weight: 500; }
a.factbar__item:hover { background: var(--paper-2); }
a.factbar__item:hover strong { color: var(--plum); }

/* ============================================================
   EINBLICKE  (horizontale Scroll-Galerie)
   ============================================================ */
.reel { position: relative; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.reel__pin { }
.reel__track {
  display: flex; gap: 1rem; align-items: stretch;
  padding-inline: clamp(1.1rem, 4vw, 2.6rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.reel__track::-webkit-scrollbar { display: none; }
.reel__intro {
  flex: 0 0 min(82vw, 360px); align-self: center; scroll-snap-align: center;
  padding-right: 1rem;
}
.reel__intro h2 { font-size: clamp(2rem, 5vw, 3rem); margin: .2rem 0 .9rem; }
.reel__intro p { color: var(--ink-soft); }
.reel__item {
  flex: 0 0 min(78vw, 420px); margin: 0; scroll-snap-align: center;
  border-radius: var(--radius); overflow: hidden; background: var(--paper-2);
  aspect-ratio: 4 / 5;
}
.reel__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.reel__item:hover img { transform: scale(1.05); }
.reel__note { max-width: var(--maxw); margin: 1.2rem auto 0; padding: 0 clamp(1.1rem, 4vw, 2.6rem); font-size: .85rem; color: var(--ink-soft); opacity: .8; }

/* Enhancement: vertikales Scrollen pant horizontal (gepinnt) */
@supports (animation-timeline: view()) {
  @media (min-width: 880px) and (prefers-reduced-motion: no-preference) {
    .reel { height: 360vh; padding: 0; view-timeline: --reel block; }
    .reel__pin {
      position: sticky; top: 0; height: 100vh;
      display: flex; align-items: center; overflow: hidden;
    }
    .reel__track {
      overflow: visible; scroll-snap-type: none;
      animation: reelPan linear both;
      animation-timeline: --reel; animation-range: contain 0% contain 100%;
    }
    .reel__item { flex: 0 0 min(38vw, 460px); }
    .reel__intro { flex: 0 0 min(40vw, 420px); }
    @keyframes reelPan {
      from { transform: translateX(0); }
      to   { transform: translateX(calc(-100% + 96vw)); }
    }
    .reel__note { position: relative; }
  }
}

/* ============================================================
   STUDIO / ÜBER
   ============================================================ */
.studio {
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 2.6rem);
}
.studio__inner { max-width: 760px; margin: 0 auto; }
.studio__lead {
  font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.22; margin-bottom: 1.6rem;
}
.studio__body { font-size: 1.08rem; color: var(--ink-soft); max-width: 62ch; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.services {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 2.6rem);
}
.services__head { max-width: 620px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.services__head h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: .9rem; }
.services__head p { color: var(--ink-soft); font-size: 1.08rem; }

.services__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.service {
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(0rem, 2vw, 1.6rem) clamp(1.6rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line);
}
.service:nth-child(odd) { border-right: 1px solid var(--line); padding-right: clamp(1.4rem, 3vw, 2.4rem); }
.service:nth-child(even) { padding-left: clamp(1.4rem, 3vw, 2.4rem); }
.service h3 { font-size: clamp(1.45rem, 3vw, 1.85rem); margin-bottom: .55rem; }
.service p { color: var(--ink-soft); max-width: 40ch; }


/* ============================================================
   ÖFFNUNGSZEITEN
   ============================================================ */
.hours {
  background: var(--ink); color: var(--paper);
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 2.6rem);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hours > * { max-width: var(--maxw); }
.hours__card { width: 100%; justify-self: end; max-width: 560px; }
.hours__card h2 { color: var(--paper); font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.6rem; }
.hours__table { width: 100%; border-collapse: collapse; }
.hours__table td {
  padding: .85rem 0; font-size: 1.05rem;
  border-bottom: 1px solid rgba(246,241,236,0.14);
}
.hours__table td:last-child { text-align: right; color: rgba(246,241,236,0.62); }
.hours__table tr:last-child td { border-bottom: 0; }
.hours__table .is-open td { color: var(--paper); }
.hours__table .is-open td:last-child { color: #e7b7cd; font-weight: 500; }
.hours__note { margin-top: 1.4rem; color: rgba(246,241,236,0.55); font-size: .95rem; }

.hours__aside .eyebrow { color: #e7b7cd; }
.hours__big { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.12; margin-bottom: 1.8rem; }

/* ============================================================
   KONTAKT / ANFAHRT
   ============================================================ */
.contact {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.1rem, 4vw, 2.6rem);
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.contact__info h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 1.6rem; }
.contact__addr { font-family: var(--serif); font-size: 1.5rem; line-height: 1.4; margin-bottom: 1.6rem; }
.contact__row { display: flex; gap: 1rem; padding: .7rem 0; border-top: 1px solid var(--line); }
.contact__row span { min-width: 92px; color: var(--ink-soft); }
.contact__row a { color: var(--plum); text-decoration: none; }
.contact__row a:hover { text-decoration: underline; }
.contact__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.contact__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 24px 60px -40px rgba(90,44,67,0.5); min-height: 360px; display: flex; }
.contact__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; filter: grayscale(0.25) contrast(1.02); }
.map-consent { display: flex; align-items: center; justify-content: center; width: 100%; background: var(--paper-2); }
.map-consent__inner { text-align: center; padding: 2.4rem 2rem; max-width: 320px; }
.map-consent__icon { font-size: 2.4rem; margin: 0 0 .8rem; }
.map-consent__text { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.4rem; line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.2rem;
  background: var(--paper-2);
  border-top: 1px solid var(--line-soft);
}
.footer__brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: .8rem; }
.footer__addr { color: var(--ink-soft); margin-bottom: .9rem; }
.footer__addr a { color: var(--plum); text-decoration: none; }
.footer__legal { font-size: .85rem; color: var(--ink-soft); max-width: 46ch; margin: 0 auto; opacity: .85; }
.footer__links { display: flex; justify-content: center; gap: 1.2rem; margin: 1rem 0 .3rem; font-size: .85rem; }
.footer__links a { color: var(--ink-soft); text-decoration: none; }
.footer__links a:hover { color: var(--plum); text-decoration: underline; }

/* ============================================================
   RECHTLICHES (Impressum / Datenschutz)
   ============================================================ */
.legal { max-width: 740px; margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.6rem) clamp(3.5rem, 8vw, 6rem); }
.legal h2 { font-size: clamp(1.4rem, 3vw, 1.75rem); margin: 2.4rem 0 .9rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 600; margin: 1.6rem 0 .5rem; }
.legal p, .legal address, .legal li { color: var(--ink-soft); font-style: normal; line-height: 1.7; }
.legal address { margin: 0 0 1rem; }
.legal a { color: var(--plum); text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.legal ul { margin: .5rem 0; padding-left: 1.2rem; }
.legal li { margin-bottom: .5rem; }
.legal__updated { margin-top: 2.6rem; font-size: .85rem; color: var(--ink-soft); opacity: .7; }

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hours { grid-template-columns: 1fr; gap: 2.6rem; }
  .hours__card { justify-self: stretch; max-width: none; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: .6rem clamp(1.1rem, 4vw, 2.6rem) 1.4rem;
    transform: translateY(-130%); transition: transform .35s var(--ease);
    box-shadow: 0 20px 40px -30px rgba(0,0,0,.4);
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--line-soft); }
  .nav__cta { margin-top: .8rem; border-bottom: 0 !important; }

  .services__list { grid-template-columns: 1fr; }
  .service:nth-child(odd) { border-right: 0; padding-right: 0; }
  .service:nth-child(even) { padding-left: 0; }
  .hero { min-height: clamp(520px, 84vh, 720px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  .hero__content > * { opacity: 1; transform: none; animation: none; }
  .hero__slide { animation: none; }
  .hero__slide:nth-child(1) { opacity: 1; }
  .hero__slide:nth-child(2), .hero__slide:nth-child(3) { opacity: 0; }
  .btn--sheen::after { display: none; }
  .reel__item img { transition: none; }
}

/* ============================================================
   PREISE
   ============================================================ */
.prices { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) clamp(1.1rem, 4vw, 2.6rem); }
.prices__head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3rem); }
.prices__head h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin: .2rem 0 .8rem; }
.prices__head p { color: var(--ink-soft); font-size: 1.08rem; }
.prices__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.4rem) clamp(2rem, 4vw, 3.4rem); align-items: start; }
.price-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); }
.price-card--wide { grid-column: 1 / -1; }
.price-card h3 { font-size: clamp(1.4rem, 3vw, 1.7rem); margin-bottom: 1rem; color: var(--plum); }
.price-sub { font-family: var(--sans); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-soft); margin: 1.4rem 0 .5rem; font-weight: 500; }
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li { display: flex; align-items: baseline; gap: .4rem; padding: .42rem 0; }
.pl-name { color: var(--ink); }
.pl-dots { flex: 1 1 auto; min-width: 1.2rem; border-bottom: 1px dotted rgba(39, 31, 36, .3); transform: translateY(-.28em); }
.pl-price { font-weight: 500; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-list--two { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 4vw, 3.4rem); }
.price-list--pkg li { display: block; padding: .7rem 0; border-top: 1px solid var(--line-soft); }
.price-list--pkg li:first-child { border-top: 0; padding-top: 0; }
.pl-row { display: flex; align-items: baseline; gap: .4rem; }
.pl-sub { display: block; font-size: .85rem; color: var(--ink-soft); margin-top: .3rem; }
.prices__note { margin-top: clamp(1.8rem, 4vw, 2.6rem); background: var(--paper-2); border: 1px solid var(--line-soft); border-left: 3px solid var(--plum); border-radius: 12px; padding: clamp(1.3rem, 3vw, 1.8rem) clamp(1.4rem, 3vw, 2rem); }
.prices__note h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.prices__note p { color: var(--ink-soft); max-width: 82ch; }
@media (max-width: 760px) {
  .prices__grid { grid-template-columns: 1fr; }
  .price-list--two { grid-template-columns: 1fr; }
}

/* ============================================================
   MEHRPAGER: aktiver Tab, Seitenkopf, Seiten-Container, CTA
   ============================================================ */
.nav__links a.is-active { color: var(--plum); }
.nav__links a.is-active::after { transform: scaleX(1); }

.pagehead { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.4rem, 6vw, 4rem) clamp(1.1rem, 4vw, 2.6rem) clamp(1.2rem, 3vw, 1.8rem); }
.pagehead h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin: .2rem 0 .6rem; }
.pagehead h1 em { font-style: italic; color: var(--plum); }
.pagehead p { color: var(--ink-soft); font-size: 1.1rem; max-width: 60ch; }

.page { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.6rem) clamp(3.5rem, 8vw, 6rem); }
.page--split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .page--split { grid-template-columns: 1fr; } }

.cta { background: var(--paper-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.cta__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.8rem, 6vw, 4.5rem) clamp(1.1rem, 4vw, 2.6rem); text-align: center; }
.cta__inner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
.cta__inner p { color: var(--ink-soft); max-width: 48ch; margin: 0 auto 1.6rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ============================================================
   EINBLICKE: dunkler Streifen mit Bento-Galerie
   ============================================================ */
.showcase { background: #1b1418; color: var(--paper); padding: clamp(3.5rem, 8vw, 6rem) clamp(1.1rem, 4vw, 2.6rem); }
.showcase__inner { max-width: var(--maxw); margin: 0 auto; }
.showcase__head { margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.showcase__head h2 { color: var(--paper); font-size: clamp(2rem, 5vw, 3rem); max-width: 18ch; }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, clamp(115px, 12.5vw, 170px));
  grid-template-areas:
    "a a b b b c"
    "a a b b b c"
    "a a d d e e"
    "f f d d e e";
  gap: clamp(.6rem, 1.4vw, 1rem);
}
.bento__item { margin: 0; border-radius: 14px; overflow: hidden; background: #2a2228; }
.bento__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.bento__item:hover img { transform: scale(1.05); }
.bento__item--a { grid-area: a; }
.bento__item--b { grid-area: b; }
.bento__item--c { grid-area: c; }
.bento__item--d { grid-area: d; }
.bento__item--e { grid-area: e; }
.bento__item--f { grid-area: f; }
.showcase__note { margin-top: 1.2rem; font-size: .85rem; color: rgba(246, 241, 236, .5); }
@media (max-width: 760px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: clamp(140px, 42vw, 200px);
    grid-template-areas: none;
  }
  .bento__item { grid-area: auto; }
}

/* ============================================================
   LOOKS / INSPIRATION (KI-generierte Beispiel-Looks)
   ============================================================ */
.looks { background: var(--paper-2); border-top: 1px solid var(--line-soft); }
.looks__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 7vw, 5.5rem) clamp(1.1rem, 4vw, 2.6rem); }
.looks__head { max-width: 620px; margin-bottom: clamp(1.8rem, 4vw, 2.6rem); }
.looks__head h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin: .2rem 0 .8rem; }
.looks__head p { color: var(--ink-soft); }
.looks__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.8rem, 1.6vw, 1.3rem); align-items: start; }
.look { margin: 0; }
.look:nth-child(even) { transform: translateY(34px); }
.look img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); display: block; }
.looks__note { margin-top: 2.6rem; font-size: .85rem; color: var(--ink-soft); opacity: .8; }
@media (max-width: 900px) {
  .looks__grid { grid-template-columns: repeat(3, 1fr); }
  .look:nth-child(even) { transform: none; }
}
@media (max-width: 560px) {
  .looks__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
