/* New Motion — design tokens + base */
:root {
  /* Palette — pulled from the New Motion logo: deep teal + mint + charcoal */
  --bg: #F3F6F1;
  --bg-2: #E6EDE6;
  --ink: #0E2A24;
  --ink-soft: #1E4039;
  --ink-mute: #5B7872;
  --line: rgba(14,42,36,.10);
  --line-strong: rgba(14,42,36,.22);
  --accent: #1E5F52;          /* deep teal (logo core) */
  --accent-2: #9BD4B5;        /* mint (logo highlight) */
  --accent-soft: #D3E8D4;
  --alert: #B85C3B;

  /* Type */
  --f-display: "Instrument Serif", Georgia, serif;
  --f-body: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Scale */
  --step: 1.2rem;
  --gutter: 28px;
  --pad-section: 120px;
  --pad-x: 40px;

  --radius: 14px;
  --radius-lg: 22px;
}

[data-theme="dark"] {
  --bg: #0B1F1B;
  --bg-2: #132B26;
  --ink: #E6F0EB;
  --ink-soft: #BCD1C8;
  --ink-mute: #7D9990;
  --line: rgba(230,240,235,.12);
  --line-strong: rgba(230,240,235,.25);
  --accent: #9BD4B5;
  --accent-2: #5CA48E;
  --accent-soft: #1A3A33;
}

[data-palette="ocean"] {
  --bg: #FAFAFA;
  --bg-2: #F0F2F5;
  --ink: #0A1628;
  --ink-soft: #22324A;
  --ink-mute: #5A6A80;
  --line: rgba(10,22,40,.10);
  --line-strong: rgba(10,22,40,.22);
  --accent: #2E5984;
  --accent-2: #8FB0CC;
  --accent-soft: #E1E8F0;
  --alert: #C24F4A;
}
[data-palette="swiss"] {
  --bg: #FFFFFF;
  --bg-2: #F5F5F5;
  --ink: #111111;
  --ink-soft: #333333;
  --ink-mute: #6B6B6B;
  --line: rgba(0,0,0,.1);
  --line-strong: rgba(0,0,0,.24);
  --accent: #E63946;
  --accent-2: #111111;
  --accent-soft: #EFEFEF;
  --alert: #E63946;
}
[data-palette="earth"] {
  --bg: #F2EFE9;
  --bg-2: #E8E2D4;
  --ink: #2B2B28;
  --ink-soft: #4A4741;
  --ink-mute: #736F65;
  --line: rgba(43,43,40,.12);
  --line-strong: rgba(43,43,40,.24);
  --accent: #B85C3B;
  --accent-2: #D9D2C3;
  --accent-soft: #E9E2D0;
  --alert: #B85C3B;
}
[data-palette="forest"] {
  --bg: #0E1410;
  --bg-2: #152019;
  --ink: #F5F2EA;
  --ink-soft: #D7D2C5;
  --ink-mute: #949082;
  --line: rgba(245,242,234,.12);
  --line-strong: rgba(245,242,234,.25);
  --accent: #9FB89A;
  --accent-2: #C6B89E;
  --accent-soft: #1E2B21;
  --alert: #E08062;
}

[data-density="compact"] { --pad-section: 80px; --pad-x: 32px; --gutter: 22px; }
[data-density="airy"] { --pad-section: 160px; --pad-x: 56px; --gutter: 36px; }

[data-type="serif-first"] {
  --f-display: "Instrument Serif", Georgia, serif;
  --f-body: "Inter Tight", sans-serif;
}
[data-type="grotesk"] {
  --f-display: "Inter Tight", sans-serif;
  --f-body: "Inter Tight", sans-serif;
}
[data-type="mono-quirk"] {
  --f-display: "JetBrains Mono", monospace;
  --f-body: "Inter Tight", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  transition: background .4s, color .4s;
}

::selection { background: var(--accent); color: var(--bg); }

