/*!
 * Physiotherapeutische Praxis Cornelia Kutschke · Bonn
 * https://www.physiotherapie-kutschke.de
 *
 * Design & Development:  Olivier Alexandre Koch · 2026
 * Content & Practice:    Cornelia Kutschke
 * Colophon & stack:      /humans.txt
 *
 * © 2026 — All rights reserved.
 */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

:root {
  --bg:        #f6f3ee;
  --bg-alt:    #ece6db;
  --surface:   #ffffff;
  --ink:       #1c2421;
  --ink-soft:  #4a544f;
  --ink-mute:  #8a928d;
  --accent:    #2f5d4e;   /* deep sage */
  --accent-2:  #c4d9c4;   /* soft sage */
  --accent-3:  #e8a87c;   /* warm peach */
  --line:      rgba(28, 36, 33, 0.10);
  --dark:      #1c2421;
  --radius:    20px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(28, 36, 33, 0.05);
  --shadow:    0 12px 40px rgba(28, 36, 33, 0.08);
  --shadow-lg: 0 24px 80px rgba(28, 36, 33, 0.14);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  /* Moderne Typo: schöner ausbalancierter Zeilenumbruch in Headlines */
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* ---------- Skip-Link (Accessibility) ---------- */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(-200%);
  transition: transform 0.25s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--accent-3);
  outline-offset: 2px;
}

/* ---------- View-Transitions: sanfte Seitenübergänge ---------- */
@supports (view-transition-name: root) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.35s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
  ::view-transition-old(root) { animation-name: fadeOut; }
  ::view-transition-new(root) { animation-name: fadeIn; }
}
@keyframes fadeOut { to { opacity: 0; transform: translateY(-8px); } }
@keyframes fadeIn  { from { opacity: 0; transform: translateY(8px); } }

