/* ============================================================
   Studio One – gemeinsames Stylesheet für alle Seiten
   (index, buchen, impressum, datenschutz)
   ============================================================ */

/* ------------------------------------------------------------
   Fonts – selbst gehostet (DSGVO: kein Google-Fonts-CDN zur
   Laufzeit, vgl. LG München I, 3 O 17493/20)
   ------------------------------------------------------------ */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/cormorant-garamond-v21-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/cormorant-garamond-v21-latin-300italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/cormorant-garamond-v21-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/jost-v20-latin-300.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/jost-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/jost-v20-latin-500.woff2") format("woff2");
}

/* ------------------------------------------------------------
   Design-Tokens
   ------------------------------------------------------------ */
:root {
  --bg: #FAF6F1;
  --bg-alt: #F3ECE2;
  --card: #FFFFFF;
  --ink: #37302A;
  --ink-soft: #5C5148;
  --accent: #BFA591;        /* Logofarbe – nur dekorativ, nie für Text */
  --accent-deep: #7E6952;   /* textfähiger Akzent (AA auf Elfenbein) */
  --accent-line: rgba(191, 165, 145, .35);
  --arch: 999px 999px 0 0;  /* Bogen-Leitmotiv (Salon-Spiegel) */
  --radius: 12px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --fs-h1: clamp(2.75rem, 6vw, 4.25rem);
  --fs-h2: clamp(2rem, 3.5vw, 2.75rem);
  --section-pad: clamp(4.5rem, 10vw, 7.5rem);
  --container: 1160px;
  --header-h: 84px;
}

/* ------------------------------------------------------------
   Reset & Basis
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-padding-top: calc(var(--header-h) + 12px);
}
/* Smooth-Scrolling nur nach Interaktion (Fokus in der Seite):
   So springt ein direkter Aufruf mit Anker (z. B. index.html#preise von einer
   Unterseite aus) sofort an die richtige Stelle, während Klicks auf
   Anker-Links weiterhin sanft scrollen. */
html:focus-within {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  hyphens: auto;
  overflow-wrap: break-word;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h1 em, h2 em {
  font-style: italic;
  color: var(--accent-deep);
}
p {
  margin: 0 0 1rem;
  hyphens: auto;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); }
ul { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   Utilities
   ------------------------------------------------------------ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section { padding-block: var(--section-pad); }
.section-alt { background: var(--bg-alt); }
.section-head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}
.section-head .kicker { justify-content: center; }
.section-head .kicker::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--accent);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--accent-deep);
  margin: 0 0 1.25rem;
}
.kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--accent);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95em 2em;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .14em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.btn-primary:hover { background: var(--ink); color: var(--bg); }
.btn-ghost {
  border-color: var(--accent);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: rgba(191, 165, 145, .16); }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.arch-mask {
  border-radius: var(--arch);
  overflow: hidden;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: .75em 1.5em;
  border-radius: 999px;
  text-decoration: none;
  font-size: .875rem;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Reveal-Animationen: nur mit JS aktiv (html.js), sonst alles sichtbar */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--d, 0ms);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------
   Header
   ------------------------------------------------------------ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-h);
  transition: height .3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--accent-line);
  box-shadow: 0 8px 30px rgba(55, 48, 42, .07);
}
.site-header.is-scrolled .container { height: 68px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 208px; height: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-list a { white-space: nowrap; }
.nav-list a:not(.btn) {
  font-size: .8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .14em;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding: .5rem 0;
}
.nav-list a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-list a:not(.btn):hover::after,
.nav-list a:not(.btn):focus-visible::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 120;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--ink);
  margin: 4px auto;
  transition: transform .3s ease, opacity .3s ease;
}

/* ------------------------------------------------------------
   Hero (Startseite)
   ------------------------------------------------------------ */
.hero {
  min-height: min(100svh, 980px);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: clamp(2rem, 5vw, 4rem);
  width: 100%;
}
.hero-copy .lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}
.hero-media {
  position: relative;
  z-index: 0;
  max-width: 560px;
  justify-self: center;
  width: 100%;
}
.hero-media::before {
  content: "";
  position: absolute;
  top: -14px; left: -14px;
  width: 100%; height: 100%;
  border: 1px solid var(--accent);
  opacity: .45;
  border-radius: var(--arch);
  z-index: -1;
}
.hero-media .arch-mask {
  aspect-ratio: 4 / 5;
  max-height: 56vh;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 42% 55%;
}

/* ------------------------------------------------------------
   Über uns
   ------------------------------------------------------------ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about-media {
  max-width: 420px;
  width: 100%;
  justify-self: center;
}
.about-media .arch-mask { aspect-ratio: 3 / 4; }
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-copy p { color: var(--ink-soft); max-width: 36rem; }
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}
.feature-icon {
  width: 64px; height: 72px;
  border: 1px solid var(--accent-line);
  border-radius: var(--arch);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg {
  width: 26px; height: 26px;
  stroke: var(--accent-deep);
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature h3 {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: .5rem;
}
.feature p {
  font-size: .9375rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 30rem;
}

/* ------------------------------------------------------------
   Leistungen & Preise
   ------------------------------------------------------------ */