.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
}
.italic { font-style: italic; }
.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── Layout ─── */
.container { max-width: 1440px; margin: 0 auto; padding: 0 var(--pad-x); }
section { padding: calc(var(--pad-section) / 2) 0 var(--pad-section); position: relative; }

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-size: 24px; letter-spacing: -0.01em;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { white-space: nowrap; }
.nav-logo .n-mark { width: 28px; height: 28px; }
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 13.5px; color: var(--ink-soft); position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px;
  background: var(--ink); transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: flex; background: transparent; border: 1px solid var(--line-strong);
  border-radius: 999px; padding: 2px; font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.1em;
}
.lang-toggle button {
  padding: 5px 10px; border: 0; background: transparent; color: var(--ink-mute);
  border-radius: 999px; letter-spacing: inherit; text-transform: uppercase;
}
.lang-toggle button.active { background: var(--ink); color: var(--bg); }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px; border-radius: 999px;
  border: 1px solid var(--ink); background: var(--ink); color: var(--bg);
  font-size: 13.5px; font-weight: 500;
  transition: background .2s, color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { width: 14px; height: 14px; }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }

/* ─── Mobile nav (hamburger + slide-down menu) ─── */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0;
  border: 1px solid var(--line-strong); border-radius: 12px;
  background: transparent;
}
.nav-burger span {
  display: block; width: 18px; height: 1.5px; margin: 0 auto;
  background: var(--ink); border-radius: 2px;
  transition: transform .28s cubic-bezier(.4,.2,.2,1), opacity .2s;
}
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: absolute; left: 0; right: 0; top: 100%;
  flex-direction: column;
  padding: 18px var(--pad-x) 28px;
  gap: 4px;
  background: color-mix(in oklab, var(--bg) 96%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px color-mix(in oklab, var(--ink) 14%, transparent);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .3s cubic-bezier(.4,.2,.2,1), opacity .25s;
}
.nav-mobile.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.nav-mobile a {
  font-family: var(--f-display); font-size: 30px; letter-spacing: -0.01em;
  padding: 12px 2px; border-bottom: 1px solid var(--line); color: var(--ink);
}
.nav-mobile a:last-of-type { border-bottom: 0; }
.nav-mobile .nav-mobile-cta {
  margin-top: 16px; align-self: flex-start;
  font-family: var(--f-body); font-size: 15px; border-bottom: 0;
  color: var(--bg);
  padding: 14px 24px;
}

/* ─── Praxis Gallery (horizontal scroll) ─── */
.gallery {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 0;
}
.gallery-head {
  padding-bottom: 20px;
  position: relative;
}
.gallery-head .sec-eyebrow { margin-bottom: 0; }
.gallery-progress {
  margin-top: 16px;
  height: 2px; background: var(--line);
  position: relative;
}
.gallery-progress-bar {
  position: absolute; left: 0; top: 0; height: 100%;
  background: var(--accent);
  transition: width .08s linear;
}
.gallery-track {
  display: flex; align-items: stretch; gap: 20px;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--pad-x) 40px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--line);
}
.gallery-track:active { cursor: grabbing; }
.gallery-track::-webkit-scrollbar { height: 3px; }
.gallery-track::-webkit-scrollbar-track { background: var(--line); }
.gallery-track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }
.gallery-item {
  position: relative; margin: 0; flex-shrink: 0;
  height: clamp(220px, 38vh, 420px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  scroll-snap-align: start;
}
.gallery-item.wide { aspect-ratio: 4/3; }
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 10px;
  padding: 28px 22px 18px;
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--ink) 78%, transparent));
  color: #fff;
  font-size: 13.5px;
}
.gallery-item figcaption .num {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em;
  opacity: 0.7;
}
.gallery-end {
  flex-shrink: 0;
  height: clamp(220px, 38vh, 420px);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 24px; padding: 0 8vw 0 2vw;
  scroll-snap-align: start;
}
.gallery-end .display { font-size: clamp(36px, 5vw, 80px); color: var(--ink); }

