/* ============================================================
   MB Med Massagen v4 — hell · Natur-Lila · Lila-Glow Hover
   ============================================================ */

:root {
  --bg: #f7e9d4;          /* sattes warmes Creme/Sand */
  --bg-2: #fbf5e8;
  --bg-paper: #ffffff;
  --bg-mid: #ecd6b7;
  --bg-deep: #2a1738;     /* tief-aubergine für Kontrast */

  --ink: #2c1530;         /* sattes Aubergine-Ink */
  --ink-2: #5a3a5f;
  --ink-3: #8d6e92;
  --ink-soft: #c5bdcb;

  /* LILA — kräftig, satter Mauve */
  --lila: #8a3f9f;        /* satter Lila */
  --lila-deep: #4d1e60;
  --lila-soft: #c8a0d8;
  --lila-ghost: #ead4f2;
  --lila-glow: rgba(138, 63, 159, 0.5);

  /* NATUR-Grün — sattes Salbei */
  --sage: #5b8458;        /* kräftigeres Sage */
  --sage-deep: #2f5230;
  --sage-soft: #aacba6;

  --gold: #c08a3a;         /* warmes sattes Gold */
  --gold-deep: #7a5618;
  --sand: #d9b577;
  --terracotta: #b15a3a;

  --line: rgba(44, 35, 51, 0.10);
  --line-2: rgba(44, 35, 51, 0.18);

  --r: 18px;
  --r-lg: 28px;

  --shadow-soft: 0 24px 60px -28px rgba(110, 74, 133, 0.20);
  --shadow-glow: 0 0 0 1px var(--lila), 0 28px 70px -20px var(--lila-glow);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background:
    linear-gradient(180deg,
      #f7e9d4 0%,
      #f4dcd2 5%,
      #ecccd8 10%,
      #e0c8e0 18%,
      #d8b8e0 28%,
      #c8c8e0 38%,
      #c0d0c8 48%,
      #d0c8d8 58%,
      #d8c0d0 68%,
      #e0c8c8 78%,
      #e8d0a8 88%,
      #d8b8d0 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color .25s ease; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
em { font-style: italic; color: var(--lila-deep); font-weight: 600; }

/* SEO/A11y: Skip-Link */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  z-index: 9999;
}
.skip-link:focus {
  position: fixed;
  left: 16px; top: 16px;
  width: auto; height: auto;
  padding: 10px 16px;
  background: var(--lila-deep);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  outline: 2px solid #fff;
}

/* Visually hidden for screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============ 3D Floating Botanicals ============ */
.floating-3d {
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.float-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: orbDrift 22s ease-in-out infinite;
}
.orb-1 {
  width: 520px; height: 520px;
  top: -120px; left: -180px;
  background: radial-gradient(circle at 35% 35%, var(--lila-soft), transparent 70%);
}
.orb-2 {
  width: 600px; height: 600px;
  top: 38vh; right: -200px;
  background: radial-gradient(circle at 35% 35%, var(--sage-soft), transparent 70%);
  animation-duration: 28s;
  animation-direction: reverse;
}
.orb-3 {
  width: 460px; height: 460px;
  top: 110vh; left: 25vw;
  background: radial-gradient(circle at 35% 35%, var(--sand), transparent 70%);
  animation-duration: 30s;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(50px, -40px) scale(1.05); }
  66%      { transform: translate(-30px, 30px) scale(0.95); }
}

.float-leaf {
  position: absolute;
  width: 90px; height: 90px;
  opacity: 0.10;
  animation: leafFloat 18s ease-in-out infinite;
  color: var(--sage);
}
.leaf-1 { top: 12vh; right: 8vw; transform: rotate(20deg); }
.leaf-2 { top: 70vh; left: 5vw; transform: rotate(-30deg); animation-delay: -6s; animation-duration: 22s; color: var(--lila); width: 70px; height: 70px; }
.leaf-3 { top: 180vh; right: 15vw; transform: rotate(45deg); animation-delay: -12s; animation-duration: 26s; color: var(--gold); width: 80px; height: 80px; }
@keyframes leafFloat {
  0%, 100% { transform: translate(0, 0) rotate(20deg); }
  50%      { transform: translate(30px, -50px) rotate(-10deg); }
}

/* ============ Top bar ============ */
.topbar {
  position: relative; z-index: 60;
  background: var(--ink);
  color: var(--bg-paper);
  font-size: 12.5px;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 11px 32px;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.tb-item { opacity: 0.9; }
.tb-item a:hover { color: var(--lila-soft); }

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px -16px rgba(44, 35, 51, 0.18);
  padding: 12px 40px;
}

