/* ==========================================================================
   Hair & Beauty Sensation – „Durch den Bogen“
   Klar, eckig, hochwertig. Der Bogen bleibt als Bildmotiv.
   ========================================================================== */

:root {
  /* Farben – abgeleitet von Villa & Salonschild */
  --ivory: #F6F1EA;
  --ivory-2: #EEE6D9;
  --sand: #E8DCC8;
  --white: #FFFFFF;
  --ink: #232628;
  --ink-2: #3A3F42;
  --muted: #625D57;
  --teal: #2F8C90;
  --teal-deep: #1D6A6E;
  --teal-btn: #267A7E;
  --teal-light: #7FCCCC;
  --brick: #8E4A36;
  --gold: #C9973A;
  --line: rgba(35, 38, 40, .14);
  --line-strong: rgba(35, 38, 40, .28);
  --line-light: rgba(246, 241, 234, .18);

  /* Typo */
  --font: "Jost", "Futura", "Avenir Next", system-ui, sans-serif;
  --step--1: clamp(.8rem, .78rem + .1vw, .86rem);
  --step-0: clamp(1rem, .97rem + .15vw, 1.08rem);
  --step-1: clamp(1.12rem, 1.05rem + .35vw, 1.35rem);
  --step-2: clamp(1.4rem, 1.2rem + .9vw, 1.95rem);
  --step-3: clamp(1.9rem, 1.45rem + 2vw, 3.1rem);
  --step-4: clamp(2.4rem, 1.6rem + 3.6vw, 4.6rem);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.5rem, 9vw, 8rem);
  --nav-h: 76px;
  --ease: cubic-bezier(.22, .8, .24, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote, fieldset { margin: 0; padding: 0; }
ul, ol { list-style: none; }
fieldset { border: 0; min-width: 0; }
table { border-collapse: collapse; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.sprite { display: none; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; left: 1rem; top: -4rem; z-index: 200;
  background: var(--ink); color: var(--ivory); padding: .8rem 1.2rem; text-decoration: none; transition: top .2s;
}
.skip:focus { top: 1rem; }

.icon {
  width: 1.1em; height: 1.1em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: square; stroke-linejoin: miter;
}
.icon--fill { fill: currentColor; stroke: none; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); position: relative; }
.section--alt { background: var(--ivory-2); }
.section--flush-top { padding-top: 0; }

/* ---------- Typo-Bausteine ---------- */
.display {
  font-size: var(--step-4);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.02em;
  text-wrap: balance;
}
.display em { font-style: normal; color: var(--teal-deep); }
.h3 { font-size: var(--step-2); font-weight: 400; line-height: 1.2; letter-spacing: -.01em; }
.lead { font-size: var(--step-1); line-height: 1.6; color: var(--ink-2); max-width: 40ch; font-weight: 300; text-wrap: pretty; }
.eyebrow, .kicker {
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: var(--muted);
}
.kicker { display: inline-flex; align-items: center; gap: .9rem; margin-bottom: 1.4rem; }
.kicker span { color: var(--teal-deep); display: inline-flex; align-items: center; gap: .9rem; }
.kicker span::after { content: ""; width: 2rem; height: 1px; background: var(--line-strong); }
.kicker--light { color: rgba(246, 241, 234, .7); }
.kicker--light span { color: var(--teal-light); }
.kicker--light span::after { background: var(--line-light); }

.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lead { margin-top: 1.2rem; }
.section-head--split { display: grid; gap: 1.2rem 4rem; align-items: end; }
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.2fr 1fr; }
  .section-head--split .lead { margin-top: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--ivory); --bd: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .7rem;
  min-height: 3.2rem; padding: .8rem 1.6rem;
  border: 1px solid var(--bd); border-radius: 0;
  background: var(--bg); color: var(--fg);
  font-family: var(--font); font-weight: 500; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn .icon { width: 1.05rem; height: 1.05rem; transition: transform .3s var(--ease); }