/* ─── Hero ─── */
.hero {
  padding-top: 160px;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      color-mix(in oklab, var(--bg) 92%, transparent) 0%,
      color-mix(in oklab, var(--bg) 82%, transparent) 45%,
      color-mix(in oklab, var(--bg) 62%, transparent) 100%),
    linear-gradient(180deg,
      var(--bg) 0%,
      color-mix(in oklab, var(--bg) 35%, transparent) 24%,
      color-mix(in oklab, var(--bg) 35%, transparent) 68%,
      var(--bg) 100%);
}
.hero > .container { position: relative; z-index: 2; }
.hero > .hero-ticker { z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: var(--gutter);
  align-items: end;
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(44px, 9.4vw, 134px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  font-weight: 400;
}
.hero-title .line { display: block; white-space: nowrap; }
.hero-title .kinetic { position: relative; display: inline-block; }
.hero-title .kinetic::before {
  content: ""; position: absolute; inset: -2% -4%;
  background: var(--accent-soft); z-index: -1;
  transform: skewX(-6deg) scaleX(0.02); transform-origin: left;
  animation: kineticSweep 1.6s .4s cubic-bezier(.4,.6,.15,1) forwards;
}
@keyframes kineticSweep { to { transform: skewX(-6deg) scaleX(1); } }
.hero-title em {
  font-style: italic;
  font-family: var(--f-display);
  color: var(--accent);
}
.hero-lede {
  font-size: 17px; line-height: 1.5;
  max-width: 380px;
  color: var(--ink-soft);
  padding-bottom: 6px;
}
.hero-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 80px; gap: var(--gutter);
  padding-top: 22px; border-top: 1px solid var(--line);
}
.hero-meta > div .mono { color: var(--ink-mute); display: block; margin-bottom: 10px; }
.hero-meta .big { font-family: var(--f-display); font-size: 28px; line-height: 1; }

.hero-ticker {
  position: absolute; bottom: 30px; left: 0; right: 0;
  padding-top: 14px; border-top: 1px solid var(--line);
  overflow: hidden; white-space: nowrap;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-mute);
  pointer-events: none;
}
.hero-ticker span { display: inline-block; padding-right: 60px; }
.hero-ticker .track { animation: tickerScroll 40s linear infinite; display: inline-block; }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* Hero variant: media-heavy */
.hero.variant-media .hero-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
.hero.variant-media .hero-media {
  aspect-ratio: 3/4; border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(135deg, color-mix(in oklab, var(--accent) 80%, transparent) 0 2px, transparent 2px 14px),
    var(--accent-soft);
  position: relative; overflow: hidden;
}
.hero.variant-media .hero-media::after {
  content: "film still — therapist in session"; position: absolute; left: 18px; bottom: 18px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--bg); padding: 6px 10px; border-radius: 4px;
}

/* Section headings */
.sec-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 28px;
}
.sec-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--ink-mute);
}
.sec-title {
  font-family: var(--f-display); font-size: clamp(48px, 7vw, 104px);
  line-height: 0.95; letter-spacing: -0.025em; max-width: 22ch;
  margin: 0 0 18px;
}
.sec-subtitle { font-size: 18px; color: var(--ink-soft); max-width: 58ch; line-height: 1.5; }

/* ─── Offerings (Angebote) — styled like the services list ─── */
.offerings .sec-title { max-width: 18ch; }
.offerings .sec-subtitle { max-width: 64ch; }
.offerings-list { border-top: 1px solid var(--ink); margin-top: 60px; }
.offering-row {
  display: grid;
  grid-template-columns: 80px 1.25fr 2fr;
  align-items: baseline;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  transition: background .25s, padding .3s;
}
.offering-row:hover { padding-left: 20px; background: var(--bg-2); }
.offering-row .num {
  font-family: var(--f-mono); font-size: 12px; color: var(--ink-mute);
}
.offering-row .name {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.0; letter-spacing: -0.02em;
  margin: 0; padding-right: 28px;
  text-wrap: balance;
}
.offering-row .body { padding-top: 4px; }
.offering-row .lead {
  font-size: 15.5px; color: var(--ink-soft); line-height: 1.55;
  margin: 0 0 18px; max-width: 46ch; text-wrap: pretty;
}
.off-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.off-list li {
  position: relative; padding-left: 22px;
  font-size: 15.5px; line-height: 1.45; color: var(--ink);
  text-wrap: pretty;
}
.off-list li::before {
  content: ""; position: absolute; left: 2px; top: 0.62em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 900px) {
  .offering-row { grid-template-columns: 40px 1fr; gap: 8px 12px; }
  .offering-row .name { padding-right: 0; margin-bottom: 4px; }
  .offering-row .body { grid-column: 2; }
}