/* ---------- Quick-Buttons (Teilen / vCard) im Kontakt ---------- */
.contact__quick {
  display: flex;
  gap: 10px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s ease;
}
.quick-btn:hover {
  border-color: var(--accent);
  background: var(--accent-2);
  transform: translateY(-1px);
}
.quick-btn:active { transform: translateY(0); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h3 { font-size: 1.35rem; }
em  { font-style: italic; color: var(--accent); font-family: 'Fraunces', serif; }

p { color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--light, .eyebrow--light::before { color: var(--accent-2); background: var(--accent-2); }
.eyebrow--light::before { background: var(--accent-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(47, 93, 78, 0.25);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn--full { width: 100%; justify-content: center; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.nav__logo-mark {
  width: 22px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform .4s ease;
}
.nav__logo:hover .nav__logo-mark {
  transform: translateY(-2px) rotate(-2deg);
}
.nav__logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

/* ------- Logo-Animation: Stein-für-Stein-Aufbau ------- */
.nav__logo-mark svg path,
.hero__signature svg path,
.footer__logo svg path,
.thanks__logo svg path {
  transform-origin: 50% 100%;
  animation: stoneStack 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) backwards;
}
.nav__logo-mark svg line,
.hero__signature svg line,
.footer__logo svg line,
.thanks__logo svg line {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: drawLine 1.6s ease-out 0.2s forwards;
}

/* Steine in Reihenfolge: unten zuerst, oben zuletzt (wie echtes Stapeln) */
.nav__logo-mark svg path:nth-of-type(5),
.hero__signature svg path:nth-of-type(5),
.footer__logo svg path:nth-of-type(5),
.thanks__logo svg path:nth-of-type(5) { animation-delay: 0.0s; }
.nav__logo-mark svg path:nth-of-type(4),
.hero__signature svg path:nth-of-type(4),
.footer__logo svg path:nth-of-type(4),
.thanks__logo svg path:nth-of-type(4) { animation-delay: 0.18s; }
.nav__logo-mark svg path:nth-of-type(3),
.hero__signature svg path:nth-of-type(3),
.footer__logo svg path:nth-of-type(3),
.thanks__logo svg path:nth-of-type(3) { animation-delay: 0.36s; }
.nav__logo-mark svg path:nth-of-type(2),
.hero__signature svg path:nth-of-type(2),
.footer__logo svg path:nth-of-type(2),
.thanks__logo svg path:nth-of-type(2) { animation-delay: 0.54s; }
.nav__logo-mark svg path:nth-of-type(1),
.hero__signature svg path:nth-of-type(1),
.footer__logo svg path:nth-of-type(1),
.thanks__logo svg path:nth-of-type(1) { animation-delay: 0.72s; }

/* Sanfte Dauer-Atmung für den Akzent-Stein (warmer Pfirsich) */
.nav__logo-mark svg path:nth-of-type(4),
.footer__logo svg path:nth-of-type(4),
.thanks__logo svg path:nth-of-type(4),
.hero__signature svg path:nth-of-type(4) {
  transform-origin: 50% 50%;
  animation: stoneStack 0.9s cubic-bezier(0.22, 1.2, 0.36, 1) 0.18s backwards,
             stoneBreath 4.5s ease-in-out 1.2s infinite;
}

@keyframes stoneStack {
  0%   { opacity: 0; transform: translateY(-14px) scale(0.6) rotate(-6deg); }
  60%  { opacity: 1; transform: translateY(2px)   scale(1.05) rotate(1deg); }
  100% { opacity: 1; transform: translateY(0)    scale(1)    rotate(0); }
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes stoneBreath {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.04); opacity: 0.88; }
}

/* Hover: Steine wackeln subtil */
.nav__logo:hover .nav__logo-mark svg path {
  animation: stoneWiggle 0.6s ease-in-out;
}
.nav__logo:hover .nav__logo-mark svg path:nth-of-type(1) { animation-delay: 0.0s; }
.nav__logo:hover .nav__logo-mark svg path:nth-of-type(2) { animation-delay: 0.05s; }
.nav__logo:hover .nav__logo-mark svg path:nth-of-type(3) { animation-delay: 0.1s; }
.nav__logo:hover .nav__logo-mark svg path:nth-of-type(4) { animation-delay: 0.15s; }
.nav__logo:hover .nav__logo-mark svg path:nth-of-type(5) { animation-delay: 0.2s; }

@keyframes stoneWiggle {
  0%, 100% { transform: rotate(0); }
  50%      { transform: rotate(2deg); }
}

/* Bewegungsreduktion respektieren */
@media (prefers-reduced-motion: reduce) {
  .nav__logo-mark svg path,
  .hero__signature svg path,
  .footer__logo svg path,
  .thanks__logo svg path,
  .nav__logo-mark svg line,
  .hero__signature svg line,
  .footer__logo svg line,
  .thanks__logo svg line {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-name {
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav__logo-sub {
  font-size: 0.72rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Footer logo variant */
.footer__logo {
  width: 26px;
  height: 62px;
}

/* Thanks-page logo */
.thanks__logo {
  display: block;
  width: 28px;
  height: 68px;
  margin: 0 auto 28px;
}
.thanks__logo svg { width: 100%; height: 100%; }
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s ease;
}
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}
.hero__blob--1 {
  /* Salbei-Grün: oben rechts, harmoniert mit dem Foto */
  width: 520px; height: 520px;
  top: -120px; right: -140px;
  background: radial-gradient(circle, var(--accent-2), transparent 70%);
  opacity: 0.45;
}
.hero__blob--2 {
  /* Warmer Pfirsich: unten links — Gegenpol zum kühlen Foto */
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, var(--accent-3), transparent 70%);
  opacity: 0.28;
  animation-delay: -6s;
}
.hero__blob--3 {
  /* Kühler Blau-Grau-Akzent: greift das Foto auf und bindet es ins Layout */
  width: 420px; height: 420px;
  top: 30%; right: 5%;
  background: radial-gradient(circle, #a8b5b8, transparent 70%);
  opacity: 0.3;
  animation-delay: -12s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.05); }
  66%      { transform: translate(-20px, 30px) scale(0.95); }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__title {
  margin-bottom: 24px;
}
.hero__lead {
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__meta {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__meta strong {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
}
.hero__meta span {
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  justify-self: end;
  width: 100%;
}
.hero__signature {
  /* Das Foto im Hero zeigt jetzt den echten Steinstapel — die SVG-Signatur
     wäre dadurch redundant. Ausgeblendet, aber Markup bleibt erhalten. */
  display: none;
}
.hero__signature svg { width: 100%; height: 100%; }
@keyframes floatSig {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}
.hero__card {
  position: absolute;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}
.hero__card--main {
  inset: 0;
  /* Karten-Look komplett weglassen — Steine schweben frei */
  background: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

/* SVG-Wirbel-Stapel — füllt die Karte, Steine zentriert mit Atemraum links/rechts */
.hero__stones {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  padding: 4% 0;
}
.hero__stones-stone {
  /* fill kommt aus SVG-Gradient (url(#hero-ink-grad) etc.) — CSS lässt das durch */
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: stoneDance 10s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.6s - 1s);
  will-change: transform;
}

/* Tanz: Stein versetzt sich seitlich, dreht sich leicht, findet zurück zur Mitte */
@keyframes stoneDance {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  20% {
    transform:
      translate(calc(var(--sway, 2.5%) * var(--dir, 1) * -1), -0.3%)
      scale(1.03)
      rotate(calc(var(--rot, 0.5deg) * -1));
  }
  50% {
    transform: translate(0, -0.5%) scale(1.045) rotate(0deg);
  }
  80% {
    transform:
      translate(calc(var(--sway, 2.5%) * var(--dir, 1)), -0.3%)
      scale(1.03)
      rotate(var(--rot, 0.5deg));
  }
}

/* Spinalkanal-Linie — zarte Eintritts-Animation und subtiler Glanz */
.hero__stones-line {
  stroke-dasharray: 232;
  stroke-dashoffset: 232;
  animation: lineDraw 2.6s ease-out 0.4s forwards,
             lineShimmer 5s ease-in-out 3.5s infinite;
}
@keyframes lineDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes lineShimmer {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1;    }
}

/* Bewegungs-Reduktion respektieren */
@media (prefers-reduced-motion: reduce) {
  .hero__stones-stone,
  .hero__stones-line { animation: none !important; }
  .hero__stones-line { stroke-dashoffset: 0; }
  .hero__stones circle { display: none; }
}
.hero__card-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
}
.hero__card-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3aaf6a;
  box-shadow: 0 0 0 4px rgba(58, 175, 106, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(58, 175, 106, 0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(58, 175, 106, 0.05); }
}

.hero__card--float {
  padding: 18px 22px;
  width: 240px;
}
.hero__card--quote {
  bottom: -20px;
  left: -30px;
  border-top-left-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__portrait {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(232, 168, 124, 0.12), transparent),
    url('images/cornelia-small.jpg') center 20%/cover;
  box-shadow: 0 4px 12px rgba(28, 36, 33, 0.12);
  border: 2px solid var(--surface);
  margin-bottom: 4px;
}
.hero__card--quote p {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.35;
}
.hero__card--quote span {
  font-size: 0.78rem;
  color: var(--ink-mute);
}
.hero__card--stat {
  top: 40px;
  right: -40px;
  width: auto;
  padding: 18px 24px;
  text-align: center;
}
.hero__stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.hero__stat-lbl {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid var(--ink-mute);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  z-index: 1;
}

/* Schlanker Scroll-Cue zwischen den Sektionen */
.section__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: var(--line);
  overflow: hidden;
  z-index: 2;
  transition: opacity 0.25s ease;
}
.section__scroll::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--accent-3);
  animation: cueDrift 2.8s ease-in-out infinite;
}
.section__scroll:hover { opacity: 0.7; }
.section--dark .section__scroll {
  background: rgba(246, 243, 238, 0.18);
}
.section--dark .section__scroll::after {
  background: var(--accent-3);
}
@keyframes cueDrift {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(280%); opacity: 0; }
}
/* Animation bei Bewegungs-Reduktion abschalten */
@media (prefers-reduced-motion: reduce) {
  .section__scroll::after { animation: none; opacity: 0.5; }
}
.hero__scroll span {
  width: 2px;
  height: 8px;
  background: var(--ink-soft);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--bg);
  padding: 22px 0;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.05);
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
}
.marquee__track span:nth-child(even) {
  color: var(--accent-3);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  padding: 120px 0;
  position: relative;
}
.section--alt {
  background: var(--bg-alt);
}
.section--dark {
  background: var(--dark);
  color: var(--bg);
}
.section--dark h2 { color: var(--bg); }
.section--dark p  { color: rgba(246, 243, 238, 0.7); }

