/* ============================================================
   Nails Master Karina — editorial neon
   Papier / Tinte / Magenta — Verlauf von Magenta ueber Blau
   nach Gruen traegt alle Aktionen.
   ============================================================ */

:root {
  --bone:       #FCFBFC;
  --bone-deep:  #F1EEF4;
  --espresso:   #0C0B10;
  --espresso-2: #3B3745;
  --lacquer:    #D6009B;
  --lacquer-dk: #A3007A;
  --blush:      #F4CBE8;
  --ink-soft:   rgba(12, 11, 16, .62);
  --rule:       rgba(12, 11, 16, .14);

  /* Ein einziger Verlauf fuer alle Aktionen — Knoepfe, aktive Zustaende
     und der Schimmer im Hero ziehen ihre Farbe hier heraus. */
  --grad: linear-gradient(95deg, #C81E9E 0%, #7C2BCE 34%, #2B45D6 66%, #12A585 100%);
  --grad-soft: linear-gradient(95deg, #C81E9E, #2B45D6 62%, #12A585);

  --display: "Fraunces", "Georgia", serif;
  --body:    "Karla", "Helvetica Neue", sans-serif;

  --page:  min(1180px, 100% - 2.5rem);
  --ease:  cubic-bezier(.2, .7, .2, 1);

  --safe-b: env(safe-area-inset-bottom, 0px);

  /* app.js misst die tatsaechliche Kopfzeilenhoehe und schreibt sie hier
     hinein. Der Startwert traegt nur, bis das Skript laeuft. */
  --topbar-h: 5.5rem;
}

@media (max-width: 860px) {
  :root { --page: min(1180px, 100% - 2rem); }
}
@media (max-width: 480px) {
  :root { --page: min(1180px, 100% - 1.75rem); }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Kein horizontales Scrollen — clip statt hidden, damit der Sticky-Header
     weiter klebt (hidden würde einen eigenen Scroll-Container erzeugen). */
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  scroll-padding-top: calc(var(--topbar-h) + 1rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--espresso);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  padding-bottom: var(--safe-b);
  -webkit-tap-highlight-color: color-mix(in srgb, var(--lacquer) 18%, transparent);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  letter-spacing: -.02em;
  margin: 0;
}

a { color: inherit; }

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

figure { margin: 0; }

::selection { background: var(--lacquer); color: var(--bone); }

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

/* — film grain overlay — */
.grain {
  position: fixed;
  /* inset:0 reicht — das Rauschen kachelt ohnehin. Spart auf Mobilgeräten
     eine Composited Layer von vierfacher Viewport-Größe. */
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .11;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  min-height: 44px;              /* verlässliches Touch-Target */
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .35s var(--ease), background .35s var(--ease),
              color .35s var(--ease), border-color .35s var(--ease);
}
.btn--solid {
  background: var(--grad);
  background-size: 140% 100%;
  background-position: 0% 50%;
  color: #fff;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background-position .55s var(--ease),
              box-shadow .35s var(--ease);
}
/* Der Rahmen traegt denselben Verlauf: zwei Hintergruende, einer bis zur
   Innenkante (padding-box), einer bis zur Aussenkante (border-box). So
   bleibt die Pille rund — border-image koennte das nicht. */
.btn--ghost {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--btn-ghost-bg, var(--bone)), var(--btn-ghost-bg, var(--bone))) padding-box,
    var(--grad) border-box;
  color: var(--espresso);
}

/* Hover-Effekte nur für echte Zeiger — auf Touch bleibt der Zustand
   sonst nach dem Tippen "kleben". */
@media (hover: hover) and (pointer: fine) {
  .btn--solid:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -18px rgba(43, 69, 214, .8);
  }
  .btn--ghost:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -20px rgba(12, 11, 16, .6); }
}
.btn:active { transform: translateY(1px); }

/* ── Top bar ─────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 1.05rem max(1.25rem, calc((100% - var(--page)) / 2));
  background: color-mix(in srgb, var(--bone) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.topbar.is-stuck { border-bottom-color: var(--rule); }

/* Mitte statt Grundlinie: das Monogramm ist deutlich hoeher als der
   Schriftzug, bei baseline haengt der Text am oberen Rand der Zeile und
   steht ueber den Knopf-Mitten. Zentriert liegt er buendig mit ihnen. */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex: none;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -.01em;
  text-decoration: none;
  margin-right: auto;
}
.wordmark em { font-style: italic; color: var(--lacquer); }
/* Das goldene Monogramm traegt die Marke, der Schriftzug bleibt daneben
   stehen — auf schmalen Geraeten kuerzt sich der Schriftzug, das Zeichen
   nicht. Die Hoehe haengt an der Schriftgroesse, damit beides zusammen
   waechst und schrumpft. */