.nav-brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lila) 0%, var(--lila-deep) 100%);
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 32px;
  box-shadow: 0 22px 44px -10px rgba(110, 74, 133, 0.55);
  position: relative;
  transition: transform .3s, box-shadow .3s;
  flex-shrink: 0;
}
.nav-brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 0 0 4px var(--lila-ghost), 0 16px 36px -8px var(--lila-glow);
}
.brand-mark::after {
  content: ''; position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--lila-soft);
}
/* Logo-Variante — Bild füllt die runde Plakette */
.brand-mark.has-logo {
  background: var(--lila-deep);
  overflow: hidden;
  padding: 0;
}
.brand-mark.has-logo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.brand-mark.brand-mark-lg {
  width: 170px; height: 170px;
}
@media (max-width: 600px) {
  .brand-mark { width: 78px; height: 78px; }
  .brand-mark.brand-mark-lg { width: 130px; height: 130px; }
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.b-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.b-sub {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 600;
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14.5px; font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
  position: relative;
  transition: color .25s, background .25s, text-shadow .25s;
}
.nav-links a:hover {
  color: var(--lila-deep);
  background: var(--lila-ghost);
  text-shadow: 0 0 16px var(--lila-glow);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--lila) 0%, var(--lila-deep) 100%);
  color: white !important;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -10px var(--lila-glow);
  transition: transform .25s, box-shadow .25s;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 4px var(--lila-ghost),
    0 22px 44px -10px var(--lila),
    0 0 50px var(--lila-glow);
}

.nav-burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s, background .25s, border-color .25s, color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--lila) 0%, var(--lila-deep) 100%);
  color: white !important;
  box-shadow: 0 18px 40px -14px var(--lila-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 4px var(--lila-ghost),
    0 26px 56px -14px var(--lila),
    0 0 60px var(--lila-glow);
}
.btn-primary.big { padding: 22px 40px; font-size: 15px; }

.btn-ghost {
  border: 1.5px solid var(--ink-2);
  background: transparent;
  color: var(--ink) !important;
}
.btn-ghost:hover {
  background: var(--lila-ghost);
  border-color: var(--lila);
  color: var(--lila-deep) !important;
  box-shadow: 0 0 0 3px var(--lila-ghost), 0 14px 30px -10px var(--lila-glow);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 60px 32px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 30px;
}
.line-deco { display: inline-block; width: 40px; height: 1px; background: var(--lila); opacity: 0.5; }
.aloha-word {
  font-style: italic;
  font-weight: 500;
  font-size: 24px;
  color: var(--lila-deep);
}

.hero-statement {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(58px, 8vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hs-line { display: block; }
.hs-line em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(120deg, #3a1244 0%, #6b2a82 50%, #4d1e60 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(77, 30, 96, 0.25));
}

.hero-sub {
  font-size: clamp(18px, 1.45vw, 22px);
  color: var(--ink);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.hero-trust strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--lila-deep);
  font-size: 15px;
  letter-spacing: 0.01em;
  margin-right: 4px;
}
.hero-trust .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--lila);
  opacity: 0.5;
}

/* Hero visual = collage with images */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.hv-image {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -24px rgba(44, 35, 51, 0.4);
  transition: transform .5s ease, box-shadow .5s ease;
}
.hv-image img { width: 100%; height: 100%; object-fit: cover; }
.hv-image-main {
  top: 3%; left: 4%;
  width: 76%; height: 82%;
  z-index: 2;
  border-radius: 50% 24px 50% 24px;
  animation: floatA 8s ease-in-out infinite;
}
.hv-image-sm {
  bottom: 2%; right: -2%;
  width: 46%; height: 34%;
  z-index: 1;
  border-radius: 24px 50% 24px 50%;
  animation: floatB 7s ease-in-out infinite;
}
.hv-image-tiny {
  top: 8%; right: -2%;
  width: 28%; height: 28%;
  border-radius: 50%;
  z-index: 4;
  animation: floatC 9s ease-in-out infinite;
  box-shadow: 0 20px 40px -12px var(--lila-glow);
}
.hv-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
}
.hv-deco-1 {
  width: 200px; height: 200px;
  bottom: -10%; left: -5%;
  background: var(--lila-soft);
  opacity: 0.6;
}
.hv-deco-2 {
  width: 160px; height: 160px;
  top: -5%; right: 8%;
  background: var(--sage-soft);
  opacity: 0.5;
}
@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(10px) rotate(2deg); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-8px) scale(1.04); }
}

