/* =========================================================
   Physio Mental — Redesign
   Calm · warm · natural spa aesthetic
   ========================================================= */

:root {
  /* Surfaces — soft, airy, with a hint of the practice's petrol-teal */
  --cream:      oklch(0.991 0.005 95);
  --cream-2:    oklch(0.979 0.010 200);
  --sage-bg:    oklch(0.957 0.030 206);
  --sage-bg-2:  oklch(0.926 0.045 205);
  --paper:      oklch(0.998 0.003 200);

  /* Ink — soft cool charcoal */
  --ink:        oklch(0.35 0.020 218);
  --ink-soft:   oklch(0.50 0.020 212);
  --ink-faint:  oklch(0.64 0.016 210);

  /* Primary — petrol-teal, echoing the treatment rooms (calm but present) */
  --sage:       oklch(0.635 0.094 206);
  --sage-deep:  oklch(0.500 0.100 205);
  --sage-tint:  oklch(0.815 0.070 206);

  /* Warm accent — soft pastel blush/peach */
  --clay:       oklch(0.77 0.066 48);
  --clay-deep:  oklch(0.63 0.082 44);
  --clay-tint:  oklch(0.938 0.028 58);

  /* Lines */
  --line:       oklch(0.925 0.012 214);
  --line-2:     oklch(0.865 0.020 214);

  --shadow-sm:  0 1px 2px oklch(0.40 0.03 224 / 0.05), 0 2px 6px oklch(0.40 0.03 224 / 0.06);
  --shadow-md:  0 2px 6px oklch(0.40 0.03 224 / 0.07), 0 12px 28px oklch(0.40 0.03 224 / 0.09);
  --shadow-lg:  0 10px 34px oklch(0.35 0.04 224 / 0.15);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Mulish", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --radius: 2px;
  --radius-sm: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--sage-bg-2); color: var(--sage-deep); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.04; margin: 0; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--sage-tint);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.display {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  font-weight: 400;
}
.h-section {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 500;
}
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 60ch;
}
em, .ital { font-style: italic; }
.serif-accent { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--sage-deep); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-pad { padding: clamp(72px, 11vh, 140px) 0; }
.bg-cream2 { background: var(--cream-2); }
.bg-sage  { background: var(--sage-bg); }
.bg-deep  { background: var(--clay-tint); color: var(--ink); }
.bg-deep .lede, .bg-deep .ink-soft { color: var(--ink-soft); }
.bg-deep .eyebrow { color: var(--clay-deep); }
.bg-deep .eyebrow::before { background: var(--clay); }

.head-block { max-width: 56ch; margin-bottom: 54px; }
.head-block .h-section { margin-top: 16px; }
.center { text-align: center; }
.center .head-block { margin-left: auto; margin-right: auto; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95em 1.6em;
  border-radius: 100px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--sage-deep); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: oklch(0.46 0.066 220); }
.btn-clay { background: var(--clay); color: oklch(0.99 0.01 60); box-shadow: 0 6px 18px oklch(0.66 0.10 50 / 0.30); }
.btn-clay:hover { transform: translateY(-2px); background: var(--clay-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-deep); background: oklch(0.97 0.012 158); }
.btn-light { background: oklch(1 0 0 / 0.14); color: var(--cream); border-color: oklch(1 0 0 / 0.3); backdrop-filter: blur(4px); }
.btn-light:hover { background: oklch(1 0 0 / 0.22); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 18px 0;
}
.nav.scrolled {
  background: oklch(0.987 0.006 95 / 0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px oklch(0.4 0.03 158 / 0.05);
  padding: 11px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 2px; overflow: hidden;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--paper); box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; line-height: 1; }
.brand-name small { display: block; font-family: var(--sans); font-size: 0.56rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--sage); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; padding: 8px 14px; font-size: 0.92rem; font-weight: 600; color: var(--ink-soft);
  border-radius: 100px; transition: color .2s ease, background .2s ease; cursor: pointer;
}
.nav-link:hover { color: var(--sage-deep); background: oklch(0.95 0.018 158); }

/* dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--paper); border: 1px solid var(--line); border-radius: 3px;
  padding: 18px 10px 10px; /* top padding bridges the gap so hover stays active */
  min-width: 250px; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transition: opacity .22s ease, transform .22s ease; z-index: 10;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a { display: block; padding: 9px 14px; border-radius: 2px; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); transition: background .15s, color .15s; }
.drop a:hover { background: var(--sage-bg); color: var(--sage-deep); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream);
  transform: translateX(100%); transition: transform .4s cubic-bezier(.7,0,.2,1);
  padding: 100px 28px 40px; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu .sub { font-family: var(--sans); font-size: 1rem; padding-left: 18px; color: var(--ink-soft); border: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 90px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; width: 100%; }
.hero-copy .display { margin: 18px 0 8px; }
.hero-copy .display .serif-accent { display: block; }
.hero-sub { font-size: 1.18rem; color: var(--ink-soft); max-width: 42ch; margin: 22px 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hiring-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 14px; padding: 8px 16px 8px 12px;
  background: oklch(0.98 0.012 158); border: 1px solid oklch(0.88 0.04 158);
  border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  color: var(--sage-deep); text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.hiring-badge:hover { background: oklch(0.95 0.02 158); transform: translateY(-1px); box-shadow: 0 4px 12px oklch(0.55 0.08 158 / 0.18); }
.hiring-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clay); flex-shrink: 0;
  box-shadow: 0 0 0 0 oklch(0.66 0.10 50 / 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.66 0.10 50 / 0.5); }
  70%  { box-shadow: 0 0 0 6px oklch(0.66 0.10 50 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.66 0.10 50 / 0); }
}
.hero-media { position: relative; }
.hero-photo {
  position: relative; border-radius: 2px; overflow: hidden; aspect-ratio: 3/3.7;
  box-shadow: var(--shadow-lg); background: var(--sage-bg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; background: var(--paper); border-radius: 2px; box-shadow: var(--shadow-md);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.hero-badge.b1 { bottom: 34px; left: -28px; }
.hero-badge.b2 { top: 40px; right: -22px; }
.hero-badge .num { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--sage-deep); line-height: 1; }
.hero-badge .lab { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.25; font-weight: 600; }
.hero-leaf { position: absolute; z-index: -1; opacity: 0.5; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }
.scroll-hint .dot { width: 22px; height: 36px; border: 1.5px solid var(--line-2); border-radius: 2px; position: relative; }
.scroll-hint .dot::after { content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:4px; height:7px; border-radius:3px; background: var(--sage); animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0%,100%{ opacity:0; transform:translate(-50%,0);} 50%{opacity:1; transform:translate(-50%,8px);} }

/* ---------- Split feature rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature.reverse .feature-media { order: 2; }
.feature + .feature { margin-top: clamp(64px, 9vh, 120px); }
.feature-media { position: relative; }
.feature-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.2; box-shadow: var(--shadow-md); background: var(--sage-bg); }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy .h-section { margin: 14px 0 18px; }
.deco-dot { position: absolute; width: 120px; height: 120px; border-radius: 2px; background: var(--clay-tint); z-index: -1; }

/* ---------- Rooms ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
.room {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 3/4;
  background: var(--sage-bg); box-shadow: var(--shadow-sm); display: flex; align-items: flex-end;
}
.room .room-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room .room-label {
  position: relative; z-index: 2; padding: 18px; color: var(--cream); font-family: var(--serif);
  font-size: 1.35rem; font-weight: 500; line-height: 1.1;
  text-shadow: 0 2px 12px oklch(0.2 0.02 158 / 0.5);
  background: linear-gradient(to top, oklch(0.25 0.03 160 / 0.7), transparent);
  width: 100%;
}

/* ---------- Services accordion ---------- */
.svc-list { display: grid; gap: 14px; max-width: 880px; margin: 50px auto 0; }
.svc {
  border: 1px solid var(--line); border-radius: 2px; background: var(--paper); overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.svc.open { border-color: var(--sage-tint); box-shadow: var(--shadow-md); }
.svc-head { display: flex; align-items: center; gap: 22px; padding: 26px 30px; cursor: pointer; user-select: none; }
.svc-ix { font-family: var(--serif); font-size: 1.1rem; color: var(--sage); font-weight: 600; width: 2ch; flex-shrink: 0; }
.svc-title { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 500; flex: 1; }
.svc-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--sage-deep); background: var(--sage-bg); padding: 5px 11px; border-radius: 100px; }
.svc-plus { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; flex-shrink: 0; transition: .3s; position: relative; }
.svc-plus::before, .svc-plus::after { content:""; position:absolute; background: var(--sage-deep); border-radius: 2px; transition: .3s; }
.svc-plus::before { width: 14px; height: 2px; }
.svc-plus::after { width: 2px; height: 14px; }
.svc.open .svc-plus { background: var(--sage-deep); border-color: var(--sage-deep); transform: rotate(180deg); }
.svc.open .svc-plus::before, .svc.open .svc-plus::after { background: var(--cream); }
.svc.open .svc-plus::after { transform: scaleY(0); }
.svc-body { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.4,0,.2,1); }
.svc-body-inner { padding: 0 30px 30px 30px; color: var(--ink-soft); display: flex; gap: 28px; align-items: flex-start; }
.svc-body-inner p { margin: 0 0 14px; }
.svc-body-inner p:last-child { margin-bottom: 0; }
.svc-body-text { flex: 1; min-width: 0; }
.svc-body-img { width: 220px; flex-shrink: 0; height: 165px; object-fit: cover; border-radius: 4px; display: block; }
.svc-head:hover .svc-plus { border-color: var(--sage); }

