/* ============================================================
   Nails Master Karina — editorial luxury
   Bone / espresso / lacquer
   ============================================================ */

:root {
  --bone:       #F7F2EC;
  --bone-deep:  #EFE6DC;
  --espresso:   #241B17;
  --espresso-2: #3B2E27;
  --lacquer:    #B4544A;
  --lacquer-dk: #8E3E36;
  --blush:      #E7CFC5;
  --ink-soft:   rgba(36, 27, 23, .62);
  --rule:       rgba(36, 27, 23, .14);

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

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

  /* Höhe der mobilen Aktionsleiste — 0, solange sie nicht sichtbar ist */
  --dock-h: 0px;
  --safe-b: env(safe-area-inset-bottom, 0px);
}

@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;
  scroll-padding-top: 5.5rem;
  -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;
  overflow-x: hidden;
  /* Platz für die mobile Aktionsleiste, damit sie nichts überdeckt */
  padding-bottom: calc(var(--dock-h) + 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: .28;
  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(--espresso);
  color: var(--bone);
  border: 1px solid var(--espresso);
}
.btn--ghost {
  border: 1px solid var(--rule);
  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: var(--lacquer); border-color: var(--lacquer); transform: translateY(-2px); }
  .btn--ghost:hover { border-color: var(--espresso); transform: translateY(-2px); }
}
.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); }

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -.01em;
  text-decoration: none;
  margin-right: auto;
}
.wordmark em { font-style: italic; color: var(--lacquer); }
.wordmark__dot {
  width: .5rem; height: .5rem;
  border-radius: 999px;
  background: var(--lacquer);
  translate: 0 -.1rem;
}

.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; }

/* ── 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(--espresso);
  color: var(--bone);
}
@media (hover: hover) and (pointer: fine) {
  .langswitch__btn:not(.is-active):hover { color: var(--espresso); }
}

@media (max-width: 860px) {
  .topbar { gap: 1rem; padding-block: .85rem; }
  /* Die Navigation rückt in die Aktionsleiste am unteren Rand. */
  .topnav { display: none; }
  .wordmark { font-size: 1rem; }
}
@media (max-width: 420px) {
  .topbar__tel { display: none; }
}

/* ── 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);
  margin-inline: auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}
.hero__glow {
  position: absolute;
  top: -18%;
  right: -12%;
  width: min(46rem, 90vw);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 35% 35%, color-mix(in srgb, var(--blush) 92%, transparent), transparent 62%),
    radial-gradient(circle at 70% 60%, color-mix(in srgb, var(--lacquer) 22%, transparent), transparent 60%);
  filter: blur(18px);
  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 12rem 12rem;
  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;
}
@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 / 3; object-position: center 38%; }
}

@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; }
  .hero__glow { filter: blur(28px); opacity: .8; 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); }
.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 ──────────────────────────────────────────── */
.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
  gap: clamp(2.25rem, 5vw, 4rem);
}
.menu__group--wide { grid-column: 1 / -1; }
.menu__group--wide .item__body { max-width: 46rem; }

.menu__groupTitle {
  font-size: .78rem;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lacquer);
  padding-bottom: .85rem;
  margin-bottom: .35rem;
  border-bottom: 1px solid var(--espresso);
}

.item {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--rule);
  transition: background .35s var(--ease), padding-inline .35s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .item:hover {
    background: color-mix(in srgb, var(--blush) 34%, transparent);
    padding-inline: .9rem;
  }
}
.item__body { flex: 1; min-width: 0; }
.item__name {
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.item__meta {
  margin: .3rem 0 0;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.item__incl {
  margin: .7rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .5rem;
}
.item__incl li {
  font-size: .8rem;
  padding: .2rem .65rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
}
.item__price {
  margin: 0;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -.02em;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .menu { gap: 2.25rem; }
  .item { gap: .9rem; padding: 1rem 0; }
  /* Lange Leistungsnamen dürfen trennen, statt den Preis zu verdrängen. */
  .item__name { font-size: 1.02rem; hyphens: auto; }
  .item__meta { font-size: .76rem; }
  .item__price { font-size: 1.35rem; }
  .item__incl li { font-size: .74rem; padding: .15rem .55rem; }
  .menu__group--wide .item__body { max-width: none; }
}

/* ── Bildband ────────────────────────────────────────────── */
.band {
  width: var(--page);
  margin-inline: auto;
}
.band picture {
  display: block;
  border-radius: 1.75rem;
  overflow: hidden;
  background: var(--bone-deep);
}
.band img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.band__caption {
  margin-top: .9rem;
  font-size: .85rem;
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 560px) {
  .band picture { border-radius: 1.1rem; }
  /* Querformat wird auf schmalen Screens zum Briefschlitz — quadratischer schneiden. */
  .band img { aspect-ratio: 4 / 3; }
  .band__caption { font-size: .8rem; text-align: left; }
}

/* ── Gutscheine ──────────────────────────────────────────── */
.section--voucher { padding-top: clamp(1rem, 3vw, 2rem); }
.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); }
}