.hero-scroll-hint {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin-top: 60px;
  text-align: center;
}
.hs-line-down {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--ink-3));
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.2); transform-origin: top; opacity: 0.5; }
  50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}
.hs-text {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ============ Values ============ */
.values {
  position: relative;
  z-index: 5;
  max-width: 1400px;
  margin: -40px auto -60px;
  padding: 56px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  background: #ffffff;
  border-radius: var(--r-lg);
  box-shadow:
    0 50px 100px -36px rgba(44, 21, 48, 0.42),
    0 18px 40px -20px rgba(44, 21, 48, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.value-item { text-align: left; position: relative; padding: 8px; }
.value-item:not(:last-child)::after {
  content: '';
  position: absolute; right: -18px; top: 14px; bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}
.v-icon {
  font-size: 24px;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--lila-ghost);
  border: 1px solid var(--lila-soft);
  transition: background .25s, transform .25s, box-shadow .25s;
}
.value-item:hover .v-icon {
  background: var(--lila);
  color: white;
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 14px 28px -8px var(--lila-glow);
}
.value-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 8px;
}
.value-item p { font-size: 15px; color: var(--ink); line-height: 1.6; font-weight: 400; }

/* ============ Section base ============ */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 32px;
  position: relative;
}
.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lila-deep);
  margin-bottom: 24px;
  position: relative;
  padding: 0 30px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  position: absolute; top: 50%;
  width: 18px; height: 1px;
  background: var(--lila); opacity: 0.55;
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }
h2 em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(120deg, #3a1244 0%, #6b2a82 50%, #4d1e60 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 4px rgba(77, 30, 96, 0.28));
}

/* ============ RITUAL ============ */
.section-ritual {
  background: transparent;
  max-width: none;
  padding: 160px 32px 150px;
}
.section-ritual > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
.ritual-head { text-align: center; max-width: 760px; margin: 0 auto 90px; }
.ritual-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 22px;
}
.ritual-head > p { font-size: 19px; color: var(--ink); font-weight: 400; }

.ritual-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.ritual-line {
  position: absolute;
  top: 50px; left: 6%; right: 6%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, var(--lila-soft) 10%, var(--sage-soft) 50%, var(--gold) 90%, transparent);
}
.ritual-step {
  position: relative;
  text-align: center;
  padding: 50px 28px 32px;
  cursor: default;
  background: #ffffff;
  border-radius: var(--r);
  box-shadow:
    0 24px 60px -28px rgba(44, 21, 48, 0.30),
    0 6px 16px -10px rgba(44, 21, 48, 0.18);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ritual-step:hover {
  transform: translateY(-4px);
  box-shadow:
    0 36px 80px -28px rgba(77, 30, 96, 0.40),
    0 10px 22px -10px rgba(44, 21, 48, 0.22);
}
.rs-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--lila);
  color: var(--lila-deep);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 26px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 36px -16px var(--lila-glow);
  transition: transform .35s, box-shadow .35s, background .35s, color .35s;
}
.ritual-step:nth-child(3) .rs-num { border-color: var(--sage); color: var(--sage-deep); }
.ritual-step:nth-child(4) .rs-num { border-color: var(--gold); color: var(--gold-deep); }
.ritual-step:nth-child(5) .rs-num { border-color: var(--lila-deep); color: var(--lila-deep); }
.ritual-step:hover .rs-num {
  transform: translateY(-6px) scale(1.05);
  background: var(--lila);
  color: white;
  box-shadow: 0 0 0 6px var(--lila-ghost), 0 22px 50px -16px var(--lila);
}
.ritual-step:nth-child(3):hover .rs-num { background: var(--sage); box-shadow: 0 0 0 6px var(--sage-soft), 0 22px 50px -16px var(--sage); }
.ritual-step:nth-child(4):hover .rs-num { background: var(--gold); box-shadow: 0 0 0 6px var(--sand), 0 22px 50px -16px var(--gold); }
.ritual-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 27px;
  color: var(--ink);
  margin-bottom: 14px;
}
.ritual-step p {
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
  font-weight: 400;
}

/* ============ BEHANDLUNGEN — BLÖCKE ============ */
.section-treatments {
  padding: 150px 32px;
  background: transparent;
}
.t-head { text-align: center; max-width: 800px; margin: 0 auto 90px; }
.t-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 22px;
}
.t-head > p { font-size: 19px; color: var(--ink); font-weight: 400; }