/* ─── Body map section ─── */
.bodymap-section {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bodymap-layout {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px;
  align-items: center; margin-top: 60px;
}
.bodymap-stage {
  position: relative; height: 640px; aspect-ratio: 1122 / 1402; max-width: 100%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.bodymap-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; pointer-events: none; user-select: none;
}
.bodymap-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.bm-hot {
  cursor: pointer;
  transition: r .25s cubic-bezier(.4,.2,.2,1), fill .2s, opacity .2s;
  fill: var(--accent);
  stroke: #fff;
  stroke-width: 3;
  opacity: 0.55;
}
.bm-hot:hover { opacity: 0.85; }
.bm-hot.active { fill: var(--alert); opacity: 1; }
.bm-pulse {
  fill: var(--alert); opacity: 0.4;
  animation: bmPulse 1.6s ease-out infinite;
  transform-origin: center;
  pointer-events: none;
}
@keyframes bmPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.4); opacity: 0; }
}
.bodymap-figure {
  stroke: var(--ink); stroke-width: 1; fill: none;
  opacity: 0.75;
}
.bodymap-info { padding: 0 20px; }
.bm-area-label {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.bm-area-title {
  font-family: var(--f-display); font-size: 64px; line-height: 0.98;
  letter-spacing: -0.02em; margin: 0 0 20px;
}
.bm-area-desc { font-size: 16px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 28px; }
.bm-therapies { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.bm-therapy {
  padding: 6px 12px; border: 1px solid var(--line-strong); border-radius: 999px;
  font-size: 12.5px; color: var(--ink-soft);
}

/* ─── Services ─── */
.services-list { border-top: 1px solid var(--ink); margin-top: 60px; }
.service-row {
  display: grid; grid-template-columns: 80px 1.3fr 2fr 264px;
  align-items: baseline;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: background .25s, padding .3s;
}
.service-row:hover { padding-left: 20px; background: var(--bg-2); }
.service-row .num {
  font-family: var(--f-mono); font-size: 12px; color: var(--ink-mute);
}
.service-row .name {
  font-family: var(--f-display); font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1;
}
.service-row .desc {
  font-size: 15.5px; color: var(--ink-soft); max-width: 48ch; line-height: 1.55;
  padding-right: 20px;
}
.service-row .thumb {
  display: flex; justify-content: flex-end; align-self: center;
}
.service-row .thumb-frame {
  position: relative; width: 100%; max-width: 232px; aspect-ratio: 4 / 3;
  margin-right: 28px;
  overflow: hidden; border-radius: 3px; background: var(--bg-2);
  box-shadow: 0 1px 0 var(--line);
}
.service-row .thumb-frame::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  border-radius: inherit; pointer-events: none; z-index: 2;
}
.service-row .thumb-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; filter: saturate(0.82) brightness(0.99);
  transform: scale(1.001);
  transition: transform .65s cubic-bezier(.22,.61,.36,1), filter .5s ease;
}
.service-row:hover .thumb-frame img,
.service-row.open .thumb-frame img {
  transform: scale(1.07); filter: saturate(1.04) brightness(1.02);
}
.service-row .expand {
  overflow: hidden; max-height: 0;
  transition: max-height .4s cubic-bezier(.4,.2,.2,1);
  grid-column: 2 / 5; padding-top: 0;
}
.service-row.open .expand { max-height: 160px; padding-top: 20px; }
.service-row .expand .expand-inner {
  padding-top: 20px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.service-row .expand .meta {
  display: flex; gap: 40px;
}
.service-row .svc-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap; padding-bottom: 3px;
  margin-right: 40px; font-weight: 600;
  border-bottom: 1px solid var(--accent); transition: border-color .2s, gap .2s, opacity .2s;
}
.service-row .svc-more:hover { gap: 12px; opacity: 0.7; }
.service-row .svc-more-arrow { font-size: 13px; }
.service-row .expand .meta dt { font-family: var(--f-mono); font-size: 10.5px;
  color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 6px; }
.service-row .expand .meta dd { margin: 0; font-size: 14.5px; }
.service-row .expand .meta-indication-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 5px; }
.service-row .expand .meta-indication-list li { font-size: 14px; color: var(--ink-soft); padding-left: 14px; position: relative; line-height: 1.4; }
.service-row .expand .meta-indication-list li::before { content: "+"; position: absolute; left: 0; color: var(--accent); font-size: 12px; font-family: var(--f-sans); font-weight: 600; top: 0px; line-height: 1.4; }