/* ---------- Mitbringen (Gut zu wissen) ---------- */
.bring-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.bring-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 34px;
  text-align: center; transition: transform .3s ease, box-shadow .3s ease;
}
.bring-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bring-ic { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 2px; background: var(--sage-bg); display: grid; place-items: center; color: var(--sage-deep); }
.bring-ic svg { width: 30px; height: 30px; }
.bring-card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.bring-card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.bring-num { font-family: var(--serif); font-style: italic; color: var(--clay); font-size: 0.95rem; font-weight: 600; }

/* ---------- Termin info ---------- */
.termin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 50px; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 34px; box-shadow: var(--shadow-sm); }
.info-card .ic-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.info-card .ic-dot { width: 40px; height: 40px; border-radius: 2px; background: var(--sage-bg); color: var(--sage-deep); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ic-dot svg { width: 20px; height: 20px; }
.info-card h3 { font-size: 1.5rem; }
.info-card p { margin: 0 0 12px; color: var(--ink-soft); font-size: 0.98rem; }
.info-card p:last-child { margin-bottom: 0; }
.info-card a.inline { color: var(--sage-deep); font-weight: 700; border-bottom: 1px solid var(--sage-tint); }
.info-card.span2 { grid-column: span 2; }
.callout { border-left: 3px solid var(--clay); padding-left: 16px; color: var(--ink-soft); font-size: 0.92rem; }
.callout strong { color: var(--clay-deep); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill { font-size: 0.85rem; font-weight: 700; color: var(--sage-deep); background: var(--sage-bg); padding: 7px 15px; border-radius: 100px; }

/* ---------- Termin form ---------- */
.termin-form-card {
  margin-top: 22px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.tf-intro { background: var(--sage-bg); padding: 44px 40px; }
.tf-intro h3 { font-size: 1.9rem; margin: 14px 0 16px; }
.tf-intro p { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 22px; }
.tf-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.tf-points li { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.tf-points li .tfp-ic { width: 30px; height: 30px; border-radius: 2px; background: var(--paper); color: var(--sage-deep); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.tf-points li .tfp-ic svg { width: 15px; height: 15px; }

.tf-form { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; align-content: start; }
.tf-form .field { display: flex; flex-direction: column; gap: 7px; }
.tf-form .field.full { grid-column: 1 / -1; }
.tf-form label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); }
.tf-form input, .tf-form select, .tf-form textarea {
  font-family: var(--sans); font-size: 0.98rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line-2); border-radius: 2px;
  padding: 12px 14px; width: 100%; transition: border-color .2s ease, box-shadow .2s ease; resize: vertical;
}
.tf-form input::placeholder, .tf-form textarea::placeholder { color: var(--ink-faint); }
.tf-form input:focus, .tf-form select:focus, .tf-form textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px var(--sage-bg-2);
}
.tf-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.tf-note { grid-column: 1 / -1; font-size: 0.8rem; color: var(--ink-faint); margin: 2px 0 0; }
@media (max-width: 820px) {
  .termin-form-card { grid-template-columns: 1fr; }
  .tf-form { grid-template-columns: 1fr; }
}

/* ---------- Gesundheit / Vortrag (deep section) ---------- */
.health-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.health-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.health-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.health-card li { display: flex; align-items: flex-start; gap: 14px; color: var(--ink-soft); }
.health-card li .chk { width: 26px; height: 26px; border-radius: 2px; background: var(--sage-bg-2); color: var(--sage-deep); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.health-card li .chk svg { width: 14px; height: 14px; }

/* ---------- Timeline (Über mich) ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.about-portrait { position: sticky; top: 110px; }
.portrait-frame { border-radius: 2px; overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-lg); background: var(--sage-bg); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.portrait-name { margin-top: 22px; }
.portrait-name h3 { font-size: 1.9rem; }
.portrait-name span { color: var(--sage); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; }

.timeline { position: relative; padding-left: 38px; }
.timeline::before { content:""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--sage-tint), var(--line)); }
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content:""; position: absolute; left: -34px; top: 4px; width: 16px; height: 16px; border-radius: 2px; background: var(--cream); border: 3px solid var(--sage); box-shadow: 0 0 0 5px var(--cream); }
.tl-item.major::before { background: var(--clay); border-color: var(--clay); }
.tl-year { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--sage-deep); font-weight: 600; margin-bottom: 4px; }
.tl-item.major .tl-year { color: var(--clay); }
.tl-text { color: var(--ink-soft); font-size: 1rem; }

.philo {
  margin-top: 60px; padding: 44px 48px; background: var(--sage-bg); border-radius: var(--radius); position: relative;
}
.philo .quote-mark { font-family: var(--serif); font-size: 5rem; line-height: 0.6; color: var(--sage-tint); position: absolute; top: 28px; left: 30px; }
.philo h3 { font-size: 1.9rem; margin-bottom: 18px; padding-top: 14px; }
.philo p { color: var(--ink-soft); margin: 0 0 14px; font-size: 1.04rem; }
.philo p:last-of-type { margin-bottom: 22px; }

/* ---------- Contact / Map ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.map-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; border: 1px solid var(--line); }
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(0.2) contrast(1.02); }
.contact-stack { display: grid; gap: 20px; align-content: start; }
.hours-card, .reach-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 34px; box-shadow: var(--shadow-sm); }
.hours-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px dashed var(--line); font-size: 0.98rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .d { font-weight: 700; color: var(--ink); }
.hours-row .t { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-note { margin-top: 16px; font-size: 0.86rem; color: var(--clay-deep); font-weight: 600; }
.reach-row { display: flex; align-items: center; gap: 16px; padding: 13px 0; }
.reach-row + .reach-row { border-top: 1px solid var(--line); }
.reach-ic { width: 44px; height: 44px; border-radius: 2px; background: var(--sage-bg); color: var(--sage-deep); display: grid; place-items: center; flex-shrink: 0; }
.reach-ic svg { width: 20px; height: 20px; }
.reach-row .lab { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-faint); font-weight: 700; }
.reach-row .val { font-weight: 700; color: var(--ink); }

/* ---------- Ruhe / Lake band (closing invitation) ---------- */
.lake-band { position: relative; overflow: hidden; text-align: center; }
.lake-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.lake-band-veil { position: absolute; inset: 0;
  background: linear-gradient(to bottom, oklch(0.32 0.030 220 / 0.42), oklch(0.34 0.035 215 / 0.62)); }
.lake-band-inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; padding: clamp(72px, 12vh, 128px) 0; }
.lake-band .eyebrow { color: oklch(0.93 0.025 200); }
.lake-band .h-section { color: #fff; margin-top: 12px; }
.lake-band .lede { color: oklch(0.95 0.012 200); margin: 16px auto 0; max-width: 54ch; }
.lake-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */
.footer { background: oklch(0.40 0.034 224); color: oklch(0.93 0.018 214); padding: 70px 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid oklch(1 0 0 / 0.14); }
.footer .brand-name { color: var(--cream); }
.footer .brand-mark { background: var(--paper); }
.footer p { font-size: 0.94rem; line-height: 1.7; margin: 16px 0 0; opacity: 0.86; }
.footer h4 { font-family: var(--sans); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; margin: 0 0 16px; color: var(--sage-tint); }
.footer-col a { display: block; padding: 6px 0; font-size: 0.95rem; opacity: 0.86; transition: opacity .2s, transform .2s; }
.footer-col a:hover { opacity: 1; transform: translateX(3px); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 26px; font-size: 0.84rem; opacity: 0.7; }
.footer-bottom a { border-bottom: 1px solid oklch(1 0 0 / 0.3); }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  display: flex; align-items: center; gap: 12px;
  background: var(--clay); color: oklch(0.99 0.01 60); padding: 14px 22px 14px 16px; border-radius: 100px;
  box-shadow: 0 10px 30px oklch(0.66 0.10 50 / 0.4); font-weight: 700; font-size: 0.95rem;
  transition: transform .25s ease, box-shadow .25s ease; cursor: pointer;
}
.fab:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px oklch(0.66 0.10 50 / 0.5); }
.fab svg { width: 24px; height: 24px; }
.fab .fab-text { line-height: 1.1; }
.fab .fab-text small { display: block; font-size: 0.68rem; font-weight: 600; opacity: 0.85; }