.t-block {
  background: linear-gradient(135deg, #e4c8f0 0%, #f0d8f8 50%, #d8b4e8 100%);
  border-radius: var(--r-lg);
  padding: 56px 56px 60px;
  margin-bottom: 44px;
  border: 1.5px solid var(--lila);
  box-shadow:
    0 36px 90px -36px rgba(77, 30, 96, 0.45),
    inset 0 0 60px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.t-block-alt {
  background: linear-gradient(135deg, #b8d4b4 0%, #d4e6d0 50%, #a8c8a4 100%);
  border-color: var(--sage);
  box-shadow:
    0 36px 90px -36px rgba(47, 82, 48, 0.45),
    inset 0 0 60px rgba(255, 255, 255, 0.4);
}
.t-block-hawaii {
  background: linear-gradient(135deg, #f0c878 0%, #f8dca0 50%, #e8b870 100%);
  border-color: var(--gold);
  box-shadow:
    0 36px 90px -36px rgba(122, 86, 24, 0.45),
    inset 0 0 60px rgba(255, 255, 255, 0.4);
}

.t-block-head {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.t-block-icon {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 18px 36px -16px rgba(44, 35, 51, 0.4);
  border: 4px solid var(--bg-paper);
  position: relative;
}
.t-block-icon img { width: 100%; height: 100%; object-fit: cover; }
.t-block-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 700;
  background: rgba(255,255,255,0.65);
  padding: 6px 14px;
  border-radius: 999px;
}
.t-block-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 46px);
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}
.t-block-head p {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.t-grid-single { grid-template-columns: 1fr; }

.t-card {
  position: relative;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r);
  padding: 32px 30px 28px;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 20px 50px -20px rgba(44, 21, 48, 0.30),
    0 8px 18px -10px rgba(44, 21, 48, 0.15);
}
.t-card-glow {
  position: absolute;
  top: -100%; left: 0; right: 0; height: 100%;
  background: radial-gradient(ellipse at 50% 100%, var(--lila-glow), transparent 70%);
  opacity: 0;
  transition: opacity .35s, top .5s;
  pointer-events: none;
}
.t-card:hover {
  transform: translateY(-8px);
  border-color: var(--lila);
  box-shadow:
    0 0 0 2px var(--lila),
    0 0 40px var(--lila-glow),
    0 40px 80px -24px rgba(77, 30, 96, 0.55);
}
.t-card:hover .t-card-glow { opacity: 0.7; top: -20%; }
.t-card-feature {
  background: linear-gradient(180deg, var(--bg-2), rgba(122, 152, 118, 0.05));
  border-color: var(--sage-soft);
}
.t-card-feature:hover {
  border-color: var(--sage);
  box-shadow:
    0 0 0 1px var(--sage),
    0 0 30px rgba(122, 152, 118, 0.4),
    0 30px 60px -24px rgba(79, 108, 74, 0.4);
}

.t-pill {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, var(--lila), var(--lila-deep));
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px -2px var(--lila-glow);
}
.t-pill-sage {
  background: linear-gradient(135deg, var(--sage), var(--sage-deep));
  box-shadow: 0 4px 12px -2px rgba(91, 132, 88, 0.5);
}
.t-pill-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  box-shadow: 0 4px 12px -2px rgba(192, 138, 58, 0.5);
}

.t-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 27px;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.18;
  letter-spacing: -0.005em;
}
.t-card p {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
  font-weight: 400;
}
.t-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.t-time {
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  font-style: italic;
  font-weight: 500;
}
.t-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 27px;
  color: var(--lila-deep);
  letter-spacing: -0.005em;
}
.t-card-feature .t-price { color: var(--sage-deep); }