.price-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 62rem;
  margin-inline: auto;
}
.price-group + .price-group { margin-top: 3rem; }
.price-group h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.price-group h3::after {
  content: "";
  width: 32px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding-block: .55rem;
}
.price-row .name { font-weight: 400; }
.price-row .dots {
  flex: 1;
  min-width: 1.5rem;
  border-bottom: 1px dotted rgba(191, 165, 145, .6);
  transform: translateY(-.3em);
}
.price-row .price {
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.price-note {
  text-align: center;
  font-size: .875rem;
  color: var(--ink-soft);
  margin: 3rem 0 2rem;
}
.price-cta { text-align: center; }

/* ------------------------------------------------------------
   Galerie
   ------------------------------------------------------------ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.03); }
.g-land { aspect-ratio: 4 / 3; }
.g-port { aspect-ratio: 4 / 5; }

/* ------------------------------------------------------------
   Termin buchen (Sektion auf der Startseite + Buchen-Seite)
   ------------------------------------------------------------ */
.booking-frame {
  background: var(--card);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  padding: .75rem;
  box-shadow: 0 24px 60px rgba(55, 48, 42, .07);
  max-width: 62rem;
  margin-inline: auto;
}
.booking-frame iframe {
  display: block;
  width: 100%;
  height: 780px;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
}
.booking-fallback {
  text-align: center;
  font-size: .9375rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}
.booking-fallback + .booking-fallback { margin-top: .3rem; }
.booking-fallback a { white-space: nowrap; }

/* ------------------------------------------------------------
   Kontakt
   ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.info {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.info-icon {
  flex-shrink: 0;
  width: 52px; height: 58px;
  border: 1px solid var(--accent-line);
  border-radius: var(--arch);
  display: grid;
  place-items: center;
}
.info-icon svg {
  width: 22px; height: 22px;
  stroke: var(--accent-deep);
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info h3 {
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-deep);
  margin-bottom: .5rem;
}
.info p, .info address, .info dl { color: var(--ink-soft); font-size: 1rem; margin: 0; }
.info a { color: var(--ink); text-decoration-color: var(--accent); text-underline-offset: 3px; }
.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .3rem 1.75rem;
}
.hours dt { font-weight: 400; color: var(--ink); }
.hours dd { margin: 0; }
.contact-card {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
}
.contact-card::after {
  content: "";
  position: absolute;
  right: -50px; bottom: -80px;
  width: 190px; height: 260px;
  border: 1px solid var(--accent);
  opacity: .35;
  border-radius: var(--arch);
  pointer-events: none;
}
.contact-card h3 {
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: .75rem;
}
.contact-card p { color: var(--ink-soft); margin-bottom: 1.75rem; max-width: 26rem; }
.contact-card .hint {
  display: block;
  font-size: .8125rem;
  color: var(--ink-soft);
  margin-top: .875rem;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background: var(--ink);
  color: var(--bg);
}
.site-footer .container { padding-block: clamp(3rem, 6vw, 4.5rem) 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand img { width: 200px; height: auto; margin-bottom: 1rem; }
.footer-brand .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0;
}
.footer-brand .desc {
  margin: 1rem 0 0;
  font-size: .9375rem;
  color: var(--bg);
  max-width: 26rem;
}
.footer-col h3 {
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .6rem; font-size: .9375rem; }
.footer-col a {
  color: var(--bg);
  text-decoration: none;
  font-size: .9375rem;
}
.footer-col a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-col .insta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.footer-col .insta svg {
  width: 18px; height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(250, 246, 241, .15);
  font-size: .8125rem;
  color: rgba(250, 246, 241, .7);
}
.footer-bottom a { color: rgba(250, 246, 241, .85); text-underline-offset: 3px; }
.site-footer :focus-visible { outline-color: var(--bg); }

/* Schlanker Footer (Buchen-Seite) */
.footer-slim {
  background: var(--ink);
  color: rgba(250, 246, 241, .75);
  text-align: center;
  font-size: .8125rem;
  padding-block: 1.75rem;
}
.footer-slim p { margin: 0; }
.footer-slim p + p { margin-top: .4rem; }
.footer-slim a { color: rgba(250, 246, 241, .9); text-underline-offset: 3px; }
.footer-slim :focus-visible { outline-color: var(--bg); }

/* ------------------------------------------------------------
   Unterseiten: Impressum & Datenschutz
   ------------------------------------------------------------ */
.page-header {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4rem));
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--bg-alt);
  text-align: center;
}
.page-header .kicker { justify-content: center; }
.page-header h1 { margin-bottom: 0; }
.legal {
  max-width: 46rem;
  margin-inline: auto;
}
.legal h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  margin: 2.75rem 0 .9rem;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .01em;
  margin: 1.75rem 0 .5rem;
}
.legal p, .legal li { color: var(--ink-soft); }
.legal a { color: var(--ink); text-decoration-color: var(--accent); text-underline-offset: 3px; }
.legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal li { margin-bottom: .35rem; }
.legal address {
  color: var(--ink-soft);
  line-height: 1.8;
}
.legal .updated {
  font-size: .8125rem;
  color: var(--ink-soft);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--accent-line);
}