.wordmark__mark {
  height: 2.2em;
  width: auto;
  flex: none;
  align-self: center;
  translate: 0 -.05em;
}

.topnav { display: flex; gap: 1.75rem; }
.topnav a {
  position: relative;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .3s var(--ease);
}
.topnav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -.35rem;
  width: 100%; height: 1px;
  background: var(--lacquer);
  scale: 0 1;
  transform-origin: left;
  transition: scale .4s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .topnav a:hover { color: var(--espresso); }
  .topnav a:hover::after { scale: 1 1; }
}

.topbar__tel { padding: .6rem 1.15rem; font-size: .78rem; min-height: 40px; }
.topbar__tel svg { display: none; }

/* Buchen ist die Hauptsache, die die Kopfzeile anbietet — deshalb steht
   der volle Knopf auf jedem Geraet, das Telefon daneben als ruhige
   Zweitwahl. */
.topbar__book {
  display: inline-flex;
  padding: .6rem 1.25rem;
  font-size: .78rem;
  min-height: 40px;
}
/* Beide Schriftzuege liegen in derselben Rasterzelle uebereinander; der
   verborgene bestimmt die Breite mit, zeigt sich aber nie. visibility
   statt display, denn nur so zaehlt er beim Messen noch mit. */
.topbar__book-slot { display: grid; }
.topbar__book-slot > * { grid-area: 1 / 1; justify-self: center; }
.topbar__book-ghost { visibility: hidden; pointer-events: none; }

/* ── Sprachumschalter DE / RU ────────────────────────────── */
.langswitch {
  display: inline-flex;
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bone-deep) 60%, transparent);
}
.langswitch__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  min-width: 2.5rem;
  min-height: 34px;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.langswitch__btn.is-active {
  background: var(--grad);
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .langswitch__btn:not(.is-active):hover { color: var(--espresso); }
}

@media (max-width: 860px) {
  .topbar { gap: .55rem; padding-block: .8rem; }
  /* Statt einer zweiten Leiste am unteren Rand tragen Anrufen und Buchen
     hier oben — ein einziges fixiertes Element genügt. */
  .topnav { display: none; }
  .wordmark { font-size: 1.22rem; }
  .topbar__tel { padding: .55rem .95rem; }
  .topbar__book { padding: .55rem 1.05rem; font-size: .76rem; }
}

@media (max-width: 560px) {
  /* Der Schriftzug "Nails Master Karina" fraesse hier die halbe Zeile.
     Das Monogramm allein traegt die Marke — der frei gewordene Platz
     geht an den Telefonknopf, der vorher nur im Menue stand. */
  .wordmark__long,
  .wordmark em { display: none; }
  .wordmark { gap: 0; }
  .wordmark__mark { height: 2.6rem; }

  /* Rund und nur mit Hoerer: der Knopf braucht so wenig Breite, dass
     Termin und Burger daneben ganz bleiben. */
  .topbar__tel {
    display: inline-flex;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    min-height: 44px;
  }
  .topbar__tel svg { display: block; }
  .topbar__tel span { display: none; }

  /* DE/RU bleibt oben stehen, statt sich im Menue zu verstecken: die
     Sprache ist fuer russischsprachige Gaeste das Erste, was sie suchen.
     Damit die Zeile nicht platzt, faellt die Rahmen-Pille weg und der
     aktive Knopf ebenso — sichtbar ist nur die Sprache, in die der Tap
     wechselt. aria-pressed statt Klasse, damit der Zustand auch ohne
     JavaScript stimmt. */
  .langswitch--top {
    padding: 0;
    gap: 0;
    border: 0;
    background: none;
    flex: none;
  }
  .langswitch--top .langswitch__btn[aria-pressed="true"] { display: none; }
  .langswitch--top .langswitch__btn {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border: 1px solid var(--rule);
    background: color-mix(in srgb, var(--bone-deep) 60%, transparent);
    color: var(--espresso);
  }
}

@media (max-width: 430px) {
  .topbar { gap: .5rem; padding-inline: 1rem; }
  .wordmark__mark { height: 2.3rem; }
  .topbar__tel { width: 40px; min-width: 40px; height: 40px; min-height: 40px; }
  .topbar__book { padding: .55rem .9rem; font-size: .72rem; }
  .langswitch--top .langswitch__btn {
    width: 40px; min-width: 40px; height: 40px; min-height: 40px;
    font-size: .7rem;
  }
}

/* iPhone SE und aehnlich schmal: Termin gibt zuerst nach. */
@media (max-width: 360px) {
  .topbar { gap: .4rem; padding-inline: .85rem; }
  .wordmark__mark { height: 2.1rem; }
  .topbar__book { padding: .5rem .75rem; font-size: .7rem; letter-spacing: .04em; }
}