/* Hawaii highlight card with image */
.t-card-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-2);
  border-color: var(--lila-soft);
}
.t-card-highlight:hover {
  border-color: var(--lila);
}
.t-card-highlight .t-card-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.t-card-highlight .t-card-image img { width: 100%; height: 100%; object-fit: cover; }
.t-card-highlight .t-card-content {
  padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.t-card-highlight h4 { font-size: 32px; }
.t-card-highlight .t-price { color: var(--gold-deep); }
.t-card-highlight .t-pill { margin-bottom: 18px; }
.t-note {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 14px;
  font-style: italic;
}

.kk-note {
  max-width: 980px;
  margin: 50px auto 0;
  padding: 24px 32px;
  background: var(--lila-ghost);
  border-left: 3px solid var(--lila);
  border-radius: 8px;
  font-size: 14.5px;
  color: var(--ink-2);
  text-align: center;
  line-height: 1.7;
}

/* ============ ALOHA ============ */
.section-aloha {
  background: var(--bg-deep);
  max-width: none;
  padding: 170px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-aloha::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(155, 111, 176, 0.35), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(201, 169, 110, 0.18), transparent 60%);
}
.aloha-stage { position: relative; max-width: 880px; margin: 0 auto; }
.aloha-flower {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  line-height: 0.5;
  color: rgba(226, 207, 169, 0.55);
  margin-bottom: 30px;
  animation: flowerSpin 60s linear infinite;
  display: inline-block;
}
@keyframes flowerSpin { to { transform: rotate(360deg); } }
.aloha-eyebrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
  font-weight: 700;
}
.aloha-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.06;
  color: var(--bg-paper);
  margin-bottom: 70px;
}
.aloha-h2 em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(120deg, #f5e0a8 0%, #ffd470 50%, #f0c878 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 6px rgba(255, 200, 100, 0.4));
}

.aloha-meanings {
  list-style: none;
  padding: 0;
  margin: 0 0 70px;
  border-top: 1px solid rgba(226, 207, 169, 0.18);
}
.aloha-meanings li {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: baseline;
  gap: 32px;
  padding: 24px 12px;
  border-bottom: 1px solid rgba(226, 207, 169, 0.18);
  text-align: left;
  transition: padding-left .3s, background .3s;
  cursor: default;
}
.aloha-meanings li:hover {
  padding-left: 32px;
  background: rgba(155, 111, 176, 0.12);
}
.am-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 4vw, 60px);
  color: var(--sand);
}
.am-word {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  color: var(--bg-paper);
}
.am-trans {
  font-size: clamp(14px, 1.2vw, 17px);
  color: rgba(251, 246, 238, 0.75);
  font-style: italic;
}
.aloha-footer {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.5vw, 22px);
  color: rgba(251, 246, 238, 0.88);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
.aloha-footer em { color: var(--sand); }

/* ============ MICHAELA ============ */
.section-michaela {
  padding: 150px 32px;
  background: transparent;
}
.michaela-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}
.michaela-visual { position: sticky; top: 110px; }
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 480px;
}
.portrait-img {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(110, 74, 133, 0.45);
}
.portrait-img img { width: 100%; height: 100%; object-fit: cover; }
.portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(28, 22, 36, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 36px;
  color: var(--bg-paper);
  text-align: center;
}
.pi-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
}
.pi-role {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0.85;
}
.portrait-badge {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--bg-2);
  padding: 20px 28px;
  border-radius: 18px;
  box-shadow: 0 26px 50px -22px rgba(44, 35, 51, 0.35);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .25s, box-shadow .25s;
}
.portrait-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 2px var(--lila-ghost), 0 30px 60px -22px var(--lila-glow);
}

.portrait-secondary {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #ffffff;
  box-shadow:
    0 18px 36px -14px rgba(91, 132, 88, 0.55),
    0 0 0 1px rgba(91, 132, 88, 0.25);
  z-index: 3;
  animation: floatC 8s ease-in-out infinite;
}
.portrait-secondary img { width: 100%; height: 100%; object-fit: cover; }
.portrait-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--lila-deep);
}
.portrait-badge span {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.michaela-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.04;
  color: var(--ink);
  margin: 16px 0 26px;
}
.michaela-text .lead {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
}
.ut-h {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 20px;
  display: flex; align-items: center; gap: 14px;
}
.ut-h::before { content: ''; width: 30px; height: 1px; background: var(--lila); }

.ut-stations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.station {
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: all .25s ease;
  box-shadow: 0 8px 20px -10px rgba(44, 21, 48, 0.18);
}
.station:hover {
  border-color: var(--lila);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -12px var(--lila-glow);
}
.station.station-highlight {
  background: linear-gradient(135deg, var(--lila-ghost), var(--bg-2));
  border-color: var(--lila-soft);
}
.st-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
}
.st-desc { font-size: 14px; color: var(--ink-2); line-height: 1.55; font-weight: 400; }

.zerts { display: flex; flex-wrap: wrap; gap: 8px; }
.zert {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.06em;
  font-weight: 500;
  transition: all .25s ease;
}
.zert:hover {
  background: var(--lila-ghost);
  border-color: var(--lila);
  color: var(--lila-deep);
  box-shadow: 0 0 12px var(--lila-glow);
}