/* ─── Journey ─── */
.journey { background: var(--ink); color: var(--bg); }
.journey .sec-eyebrow { color: color-mix(in oklab, var(--bg) 55%, transparent); }
.journey .sec-eyebrow::before { background: color-mix(in oklab, var(--bg) 45%, transparent); }
.journey-track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--gutter);
  margin-top: 80px; position: relative;
}
.journey-track::before {
  content: ""; position: absolute; top: 26px; left: 0; right: 0; height: 1px;
  background: color-mix(in oklab, var(--bg) 25%, transparent);
}
.j-step { position: relative; padding-top: 60px; }
.j-step .dot {
  position: absolute; top: 18px; left: 0; width: 18px; height: 18px;
  border-radius: 50%; background: var(--bg); border: 1px solid var(--bg);
}
.j-step.active .dot { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 30%, transparent); }
.j-step .mono { color: color-mix(in oklab, var(--bg) 55%, transparent); }
.j-step h3 {
  font-family: var(--f-display); font-size: 32px; line-height: 1.05;
  margin: 10px 0 10px; font-weight: 400;
}
.j-step p { font-size: 14px; line-height: 1.55; color: color-mix(in oklab, var(--bg) 72%, transparent); }

/* ─── Team ─── */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter); margin-top: 60px;
}
.team-card {
  position: relative; aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line);
}
.team-card .portrait {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, color-mix(in oklab, var(--accent) 85%, transparent) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, var(--accent-soft), color-mix(in oklab, var(--accent) 20%, var(--bg-2)));
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.team-card .portrait-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.team-card:hover .portrait-img { transform: scale(1.04); }
.team-card:hover .portrait { transform: scale(1.04); }
.team-card .placeholder-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--bg); padding: 4px 10px; border-radius: 4px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-mute);
}
.team-card .info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 22px;
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--ink) 75%, transparent));
  color: #fff;
}
.team-card .info h4 {
  margin: 0; font-family: var(--f-display); font-size: 28px; font-weight: 400;
  letter-spacing: -0.01em;
}
.team-card .info .role {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.8; margin-top: 4px;
}
.team-card .reveal {
  position: absolute; inset: 0;
  padding: 26px;
  background: color-mix(in oklab, var(--ink) 92%, transparent);
  color: var(--bg);
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.3,.6,.2,1);
  display: flex; flex-direction: column; justify-content: space-between;
}
.team-card:hover .reveal { transform: translateY(0); }
.team-card .reveal h4 {
  margin: 0; font-family: var(--f-display); font-size: 32px; font-weight: 400;
}
.team-card .reveal p { font-size: 13.5px; line-height: 1.5; margin: 16px 0; }
.team-card .reveal .specs {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; display: flex; flex-wrap: wrap; gap: 6px;
}
.team-card .reveal .specs span {
  padding: 5px 9px; border: 1px solid color-mix(in oklab, var(--bg) 40%, transparent);
  border-radius: 999px;
}

/* ─── Testimonials ─── */
.testim {
  background: var(--accent-soft);
}
[data-theme="dark"] .testim, [data-palette="forest"] .testim { background: var(--bg-2); }
.testim-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter);
  margin-top: 60px;
}
.testim-card {
  padding: 36px 32px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 24px;
}
.testim-card .q {
  font-family: var(--f-display); font-size: 28px; line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.testim-card .q::before { content: "\201C"; font-size: 64px; line-height: 0.5; display: block; color: var(--accent); margin-bottom: 8px; }
.testim-card .meta {
  margin-top: auto; display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13px;
}
.testim-card .meta .who b { display: block; font-weight: 500; }
.testim-card .meta .who span { font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); }
.testim-card .stars { display: flex; gap: 2px; color: var(--accent); font-size: 13px; }

/* ─── Booking ─── */
.booking-section { background: var(--ink); color: var(--bg); }
.booking-section .sec-title, .booking-section .sec-subtitle { color: var(--bg); }
.booking-section .sec-eyebrow { color: color-mix(in oklab, var(--bg) 55%, transparent); }
.booking-section .sec-eyebrow::before { background: color-mix(in oklab, var(--bg) 45%, transparent); }