/* ---------- Philosophie page ---------- */
.page-hero { padding: 160px 0 0; text-align: center; }
.page-hero .crumb { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 26px; display: flex; gap: 8px; justify-content: center; }
.page-hero .crumb a { color: var(--sage); }
.page-hero .display { font-size: clamp(2.6rem, 6vw, 4.6rem); margin: 16px 0 22px; }

/* ---------- Jobs hero (photo as background) ---------- */
.hero-job { position: relative; display: flex; align-items: center; text-align: center;
  min-height: clamp(440px, 64vh, 600px); overflow: hidden; }
.hero-job-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 42%; }
/* Soft cream veil keeps the dark headline + chips legible while the photo shows through. */
.hero-job-veil { position: absolute; inset: 0;
  background: linear-gradient(to bottom, oklch(0.991 0.005 95 / 0.74), oklch(0.985 0.006 120 / 0.80)); }
.hero-job-inner { position: relative; z-index: 2; padding: 120px 0 56px; }
.hero-job-inner .crumb { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 22px; display: flex; gap: 8px; justify-content: center; }
.hero-job-inner .crumb a { color: var(--sage-deep); }
.hero-job-inner .display { font-size: clamp(2.4rem, 5.4vw, 4.2rem); margin: 14px 0 20px; }

.idiom-intro { max-width: 60ch; margin: 0 auto; }
.idiom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 54px; }
.idiom {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  position: relative; overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.idiom:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage-tint); }
.idiom .idiom-img { aspect-ratio: 5/4; overflow: hidden; background: var(--sage-bg); }
.idiom .idiom-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.22) contrast(1.02); transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.idiom:hover .idiom-img img { transform: scale(1.06); filter: grayscale(0) contrast(1.03); }
.idiom .idiom-body { padding: 24px 24px 28px; position: relative; }
.idiom .ix { position: absolute; top: -16px; right: 0; font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--cream); background: var(--sage-deep); padding: 5px 12px; }
.idiom .region { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); }
.idiom h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; line-height: 1.14; margin-top: 8px; }