.section__head {
  max-width: 640px;
  margin-bottom: 64px;
}
.section__head--center {
  margin-inline: auto;
  text-align: center;
}
.section__head p {
  margin-top: 16px;
  font-size: 1.08rem;
}

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service {
  background: var(--surface);
  padding: 34px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 0;
}
.service > * { position: relative; z-index: 1; }
.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service:hover::before { opacity: 0.06; }
.service__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-2);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background .3s ease, color .3s ease;
}
.service__icon svg { width: 26px; height: 26px; }
.service:hover .service__icon {
  background: var(--accent);
  color: var(--bg);
}
.service h3 { margin-bottom: 10px; }
.service p  { font-size: 0.95rem; }
.service__detail {
  font-size: 0.92rem !important;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 12px;
}
.service__for {
  font-size: 0.88rem !important;
  color: var(--ink-soft);
  padding: 12px 14px;
  background: var(--bg);
  border-radius: 10px;
  border-left: 2px solid var(--accent-3);
  margin: 16px 0 18px !important;
  line-height: 1.55;
}
.service__for strong {
  color: var(--ink);
  font-weight: 600;
}
.service__cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color .2s ease, transform .2s ease;
  width: 100%;
}
.service__cta:hover {
  color: var(--accent);
  transform: translateX(2px);
}
/* Dunkles Highlight-Hausbesuche: Geeignet-bei-Box invertieren */
.service--highlight {
  display: flex;
  flex-direction: column;
}
.service--highlight .service__detail { color: rgba(246, 243, 238, 0.78); }
.service--highlight .service__for {
  background: rgba(0, 0, 0, 0.18);
  border-left-color: var(--accent-3);
  color: rgba(246, 243, 238, 0.85);
}
.service--highlight .service__for strong { color: var(--bg); }
.service--highlight .service__cta {
  color: var(--bg);
  border-top-color: rgba(246, 243, 238, 0.18);
}
.service--highlight .service__cta:hover { color: var(--accent-3); }
/* Flex-Layout, damit CTA sich am Karten-Boden verankert */
.service {
  display: flex;
  flex-direction: column;
}
.service > p:not(.service__for):not(.service__detail) { flex-shrink: 0; }