/* Booking — cost & billing info */
.booking-info {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.binfo-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.binfo-card {
  position: relative;
  background: color-mix(in oklab, var(--bg) 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg) 14%, transparent);
  border-radius: var(--radius-lg);
  padding: 26px 26px 28px;
}
.binfo-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  color: var(--bg);
  background: color-mix(in oklab, var(--bg) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg) 18%, transparent);
  margin-bottom: 16px;
}
.binfo-card h4 {
  font-family: var(--f-display);
  font-size: 21px; font-weight: 500; letter-spacing: -0.01em;
  margin: 0 0 8px; color: var(--bg);
}
.binfo-card p {
  font-size: 15px; line-height: 1.55; margin: 0;
  color: color-mix(in oklab, var(--bg) 72%, transparent);
}
.binfo-prices {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  display: flex; flex-direction: column;
}
.binfo-prices-title {
  color: color-mix(in oklab, var(--bg) 70%, transparent);
  margin-bottom: 18px;
}
.binfo-price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 14px 0;
  border-top: 1px solid color-mix(in oklab, var(--bg) 18%, transparent);
  color: var(--bg); font-size: 16px;
}
.binfo-price-row:last-child { padding-bottom: 0; }
.binfo-price-val {
  font-family: var(--f-display); font-size: 24px; font-weight: 500;
  letter-spacing: -0.01em; white-space: nowrap;
}

/* Booking — EMR badge (in Selber-bezahlen card) */
.emr-badge-link {
  position: absolute; top: 20px; right: 20px;
  display: block; line-height: 0; border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.emr-badge-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
}
.emr-badge {
  height: 46px; width: auto; display: block;
  background: #fff; padding: 8px 11px; border-radius: 10px;
}

.booking-embed {
  margin-top: 48px;
  position: relative;
  background: #fff;
  border: 1px solid color-mix(in oklab, var(--bg) 15%, transparent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.booking-iframe {
  display: block;
  width: 100%;
  height: 660px;
  border: 0;
}
.booking-embed-fallback {
  display: block;
  text-align: center;
  padding: 16px;
  color: color-mix(in oklab, var(--bg) 60%, transparent);
  border-top: 1px solid color-mix(in oklab, var(--bg) 12%, transparent);
  text-decoration: none;
}
.booking-embed-fallback:hover { color: var(--accent); }

/* ─── Location ─── */
.location-grid {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: var(--gutter);
  margin-top: 60px;
}
.map-card {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg-2);
  position: relative; overflow: hidden;
}
.gmap-host {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}
.leaflet-host {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: var(--bg-2);
}
.leaflet-host .leaflet-control-attribution {
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  color: var(--ink-mute);
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: 0.04em;
}
.leaflet-host .leaflet-control-attribution a { color: var(--ink); }
.leaflet-host .leaflet-control-zoom a {
  background: var(--bg); color: var(--ink);
  border-color: var(--line);
}
.beacon-marker { background: transparent !important; border: 0 !important; }
.beacon { position: relative; width: 24px; height: 24px; }
.beacon-dot {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--alert); border-radius: 50%;
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--alert), 0 4px 12px color-mix(in oklab, var(--alert) 40%, transparent);
  z-index: 2;
}
.beacon-pulse {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: color-mix(in oklab, var(--alert) 60%, transparent);
  border-radius: 50%;
  animation: beaconPulse 2s ease-out infinite;
  z-index: 1;
}
.beacon-pulse--2 { animation-delay: 1s; }
@keyframes beaconPulse {
  0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(4.5); opacity: 0; }
}
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  background: var(--alert); border-radius: 50%;
  box-shadow: 0 0 0 8px color-mix(in oklab, var(--alert) 30%, transparent);
}
.map-pin::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%; background: var(--alert);
  animation: bmPulse 1.8s ease-out infinite;
}
.info-col { padding: 16px 0; display: flex; flex-direction: column; gap: 36px; }
.info-block h5 {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mute); font-weight: 500;
  margin: 0 0 14px;
}
.info-block p, .info-block address {
  font-family: var(--f-display); font-style: normal; font-size: 28px; line-height: 1.15;
  margin: 0; letter-spacing: -0.01em;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.hours-table td.day { color: var(--ink-mute); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.hours-table td.time { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.today td { color: var(--accent); font-weight: 500; }

/* ─── Location lower: photos + access ─── */
.location-lower {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.loc-photo--contain {
  height: auto !important;
  overflow: hidden !important;
}
.loc-photo--contain img {
  width: 100%;
  height: auto !important;
  object-fit: unset !important;
}
.location-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
}
.loc-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
}
.loc-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.access-block {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.access-block-head { display: flex; flex-direction: column; gap: 14px; }
.access-transit {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
}
.access-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  columns: 2; column-gap: 32px;
}
.access-steps li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; line-height: 1.4; color: var(--ink-soft);
  break-inside: avoid;
}
.step-icon { flex-shrink: 0; font-size: 17px; margin-top: 1px; }

/* ─── Contact block ─── */
.contact-block {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-block-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.contact-block-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 18px 0 0;
  max-width: 34ch;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.form-field input,
.form-field textarea {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 14%, transparent); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-mute); }
.contact-success {
  display: flex; flex-direction: column; gap: 16px;
  padding: 52px 48px;
  background: var(--accent-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.success-check {
  width: 52px; height: 52px;
  background: var(--accent); color: var(--bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 600;
}
.contact-success h4 {
  font-family: var(--f-display);
  font-size: 38px; font-weight: 400; margin: 0; letter-spacing: -0.01em;
}
.contact-success p { font-size: 15px; color: var(--ink-soft); margin: 0; }

/* ─── Social icon buttons ─── */
.social-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  padding: 0;
  transition: color 0.15s;
  text-decoration: none;
}
.social-icon-btn:hover { color: var(--accent); }

/* ─── Step thumbnail + lightbox modal ─── */
.step-thumb {
  flex-shrink: 0; margin-left: 8px;
  width: 80px; height: 80px;
  border-radius: 9px; overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  padding: 0; appearance: none; -webkit-appearance: none;
  transition: opacity 0.15s, transform 0.15s;
}
.step-thumb:hover { opacity: 0.82; transform: scale(1.06); }
.step-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.74);
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(6px);
  animation: imgFadeIn 0.18s ease;
}
@keyframes imgFadeIn { from { opacity: 0 } to { opacity: 1 } }
.img-modal-img {
  max-width: min(90vw, 540px);
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0,0,0,0.5);
  cursor: default;
  animation: imgScaleIn 0.2s cubic-bezier(.22,.68,0,1.2);
}
@keyframes imgScaleIn { from { transform: scale(0.9); opacity: 0 } to { transform: scale(1); opacity: 1 } }