/* ============ STIMMEN ============ */
.section-stimmen {
  padding: 180px 32px;
  background: transparent;
  max-width: none;
}
.section-stimmen > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
.stimmen-head {
  text-align: center;
  margin-bottom: 90px;
  position: relative;
}
.stimmen-head::before {
  content: '"';
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(140px, 16vw, 240px);
  line-height: 0.45;
  color: var(--lila);
  opacity: 0.18;
  margin-bottom: -30px;
}
.stimmen-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(56px, 7.5vw, 112px);
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.stimmen-head h2 em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(120deg, #3a1244 0%, #6b2a82 50%, #4d1e60 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 2px 5px rgba(77, 30, 96, 0.3));
}
.stimmen-head > p {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* STIMMEN — Multi-Card Scroll-Snap-Slider */
.slider {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}
.slider-track {
  position: relative;
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 30px 60px;
  margin: 0 -10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  border-radius: var(--r-lg);
  background: transparent;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track.dragging { cursor: grabbing; scroll-behavior: auto; user-select: none; }

.quote-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 300px;
  max-width: 440px;
  scroll-snap-align: center;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  padding: 40px 36px 32px;
  text-align: left;
  position: relative;
  margin: 0;
  box-shadow:
    0 30px 70px -28px rgba(77, 30, 96, 0.40),
    0 10px 24px -14px rgba(44, 21, 48, 0.20);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.quote-card img { pointer-events: none; }
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 90px -28px rgba(77, 30, 96, 0.55),
    0 14px 32px -14px rgba(44, 21, 48, 0.25);
}

.quote-stars {
  display: block;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(192, 138, 58, 0.45);
}

.quote-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 24px;
  flex-grow: 1;
}
.quote-card blockquote em {
  font-style: italic;
  background: linear-gradient(120deg, #3a1244 0%, #6b2a82 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-weight: 700;
}

.quote-card figcaption {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.qc-name { color: var(--ink); }
.qc-role {
  color: var(--lila-deep);
  background: var(--lila-ghost);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.16em;
}

@media (max-width: 900px) {
  .quote-card { flex-basis: calc(100% - 100px); }
}
@media (max-width: 720px) {
  .slider-track { padding: 20px 40px; }
  .quote-card { flex-basis: calc(100% - 80px); padding: 32px 26px 26px; min-height: 320px; }
  .quote-card blockquote { font-size: 17px; }
}

.stimmen-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
  text-align: left;
}
.sc-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 1;
  background: linear-gradient(135deg, #3a1244 0%, #6b2a82 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 2px 5px rgba(77, 30, 96, 0.3));
}
.sc-text {
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--lila-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 30px -14px rgba(44, 35, 51, 0.25);
  transition: all .25s ease;
  z-index: 3;
}
.slider-arrow svg { width: 22px; height: 22px; }
.slider-arrow:hover {
  background: var(--lila);
  border-color: var(--lila);
  color: white;
  box-shadow: 0 0 0 5px var(--lila-ghost), 0 16px 36px -10px var(--lila-glow);
}
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.slider-arrow:disabled { opacity: 0.35; cursor: not-allowed; }

.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.slider-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lila-ghost);
  border: 0; padding: 0;
  cursor: pointer;
  transition: all .25s;
}
.slider-dots button.active {
  background: var(--lila);
  width: 26px; border-radius: 4px;
  box-shadow: 0 0 12px var(--lila-glow);
}