/* ---------- Recovery (Cryo + Balancer) ---------- */
.section--recovery {
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(196, 217, 196, 0.45), transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(232, 168, 124, 0.18), transparent 60%),
    var(--bg);
  position: relative;
}
.section--recovery::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.recovery__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.recovery__card {
  background: var(--surface);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.recovery__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  opacity: 0.6;
  transition: opacity .4s ease, height .4s ease;
}
.recovery__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(28, 36, 33, 0.12);
  border-color: transparent;
}
.recovery__card:hover::before { opacity: 1; height: 5px; }

.recovery__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: transform .3s ease;
}
.recovery__card:hover .recovery__icon { transform: scale(1.08) rotate(-4deg); }
.recovery__icon svg { width: 30px; height: 30px; }
.recovery__icon--cryo {
  background: linear-gradient(135deg, #cfe2e8, #e8f0f2);
  color: #4a7b85;
}
.recovery__icon--balancer {
  background: linear-gradient(135deg, var(--accent-2), #d4e3d4);
  color: var(--accent);
}

.recovery__tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding: 5px 12px;
  background: var(--accent-2);
  border-radius: 999px;
  margin-bottom: 14px;
}

.recovery__card h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  line-height: 1.15;
}
.recovery__card p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.recovery__concepts {
  text-align: center;
  margin-bottom: 48px;
}
.recovery__concepts-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 20px;
}
.recovery__pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.recovery__pills li {
  list-style: none;
}
.recovery__pills a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}
.recovery__pills a span {
  color: var(--accent-3);
  font-size: 0.85rem;
  transition: transform .25s ease;
}
.recovery__pills a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--accent-2);
  color: var(--accent);
}
.recovery__pills a:hover span {
  transform: scale(1.2) rotate(8deg);
}

.recovery__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.recovery__price-hint {
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  margin: 0;
}