/* Noch schmaler (iPhone SE der ersten Generation, 320px): jetzt gibt das
   Telefon nach — die Nummer steht weiterhin im Menue, Termin und Sprache
   dagegen gibt es nirgendwo sonst in Reichweite. */
@media (max-width: 340px) {
  .topbar__tel { display: none; }
}

/* ── Mobile Navigation ───────────────────────────────────── */
/* Auf schmalen Screens verschwindet die Topnav — ohne Ersatz bliebe nur
   Scrollen, um zu Preisen, Hygiene oder Gutscheinen zu kommen. Der
   Burger klappt dieselben Ziele als Tap-Flaechen unter die Kopfzeile. */
.navtoggle {
  display: none;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  color: var(--espresso);
  cursor: pointer;
}
.navtoggle[hidden] { display: none; }

/* Ein Balken, die beiden anderen als Pseudo-Elemente — im offenen
   Zustand kreuzen sie sich zum X. */
.navtoggle__bars,
.navtoggle__bars::before,
.navtoggle__bars::after {
  content: "";
  display: block;
  width: 17px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .32s var(--ease), opacity .2s var(--ease);
}
.navtoggle__bars { position: relative; }
.navtoggle__bars::before { position: absolute; top: -5.5px; }
.navtoggle__bars::after  { position: absolute; top:  5.5px; }

.navtoggle[aria-expanded="true"] .navtoggle__bars { background: transparent; }
.navtoggle[aria-expanded="true"] .navtoggle__bars::before { transform: translateY(5.5px) rotate(45deg); }
.navtoggle[aria-expanded="true"] .navtoggle__bars::after  { transform: translateY(-5.5px) rotate(-45deg); }

.mobnav {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  /* Auf niedrigen Screens (Landscape) darf das Panel scrollen, statt
     den Telefonlink unter den Rand zu schieben. */
  max-height: calc(100dvh - var(--topbar-h));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: .5rem max(1.25rem, calc((100% - var(--page)) / 2)) 1.25rem;
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 24px 50px -30px rgba(36, 27, 23, .5);
  transform-origin: top center;
  animation: mobnavIn .28s var(--ease) both;
}
.mobnav[hidden] { display: none; }

@keyframes mobnavIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}

.mobnav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: .35rem .25rem;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--espresso);
  border-bottom: 1px solid var(--rule);
}
.mobnav a:last-child { border-bottom: 0; }

.mobnav__tel {
  flex-direction: column;
  align-items: flex-start !important;
  gap: .1rem;
  margin-top: .6rem;
  padding: .7rem 1rem !important;
  border: 1px solid var(--rule) !important;
  border-radius: 1rem;
  background: var(--bone-deep);
}
.mobnav__tel span { font-size: .7rem; letter-spacing: .16em; color: var(--ink-soft); }
.mobnav__tel strong {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -.01em;
  text-transform: none;
  color: var(--lacquer);
}

/* Fangflaeche: ein Tap neben das Panel schliesst es. */
.mobnav__scrim {
  position: fixed;
  inset: var(--topbar-h) 0 0;
  z-index: 48;
  background: rgba(36, 27, 23, .3);
  animation: fadeIn .28s var(--ease) both;
}
.mobnav__scrim[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Solange das Panel offen ist, steht die Seite dahinter still. */
body.nav-open { overflow: hidden; }

@media (max-width: 860px) {
  .navtoggle:not([hidden]) { display: inline-flex; }
}

/* Ab Tablet uebernimmt wieder die Topnav — Panel und Knopf sind dann
   auch dann weg, wenn das Skript sie offen zurueckgelassen hat. */
@media (min-width: 861px) {
  .navtoggle, .mobnav, .mobnav__scrim { display: none !important; }
}

@media (max-width: 430px) {
  .navtoggle { width: 40px; height: 40px; }
  .mobnav a { min-height: 48px; font-size: .9rem; }
}

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
  animation: rise 1s var(--ease) both;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); filter: blur(6px); }
  to   { opacity: 1; transform: none; filter: none; }
}

.in-view > * { transition: opacity .9s var(--ease), transform .9s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: var(--page);
  max-width: 100%;
  margin-inline: auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero__glow {
  position: absolute;
  top: 0;
  right: -12%;
  width: min(46rem, 90vw);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(200, 30, 158, .28), transparent 62%),
    radial-gradient(circle at 68% 42%, rgba(43, 69, 214, .22), transparent 60%),
    radial-gradient(circle at 55% 78%, rgba(18, 165, 133, .20), transparent 62%);
  filter: blur(44px);
  z-index: -1;
  animation: drift 22s ease-in-out infinite alternate;
}