/* ============ Aktuelles ============ */
.section-aktuelles { max-width: 1100px; padding: 110px 32px 140px; }
.aktuell-card {
  background: var(--bg-2);
  border-radius: var(--r-lg);
  padding: 70px 60px;
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: 0 30px 80px -32px rgba(44, 35, 51, 0.25);
  position: relative;
  overflow: hidden;
}
.aktuell-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lila-ghost), transparent 70%);
}
.aktuell-card::after {
  content: '';
  position: absolute;
  bottom: -140px; left: -140px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 152, 118, 0.15), transparent 70%);
}
.aktuell-card > * { position: relative; }
.aktuell-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 44px;
  color: var(--ink);
}
.aktuell-card h2 em { color: var(--lila-deep); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 760px; margin: 0 auto 40px; }
.hours-block {
  padding: 32px 28px;
  background: var(--bg);
  border-radius: 18px;
  border: 1px solid var(--line);
  transition: all .25s;
}
.hours-block:hover { border-color: var(--lila); box-shadow: 0 14px 30px -12px var(--lila-glow); }
.hb-days {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.hb-subtitle { font-size: 14px; color: var(--ink-3); font-style: italic; margin-bottom: 14px; }
.hb-time { color: var(--ink-2); font-size: 16px; font-feature-settings: 'tnum'; }

.urgent-note {
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 22px 28px;
  background: var(--lila-ghost);
  border-left: 3px solid var(--lila);
  border-radius: 8px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.65;
}
.urgent-note a { color: var(--lila-deep); font-weight: 700; }

/* ============ KONTAKT ============ */
.section-kontakt {
  background: transparent;
  max-width: none;
  padding: 150px 32px;
}
.section-kontakt > * { max-width: 1400px; margin-left: auto; margin-right: auto; }
.kontakt-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: start;
}
.kontakt-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.04;
  color: var(--ink);
  margin: 16px 0 22px;
}
.kontakt-text > p {
  font-size: 19px;
  color: var(--ink-2);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}
.kontakt-blocks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.kontakt-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: all .25s ease;
  text-decoration: none;
  box-shadow: 0 14px 30px -14px rgba(44, 21, 48, 0.20);
}
a.kontakt-block:hover {
  border-color: var(--lila);
  transform: translateX(6px);
  box-shadow: 0 0 0 1px var(--lila-soft), 0 18px 36px -16px var(--lila-glow);
}
.kb-icon {
  font-size: 22px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lila-ghost);
  border-radius: 50%;
}
.kb-content { display: flex; flex-direction: column; gap: 2px; }
.kb-label { font-size: 13px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.kb-value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.3;
}

.kontakt-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 32px;
  transition: all .25s ease;
  box-shadow: 0 14px 30px -14px rgba(44, 21, 48, 0.20);
}
.info-card:hover {
  border-color: var(--lila);
  box-shadow: 0 0 0 1px var(--lila-soft), 0 18px 36px -16px var(--lila-glow);
}
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 10px;
}
.info-card p { font-size: 15.5px; color: var(--ink); margin-bottom: 6px; line-height: 1.7; }
.info-card p:last-child { margin-bottom: 0; }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-deep);
  color: var(--bg-paper);
  padding: 80px 32px 32px;
}
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251, 246, 238, 0.1);
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .b-name { color: var(--bg-paper); font-size: 19px; }
.footer-brand .b-sub { color: rgba(251, 246, 238, 0.6); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-cols h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--lila-soft);
  margin-bottom: 16px;
}
.footer-cols a, .footer-cols span {
  display: block;
  font-size: 14px;
  color: rgba(251, 246, 238, 0.72);
  padding: 5px 0;
  transition: color .2s;
}
.footer-cols a:hover { color: var(--lila-soft); text-shadow: 0 0 12px var(--lila-glow); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 26px;
  text-align: center;
  font-size: 12px;
  color: rgba(251, 246, 238, 0.45);
  letter-spacing: 0.06em;
}
.footer-bottom em { color: var(--lila-soft); }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .ritual-flow { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .ritual-line { display: none; }
  .ut-stations { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
}
@media (max-width: 1024px) {
  .values { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .value-item:not(:last-child)::after { display: none; }
  .michaela-wrap { grid-template-columns: 1fr; gap: 60px; }
  .michaela-visual { position: static; max-width: 480px; margin: 0 auto; }
  .kontakt-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .t-grid { grid-template-columns: 1fr; }
  .t-card-highlight { grid-template-columns: 1fr; }
  .t-card-highlight .t-card-image { min-height: 240px; }
}
@media (max-width: 720px) {
  .topbar-inner { gap: 14px; font-size: 11.5px; padding: 8px 14px; }
  .nav { padding: 14px 18px; }
  .nav-links { display: none; position: fixed; top: 78px; left: 0; right: 0; flex-direction: column; padding: 26px; background: var(--bg-paper); gap: 12px; border-top: 1px solid var(--line); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15); }
  .nav-links.open { display: flex; }
  .nav-cta { padding: 10px 18px; font-size: 12px; }
  .nav-burger { display: flex; }
  .brand-text { display: none; }

  .hero { padding: 30px 18px 60px; }
  .hero-statement { font-size: clamp(50px, 13vw, 84px); }
  .section { padding: 80px 18px; }
  .section-ritual, .section-aloha, .section-michaela, .section-stimmen, .section-kontakt, .section-treatments { padding: 90px 18px; }
  .values { padding: 40px 22px; grid-template-columns: 1fr; gap: 28px; }
  .ritual-flow { grid-template-columns: 1fr; gap: 36px; }

  .t-block { padding: 32px 24px; }
  .t-block-head { grid-template-columns: 1fr; text-align: center; }
  .t-block-icon { margin: 0 auto; }
  .aloha-meanings li { grid-template-columns: 60px 1fr; gap: 14px; padding: 18px 8px; }
  .am-trans { grid-column: 1 / -1; padding-left: 74px; padding-top: 4px; }
  .hours-grid { grid-template-columns: 1fr; }
  .aktuell-card { padding: 40px 24px; }
  .slider-arrow { width: 44px; height: 44px; }
  .slider-prev { left: -8px; }
  .slider-next { right: -8px; }
  .quote-card { padding: 50px 28px; }
  .portrait-badge { bottom: -16px; right: 50%; transform: translateX(50%); }
  .portrait-badge:hover { transform: translateX(50%) translateY(-4px); }
}

/* ============ SEKTION: MEINE HALTUNG / PHILOSOPHIE ============ */
.section-haltung {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  padding: 120px 24px;
}
.haltung-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.haltung-wrap .eyebrow {
  display: block;
  margin-bottom: 18px;
}
.haltung-wrap h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}
.haltung-wrap h2 em {
  color: var(--lila-deep);
  font-style: italic;
}
.haltung-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.25;
  color: var(--lila);
  margin: 52px 0 18px;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 18px;
}
.haltung-wrap h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--lila) 0%, var(--gold) 100%);
}
.haltung-wrap p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.haltung-wrap p strong {
  color: var(--ink);
  font-weight: 600;
}
.haltung-wrap .lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 36px;
}
.haltung-quote {
  position: relative;
  margin: 56px 0;
  padding: 44px 44px 40px 64px;
  background: linear-gradient(135deg, rgba(202, 160, 216, 0.28) 0%, rgba(234, 212, 242, 0.55) 100%);
  border-left: 6px solid var(--lila);
  border-radius: 0 18px 18px 0;
  box-shadow: 0 18px 50px -22px rgba(77, 30, 96, 0.45);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.45;
  color: var(--lila-deep);
}
.haltung-quote::before {
  content: "\201E";
  position: absolute;
  top: -8px;
  left: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 110px;
  line-height: 1;
  color: var(--lila);
  opacity: 0.45;
  pointer-events: none;
}
.haltung-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