@media (max-width: 720px) {
  .recovery__pair { grid-template-columns: 1fr; }
  .recovery__card { padding: 32px 26px; }
  .recovery__pills { gap: 8px; }
  .recovery__pills li { font-size: 0.85rem; padding: 8px 16px; }
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about__img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, transparent 55%, rgba(28, 36, 33, 0.25)),
    url('images/cornelia-web.jpg') center 20%/cover;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about__chip {
  position: absolute;
  background: var(--surface);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.about__chip span {
  color: var(--accent);
  font-size: 1rem;
}
.about__chip--1 { top: 30px; right: -20px; }
.about__chip--2 { bottom: 40px; left: -30px; }

.about__content h2 { margin-bottom: 20px; }
.about__lead {
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.about__list {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}
.about__list li {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.about__list li:last-child { border-bottom: 1px solid var(--line); }
.about__list strong {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.about__list span {
  font-size: 0.92rem;
  color: var(--ink-mute);
}

/* ---------- Values ---------- */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.value__num {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.value h3  { margin-bottom: 10px; }
.value p   { font-size: 0.95rem; }

/* Galerie wurde entfernt — die Werte-Karten oben tragen die Sektion allein.
   Falls später echte Praxis-Fotos eingebunden werden sollen, hier wieder aufnehmen. */

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 30px;
  border-radius: var(--radius);
  transition: transform .35s ease, background .35s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}
.stars {
  color: var(--accent-3);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.promise-num {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--accent-3);
  margin-bottom: 14px;
  line-height: 1;
}

/* Highlighted service card */
.service--highlight {
  background: linear-gradient(135deg, var(--accent), #234a3e);
  color: var(--bg);
  border-color: transparent;
}
.service--highlight h3 { color: var(--bg); }
.service--highlight p  { color: rgba(246, 243, 238, 0.85); }
.service--highlight .service__icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--bg);
}
.service--highlight:hover .service__icon {
  background: var(--bg);
  color: var(--accent);
}
.service--highlight::before { display: none; }

/* ---------- Legal pages (Impressum, Datenschutz) ---------- */
.legal {
  padding: 140px 0 80px;
  background: var(--bg);
}
.legal__inner {
  max-width: 760px;
}
.legal__back {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  transition: color .2s ease;
}
.legal__back:hover { color: var(--accent); }
.legal h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 14px;
}
.legal__lead {
  font-size: 1.08rem;
  margin-bottom: 50px;
  color: var(--ink-soft);
}
.legal h2 {
  font-size: 1.5rem;
  margin: 48px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { padding-top: 0; border-top: 0; }
.legal h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.legal p, .legal ul {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.7;
}
.legal ul {
  padding-left: 22px;
  list-style: disc;
}
.legal ul li { margin-bottom: 6px; }
.legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--ink); }
.legal__hint {
  background: var(--accent-2);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.9rem !important;
  color: var(--ink) !important;
  border-left: 3px solid var(--accent);
}

/* ---------- Thanks page ---------- */
.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 60px 24px;
  background:
    radial-gradient(circle at 30% 20%, var(--accent-2), transparent 60%),
    radial-gradient(circle at 70% 80%, #f8e8d4, transparent 60%),
    var(--bg);
}
.thanks__inner {
  max-width: 540px;
  text-align: center;
}
.thanks__check {
  display: none;
}
.thanks h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 14px 0 18px;
}
.thanks p {
  margin-bottom: 14px;
  font-size: 1.02rem;
}
.thanks .btn { margin-top: 24px; }
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--bg);
}
.testimonial figcaption strong {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}
.testimonial figcaption span {
  font-size: 0.85rem;
  color: rgba(246, 243, 238, 0.5);
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__info h2 { margin-bottom: 20px; }
.contact__info > p {
  font-size: 1.08rem;
  margin-bottom: 40px;
}
.contact__list {
  display: grid;
  gap: 22px;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-2);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact__icon svg { width: 20px; height: 20px; }
.contact__list strong {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}
.contact__list a, .contact__list span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.contact__list a:hover { color: var(--accent); }

.contact__form {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact__form h3 {
  font-size: 1.6rem;
  margin-bottom: 26px;
}
.field { margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  font-size: 0.95rem;
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
}
.field textarea { resize: vertical; min-height: 100px; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 16px 0 24px;
  cursor: pointer;
}
.checkbox input { margin-top: 3px; accent-color: var(--accent); }
.checkbox a { color: var(--accent); text-decoration: underline; }

.form__note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--accent);
  min-height: 1.2em;
}

/* ---------- Lageplan / Anfahrt ---------- */
.section--map {
  background: var(--bg-alt);
}
.map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.map iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
  filter: saturate(0.88) contrast(1.02);
}