/* Hero-Grid: nebeneinander ab Tablet, gestapelt auf dem Handy. */
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__media {
  position: relative;
  border-radius: 1.75rem 1.75rem 5rem 5rem;
  overflow: hidden;
  background: var(--bone-deep);
  box-shadow: 0 40px 70px -45px rgba(36, 27, 23, .55);
}
.hero__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

/* Bildunterschrift liegt im Bild: der dunkle Verlauf traegt die Schrift,
   damit sie auf dem bunten Portrait ueberall lesbar bleibt. */
.hero__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 5rem clamp(1.75rem, 4vw, 2.5rem) clamp(1.75rem, 4vw, 2.5rem);
  background: linear-gradient(to top,
    rgba(36, 27, 23, .82) 0%,
    rgba(36, 27, 23, .58) 45%,
    rgba(36, 27, 23, 0) 100%);
  color: #FBF7F3;
  text-align: left;
  pointer-events: none;
}
.hero__caption-name {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.hero__caption-name::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 1px;
  margin: .6rem 0 .7rem;
  background: var(--blush);
  opacity: .85;
}
.hero__caption-text {
  display: block;
  font-size: clamp(.92rem, .88rem + .2vw, 1.02rem);
  line-height: 1.5;
  color: rgba(251, 247, 243, .9);
  max-width: 26rem;
  text-wrap: balance;
}
@keyframes drift {
  to { transform: translate3d(-3%, 4%, 0) scale(1.08); }
}

.eyebrow {
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lacquer);
  margin: 0 0 1.1rem;
  font-weight: 600;
}

.hero__title {
  font-size: clamp(3.1rem, 11vw, 8.2rem);
  line-height: .92;
  font-weight: 300;
  letter-spacing: -.035em;
  margin-bottom: 1.6rem;
}
.hero__title span { display: block; }
.hero__title--accent {
  font-style: italic;
  color: var(--lacquer);
  padding-left: clamp(1.5rem, 8vw, 7rem);
}
.hero__title span:last-child { padding-left: clamp(.75rem, 3vw, 2.5rem); }

/* Kyrillisch läuft in Fraunces deutlich breiter als Latein — sonst
   bricht "без спешки." in eine vierte Zeile um. */
html[lang="ru"] .hero__title { font-size: clamp(2.5rem, 8vw, 6.2rem); }
html[lang="ru"] .section__title { font-size: clamp(2.1rem, 5vw, 3.6rem); }
html[lang="ru"] .contact__title { font-size: clamp(2rem, 5.5vw, 4rem); }

.hero__lead {
  max-width: 40ch;
  font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem);
  color: var(--ink-soft);
  margin: 0 0 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero__facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1.5rem;
  margin: clamp(3rem, 7vw, 5rem) 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--rule);
}
.hero__facts li { display: flex; flex-direction: column; gap: .2rem; }
.hero__facts strong {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -.02em;
}
.hero__facts span { font-size: .85rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: clamp(2rem, 6vw, 3rem); }
  /* Gestapelt wirkt das Hochformat zu dominant — flacher anschneiden. */
  .hero__media {
    border-radius: 1.5rem 1.5rem 6rem 6rem;
    max-width: 34rem;
    margin-inline: auto;
  }
  .hero__media img { aspect-ratio: 4 / 5; object-position: center 20%; }
}

@media (max-width: 560px) {
  .hero { padding-top: clamp(2rem, 8vw, 3.5rem); }
  .hero__title { font-size: clamp(2.9rem, 13vw, 4.4rem); margin-bottom: 1.25rem; }
  html[lang="ru"] .hero__title { font-size: clamp(2.2rem, 9.5vw, 3.4rem); }
  .hero__title--accent { padding-left: 1.25rem; }
  .hero__title span:last-child { padding-left: .6rem; }
  .hero__lead { font-size: 1.02rem; }
  .hero__actions .btn { flex: 1 1 12rem; }

  /* Zwei kompakte Spalten statt drei gequetschter Zeilen */
  .hero__facts {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem 1rem;
    margin-top: 2.5rem;
  }
  .hero__facts li:last-child { grid-column: 1 / -1; }
  .hero__facts strong { font-size: 1.35rem; }
  /* Auf dem Handy liegt der Schimmer direkt hinter der Schlagzeile —
     zu kraeftig faerbt er das Papier ein, statt es nur anzuhauchen. */
  .hero__glow { filter: blur(52px); opacity: .42; animation: none; }
}