@media (max-width: 700px) {
  .section-haltung { padding: 80px 20px; }
  .haltung-wrap h2 { font-size: 32px; }
  .haltung-wrap h3 { font-size: 25px; margin-top: 40px; padding-left: 14px; }
  .haltung-wrap h3::before { width: 3px; }
  .haltung-wrap p { font-size: 16px; }
  .haltung-wrap .lead { font-size: 17px; }
  .haltung-quote { padding: 34px 24px 28px 42px; font-size: 21px; }
  .haltung-quote::before { font-size: 80px; left: 12px; top: -4px; }
}

/* ===== Anfahrt ===== */
.section-anfahrt { background: var(--creme, #faf5ec); }
.anfahrt-wrap { max-width: 1100px; margin: 0 auto; padding: 90px 24px; text-align: center; }
.anfahrt-intro { font-size: 1.05rem; color: #6b5c73; margin: 10px 0 42px; font-weight: 500; }
.anfahrt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; }
.anfahrt-step { position: relative; background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 18px 40px -20px rgba(44, 35, 51, .25); }
.anfahrt-step img { width: 100%; height: 210px; object-fit: cover; display: block; }
.anfahrt-step .as-num { position: absolute; top: 178px; left: 18px; width: 44px; height: 44px;
  background: var(--lila, #6d3a7d); color: #fff; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 1.15rem; border: 3px solid #fff; }
.anfahrt-step h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; margin: 26px 20px 8px; color: #2b1c31; }
.anfahrt-step p { font-size: .93rem; line-height: 1.6; color: #5d4f63; margin: 0 20px 22px; }
.anfahrt-hilfe { margin-top: 36px; font-size: 1rem; color: #4a3d52; }
.anfahrt-hilfe a { color: var(--lila, #6d3a7d); font-weight: 600; }
@media (max-width: 860px) {
  .anfahrt-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .anfahrt-wrap { padding: 64px 20px; }
}
.anfahrt-wrap h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; }