.btn:hover .icon:last-child:not(:first-child) { transform: translateX(4px); }
.btn--dark:hover { --bg: var(--teal-btn); --bd: var(--teal-btn); --fg: #fff; }
.btn--teal { --bg: var(--teal-btn); --bd: var(--teal-btn); --fg: #fff; }
.btn--teal:hover { --bg: var(--ivory); --bd: var(--ivory); --fg: var(--ink); }
.btn--light { --bg: var(--ivory); --bd: var(--ivory); --fg: var(--ink); }
.btn--light:hover { --bg: transparent; --fg: var(--ivory); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--line-strong); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--ivory); --bd: var(--ink); }
.btn--ghost-light { --bg: transparent; --fg: var(--ivory); --bd: rgba(246, 241, 234, .4); }
.btn--ghost-light:hover { --bg: var(--ivory); --fg: var(--ink); --bd: var(--ivory); }
.btn--sm { min-height: 2.7rem; padding: .55rem 1.2rem; font-size: .72rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
@media (max-width: 599px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
}

.square-btn {
  display: grid; place-items: center;
  width: 3rem; height: 3rem; border: 1px solid var(--line-strong); background: transparent; border-radius: 0;
  transition: background .3s, color .3s, border-color .3s, opacity .3s;
}
.square-btn:hover:not(:disabled) { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.square-btn:disabled { opacity: .3; cursor: default; }

.link-more {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; padding-bottom: .3rem;
  border-bottom: 1px solid var(--line-strong); transition: border-color .3s, color .3s;
}
.link-more .icon { width: 1rem; height: 1rem; transition: transform .3s var(--ease); }
.link-more:hover { color: var(--teal-deep); border-color: var(--teal-deep); }
.link-more:hover .icon { transform: translateX(4px); }

/* ---------- Bogen (Bildmotiv) ---------- */
.arch { border-radius: 999em 999em 0 0; overflow: hidden; position: relative; isolation: isolate; background: var(--sand); }
.arch img, .frame img { width: 100%; height: 100%; object-fit: cover; }
.frame { overflow: hidden; position: relative; background: var(--sand); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-inline: var(--gutter);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .45s var(--ease), color .4s var(--ease);
}
.nav.is-solid {
  background: rgba(246, 241, 234, .9);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line);
}
.nav.is-hidden { transform: translateY(-100%); }
.nav { color: var(--ink); }
.nav__logo { position: relative; display: block; }
.nav__logo img { width: clamp(136px, 12vw, 168px); height: auto; transition: opacity .35s var(--ease); }
.nav__logo-light { position: absolute; inset: 0; opacity: 0; }
.nav.is-over-image { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; color: var(--ivory); }
.nav.is-over-image .nav__logo-dark { opacity: 0; }
.nav.is-over-image .nav__logo-light { opacity: 1; }
.nav.is-over-image .nav__links a::after { background: var(--ivory); }
.nav.is-over-image .nav__burger { border-color: rgba(246, 241, 234, .5); }
.nav.is-over-image .nav__burger-lines, .nav.is-over-image .nav__burger-lines::before { background: var(--ivory); }
.nav.is-over-image .btn--dark { --bg: var(--ivory); --bd: var(--ivory); --fg: var(--ink); }
.nav.is-over-image .btn--dark:hover { --bg: transparent; --fg: var(--ivory); }
.nav.is-over-image .nav__phone:hover { color: var(--teal-light); }
.nav__links { display: none; gap: clamp(1.4rem, 2.4vw, 2.6rem); }
.nav__links a {
  position: relative; text-decoration: none; padding-block: .4rem;
  font-size: .74rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__links a[aria-current="page"]::after { background: var(--teal); }
.nav__actions { display: flex; align-items: center; gap: .9rem; }
.nav__phone { display: none; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 500; text-decoration: none; letter-spacing: .02em; }
.nav__phone:hover { color: var(--teal-deep); }
.nav__actions .btn { display: none; }

.nav__burger {
  width: 2.9rem; height: 2.9rem; border: 1px solid var(--line-strong); border-radius: 0;
  background: transparent; display: grid; place-items: center; position: relative; z-index: 2;
}
.nav__burger-lines, .nav__burger-lines::before {
  display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease);
}
.nav__burger-lines { transform: translateY(-3px); }
.nav__burger-lines::before { content: ""; transform: translateY(6px); }
.nav__burger[aria-expanded="true"] .nav__burger-lines { transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] .nav__burger-lines::before { transform: rotate(-90deg); }

@media (min-width: 640px) { .nav__actions .btn { display: inline-flex; } }
@media (min-width: 1080px) {
  .nav__links { display: flex; }
  .nav__burger { display: none; }
}
@media (min-width: 1320px) { .nav__phone { display: inline-flex; } }

/* Mobile Menü */
.menu {
  position: fixed; inset: 0; z-index: 45;
  background: var(--ivory);
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 2rem;
  display: flex; flex-direction: column; justify-content: space-between; gap: 2rem;
  overflow-y: auto;
}
.menu[hidden] { display: none; }
.menu.is-open { animation: menuIn .45s var(--ease) both; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-12px); } }
.menu__links { display: grid; border-top: 1px solid var(--line); }
.menu__links a {
  display: flex; align-items: baseline; gap: 1.2rem; padding: .85rem 0; border-bottom: 1px solid var(--line);
  font-size: clamp(1.6rem, 7vw, 2.3rem); line-height: 1.2; font-weight: 300; text-decoration: none; letter-spacing: -.01em;
}
.menu__links a[aria-current="page"] { color: var(--teal-deep); }
.menu__links small { font-size: .72rem; color: var(--teal-deep); font-weight: 500; letter-spacing: .16em; }
.menu__foot { display: grid; gap: 1rem; justify-items: start; }
.menu__phone { font-weight: 500; font-size: 1.15rem; text-decoration: none; }

/* ==========================================================================
   Hero – durch den Bogen
   ========================================================================== */
.hero { position: relative; min-height: 100vh; min-height: 100svh; }
.motion .hero { height: 220vh; height: 220svh; }
.hero__sticky { position: relative; height: 100vh; height: 100svh; min-height: 540px; overflow: hidden; }
.motion .hero__sticky { position: sticky; top: 0; }

.hero__door { position: absolute; inset: 0; z-index: 1; display: none; will-change: clip-path; background: var(--ink); }
.motion .hero__door { display: block; clip-path: inset(50% 50% 50% 50%); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; will-change: transform, opacity; transform-origin: 50% 62%; }
.hero__img--out { object-position: 50% 60%; }
.hero__img--in { opacity: 0; }
.hero__shade {
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(180deg, rgba(20, 22, 23, .45) 0%, rgba(20, 22, 23, .2) 30%, rgba(20, 22, 23, .35) 55%, rgba(20, 22, 23, .75) 100%);
}