/* ------------------------------------------------------------
   Buchen-Seite (QR-Ziel) – reduziert, Fokus aufs Formular
   ------------------------------------------------------------ */
.booking-page-main {
  padding-top: var(--header-h);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.booking-hero {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 3vw, 2.25rem);
}
.booking-hero .kicker { justify-content: center; }
.booking-hero p { color: var(--ink-soft); margin: 0; }
.booking-frame--page iframe { height: 900px; }

/* ------------------------------------------------------------
   Cookie-Hinweis
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 115;
  width: min(680px, calc(100% - 2rem));
  background: var(--card);
  border: 1px solid var(--accent-line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(55, 48, 42, .18);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p {
  margin: 0;
  font-size: .875rem;
  color: var(--ink-soft);
  flex: 1;
}
.cookie-banner .btn {
  flex-shrink: 0;
  padding: .8em 1.5em;
}
@media (max-width: 639.98px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: .9rem;
  }
}

/* ------------------------------------------------------------
   Responsive: ab 640px
   ------------------------------------------------------------ */
@media (min-width: 640px) {
  .features { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g-land { grid-column: span 2; aspect-ratio: 16 / 10; }
  .g-port { aspect-ratio: 3 / 4; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ------------------------------------------------------------
   Responsive: ab 900px (Desktop-Layouts, Inline-Nav)
   ------------------------------------------------------------ */
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 0.95fr 1fr; gap: 4rem; }
  .hero-media { justify-self: end; }
  .hero-media .arch-mask { max-height: none; }
  .about-grid { grid-template-columns: 5fr 7fr; gap: 4.5rem; }
  .about-media { justify-self: start; }
  .price-columns { grid-template-columns: 1fr 1fr; gap: 4.5rem; }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }
  .g-land { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .g-port { grid-row: span 2; aspect-ratio: auto; }
  .booking-frame iframe { height: 950px; }
  .booking-frame--page iframe { height: 1050px; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; gap: 4.5rem; }
}

/* ------------------------------------------------------------
   Mobile Navigation (nur mit JS als Overlay, < 1200px —
   darunter passen sechs Menüpunkte nicht neben das Logo)
   ------------------------------------------------------------ */
@media (max-width: 1199.98px) {
  .brand img { width: 168px; }
  .js .nav-toggle { display: block; }
  .js .nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
  }
  .js body.menu-open .nav,
  body.menu-open .nav {
    opacity: 1;
    visibility: visible;
  }
  .js .nav-list {
    flex-direction: column;
    gap: 1.9rem;
    text-align: center;
  }
  .js .nav-list a:not(.btn) {
    font-family: var(--font-serif);
    /* clamp: bleibt auch auf schmalen Geräten einzeilig (nowrap) */
    font-size: clamp(1.55rem, 8vw, 1.9rem);
    font-weight: 300;
    text-transform: none;
    letter-spacing: .02em;
  }
  .js .nav-list li {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s ease, transform .4s ease;
  }
  body.menu-open .nav-list li { opacity: 1; transform: none; }
  body.menu-open .nav-list li:nth-child(1) { transition-delay: .08s; }
  body.menu-open .nav-list li:nth-child(2) { transition-delay: .14s; }
  body.menu-open .nav-list li:nth-child(3) { transition-delay: .2s; }
  body.menu-open .nav-list li:nth-child(4) { transition-delay: .26s; }
  body.menu-open .nav-list li:nth-child(5) { transition-delay: .32s; }
  body.menu-open .nav-list li:nth-child(6) { transition-delay: .38s; }
  body.menu-open { overflow: hidden; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { transform: translateY(-2.75px) rotate(-45deg); }
  /* Ohne JS: Nav bleibt im normalen Fluss sichtbar */
  html:not(.js) .nav-list { flex-wrap: wrap; gap: 1rem; justify-content: flex-end; }
}

/* ------------------------------------------------------------
   Hero-Einstiegsanimation (nur ohne Reduced Motion)
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: heroIn 1.4s cubic-bezier(.22, .61, .36, 1) both;
  }
  @keyframes heroIn {
    from { transform: scale(1.06); }
    to   { transform: scale(1); }
  }
}

/* ------------------------------------------------------------
   Reduced Motion: alles Bewegte deaktivieren
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html, html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