/* ── Marquee ─────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--rule);
  padding: .9rem 0;
  background: var(--bone-deep);
  user-select: none;
}
.marquee__track {
  display: flex;
  gap: 2.25rem;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee__track span {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--espresso-2);
  white-space: nowrap;
}
.marquee__track span[aria-hidden] { color: var(--lacquer); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

@media (max-width: 560px) {
  .marquee { padding: .7rem 0; }
  .marquee__track { gap: 1.5rem; animation-duration: 26s; }
  .marquee__track span { font-size: 1rem; }
}

/* ── Sections ────────────────────────────────────────────── */
.section {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(4rem, 10vw, 7.5rem) 0;
}
.section__head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
/* Der Kopf der Preisliste teilt sich die Achse mit der Liste darunter. */
#leistungen .section__head { width: min(100%, 54rem); margin-inline: auto; }
.section__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.03em;
}
.section__note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: .95rem;
}
.section__note a { color: var(--lacquer); text-underline-offset: 3px; }

/* ── Price menu ──────────────────────────────────────────── */
/* Eine schmale, mittig gesetzte Spalte statt eines Rasters: die Gruppen
   laufen untereinander wie in einer gedruckten Karte. Das Raster liess
   je nach Gruppengroesse Luecken stehen und zwang "Pedikuere" ueber die
   ganze Breite — die Spalte haelt alle Zeilen auf derselben Achse. */
.menu {
  width: min(100%, 54rem);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2.75rem, 5vw, 4.5rem);
}
/* Aus der Rasterzeit; in der Spalte ist jede Gruppe ohnehin voll breit. */
.menu__group--wide .item__body { max-width: none; }

.menu__groupTitle {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .74rem;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--lacquer);
  margin-bottom: 1.1rem;
}
/* Der Strich fuellt den Rest der Zeile neben dem Gruppennamen — ruhiger
   als eine durchgezogene Linie unter der Ueberschrift. */
.menu__groupTitle::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.item {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  isolation: isolate;
}
/* Die Hover-Flaeche liegt als eigene Ebene hinter der Zeile und ragt
   seitlich heraus. So bleibt der Text stehen, wo er steht — frueher
   schob ein wachsendes padding die ganze Zeile beim Hover zur Seite. */
.item::before {
  content: "";
  position: absolute;
  inset: 0 -.9rem;
  z-index: -1;
  background: transparent;
  transition: background .35s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .item:hover::before {
    background: color-mix(in srgb, var(--blush) 34%, transparent);
  }
}
/* Die ganze Zeile ist Klickfläche, der Knopf nur die sichtbare
   Aufforderung dazu — den Tastaturfokus trägt allein der Knopf. */
.item[data-service] { cursor: pointer; }

/* Ausgewählte Zeile bleibt auch ohne Zeiger markiert. */
.item.is-picked::before {
  background: color-mix(in srgb, var(--blush) 46%, transparent);
}