/* Mobil: „Come in“ in einer Zeile, darunter der Bogen, darunter Intro */
.hero__stage {
  position: relative; z-index: 2; height: 100%;
  display: grid; grid-template-columns: minmax(0, 1fr); grid-template-rows: minmax(0, 1fr) auto;
  row-gap: 1.6rem;
  padding: calc(var(--nav-h) + .5rem) var(--gutter) calc(1.4rem + env(safe-area-inset-bottom));
}
.hero__title {
  grid-row: 1; min-height: 0;
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto minmax(0, 1fr);
  align-items: end;
  font-weight: 300; letter-spacing: -.045em; line-height: .82;
}
.hero__word { display: block; font-size: clamp(3.6rem, 24vw, 7.5rem); will-change: transform, opacity; }
.hero__word--come { grid-column: 1; grid-row: 1; margin-right: .22em; }
.hero__word--in { grid-column: 2; grid-row: 1; }
.hero__slot {
  grid-column: 1 / -1; grid-row: 2; justify-self: center; align-self: stretch;
  display: block; height: 100%; min-height: 0; width: auto; max-width: 100%; aspect-ratio: 3 / 4;
  margin-top: 1.1rem;
  border-radius: 999em 999em 0 0; overflow: hidden; background: var(--sand);
}
.hero__slot img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.motion .hero__slot { background: transparent; }
.motion .hero__slot img { visibility: hidden; }

.hero__intro { grid-row: 2; width: 100%; display: grid; gap: 1rem; align-items: end; will-change: opacity, transform; }
.hero__intro-text .eyebrow { margin-bottom: .35rem; }
.hero__lead { font-size: var(--step-1); line-height: 1.35; font-weight: 300; }
.hero__intro-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.6rem; }
.hide-sm { display: none; }

.rating { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; font-size: .85rem; color: var(--ink-2); }
.rating__stars { display: inline-flex; gap: 1px; color: var(--gold); }
.rating__stars .icon { width: .95rem; height: .95rem; }
.rating strong { font-weight: 500; }
.rating:hover strong { color: var(--teal-deep); }

.hero__hint {
  display: none; position: absolute; right: var(--gutter); bottom: 1.8rem;
  font-size: .7rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  align-items: center; gap: .8rem; writing-mode: vertical-rl;
}
.hero__hint span { display: block; width: 1px; height: 64px; background: var(--line-strong); position: relative; overflow: hidden; }
.hero__hint span::after {
  content: ""; position: absolute; inset: 0; background: var(--ink);
  transform: translateY(-100%); animation: hint 2.2s var(--ease) infinite;
}
@keyframes hint { 60%, 100% { transform: translateY(100%); } }

.hero__reveal {
  position: absolute; inset: auto 0 0 0; z-index: 3;
  padding: 0 var(--gutter) calc(2.2rem + env(safe-area-inset-bottom));
  color: var(--ivory); text-align: center;
  display: none; justify-items: center; gap: 1.2rem;
  opacity: 0; visibility: hidden;
}
.motion .hero__reveal { display: grid; }
.hero__go { font-weight: 300; letter-spacing: -.035em; line-height: .92; font-size: clamp(3.4rem, 17vw, 8.5rem); }
.hero__go span { display: block; color: var(--teal-light); }
.hero__reveal-sub { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; opacity: .9; max-width: 28ch; text-wrap: balance; }
.hero__reveal .btn-row { flex-direction: column; align-items: stretch; width: 100%; max-width: 22rem; margin-top: .4rem; }

@media (max-width: 759px) {
  .hero__intro-actions .btn { width: 100%; }
}
@media (max-width: 759px) and (max-height: 700px) {
  .hero__lead { font-size: 1.05rem; }
  .hero__intro { gap: .8rem; }
}

@media (min-width: 760px) {
  .motion .hero { height: 270vh; height: 270svh; }
  .hero__stage {
    grid-template-columns: 1fr auto 1fr; grid-template-rows: 1fr auto 1fr auto;
    column-gap: clamp(1.2rem, 2.5vw, 2.8rem); row-gap: .6rem;
    padding: calc(var(--nav-h) + 1rem) var(--gutter) 2rem;
  }
  .hero__title { display: contents; }
  .hero__word { font-size: clamp(5rem, 13vw, 13rem); grid-row: 2; }
  .hero__word--come { grid-column: 1; justify-self: end; align-self: start; margin: 0; }
  .hero__slot { grid-column: 2; grid-row: 2; height: min(58svh, 560px); width: auto; aspect-ratio: 3 / 4.1; margin: 0; align-self: auto; }
  .hero__word--in { grid-column: 3; justify-self: start; align-self: end; margin: 0 0 -.05em; }
  .hero__intro { grid-row: 4; grid-column: 1 / -1; grid-template-columns: 1fr auto; gap: 2rem; padding-right: 3.5rem; }
  .hero__hint { display: inline-flex; }
  .hide-sm { display: inline; }
  .hero__reveal { padding-bottom: clamp(3rem, 9vh, 6rem); gap: 1.4rem; }
  .hero__reveal-sub { font-size: .8rem; letter-spacing: .24em; max-width: none; }
  .hero__reveal .btn-row { flex-direction: row; justify-content: center; width: auto; max-width: none; }
}
@media (min-width: 760px) and (max-height: 680px) {
  .hero__slot { height: 50svh; }
  .hero__word { font-size: clamp(4rem, 10vw, 9rem); }
}

/* ==========================================================================
   Laufband
   ========================================================================== */