.essay { max-width: 70ch; margin: 0 auto; }
.essay p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.82; margin: 0 0 24px; }
.essay p.lead { font-size: 1.32rem; line-height: 1.6; color: var(--ink); margin-bottom: 30px; }
.essay p strong { color: var(--ink); font-weight: 700; }
.pull {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem); line-height: 1.32; color: var(--sage-deep);
  margin: 44px 0; padding-left: 26px; border-left: 3px solid var(--sage-tint);
}
.essay-cta { text-align: center; margin-top: 64px; padding: 48px 40px; background: var(--sage-bg); border-radius: var(--radius); }
.essay-cta h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 500; margin-bottom: 10px; }
.essay-cta p { color: var(--ink-soft); margin: 0 auto 26px; max-width: 46ch; }
.essay-cta .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 820px) { .idiom-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .idiom-grid { grid-template-columns: 1fr; } }

/* ---------- Jobs page ---------- */
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.job-meta .chip { display: inline-flex; align-items: center; gap: 8px; background: var(--paper); border: 1px solid var(--line); padding: 9px 16px; border-radius: 100px; font-weight: 700; font-size: 0.9rem; box-shadow: var(--shadow-sm); }
.job-meta .chip svg { width: 16px; height: 16px; color: var(--sage); }
.tasklist { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.tasklist li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); font-size: 1.02rem; }
.tasklist li .tick { width: 26px; height: 26px; border-radius: 2px; background: var(--sage-bg-2); color: var(--sage-deep); display: grid; place-items: center; flex-shrink: 0; margin-top: 3px; }
.tasklist li .tick svg { width: 14px; height: 14px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.benefit { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 30px 28px; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.benefit:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage-tint); }
.benefit .bic { width: 48px; height: 48px; border-radius: 2px; background: var(--sage-bg); color: var(--sage-deep); display: grid; place-items: center; margin-bottom: 18px; }
.benefit .bic svg { width: 24px; height: 24px; }
.benefit h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 6px; line-height: 1.15; }
.benefit p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 820px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ---------- Legal / doc pages ---------- */
.legal { max-width: 76ch; margin: 0 auto; }
.legal h2 { font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 500; margin: 50px 0 16px; padding-top: 26px; border-top: 1px solid var(--line); }
.legal h2.first { border-top: none; padding-top: 0; margin-top: 0; }
.legal h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 800; color: var(--ink); margin: 30px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 1rem; line-height: 1.8; }
.legal p { margin: 0 0 16px; }
.legal ul { margin: 0 0 18px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--ink); }
.legal a { color: var(--sage-deep); border-bottom: 1px solid var(--sage-tint); }
.legal-card { background: var(--sage-bg); border-radius: var(--radius); padding: 28px 32px; margin: 0 0 30px; }
.legal-card p { margin: 0; font-size: 1.02rem; line-height: 1.7; color: var(--ink); }
.legal-card .lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); display: block; margin-bottom: 12px; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: var(--paper); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px oklch(0.4 0.03 224 / 0.10);
  transform: translateY(100%); transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.cookie-banner.show { transform: none; }