/* ─── Footer ─── */
footer {
  padding: 100px var(--pad-x) 40px;
  border-top: 1px solid var(--line);
}
.foot-big {
  font-family: var(--f-display);
  font-size: clamp(80px, 16vw, 260px);
  line-height: 0.85; letter-spacing: -0.04em;
  margin: 0 0 80px;
  text-align: center;
}
.foot-big em { font-style: italic; color: var(--accent); }
.foot-cols {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gutter); padding-top: 40px; border-top: 1px solid var(--line);
}
.foot-col h6 { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500; color: var(--ink-mute); margin: 0 0 16px; }
.foot-col a, .foot-col li { display: block; font-size: 14px; margin-bottom: 6px; color: var(--ink-soft); }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-legal {
  margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-mute);
}
.foot-legal a { color: var(--ink-mute); text-decoration: none; transition: color 0.2s; }
.foot-legal a:hover { color: var(--accent); }

/* ─── Kinetic cursor follower (subtle) ─── */
.cursor-spot {
  position: fixed; pointer-events: none; z-index: 1;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--accent) 20%, transparent), transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform .3s cubic-bezier(.2,.6,.2,1);
  mix-blend-mode: multiply;
  opacity: 0.4;
}
[data-theme="dark"] .cursor-spot, [data-palette="forest"] .cursor-spot { mix-blend-mode: screen; opacity: 0.3; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; }
}