.item__body { flex: 1; min-width: 0; }
.item__name {
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.item__meta {
  margin: .2rem 0 0;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.item__incl {
  margin: .45rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .4rem;
}
.item__incl li {
  font-size: .74rem;
  padding: .1rem .55rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
}

/* Preis und Auswahl-Knopf teilen sich die rechte Spalte; als Flexbox
   liegt ihre Grundlinie auf der des Leistungsnamens. */
.item__side {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.item__pick {
  flex: none;
  padding: .38rem .9rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  color: var(--espresso);
  font-family: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease),
              color .3s var(--ease);
}
.item__pick::before {
  content: "+";
  margin-right: .35rem;
  font-size: .95em;
}
@media (hover: hover) and (pointer: fine) {
  .item__pick:hover { border-color: var(--espresso); }
}
.item__pick[aria-pressed="true"] {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}
.item__pick[aria-pressed="true"]::before { content: "✓"; }
.item__pick:focus-visible {
  outline: 2px solid var(--lacquer);
  outline-offset: 2px;
}

.item__price {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -.02em;
  white-space: nowrap;
}

/* ── Auswahlleiste zur Preisliste ────────────────────────── */
/* Liegt fest am unteren Fensterrand, sobald etwas ausgewählt ist —
   nicht nur solange die Liste im Bild ist. Die Auswahl bleibt so auf
   der ganzen Seite in Reichweite, auch beim Blättern zum Kalender. */
.menubar {
  position: fixed;
  left: max(1.25rem, calc((100% - var(--page)) / 2));
  right: max(1.25rem, calc((100% - var(--page)) / 2));
  bottom: calc(clamp(1rem, 3vw, 1.5rem) + var(--safe-b));
  z-index: 45;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem 1.25rem;
  padding: .8rem .8rem .8rem 1.5rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bone);
  box-shadow: 0 18px 40px -24px rgba(36, 27, 23, .55);
}
.menubar[hidden] { display: none; }

/* Solange die Leiste schwebt, endet die Seite etwas höher — sonst
   liegt sie über dem Impressum-Fuß. */
body.has-menubar { padding-bottom: calc(6rem + var(--safe-b)); }

.menubar__count {
  margin: 0;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.menubar__actions { display: flex; align-items: center; gap: .5rem; }
.menubar__actions .btn { min-height: 40px; padding: .6rem 1.25rem; }
.menubar__clear { border-color: transparent; color: var(--ink-soft); }

@media (max-width: 560px) {
  .menu { gap: 2.5rem; }
  /* Lange Leistungsnamen dürfen trennen, statt den Preis zu verdrängen. */
  .item__name { font-size: 1rem; hyphens: auto; }
  .item__meta { font-size: .74rem; }
  .item__price { font-size: 1.3rem; }
  .item__incl li { font-size: .72rem; padding: .1rem .5rem; }

  /* Name links, Preis rechts auf einer Höhe — darunter der Knopf über die
     ganze Zeilenbreite. Die rechte Spalte löst sich dazu auf (contents),
     damit Preis und Knopf eigenständig im Zeilenumbruch liegen. */
  .item {
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: .75rem;
    padding: .95rem 0 1.05rem;
  }
  .item__side { display: contents; }
  .item__body { flex: 1 1 auto; }
  .item__price { order: 1; }
  .item__pick {
    order: 2;
    flex: 1 0 100%;
    width: 100%;
    padding: .6rem 1rem;
    font-size: .7rem;
  }

  .menubar {
    border-radius: 1.25rem;
    padding: .9rem 1rem;
    justify-content: center;
    text-align: center;
  }
  .menubar__actions { width: 100%; }
  .menubar__actions .btn { flex: 1; }
  .menu__group--wide .item__body { max-width: none; }
}

/* ── Galerie / Arbeiten ──────────────────────────────────── */
/* Alle Studiofotos sind Hochformat — die Kacheln schneiden sie
   einheitlich auf 3:4, damit die Reihe ruhig bleibt. */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.shot img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 1.5rem;
  background: var(--bone-deep);
  box-shadow: 0 30px 55px -45px rgba(36, 27, 23, .6);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .shot:hover img {
    transform: translateY(-6px);
    box-shadow: 0 40px 65px -40px rgba(36, 27, 23, .6);
  }
}
.shot figcaption {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  margin-top: .9rem;
  padding-left: .2rem;
}
.shot__title {
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -.01em;
}
.shot__meta {
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Die mittlere Kachel hängt etwas tiefer — nimmt der Reihe das
   Rasterhafte. Als margin, nicht als transform: das Einblenden in
   app.js schreibt transform inline und würde den Versatz überschreiben. */
@media (min-width: 900px) {
  .gallery .shot:nth-child(2) { margin-top: 2.5rem; }
}

@media (max-width: 560px) {
  .shot img { border-radius: 1.1rem; }
  .shot figcaption { margin-top: .7rem; }
}

/* ── Split: Bild + Text (Studio) ─────────────────────────── */
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12rem 12rem 1.75rem 1.75rem;
  background: var(--bone-deep);
  box-shadow: 0 40px 70px -45px rgba(36, 27, 23, .55);
}
.split__text p {
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 1.25rem 0 1.75rem;
}
.split__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .8rem;
  max-width: 44ch;
}
.split__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .95rem;
  color: var(--espresso-2);
}
.split__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: -.05em;
  color: var(--lacquer);
  font-size: .8rem;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split__media {
    max-width: 26rem;
    margin-inline: auto;
  }
  .split__media img { border-radius: 8rem 8rem 1.5rem 1.5rem; }
}
@media (max-width: 560px) {
  .split__media img { aspect-ratio: 3 / 4; border-radius: 6rem 6rem 1.1rem 1.1rem; }
}

/* ── Hygiene: Aufbereitung der Instrumente ────────────── */
/* Vier Schritte in fester Reihenfolge — deshalb eine <ol>, deren Nummern
   sichtbar bleiben, statt einer schmucken Kartenwand ohne Leserichtung. */
.sterile {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  counter-reset: none;
}
.sterile__step {
  position: relative;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid var(--rule);
  border-radius: 1.5rem;
  background: color-mix(in srgb, var(--bone-deep) 45%, transparent);
}
.sterile__num {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--lacquer);
  margin-bottom: .9rem;
}
.sterile__title {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: .55rem;
}
.sterile__step p {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
}
.sterile__foot {
  max-width: 52ch;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding-left: 1.25rem;
  border-left: 2px solid var(--blush);
  font-size: .92rem;
  color: var(--espresso-2);
}