/* Klick-zum-Laden-Platzhalter */
.map__placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  height: 480px;
  padding: 40px;
  background:
    radial-gradient(circle at 30% 20%, var(--accent-2) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(232, 168, 124, 0.25) 0%, transparent 55%),
    var(--surface);
  border: 0;
  cursor: pointer;
  transition: background .4s ease;
  text-align: center;
  font-family: inherit;
  color: var(--ink);
}
.map__placeholder:hover {
  background:
    radial-gradient(circle at 30% 20%, var(--accent-2) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(232, 168, 124, 0.35) 0%, transparent 45%),
    var(--surface);
}
.map__placeholder:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -8px;
}
.map__pin {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(47, 93, 78, 0.28);
  transition: transform .35s ease;
  animation: pinPulse 3s ease-in-out infinite;
}
.map__placeholder:hover .map__pin { transform: translateY(-4px) scale(1.05); }
.map__pin svg { width: 28px; height: 28px; }
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 16px 40px rgba(47, 93, 78, 0.28), 0 0 0 0 rgba(47, 93, 78, 0.3); }
  50%      { box-shadow: 0 16px 40px rgba(47, 93, 78, 0.28), 0 0 0 18px rgba(47, 93, 78, 0); }
}
.map__placeholder-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  max-width: 480px;
}
.map__placeholder-text strong {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.map__placeholder-text span {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.map__placeholder-text small {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.map__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .map iframe,
  .map__placeholder { height: 360px; }
  .map__placeholder { padding: 28px 20px; }
  .map__placeholder-text strong { font-size: 1.25rem; }
}

/* ---------- Cryo + Balancer · Detailseite ---------- */
.cb-hero {
  padding: 140px 0 60px;
  background:
    radial-gradient(ellipse 900px 500px at 70% 0%, rgba(196, 217, 196, 0.5), transparent 60%),
    radial-gradient(ellipse 700px 400px at 0% 100%, rgba(232, 168, 124, 0.22), transparent 60%),
    var(--bg);
}
.cb-hero__back {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: color .2s ease;
}
.cb-hero__back:hover { color: var(--accent); }
.cb-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 26px;
  max-width: 14ch;
}
.cb-hero__lead {
  font-size: 1.12rem;
  max-width: 720px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.cb-section { padding: 90px 0; }
.cb-section--alt { background: var(--bg-alt); }

.cb-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cb-card {
  background: var(--surface);
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cb-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  opacity: 0.7;
}
.cb-card h3 {
  font-size: 1.7rem;
  margin: 12px 0 14px;
  letter-spacing: -0.01em;
}
.cb-card__lead {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 1.55;
}
.cb-card__group {
  margin-top: 22px;
}
.cb-card__group h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.cb-list {
  list-style: none;
  padding: 0;
}
.cb-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.cb-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--accent-3);
}
.cb-list--lg li { font-size: 1.02rem; padding: 9px 0 9px 26px; }
.cb-list--lg li::before { top: 19px; width: 12px; }

/* Spezialkonzepte */
.cb-concepts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cb-concept {
  background: var(--surface);
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.cb-concept:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cb-concept__num {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.cb-concept h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.cb-concept__sub {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 16px;
  font-style: italic;
  font-family: 'Fraunces', serif;
  letter-spacing: -0.005em;
}
.cb-concept > p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cb-concept__for {
  font-size: 0.9rem !important;
  color: var(--ink-soft);
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 12px;
  border-left: 2px solid var(--accent-3);
  margin: 14px 0 18px !important;
  line-height: 1.55 !important;
}
.cb-concept__for strong {
  color: var(--ink);
  font-weight: 600;
}
.cb-concept__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.cb-concept__price {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 0.2s ease;
}
.cb-concept__price:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cb-concept__cta {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.cb-concept__cta:hover {
  color: var(--accent);
  transform: translateX(2px);
}

/* Für wen + Vorteile */
.cb-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.cb-twocol h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 16px 0 28px;
}
.cb-benefits {
  background: var(--bg-alt);
  padding: 40px 36px;
  border-radius: var(--radius-lg);
}
.cb-checks {
  list-style: none;
  padding: 0;
}
.cb-checks li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: 1rem;
  color: var(--ink);
  border-bottom: 1px solid rgba(28, 36, 33, 0.08);
}
.cb-checks li:last-child { border-bottom: 0; }
.cb-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}