@media (max-width: 900px) {
  :root { --pad-section: 80px; --pad-x: 22px; }
  .hero-grid, .bodymap-layout, .team-grid, .testim-cards, .location-grid, .foot-cols,
  .contact-block, .access-block { grid-template-columns: 1fr; gap: 40px; }
  .about-top { grid-template-columns: 1fr !important; gap: 36px !important; }
  .about-top .team-card { max-width: 360px !important; }
  .cv-row { grid-template-columns: 96px 1fr !important; gap: 6px 16px !important; }
  .cv-row > div:last-child { grid-column: 2; }
  .location-photos { grid-template-columns: 1fr; height: auto; }
  .loc-photo { height: 260px; }
  .loc-photo--wide { height: 300px; }
  .access-steps { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .journey-track { grid-template-columns: 1fr; gap: 36px; }
  .journey-track::before { display: none; }
  .j-step { padding-top: 0; padding-left: 44px; }
  .j-step .dot { top: 6px; left: 0; }
  .j-step h3 { font-size: 26px; margin: 6px 0 8px; }
  .j-step .mono { display: inline; margin-right: 10px; }
  .j-step h3 { display: inline; }
  .j-step p { margin-top: 8px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .service-row { grid-template-columns: 40px 1fr; gap: 12px; }
  .service-row .desc { grid-column: 2; }
  .service-row .thumb { grid-column: 2; justify-content: flex-start; margin-top: 6px; }
  .service-row .thumb-frame { max-width: 220px; }
  .service-row.open .expand { max-height: 220px; }
  .booking-iframe { height: 900px; }
  .booking-info { grid-template-columns: 1fr; }
  .binfo-methods { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --pad-section: 64px; --pad-x: 18px; }
  .nav { padding: 12px var(--pad-x); }
  .nav-logo { font-size: 20px; }
  .nav-logo img { width: 26px; height: 26px; }
  .nav-cta { display: none; }
  .nav-right { gap: 10px; }

  .hero { padding-top: 120px; min-height: auto; padding-bottom: 120px; }
  .hero-title { font-size: clamp(40px, 13.5vw, 96px); }
  .hero-title .line { white-space: normal; }
  .hero-lede { font-size: 16px; max-width: 100%; margin-top: 24px; }
  .hero-ticker { bottom: 18px; }

  .sec-title { font-size: clamp(38px, 11vw, 60px); }
  .sec-subtitle { font-size: 16px; }

  .offering-row { grid-template-columns: 32px 1fr; padding: 28px 0; }
  .offering-row:hover { padding-left: 0; }
  .offering-row .name { font-size: clamp(24px, 7vw, 34px); }

  .service-row { padding: 26px 0; }
  .service-row:hover { padding-left: 0; }
  .service-row .name { font-size: clamp(26px, 8vw, 40px); }
  .service-row .expand { grid-column: 1 / 3; }
  .service-row.open .expand { max-height: 360px; }
  .service-row .expand .meta { flex-direction: column; gap: 18px; }
  .service-row .svc-more { margin-right: 0; }

  .bm-area-title { font-size: clamp(38px, 11vw, 52px); }
  .bodymap-stage { height: auto; width: 100%; }

  .testim-card { padding: 28px 24px; }
  .testim-card .q { font-size: 23px; }

  .access-block { padding: 28px 22px; gap: 24px; }
  .contact-block { margin-top: 56px; padding-top: 48px; gap: 36px; }
  .contact-success { padding: 36px 26px; }

  .foot-big { font-size: clamp(56px, 22vw, 120px); margin-bottom: 56px; }
  .foot-legal { flex-direction: column; gap: 12px; }
  footer { padding-top: 72px; }

  .info-block p, .info-block address, .info-block address div { font-size: 22px !important; }
}

/* ─── Cookie consent (GDPR) ─── */
.cookie-consent {
  position: fixed; z-index: 300;
  left: 0; right: 0; bottom: 0;
  display: flex; justify-content: center;
  padding: 20px var(--pad-x);
  pointer-events: none;
  animation: cookieIn .4s cubic-bezier(.4,.2,.2,1);
}
@keyframes cookieIn {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-card {
  pointer-events: auto;
  width: 100%; max-width: 720px;
  display: flex; align-items: center; gap: 28px;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px color-mix(in oklab, var(--ink) 22%, transparent);
  padding: 22px 24px;
}
.cookie-title {
  font-family: var(--f-display); font-size: 19px; letter-spacing: -0.01em;
  margin-bottom: 6px; color: var(--ink);
}
.cookie-text p {
  font-size: 14px; line-height: 1.5; color: var(--ink-soft); margin: 0;
}
.cookie-text a { color: var(--accent); white-space: nowrap; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--ink); background: var(--ink); color: var(--bg);
  font-family: var(--f-body); font-size: 13.5px; font-weight: 500;
  white-space: nowrap; transition: background .2s, color .2s, transform .2s;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.cookie-btn.ghost:hover { border-color: var(--ink); }

@media (max-width: 640px) {
  .cookie-consent { padding: 12px; }
  .cookie-card { flex-direction: column; align-items: stretch; gap: 16px; padding: 20px; }
  .cookie-actions { flex-direction: column-reverse; }
  .cookie-btn { width: 100%; padding: 14px 20px; }
}