.marquee { position: relative; z-index: 3; background: var(--ink); color: var(--ivory); overflow: hidden; padding-block: 1.15rem; }
.marquee__track { display: flex; width: max-content; }
.motion .marquee__track { animation: marquee 55s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__list { display: flex; flex: none; }
.marquee__list li {
  display: flex; align-items: center; white-space: nowrap;
  font-size: .8rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
}
.marquee__list li::after {
  content: ""; width: 5px; height: 5px; background: var(--teal-light); transform: rotate(45deg);
  margin-inline: clamp(1.4rem, 3vw, 2.6rem);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Unterseiten-Kopf
   ========================================================================== */
.page-hero { padding: calc(var(--nav-h) + clamp(3rem, 8vw, 6.5rem)) 0 clamp(2.5rem, 5vw, 4rem); }
.page-hero__grid { display: grid; gap: 1.5rem 4rem; align-items: end; }
.page-hero h1 { font-size: clamp(2.8rem, 1.8rem + 4.6vw, 5.6rem); }
@media (min-width: 900px) { .page-hero__grid { grid-template-columns: 1.2fr 1fr; } }
.page-visual { height: clamp(260px, 52vw, 620px); margin-bottom: var(--section); }
.page-visual img { transform: scale(1.06); }

/* Sprungnavigation */
.jump { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.jump a {
  padding: .6rem 1rem; border: 1px solid var(--line-strong); text-decoration: none;
  font-size: .72rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s;
}
.jump a:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

/* ==========================================================================
   Philosophie / Intro
   ========================================================================== */
.intro__grid { display: grid; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.intro__media { max-width: 520px; width: 100%; }
.intro__media .arch { aspect-ratio: 3 / 4; }
.intro__media .arch img { transform: scale(1.06); }
.intro__text .display { margin-bottom: 1.6rem; }
.intro__text .lead { margin-bottom: 1.6rem; }
.intro__text > p:not(.kicker):not(.lead) { max-width: 54ch; color: var(--ink-2); }
.intro__text .link-more { margin-top: 2rem; }
.quote {
  margin: 2rem 0; padding-left: 1.4rem; border-left: 2px solid var(--teal);
  font-size: var(--step-2); font-weight: 300; line-height: 1.35; letter-spacing: -.01em; max-width: 28ch;
}
@media (min-width: 900px) { .intro__grid { grid-template-columns: 1fr 1.1fr; } }

.duo { display: grid; gap: 1rem; grid-template-columns: 1.3fr 1fr; align-items: end; }
.duo .arch { aspect-ratio: 3 / 4; }
.duo .frame { aspect-ratio: 4 / 5; }

.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(3.5rem, 8vw, 6rem); border-top: 1px solid var(--line);
}
.stats li { padding: 1.6rem 1rem 0 0; display: grid; gap: .25rem; align-content: start; }
.stats strong {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 300; font-size: var(--step-3); line-height: 1; letter-spacing: -.02em;
}
.stats strong .icon { width: .5em; height: .5em; color: var(--gold); }
.stats li > span { color: var(--muted); font-size: .9rem; }
@media (min-width: 900px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stats li + li { padding-left: 1.6rem; border-left: 1px solid var(--line); }
}

/* ==========================================================================
   Leistungen – Übersicht (Startseite)
   ========================================================================== */
.svc-cards { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.svc-card {
  position: relative; display: flex; flex-direction: column; gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.4rem); min-height: 280px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-decoration: none; transition: background .35s var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; left: -1px; right: -1px; top: -1px; height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.svc-card:hover { background: var(--white); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__num { font-size: .74rem; letter-spacing: .2em; font-weight: 500; color: var(--teal-deep); }
.svc-card h3 { font-size: var(--step-2); font-weight: 400; line-height: 1.15; letter-spacing: -.01em; }
.svc-card ul { display: grid; gap: .2rem; color: var(--muted); font-size: .95rem; }
.svc-card .link-more { margin-top: auto; align-self: flex-start; }
.svc-card--cta { background: var(--ink); color: var(--ivory); }
.svc-card--cta:hover { background: var(--teal-deep); }
.svc-card--cta .svc-card__num { color: var(--teal-light); }
.svc-card--cta p { color: rgba(246, 241, 234, .75); font-size: .95rem; }
.svc-card--cta .link-more { color: var(--ivory); border-color: rgba(246, 241, 234, .4); }
@media (max-width: 639px) {
  .svc-card { min-height: 0; padding: 1.4rem 3rem 1.4rem 1.2rem; gap: .5rem; }
  .svc-card h3 { font-size: 1.3rem; }
  .svc-card ul { display: flex; flex-wrap: wrap; gap: 0 .5rem; font-size: .9rem; }
  .svc-card ul li:not(:last-child)::after { content: "·"; margin-left: .5rem; color: var(--line-strong); }
  .svc-card .link-more { display: none; }
  .svc-card::after {
    content: ""; position: absolute; right: 1.2rem; top: 50%; width: .6rem; height: .6rem;
    border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: translateY(-50%) rotate(45deg);
    color: var(--teal-deep);
  }
  .svc-card--cta::after { color: var(--teal-light); }
}
@media (min-width: 640px) { .svc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-cards { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   Leistungen – Detailseite
   ========================================================================== */
.svc-section { padding-block: clamp(4rem, 8vw, 6.5rem); border-top: 1px solid var(--line); }
.svc-section__grid { display: grid; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.svc-section__num { font-size: .74rem; letter-spacing: .2em; font-weight: 500; color: var(--teal-deep); margin-bottom: 1rem; }
.svc-section h2 { font-size: var(--step-3); font-weight: 300; line-height: 1.1; letter-spacing: -.02em; }
.svc-section__intro { margin: 1rem 0 2rem; color: var(--ink-2); max-width: 48ch; }
.svc-section__media { aspect-ratio: 4 / 5; max-width: 440px; width: 100%; }
.svc-section__media--top img { object-position: 50% 20%; }
@media (min-width: 900px) {
  .svc-section__grid { grid-template-columns: 1.3fr .9fr; }
  .svc-section--flip .svc-section__media { order: -1; }
  .svc-section--flip .svc-section__grid { grid-template-columns: .9fr 1.3fr; }
  .svc-section__media { position: sticky; top: calc(var(--nav-h) + 2rem); justify-self: end; }
  .svc-section--flip .svc-section__media { justify-self: start; }
}

.dishes { border-top: 1px solid var(--line); }
.dish { padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.dish__row { display: flex; align-items: baseline; gap: .8rem; }
.dish h3, .dish h4 { font-size: var(--step-1); font-weight: 400; line-height: 1.3; }
.dish__row::before {
  content: ""; order: 2; flex: 1; min-width: 1.5rem; height: 1px;
  border-bottom: 1px dotted var(--line-strong); transform: translateY(-.3em);
}
.dish__tag { order: 3; font-size: .68rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep); white-space: nowrap; }
.dish p { margin-top: .3rem; color: var(--muted); font-size: .95rem; max-width: 56ch; }
.dish--special { background: var(--white); padding-inline: 1.2rem; border: 1px solid var(--line); margin-top: 1rem; }

.price-note {
  margin-top: clamp(3rem, 6vw, 4rem); padding: clamp(1.5rem, 3vw, 2.2rem);
  background: var(--white); border: 1px solid var(--line);
  display: grid; gap: 1.2rem; align-items: center;
}
.price-note p { max-width: 52ch; }
.price-note strong { font-weight: 500; }
@media (min-width: 900px) { .price-note { grid-template-columns: 1fr auto; } }

/* ==========================================================================
   Service-Finder
   ========================================================================== */
.finder__grid { display: grid; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.finder__intro .lead { margin-top: 1.2rem; }
.finder__summary { margin-top: 2.5rem; border-top: 1px solid var(--line); max-width: 460px; }
.finder__summary li {
  display: grid; grid-template-columns: 2.4rem 1fr auto; align-items: center; gap: .6rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line); min-height: 3.6rem;
}
.finder__summary-num { font-size: .74rem; letter-spacing: .16em; font-weight: 500; color: var(--muted); }
.finder__summary li.is-current .finder__summary-num, .finder__summary li.is-done .finder__summary-num { color: var(--teal-deep); }
.finder__summary-label { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; color: var(--muted); }
.finder__summary-label b { display: block; font-size: 1rem; letter-spacing: 0; text-transform: none; color: var(--ink); font-weight: 400; margin-top: .15rem; }
.finder__summary-label b:empty { display: none; }
.finder__edit {
  background: none; border: 0; padding: .3rem 0; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  color: var(--teal-deep); border-bottom: 1px solid currentColor;
}
.finder__edit[hidden] { display: none; }

.finder__panel {
  background: var(--white); border: 1px solid var(--line);
  padding: clamp(1.5rem, 3.5vw, 2.8rem);
  display: flex; flex-direction: column; min-height: 460px;
}
.finder__meta { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.finder__meta span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; color: var(--muted); }
.finder__progress { height: 2px; background: var(--line); margin-bottom: 2rem; position: relative; }
.finder__progress span { position: absolute; inset: 0 auto 0 0; width: calc(var(--p, 0) * 100%); background: var(--teal); transition: width .5s var(--ease); }
.quiz__step { display: none; }
.quiz__step.is-active { display: block; animation: stepIn .45s var(--ease) both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } }
.quiz__step legend { font-size: var(--step-2); font-weight: 300; line-height: 1.25; letter-spacing: -.01em; margin-bottom: 1.4rem; padding: 0; }
.choices { border-top: 1px solid var(--line); }
.choice {
  display: grid; grid-template-columns: 1rem 1fr; gap: 1.1rem; align-items: start;
  width: 100%; text-align: left; padding: 1.05rem .6rem; background: transparent;
  border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  transition: background .25s;
}
.choice::before {
  content: ""; width: 1rem; height: 1rem; margin-top: .3rem;
  border: 1px solid var(--line-strong); background: var(--white); transition: background .25s, border-color .25s, box-shadow .25s;
}
.choice:hover { background: var(--ivory); }
.choice:hover::before { border-color: var(--ink); }
.choice.is-picked::before { background: var(--teal-btn); border-color: var(--teal-btn); box-shadow: inset 0 0 0 3px var(--white); }
.choice__title { display: block; font-size: 1.05rem; font-weight: 500; line-height: 1.35; }
.choice__desc { display: block; font-size: .92rem; color: var(--muted); line-height: 1.5; }
.finder__back {
  align-self: flex-start; margin-top: auto; padding: 1.4rem 0 0; background: none; border: 0;
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; color: var(--muted);
}
.finder__back:hover { color: var(--ink); }
.finder__back[hidden] { display: none; }
.finder__restart { margin-top: 1.6rem; padding-top: 0; }
.finder__back .icon { width: 1rem; height: 1rem; }

.quiz__result { animation: stepIn .5s var(--ease) both; }
.quiz__result:focus { outline: none; }
.quiz__result .eyebrow { color: var(--teal-deep); }
.quiz__title { font-size: var(--step-3); font-weight: 300; line-height: 1.1; letter-spacing: -.02em; margin: .7rem 0 1rem; }
.quiz__result > p:not(.eyebrow) { color: var(--ink-2); max-width: 46ch; }
.quiz__tip { margin: 1.4rem 0 2rem !important; padding-left: 1rem; border-left: 2px solid var(--teal); font-size: .95rem; }
.quiz__tip:empty { display: none; }
@media (min-width: 980px) { .finder__grid { grid-template-columns: .9fr 1.1fr; } }

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.6rem 1.2rem; }
.member__img { aspect-ratio: 3 / 4; }
.member__img img { object-position: 50% 22%; transition: transform .9s var(--ease); }
.member:hover .member__img img { transform: scale(1.04); }
.member h3 { font-size: var(--step-1); font-weight: 400; line-height: 1.2; margin-top: 1.1rem; }
.member__role { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; color: var(--teal-deep); margin-top: .35rem; }
@media (min-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem 2.4rem; } }

.carousel__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.carousel__btns { display: flex; gap: .5rem; }
.carousel__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(62%, 240px);
  gap: clamp(1rem, 2vw, 1.6rem);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  margin-inline: calc(var(--gutter) * -1); padding: .2rem var(--gutter) 1.2rem;
  scroll-padding-inline: var(--gutter);
  scrollbar-width: thin; scrollbar-color: var(--line-strong) transparent;
}
.carousel__track .member { scroll-snap-align: start; }
@media (min-width: 900px) { .carousel__track { grid-auto-columns: calc((100% - 2 * var(--gutter) - 4 * 1.6rem) / 5); } }

/* ==========================================================================
   Villa – Collage & Lightbox
   ========================================================================== */
.collage { display: grid; gap: clamp(.6rem, 1.2vw, 1rem); grid-template-columns: repeat(2, 1fr); }
.collage__item { position: relative; overflow: hidden; background: var(--sand); }
.collage__item button { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.collage__item img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: filter .5s var(--ease); }
.collage__item:hover img { filter: brightness(.9); }
.collage__item--a { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.collage__item--b, .collage__item--c, .collage__item--d, .collage__item--e { aspect-ratio: 3 / 4; }
.collage__item--f { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
@media (min-width: 900px) {
  .collage { grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(70px, 7.2vw, 100px); }
  .collage__item { aspect-ratio: auto !important; }
  .collage__item--a { grid-column: 1 / 8; grid-row: 1 / 7; }
  .collage__item--b { grid-column: 8 / 13; grid-row: 1 / 4; }
  .collage__item--c { grid-column: 8 / 11; grid-row: 4 / 7; }
  .collage__item--d { grid-column: 11 / 13; grid-row: 4 / 7; }
  .collage__item--e { grid-column: 1 / 5; grid-row: 7 / 10; }
  .collage__item--f { grid-column: 5 / 13; grid-row: 7 / 10; }
}
.collage-foot { margin-top: 2rem; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem 2.4rem; }

.lightbox {
  width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0;
  background: rgba(20, 22, 23, .95); color: var(--ivory);
}
.lightbox::backdrop { background: transparent; }
.lightbox[open] { display: grid; place-items: center; animation: fadeIn .3s ease both; }
@keyframes fadeIn { from { opacity: 0; } }
.lightbox figure { display: grid; gap: 1rem; justify-items: center; padding: 4.5rem 1rem; }
.lightbox img { max-width: min(92vw, 1500px); max-height: 78vh; width: auto; }
.lightbox figcaption { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; }
.lightbox .square-btn { position: fixed; border-color: var(--line-light); color: var(--ivory); background: rgba(20, 22, 23, .5); }
.lightbox .square-btn:hover { background: var(--ivory); color: var(--ink); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.2rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lightbox__prev, .lightbox__next { top: auto; bottom: 1.2rem; transform: none; } }

/* ==========================================================================
   Inklusive
   ========================================================================== */
.perks__list { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.perks__list li {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); font-size: 1rem;
}
.perks__list .icon { color: var(--teal-deep); width: 1.3rem; height: 1.3rem; }
@media (min-width: 700px) { .perks__list { grid-template-columns: repeat(2, 1fr); column-gap: 3rem; } }
@media (min-width: 1100px) { .perks__list { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   Gutschein
   ========================================================================== */
.gift { background: var(--teal-deep); color: var(--ivory); overflow: hidden; }
.gift .display em { color: var(--teal-light); }
.gift .lead { color: rgba(246, 241, 234, .85); margin: 1.2rem 0 1.6rem; }
.gift__grid { display: grid; gap: clamp(3rem, 7vw, 6rem); align-items: center; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 2rem; }
.tags li {
  padding: .4rem .8rem; border: 1px solid currentColor;
  font-size: .7rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; opacity: .85;
}
.gift__stage { perspective: 1200px; display: grid; justify-items: center; padding-block: 1rem 2rem; }
.giftcard-float { width: min(100%, 440px); transform-style: preserve-3d; }
.motion .giftcard-float { animation: float 6s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-10px); } }
.giftcard {
  --rx: 6deg; --ry: -10deg; --gx: 30%; --gy: 20%;
  position: relative; overflow: hidden;
  width: 100%; aspect-ratio: 1.586; border-radius: 6px;
  padding: clamp(1.2rem, 4vw, 1.8rem);
  background: linear-gradient(145deg, #2c3134, #16191a 70%);
  box-shadow: 0 40px 70px -30px rgba(0, 0, 0, .6), inset 0 0 0 1px rgba(255, 255, 255, .08);
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform .5s var(--ease);
  display: grid; grid-template-rows: auto 1fr auto auto;
  color: var(--ivory);
}
.giftcard.is-tilting { transition: transform .08s linear; }
.giftcard__glare {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(circle at var(--gx) var(--gy), rgba(255, 255, 255, .18), transparent 45%);
  mix-blend-mode: soft-light;
}
.giftcard__arch {
  position: absolute; right: 7%; bottom: -8%; width: 34%; aspect-ratio: 3 / 4.2;
  border: 1px solid rgba(127, 204, 204, .4); border-bottom: 0; border-radius: 999em 999em 0 0;
}
.giftcard__logo { width: 42%; height: auto; }
.giftcard__word { align-self: end; font-size: clamp(1.8rem, 6vw, 2.6rem); font-weight: 300; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-light); line-height: 1; }
.giftcard__for { font-size: clamp(.82rem, 2.2vw, .95rem); font-weight: 300; line-height: 1.4; opacity: .8; margin-top: .5rem; }
.giftcard__meta {
  display: flex; justify-content: space-between; gap: 1rem; margin-top: .9rem; padding-top: .7rem;
  border-top: 1px solid rgba(246, 241, 234, .15);
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; opacity: .7;
}
.giftcard__shadow { width: 70%; height: 22px; margin-top: 1.4rem; border-radius: 50%; background: radial-gradient(ellipse, rgba(0, 0, 0, .35), transparent 70%); }
@media (min-width: 900px) { .gift__grid { grid-template-columns: 1fr 1fr; } }

.steps { display: grid; gap: 0; border-top: 1px solid var(--line); counter-reset: step; }
.steps li { padding: 1.8rem 0; border-bottom: 1px solid var(--line); display: grid; gap: .4rem; }
.steps li::before {
  counter-increment: step; content: "0" counter(step);
  font-size: .74rem; letter-spacing: .2em; font-weight: 500; color: var(--teal-deep);
}
.steps h3 { font-size: var(--step-1); font-weight: 400; }
.steps p { color: var(--muted); font-size: .95rem; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
  .steps li { border-bottom: 0; padding: 2rem 2rem 2rem 0; }
  .steps li + li { border-left: 1px solid var(--line); padding-left: 2rem; }
}

/* ==========================================================================
   Öffnungsstatus & Zeiten
   ========================================================================== */
.status { display: inline-flex; align-items: center; gap: .55rem; font-size: .88rem; font-weight: 500; }
.status__dot { width: .5rem; height: .5rem; background: #B9B2A8; flex: none; }
.status.is-open .status__dot { background: #2FA36B; }
.status.is-soon .status__dot { background: var(--gold); }
.status.is-closed .status__dot { background: var(--brick); }

.hours { width: 100%; }
.hours th, .hours td { padding: .75rem 0; text-align: left; border-bottom: 1px solid var(--line); font-size: .98rem; font-weight: 400; }
.hours tr:first-child th, .hours tr:first-child td { border-top: 1px solid var(--line); }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink-2); }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 500; color: var(--ink); }
.hours tr.is-today th::after {
  content: "Heute"; margin-left: .6rem; padding: .1rem .4rem; vertical-align: .1em;
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; background: var(--teal-btn); color: #fff;
}

/* ==========================================================================
   Besuch – kompakt (Startseite)
   ========================================================================== */
.visit-band { padding-block: clamp(3.5rem, 6vw, 5rem); border-top: 1px solid var(--line); }
.visit-band__grid { display: grid; gap: 2.2rem; }
.visit-band h2 { font-size: var(--step-2); font-weight: 300; line-height: 1.2; letter-spacing: -.01em; margin-bottom: .8rem; }
.visit-band h3 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: var(--muted); margin-bottom: .7rem; }
.visit-band p, .visit-band dl { font-size: .98rem; line-height: 1.65; }
.visit-band a:not(.btn):not(.link-more) { text-decoration: none; }
.visit-band a:not(.btn):not(.link-more):hover { color: var(--teal-deep); }
.hours-mini { display: grid; grid-template-columns: auto 1fr; gap: .1rem 1.2rem; }
.hours-mini dd { font-variant-numeric: tabular-nums; }
.visit-band__actions { display: grid; gap: .6rem; align-content: start; }
@media (min-width: 700px) { .visit-band__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .visit-band__grid { grid-template-columns: 1.4fr 1fr 1fr 15rem; gap: 3rem; } }

/* ==========================================================================
   Kontaktseite
   ========================================================================== */
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.contact-list { border-top: 1px solid var(--line); }
.contact-item { display: grid; grid-template-columns: 1.3rem 1fr; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.contact-item > .icon { width: 1.3rem; height: 1.3rem; color: var(--teal-deep); margin-top: .25rem; }
.contact-item h2 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: var(--muted); margin-bottom: .3rem; }
.contact-item a:not(.link-more) { text-decoration: none; }
.contact-item a:not(.link-more):hover { color: var(--teal-deep); }
.contact-item .link-more { margin-top: .8rem; }
.contact-big { font-size: var(--step-2); font-weight: 300; letter-spacing: -.01em; }
.contact-hours h2 { font-size: var(--step-2); font-weight: 300; margin-bottom: 1.2rem; }
.contact-hours .status { margin-bottom: 1.2rem; }
.contact-hours .btn { margin-top: 1.8rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.map { position: relative; aspect-ratio: 4 / 3; background: var(--sand); margin-top: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.map img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.6) brightness(.72); }
.map__overlay {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: .9rem;
  text-align: center; padding: 1.5rem; color: var(--ivory);
}
.map__overlay p { font-size: .82rem; max-width: 34ch; opacity: .9; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (min-width: 900px) { .map { aspect-ratio: 21 / 8; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--ink); color: var(--ivory); padding: clamp(4rem, 8vw, 6rem) 0 2rem; }
.footer__cta {
  display: grid; gap: 1.8rem; align-items: end;
  padding-bottom: clamp(3rem, 6vw, 4.5rem); border-bottom: 1px solid var(--line-light);
}
.footer__big { font-weight: 300; font-size: var(--step-4); line-height: 1.05; letter-spacing: -.025em; max-width: 14ch; }
.footer__big em { font-style: normal; color: var(--teal-light); }
@media (min-width: 900px) { .footer__cta { grid-template-columns: 1fr auto; } }
.footer__grid { display: grid; gap: 2.5rem; padding-block: 3.5rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.footer__grid h2 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 500; color: var(--teal-light); margin-bottom: 1rem; }
.footer__grid p { color: rgba(246, 241, 234, .75); font-size: .95rem; margin-bottom: .8rem; }
.footer__grid a { text-decoration: none; }
.footer__grid a:hover { color: var(--teal-light); }
.footer__brand img { width: 180px; margin-bottom: 1rem; }
.footer__links { display: grid; gap: .45rem; font-size: .95rem; color: rgba(246, 241, 234, .75); }
@media (max-width: 599px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.2rem; padding-block: 2.8rem; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__grid p, .footer__links { font-size: .88rem; overflow-wrap: anywhere; }
}
.footer .status { color: rgba(246, 241, 234, .9); font-size: .85rem; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line-light); font-size: .8rem; color: rgba(246, 241, 234, .55);
}
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: var(--ivory); }

/* ==========================================================================
   Mobile Dock
   ========================================================================== */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1.4fr;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--ink); box-shadow: 0 -10px 30px -15px rgba(0, 0, 0, .4);
  transform: translateY(110%); transition: transform .45s var(--ease);
}
.dock.is-visible { transform: none; }
.dock a {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 3.6rem;
  text-decoration: none; color: var(--ivory);
  font-size: .74rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
}
.dock__book { background: var(--teal-btn); color: #fff !important; }
@media (min-width: 900px) { .dock { display: none; } }
@media (max-width: 899px) { .footer { padding-bottom: calc(2rem + 3.6rem); } }

/* ==========================================================================
   Reveal-Animationen
   ========================================================================== */
.motion [data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.motion [data-reveal].is-in { opacity: 1; transform: none; }

/* Bogen-Vorhang: hebt sich wie eine Tür */
.motion [data-curtain] { opacity: 1; transform: none; }
.motion [data-curtain] .arch::after, .motion [data-curtain] .frame::after,
.motion .arch[data-curtain]::after, .motion .frame[data-curtain]::after {
  content: ""; position: absolute; inset: -1px; z-index: 2; background: var(--curtain, var(--ivory));
  transform-origin: 50% 0; transition: transform 1.3s var(--ease) var(--cd, 0s);
}
.motion [data-curtain].is-in .arch::after, .motion [data-curtain].is-in .frame::after,
.motion .arch[data-curtain].is-in::after, .motion .frame[data-curtain].is-in::after { transform: scaleY(0); }
.section--alt [data-curtain] { --curtain: var(--ivory-2); }

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

/* ==========================================================================
   Rechtstexte
   ========================================================================== */
.prose { max-width: 70ch; }
.prose h2 { font-size: var(--step-2); font-weight: 300; margin: 2.5rem 0 .8rem; letter-spacing: -.01em; }
.prose h3 { font-weight: 500; margin: 1.6rem 0 .4rem; }
.prose p { margin-bottom: 1rem; color: var(--ink-2); }
.prose a { color: var(--teal-deep); }

/* ==========================================================================
   360°-Rundgang (Teaser)
   ========================================================================== */
.tour {
  position: relative; display: block; overflow: hidden; background: var(--ink);
  aspect-ratio: 4 / 5; color: var(--ivory); text-decoration: none;
}
.tour img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.tour::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 22, 23, .15) 25%, rgba(20, 22, 23, .8)); }
.tour:hover img { transform: scale(1.04); }
.tour__badge {
  position: absolute; z-index: 2; top: 1.2rem; right: 1.2rem; padding: .55rem .9rem;
  border: 1px solid rgba(246, 241, 234, .6); font-size: .8rem; font-weight: 500; letter-spacing: .2em;
}
.tour__body { position: absolute; z-index: 2; inset: auto 0 0 0; padding: clamp(1.4rem, 3vw, 2.6rem); display: grid; gap: .7rem; justify-items: start; }
.tour__body .kicker { margin-bottom: 0; }
.tour__title { font-size: var(--step-3); font-weight: 300; line-height: 1.1; letter-spacing: -.02em; max-width: 24ch; text-wrap: balance; }
.tour__cta {
  display: inline-flex; align-items: center; gap: .6rem; margin-top: .4rem; padding-bottom: .3rem;
  font-size: .74rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  border-bottom: 1px solid rgba(246, 241, 234, .5);
}
.tour__cta .icon { width: 1rem; height: 1rem; transition: transform .3s var(--ease); }
.tour:hover .tour__cta .icon { transform: translateX(4px); }
.tour__note { margin-top: .9rem; font-size: .85rem; color: var(--muted); }
@media (min-width: 700px) { .tour { aspect-ratio: 16 / 8; } }
@media (min-width: 1100px) { .tour { aspect-ratio: 21 / 8; } }

/* Rechtstexte: Hilfsklassen */
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; }
.prose-list { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; color: var(--ink-2); display: grid; gap: .4rem; }
.legal-caps { font-size: .84rem; line-height: 1.6; letter-spacing: .01em; }
mark.todo { background: #FFE39A; color: var(--ink); padding: .05em .35em; }