.cb-inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.cb-text { margin: 0; font-size: 0.9rem; color: var(--ink-soft); max-width: 70ch; line-height: 1.6; }
.cb-text strong { color: var(--ink); }
.cb-text a { color: var(--sage-deep); border-bottom: 1px solid var(--sage-tint); }
.cb-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cb-actions .btn { padding: 0.7em 1.5em; font-size: 0.9rem; }
body.has-cookie-banner .fab { bottom: 104px; }
@media (max-width: 600px) {
  .cb-inner { padding: 16px 20px; gap: 14px; }
  .cb-actions { width: 100%; }
  .cb-actions .btn { flex: 1; justify-content: center; }
  body.has-cookie-banner .fab { bottom: 150px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 440px; margin: 0 auto; width: 100%; }
  .hero { min-height: auto; padding: 120px 0 70px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { position: static; max-width: 380px; }
  .health-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 820px) {
  body { font-size: 17px; }
  .feature, .feature.reverse .feature-media { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
  .feature-media { max-width: 520px; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .bring-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .termin-grid { grid-template-columns: 1fr; }
  .info-card.span2 { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .hero-badge.b1 { left: 8px; }
  .hero-badge.b2 { right: 8px; }
}
@media (max-width: 600px) {
  .nav-cta .btn { display: none; }
  .nav.scrolled { padding: 9px 0; }
  .brand-name { font-size: 1.3rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .tf-actions .btn { width: 100%; justify-content: center; }
  .hero-badge { padding: 11px 14px; }
  .hero-badge .num { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 20px; }
  .rooms-grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .svc-head { padding: 20px; gap: 14px; }
  .svc-tag { display: none; }
  .svc-body-inner { flex-direction: column; }
  .svc-body-img { width: 100%; height: 180px; }
  .philo { padding: 32px 24px; }
  .fab .fab-text { display: none; }
  .fab { padding: 16px; }
}