/* ===== Preisliste ===== */
.prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-bottom: 80px;
}
.prices__cat {
  background: var(--surface);
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.prices__cat--wide { grid-column: 1 / -1; }
.prices__cat h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.prices__list { list-style: none; padding: 0; margin: 0; }
.prices__list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(28, 36, 33, 0.06);
}
.prices__list li:last-child { border-bottom: 0; }
.prices__name {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.prices__dur {
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.prices__price {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  min-width: 56px;
  text-align: right;
}

/* ===== Pakete & Memberships ===== */
.memberships { margin-bottom: 48px; }
.memberships__head {
  text-align: center;
  margin-bottom: 36px;
}
.memberships__head h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-top: 10px;
}
.memberships__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.membership {
  background: var(--surface);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.membership:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.membership__tag {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.membership h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.membership > p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  flex: 1;
}
.membership__perk {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--accent);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.membership--feat .membership__price {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  margin: 4px 0 18px;
  letter-spacing: -0.01em;
}
.membership--feat .membership__price span {
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}
.membership--feat ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.membership--feat ul li {
  position: relative;
  padding: 7px 0 7px 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.membership--feat ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}
.membership--premium {
  background: linear-gradient(160deg, var(--accent), #234a3e);
  color: var(--bg);
  border-color: transparent;
}
.membership--premium .membership__tag { color: var(--accent-3); }
.membership--premium h4 { color: var(--bg); }
.membership--premium .membership__price { color: var(--bg); }
.membership--premium .membership__price span { color: rgba(246, 243, 238, 0.65); }
.membership--premium ul li { color: rgba(246, 243, 238, 0.85); }
.membership--premium ul li::before { color: var(--accent-3); }

.prices__note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.prices__note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .prices { grid-template-columns: 1fr; }
  .prices__cat--wide { grid-column: 1; }
  .memberships__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .memberships__grid { grid-template-columns: 1fr; }
  .prices__list li {
    grid-template-columns: 1fr auto;
    gap: 4px 14px;
  }
  .prices__dur { grid-column: 2; grid-row: 2; text-align: right; }
  .prices__price { grid-column: 2; grid-row: 1; }
  .prices__name  { grid-column: 1; grid-row: 1 / 3; }
}

/* CTA */
.cb-cta {
  padding: 100px 0 120px;
  background: var(--dark);
  color: var(--bg);
}
.cb-cta__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cb-cta h2 {
  color: var(--bg);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin: 14px 0 22px;
}
.cb-cta p {
  color: rgba(246, 243, 238, 0.75);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 36px;
}
.cb-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.cb-cta .btn--primary { background: var(--bg); color: var(--ink); }
.cb-cta .btn--primary:hover { background: var(--accent-3); color: var(--ink); }
.cb-cta .btn--ghost { color: var(--bg); border-color: rgba(246, 243, 238, 0.25); }
.cb-cta .btn--ghost:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.cb-cta__hours {
  font-size: 0.85rem !important;
  color: rgba(246, 243, 238, 0.5) !important;
  letter-spacing: 0.08em;
  margin-bottom: 0 !important;
}

@media (max-width: 900px) {
  .cb-pair,
  .cb-concepts,
  .cb-twocol { grid-template-columns: 1fr; }
  .cb-twocol { gap: 48px; }
  .cb-card { padding: 36px 28px; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(246, 243, 238, 0.7);
  padding: 80px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.footer__brand p {
  color: rgba(246, 243, 238, 0.6);
  font-size: 0.92rem;
  line-height: 1.5;
}
.footer__col h4 {
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  padding: 4px 0;
  font-size: 0.92rem;
  transition: color .2s ease;
  overflow-wrap: anywhere;
}
.footer__col a:hover { color: var(--accent-3); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  font-size: 0.85rem;
  color: rgba(246, 243, 238, 0.45);
}
.footer__privacy {
  color: rgba(246, 243, 238, 0.55);
  font-size: 0.8rem;
}
.footer__privacy a {
  color: rgba(232, 168, 124, 0.85);
  text-decoration: underline;
}
.footer__privacy a:hover {
  color: #e8a87c;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-top: 110px; }
  .hero__inner { grid-template-columns: 1fr; gap: 80px; }
  .hero__visual { justify-self: center; max-width: 380px; }
  .hero__meta { gap: 32px; }

  .services { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 460px; margin: 0 auto; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .services { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__card--quote { left: -10px; bottom: -10px; width: 220px; }
  .hero__card--stat  { right: -10px; top: 20px; }
  .nav__logo-sub { display: none; }
  .nav__logo-name { font-size: 0.95rem; }
  .marquee__track { font-size: 1.2rem; gap: 28px; }
}