.voucher__card {
  aspect-ratio: 1.6;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(140deg, var(--blush), var(--lacquer) 45%, var(--espresso-2));
  transform: rotate(-3deg);
  transition: transform .6s var(--ease);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.65);
}
@media (hover: hover) and (pointer: fine) {
  .voucher__card:hover { transform: rotate(0deg) scale(1.02); }
}
.voucher__cardInner {
  height: 100%;
  border-radius: calc(1.25rem - 1px);
  background: linear-gradient(150deg, #2E231D, #1A1310);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.voucher__cardLabel {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--blush);
}
.voucher__cardAmount {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  line-height: 1.1;
  color: var(--bone);
}
.voucher__cardAmount em { color: var(--blush); }
.voucher__cardFoot {
  margin: 0;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(247, 242, 236, .5);
}

@media (max-width: 820px) {
  .voucher { grid-template-columns: 1fr; }
  .voucher__card { max-width: 24rem; }
}
@media (max-width: 560px) {
  .voucher { border-radius: 1.5rem; padding: 2rem 1.4rem; }
  /* Gedreht ragt die Karte auf schmalen Screens über den Rand hinaus. */
  .voucher__card { transform: none; margin-inline: auto; }
  .voucher__text p { margin-bottom: 1.6rem; }
  .voucher__text .btn { width: 100%; }
}

/* ── Booking / calendar embed ────────────────────────────── */
/* Der Kalender läuft randlos im Container. Kein zusätzliches Padding,
   die Höhe wird per postMessage vom Kalender gesteuert (app.js). */
.booking {
  position: relative;
  /* content-box: die vom Kalender gemeldete Höhe gilt exakt für den iframe,
     der 1px-Rahmen frisst davon nichts weg (sonst 2px Beschnitt) */
  box-sizing: content-box;
  border: 1px solid var(--rule);
  border-radius: 1.5rem;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 24px 60px -40px rgba(36, 27, 23, .5);
  /* Startwert; app.js ersetzt ihn, sobald der Kalender seine Höhe meldet */
  height: 720px;
  transition: height .35s var(--ease);
}
.booking.is-measured { transition: height .35s var(--ease); }

.booking__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  /* verhindert innere Scrollbalken / doppeltes Scrolling */
  overflow: hidden;
}

.booking__loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bone);
  transition: opacity .5s var(--ease), visibility .5s;
}
.booking__loader.is-hidden { opacity: 0; visibility: hidden; }
.booking__spinner {
  width: 1rem; height: 1rem;
  border: 2px solid var(--rule);
  border-top-color: var(--lacquer);
  border-radius: 999px;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(1turn); } }

@media (max-width: 640px) {
  .booking { border-radius: 1.1rem; height: 640px; }
  .booking__loader { font-size: .8rem; letter-spacing: .05em; }
}

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

.contact__media {
  width: min(20rem, 68vw);
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  border-radius: 999px 999px 1.5rem 1.5rem;
  overflow: hidden;
  background: var(--bone-deep);
  box-shadow: 0 30px 55px -40px rgba(36, 27, 23, .6);
}
.contact__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.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-wrap: wrap;
  gap: .75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--ink-soft);
}
.footer p { margin: 0; }
.footer__brand { font-family: var(--display); font-style: italic; color: var(--espresso); }
.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 { flex-direction: column; align-items: flex-start; gap: .4rem; }
}

/* ── Mobile Aktionsleiste ────────────────────────────────── */
/* Ab 860px ist die Topnav weg, ab 420px auch die Telefonnummer im Header.
   Diese Leiste hält Buchen und Anrufen dauerhaft in Daumenreichweite. */
.dock { display: none; }

@media (max-width: 860px) {
  :root { --dock-h: 4.25rem; }

  .dock {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 60;
    display: flex;
    gap: .6rem;
    padding: .7rem max(1rem, calc((100% - var(--page)) / 2));
    padding-bottom: calc(.7rem + var(--safe-b));
    background: color-mix(in srgb, var(--bone) 90%, transparent);
    backdrop-filter: blur(14px) saturate(1.2);
    border-top: 1px solid var(--rule);
    /* Fährt beim Hochscrollen weg, damit sie beim Lesen nicht stört. */
    transform: translateY(0);
    transition: transform .35s var(--ease);
  }
  .dock.is-hidden { transform: translateY(120%); }

  .dock__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s var(--ease);
  }
  .dock__btn:active { transform: scale(.97); }
  .dock__btn--solid {
    flex: 1 1 auto;
    background: var(--espresso);
    color: var(--bone);
    border: 1px solid var(--espresso);
  }
  .dock__btn--ghost {
    flex: 0 0 auto;
    padding-inline: 1.15rem;
    border: 1px solid var(--rule);
    background: color-mix(in srgb, var(--bone) 70%, transparent);
    color: var(--espresso);
  }
}

@media (max-width: 360px) {
  /* Auf sehr schmalen Screens nur noch das Icon — der Text würde umbrechen. */
  .dock__btn--ghost { padding-inline: .95rem; font-size: 0; gap: 0; }
}