@media (max-width: 1000px) {
  .sterile { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sterile { grid-template-columns: 1fr; gap: 1rem; }
  .sterile__step { border-radius: 1.25rem; }
}

/* ── Gutscheine ──────────────────────────────────────────── */
/* Der dunkle Kasten bringt genug Eigenmasse mit — darüber reicht
   weniger Luft als zwischen zwei hellen Abschnitten. */
.section--voucher { padding-top: clamp(1.5rem, 4vw, 3rem); }
.voucher {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  background: var(--espresso);
  color: var(--bone);
  border-radius: 2rem;
  padding: clamp(2.25rem, 5vw, 4.5rem);
}
.voucher .eyebrow { color: var(--blush); }
.voucher__text p {
  color: rgba(247, 242, 236, .74);
  max-width: 42ch;
  margin: 1.25rem 0 2rem;
}
.voucher .btn--solid {
  background: var(--bone);
  color: var(--espresso);
  border-color: var(--bone);
}
@media (hover: hover) and (pointer: fine) {
  .voucher .btn--solid:hover { background: var(--lacquer); color: var(--bone); border-color: var(--lacquer); }
}

/* Zwei echte Fotos statt einer gezeichneten Karte: das große zeigt den
   Gutschein, das kleine ragt als Detail darüber hinaus. */
.voucher__photos { position: relative; }
.voucher__photo img {
  width: 100%;
  object-fit: cover;
  border-radius: 1.25rem;
  background: var(--espresso-2);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7);
}
.voucher__photo--main img {
  aspect-ratio: 3 / 4;
  transform: rotate(-2deg);
  transition: transform .6s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .voucher__photo--main:hover img { transform: rotate(0deg) scale(1.02); }
}
.voucher__photo--small {
  position: absolute;
  right: -1.5rem;
  bottom: -2rem;
  width: 42%;
}
.voucher__photo--small img {
  aspect-ratio: 1;
  /* Der Gutschein sitzt im Original leicht oberhalb der Mitte. */
  object-position: 50% 42%;
  border: 4px solid var(--espresso);
  transform: rotate(4deg);
}

@media (max-width: 820px) {
  .voucher { grid-template-columns: 1fr; }
  .voucher__photos { max-width: 24rem; margin-inline: auto; }
  .voucher__photo--small { right: -1rem; bottom: -1.25rem; }
}
@media (max-width: 560px) {
  .voucher { border-radius: 1.5rem; padding: 2rem 1.4rem; }
  .voucher__text p { margin-bottom: 1.6rem; }
  .voucher__text .btn { width: 100%; }
  /* Gedreht und überstehend ragt die Collage sonst aus dem Kasten. */
  .voucher__photo--main img { transform: none; }
  .voucher__photo--small { right: 0; bottom: -1rem; width: 38%; }
}

/* ── Booking / calendar embed ────────────────────────────── */
/* Der Kalender läuft randlos im Container. Keine feste Höhe: embed.js
   misst den Inhalt und stellt den iframe bei jedem Schritt nach — eine
   Höhe von hier aus würde ihn abschneiden. */
.booking {
  position: relative;
  border: 1px solid var(--rule);
  border-radius: 1.5rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 24px 60px -40px rgba(36, 27, 23, .5);
}

.booking iframe { display: block; width: 100%; border: 0; }

@media (max-width: 640px) {
  .booking { border-radius: 1.1rem; }
}

/* ── Kontakt ─────────────────────────────────────────────── */
.section--contact { text-align: center; }

.contact__title {
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: -.035em;
}
.contact__tel {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.6rem, 4.5vw, 2.75rem);
  color: var(--lacquer);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--lacquer) 40%, transparent);
  transition: border-color .35s var(--ease), letter-spacing .35s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .contact__tel:hover { border-color: var(--lacquer); letter-spacing: .01em; }
}
.contact__note { color: var(--ink-soft); font-size: .9rem; margin-top: 1.25rem; }

@media (max-width: 560px) {
  /* Die Nummer ist der wichtigste Tap auf dem Handy — als Fläche, nicht als Link. */
  .contact__tel {
    display: block;
    margin-top: 1.5rem;
    padding: .8rem 1rem;
    border: 1px solid color-mix(in srgb, var(--lacquer) 40%, transparent);
    border-radius: 999px;
    font-size: 1.5rem;
  }
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  width: var(--page);
  margin-inline: auto;
  padding: 2.25rem 0 3rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .85rem;
  color: var(--ink-soft);
}
.footer p { margin: 0; }
.footer__logo {
  width: auto;
  height: auto;
  max-width: min(15rem, 62vw);
  margin-bottom: .35rem;
}
.footer__by a {
  color: var(--espresso);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--lacquer);
  transition: color .3s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .footer__by a:hover { color: var(--lacquer); }
}

@media (max-width: 480px) {
  .footer { padding: 2rem 0 2.5rem; gap: .45rem; }
}

/* ── Rechtsseiten (Impressum / Datenschutz) ──────────────── */
/* Reine Lesetypografie: eine schmale Spalte, ruhiger Rhythmus.
   Bewusst ohne Scroll-Reveals — Pflichtangaben muessen auch dann
   dastehen, wenn JavaScript nicht läuft. */
.legal {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.legal__head {
  max-width: 46rem;
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--rule);
}
.legal__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -.03em;
}
.legal__updated {
  margin: 1rem 0 0;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* 68 Zeichen sind die bequeme Obergrenze fuer laufenden Text. */
.legal__body { max-width: 42rem; }

.legal__body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
  margin: clamp(2.75rem, 6vw, 3.75rem) 0 1rem;
}
.legal__body h2:first-child { margin-top: 0; }
.legal__body h3 {
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lacquer);
  margin: 2.25rem 0 .75rem;
}
.legal__body p { margin: 0 0 1.1rem; color: var(--espresso-2); }
.legal__body a { color: var(--lacquer); text-underline-offset: 3px; word-break: break-word; }
.legal__body strong { font-weight: 700; color: var(--espresso); }

.legal__body ul { margin: 0 0 1.25rem; padding: 0; list-style: none; display: grid; gap: .55rem; }
.legal__body ul li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--espresso-2);
  font-size: .97rem;
}
.legal__body ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: -.05em;
  color: var(--lacquer);
  font-size: .75rem;
}

/* Anschriften stehen als abgesetzter Block, nicht als Fliesstext. */
.legal__address {
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.4rem;
  border-left: 2px solid var(--lacquer);
  background: var(--bone-deep);
  border-radius: 0 1rem 1rem 0;
  font-style: normal;
  line-height: 1.7;
}
.legal__address strong { display: block; margin-bottom: .2rem; }

/* Der Widerspruchs-Absatz nach Art. 21 DSGVO steht im Original in
   Versalien. Als Kapitaelchen bleibt er lesbar, ohne die Betonung
   zu verlieren — und Screenreader buchstabieren ihn nicht. */
.legal__shout {
  font-variant-caps: all-small-caps;
  letter-spacing: .04em;
  font-size: 1.02em;
}

/* Noch auszufuellende Pflichtangaben. Faellt beim Korrekturlesen auf
   und ist im Markup eindeutig auffindbar. */
.legal__todo {
  background: color-mix(in srgb, var(--lacquer) 16%, transparent);
  color: var(--lacquer-dk);
  padding: .05em .4em;
  border-radius: .3em;
  font-weight: 700;
  font-size: .92em;
  letter-spacing: .02em;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .3s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .legal__back:hover { color: var(--lacquer); }
}

@media (max-width: 560px) {
  .legal__body h2 { font-size: 1.4rem; }
  .legal__address { padding: 1rem 1.1rem; }
}

/* ── Footer: Rechtslinks ─────────────────────────────────── */
.footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.25rem; }
.footer__legal a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .footer__legal a:hover { color: var(--espresso); border-bottom-color: var(--lacquer); }
}


/* ── Touch: Mindestgroessen fuer Finger ──────────────────── */
/* Nicht an die Viewport-Breite gehaengt, sondern an die Eingabeart:
   ein Tablet im Querformat ist breit und wird trotzdem getippt. */
@media (pointer: coarse) {
  .item__pick { min-height: 40px; padding-inline: 1rem; }
  .langswitch__btn { min-height: 40px; }
  .menubar__actions .btn { min-height: 44px; }
  /* Fusszeilen-Links stehen dicht beieinander — etwas Luft dazwischen
     verhindert Fehlgriffe. */
  .footer__legal a { padding: .45rem .25rem; }
  .shot figcaption { padding-block: .1rem; }
}

/* ── Handy im Querformat ─────────────────────────────────── */
/* Wenig Hoehe, viel Breite: Kopfzeile und Hero duerfen hier nicht den
   halben Bildschirm belegen. */
@media (max-height: 480px) and (orientation: landscape) {
  .topbar { padding-block: .55rem; }
  .hero { padding-block: 2rem 2rem; }
  .hero__title { font-size: clamp(2.4rem, 7vw, 3.6rem); }
  .hero__media { max-width: 22rem; }
  .hero__facts { margin-top: 1.75rem; padding-top: 1.25rem; }
  .section { padding-block: clamp(2.5rem, 7vw, 4rem); }
}

/* ── Datensparmodus ──────────────────────────────────────── */
/* Wer Daten spart, sitzt meist auf einer schwachen Verbindung — die
   Dauerlaeufer im Hintergrund kosten dort nur Akku. */
@media (prefers-reduced-data: reduce) {
  .marquee__track { animation: none; }
  .hero__glow { animation: none; }
  .grain { display: none; }
}
