    :root {
      /* Brand-DNA — identisch zu Landingpage & Hair */
      --gold:        #c69e50;
      --gold-light:  #e8c87a;
      --gold-dim:    rgba(198,158,80,.12);
      --gold-border: rgba(198,158,80,.22);

      /* Kosmetik-spezifisch — Ivory, zartes Rose, Porzellan */
      --bg:          #f6f4f3;
      --bg2:         #efeae8;
      --surface:     #fbf9f8;
      --card:        #ffffff;
      --rose:        #ded4d0;
      --rose-mid:    #b7aaa4;
      --rose-deep:   #63524c;
      --border:      rgba(45,30,25,.09);
      --border-rose: rgba(99,82,76,.22);
      --text:        #1b1b1a;
      --muted:       #6f6862;
      --muted2:      #56504b;
      --ink:         #1c1410;

      /* Dunkle Flächen -> Deep Green (wie Startseite) */
      --deep-green:  #201d1c;
      --deep-green-2:#262221;

      /* Brand green for header name */
      --brand-green: #3a3431;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NOISE — gleich wie überall ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      pointer-events: none; z-index: 900;
      opacity: .018;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size: 128px 128px;
    }

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

    .container { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }

    /* ── HEADER ── */
    .site-header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 500;
      padding: 0 40px;
      height: 80px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background .4s, border-color .4s, box-shadow .4s;
      border-bottom: 1px solid transparent;
    }
    .site-header.scrolled {
      background: rgba(247,244,239,.94);
      border-color: var(--border);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 0 rgba(198,158,80,.12);
    }

    /* Zurück-Link links */
    .header-back {
      display: flex; align-items: center; gap: 10px;
      font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--muted); transition: color .2s;
    }
    .header-back:hover { color: var(--gold); }
    .header-back::before {
      content: '←';
      font-size: .9rem;
      transition: transform .2s;
    }
    .header-back:hover::before { transform: translateX(-4px); }

    .header-left {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .header-dot {
      color: var(--muted);
      opacity: .9;
      font-size: .9rem;
      line-height: 1;
    }

    /* Logo Mitte */
    .nav-logo {
      position: absolute; left: 50%; transform: translateX(-50%);
      display: flex; align-items: center; justify-content: center;
      opacity: .82;
    }
    .nav-logo img {
      width: auto;
      height: 48px;
      max-width: 220px;
    }

    .nav-name {
      font-size: .72rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--text);
      white-space: nowrap;
    }

    /* Bereich-Badge rechts */
    .header-badge {
      display: flex; align-items: center; gap: 8px;
      font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--muted2);
      border: 1px solid var(--gold-border);
      padding: 7px 16px; border-radius: 2px;
    }
    .header-badge-dot {
      width: 5px; height: 5px;
      background: var(--gold); border-radius: 50%;
    }

    /* ── HERO — horizontales Split-Layout ── */
    .hero {
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      overflow: hidden;
    }

    /* Linke Hälfte: Text */
    .hero-left {
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 120px 80px 70px 60px;
      background: var(--bg);
      position: relative; z-index: 2;
    }

    /* Vertikaler goldener Trennstrich */
    .hero-left::after {
      content: '';
      position: absolute; right: -1px; top: 15%; bottom: 15%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      opacity: .5;
      z-index: 10;
    }

    .hero-tag {
      display: flex; align-items: center; gap: 14px;
      font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 32px;
    }
    .hero-tag::before {
      content: ''; width: 36px; height: 1px;
      background: var(--gold); flex-shrink: 0;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.8rem, 7vw, 7.5rem);
      font-weight: 300;
      line-height: .92;
      letter-spacing: -.025em;
      color: var(--text);
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
      display: block;
    }

    .hero-sub {
      margin-top: 32px;
      font-size: 1rem; font-weight: 300;
      color: var(--muted); max-width: 44ch; line-height: 1.8;
    }

    .hero-actions {
      margin-top: 44px;
      display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 15px 34px;
      background: var(--deep-green); color: var(--surface);
      font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
      font-weight: 500; border-radius: 2px;
      transition: background .25s, transform .2s;
    }
    .btn-primary:hover { background: var(--deep-green-2); transform: translateY(-2px); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 12px;
      padding: 14px 28px;
      border: 1px solid var(--gold-border);
      color: var(--gold);
      font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
      border-radius: 2px;
      transition: border-color .25s, background .25s;
    }
    .btn-outline:hover { border-color: var(--gold); background: var(--gold-dim); }

    /* Rechte Hälfte: Bild */
    .hero-right {
      position: relative; overflow: hidden;
    }
    .hero-right img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 20%;
      filter: brightness(.88) saturate(.9);
      transition: transform 12s ease;
    }
    .hero-right:hover img { transform: scale(1.03); }

    /* Overlay unten auf Bild */
    .hero-right::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 60%, rgba(247,244,239,.3) 100%);
    }

    /* Floating-Info-Box unten links auf Bild */
    .hero-float {
      position: absolute; bottom: 48px; left: 36px;
      z-index: 5;
      background: rgba(247,244,239,.92);
      border: 1px solid var(--gold-border);
      backdrop-filter: blur(12px);
      padding: 20px 28px;
      border-radius: 2px;
      display: flex; gap: 32px;
    }
    .hero-float-item { text-align: center; }
    .hero-float-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem; font-weight: 300; color: var(--gold);
      display: block; line-height: 1;
    }
    .hero-float-label {
      font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
      color: var(--muted); margin-top: 4px; display: block;
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--muted); z-index: 3;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--gold), transparent);
      animation: scrollPulse 2s ease infinite;
    }
    @keyframes scrollPulse {
      0%,100% { opacity: .3; } 50% { opacity: 1; }
    }

    /* ── MARQUEE — identisch zur Landingpage ── */
    .marquee-wrap {
      overflow: hidden;
      border-top: 1px solid var(--gold-border);
      border-bottom: 1px solid var(--gold-border);
      padding: 13px 0;
      background: var(--bg2);
    }
    .marquee-track {
      display: flex; animation: marquee 28s linear infinite;
      width: max-content;
    }
    .marquee-item {
      display: inline-flex; align-items: center; gap: 20px;
      padding: 0 36px;
      font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--muted); white-space: nowrap;
    }
    .marquee-dot {
      width: 4px; height: 4px;
      background: var(--gold); border-radius: 50%; flex-shrink: 0;
    }
    @keyframes marquee {
      from { transform: translateX(0); } to { transform: translateX(-50%); }
    }

    /* ── SECTIONS ── */
    .section { padding: 120px 0; }
    .section-sm { padding: 80px 0; }

    .label-row {
      display: flex; align-items: center; gap: 14px;
      font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 18px;
    }
    .label-row::before { content: ''; width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 3.5vw, 4rem);
      font-weight: 300; line-height: 1.05; color: var(--text);
    }
    .section-title em { font-style: italic; color: var(--rose-deep); }

    /* ── INTRO — 3-spaltig mit Rose-Karte ── */
    .intro { background: var(--surface); }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1px 1fr 1px 1fr;
      gap: 0;
    }
    .intro-divider { background: var(--border-rose); }
    .intro-col { padding: 0 52px; }
    .intro-col:first-child { padding-left: 0; }
    .intro-col:last-child { padding-right: 0; }

    .intro-col-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; font-weight: 300;
      color: var(--rose); line-height: 1; margin-bottom: 16px;
    }
    .intro-col-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem; font-weight: 300; color: var(--text);
      margin-bottom: 14px; line-height: 1.2;
    }
    .intro-col-body {
      font-size: .88rem; font-weight: 300;
      color: var(--muted); line-height: 1.8;
    }

    /* ── BEHANDLUNGEN — asymmetrisches Grid ── */
    .behandlungen {}
    .behandlungen-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      gap: 40px; margin-bottom: 64px; padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }
    .behandlungen-desc {
      max-width: 44ch; color: var(--muted);
      font-size: .9rem; font-weight: 300; line-height: 1.75;
    }

    /* Feature-Card groß + 2 kleine */
    .behandlungen-main {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 3px; background: var(--border); margin-bottom: 3px;
    }
    .behandlungen-secondary {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 3px; background: var(--border);
    }

    .beh-card {
      background: var(--card);
      display: flex; flex-direction: column;
      overflow: hidden; position: relative;
      transition: background .3s;
    }
    .beh-card:hover { background: var(--surface); }

    /* Gold-Linie oben beim Hover */
    .beh-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px; background: var(--rose-deep);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s ease;
    }
    .beh-card:hover::before { transform: scaleX(1); }

    .beh-img {
      overflow: hidden;
    }
    .beh-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(.82) saturate(.75);
      transition: transform .7s ease, filter .5s;
    }
    .beh-card:hover .beh-img img { transform: scale(1.05); filter: brightness(.9) saturate(.9); }
    .beh-img-large { aspect-ratio: 4/3; }
    .beh-img-sm { aspect-ratio: 16/9; }

    .beh-body { padding: 36px 36px 42px; flex: 1; display: flex; flex-direction: column; }
    .beh-cat {
      font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
      color: var(--rose-deep); margin-bottom: 10px;
    }
    .beh-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem; font-weight: 300; color: var(--text);
      line-height: 1.15; margin-bottom: 14px;
    }
    .beh-desc {
      font-size: .87rem; font-weight: 300;
      color: var(--muted); line-height: 1.75; flex: 1;
    }
    .beh-meta {
      margin-top: 24px; padding-top: 18px;
      border-top: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: center;
    }
    .beh-preis {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 300; color: var(--gold);
    }
    .beh-preis small { font-size: .7rem; color: var(--muted); letter-spacing: .06em; display: block; }
    .beh-dauer { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

    /* ── PHILOSOPHIE — dunkle Sektion mit Rose-Accent ── */
    .philosophie {
      background: var(--deep-green);
      position: relative; overflow: hidden;
    }
    .philosophie::before {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(208,168,148,.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .philosophie-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px; align-items: center;
    }
    .philosophie .label-row { color: var(--gold); }
    .philosophie .label-row::before { background: var(--gold); }
    .philosophie .section-title { color: rgba(253,251,248,.92); }
    .philosophie .section-title em { color: var(--gold-light); }
    .philosophie-body {
      margin-top: 24px; color: rgba(253,251,248,.45);
      font-size: 1rem; font-weight: 300; line-height: 1.9;
    }
    /* Quote-Box im Stil der Landingpage ("Studio Haltung") */
    .philosophie-quote-card {
      position: relative;
      padding: 48px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 4px;
    }
    .philosophie-quote-card::before {
      content: '"';
      font-family: 'Cormorant Garamond', serif;
      font-size: 8rem;
      color: var(--gold);
      opacity: .18;
      position: absolute;
      top: -10px;
      left: 36px;
      line-height: 1;
    }
    .philosophie-quote-card .quote-kicker {
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(236,236,233,.55);
      margin-bottom: 18px;
    }
    .philosophie-quote-card p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      font-style: italic;
      color: rgba(253,251,248,.92);
      line-height: 1.45;
    }
    .philosophie-quote-card cite {
      display: block;
      margin-top: 24px;
      font-size: .75rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold);
      font-style: normal;
    }

    /* ── DETAILS & BROWS — horizontale Scroll-Liste ── */
    .specials { background: var(--bg2); }
    .specials-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      gap: 40px; margin-bottom: 52px; padding-bottom: 28px;
      border-bottom: 1px solid var(--border-rose);
    }
    .specials-desc {
      max-width: 40ch; color: var(--muted);
      font-size: .9rem; font-weight: 300; line-height: 1.75;
    }

    .specials-list {
      display: flex; flex-direction: column; gap: 0;
    }
    .special-item {
      display: grid;
      grid-template-columns: 60px 1fr auto auto;
      align-items: center; gap: 36px;
      padding: 26px 0;
      border-bottom: 1px solid var(--border-rose);
      transition: background .2s, padding-left .3s;
    }
    .special-item:first-child { border-top: 1px solid var(--border-rose); }
    .special-item:hover { padding-left: 12px; }
    .special-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: .85rem; color: var(--rose-mid); letter-spacing: .06em;
    }
    .special-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem; font-weight: 300; color: var(--text);
    }
    .special-tag {
      font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
      color: var(--muted); padding: 5px 14px;
      border: 1px solid var(--border-rose); border-radius: 1px;
    }
    .special-preis {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 300; color: var(--gold);
      text-align: right; min-width: 80px;
    }

    /* ── RITUAL — Ablauf-Sektion ── */
    .ritual {}
    .ritual-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: end;
      margin-bottom: 72px; padding-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }
    .ritual-intro {
      color: var(--muted); font-size: 1rem;
      font-weight: 300; line-height: 1.85;
    }

    .ritual-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0; position: relative;
    }
    /* Connecting line */
    .ritual-grid::before {
      content: '';
      position: absolute; top: 32px; left: 10%; right: 10%;
      height: 1px; background: var(--border-rose); z-index: 0;
    }
    .ritual-step { padding: 0 20px; text-align: center; position: relative; z-index: 1; }
    .ritual-circle {
      width: 64px; height: 64px;
      border: 1px solid var(--border-rose);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      background: var(--bg);
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; color: var(--gold);
      transition: background .3s, border-color .3s;
    }
    .ritual-step:hover .ritual-circle {
      background: var(--rose); border-color: var(--rose-deep);
    }
    .ritual-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 300; color: var(--text);
      margin-bottom: 8px;
    }
    .ritual-desc { font-size: .78rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

    /* ── GALLERY ── */
    .galerie {}
    .galerie-header {
      display: flex; justify-content: space-between; align-items: flex-end;
      gap: 40px; margin-bottom: 52px; padding-bottom: 28px;
      border-bottom: 1px solid var(--border);
    }
    .galerie-desc {
      max-width: 42ch; color: var(--muted);
      font-size: .9rem; font-weight: 300; line-height: 1.75;
    }
    /* Asymmetrisches Mosaik */
    .galerie-mosaic {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      grid-template-rows: 320px 240px;
      gap: 3px; background: var(--border);
    }
    .gal-item { overflow: hidden; position: relative; }
    .gal-item:first-child { grid-row: 1 / 3; }
    .gal-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      filter: brightness(.8) saturate(.75);
      transition: transform .8s ease, filter .5s;
    }
    .gal-item:hover img { transform: scale(1.06); filter: brightness(.9) saturate(.9); }
    .gal-label {
      position: absolute; bottom: 14px; left: 18px;
      font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
      color: rgba(255,255,255,.5);
    }

    /* ── BOOKING CTA ── */
    .booking { position: relative; overflow: hidden; }
    .booking-box {
      position: relative;
      background: var(--rose);
      border: 1px solid var(--border-rose);
      padding: 100px 80px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center; overflow: hidden;
    }
    /* Deko-K */
    .booking-box::before {
      content: none; /* Deko-Buchstabe entfernt */
      font-family: 'Cormorant Garamond', serif;
      font-size: 38vw; font-weight: 300;
      color: rgba(102,98,92,.12);
      position: absolute; right: -4vw; top: 50%;
      transform: translateY(-50%); line-height: 1;
      pointer-events: none; user-select: none;
    }
    .booking-tag { color: var(--rose-deep); }
    .booking-tag::before { background: var(--rose-deep); }
    .booking-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 4vw, 4.2rem);
      font-weight: 300; color: var(--text); line-height: 1.05;
    }
    .booking-title em { font-style: italic; color: var(--rose-deep); }
    .booking-sub {
      margin-top: 16px; color: var(--muted2);
      font-size: .9rem; font-weight: 300; line-height: 1.75;
    }
    .booking-right { position: relative; z-index: 2; }
    .booking-form { display: flex; flex-direction: column; gap: 10px; }
    .booking-field {
      display: flex; align-items: center; justify-content: space-between;
      padding: 17px 22px;
      background: rgba(255,255,255,.55);
      border: 1px solid var(--border-rose);
      transition: border-color .25s, background .25s; border-radius: 2px;
    }
    .booking-field:hover { background: rgba(255,255,255,.85); border-color: var(--rose-deep); }
    .booking-field-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
    .booking-field-val { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--rose-deep); }
    .booking-submit {
      margin-top: 6px;
      display: flex; align-items: center; justify-content: center; gap: 14px;
      padding: 18px;
      background: var(--deep-green); color: var(--surface);
      font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
      font-weight: 500; border: none; border-radius: 2px;
      transition: background .25s, transform .2s; cursor: pointer;
    }
    .booking-submit:hover { background: var(--deep-green-2); transform: translateY(-2px); }
    .booking-note {
      text-align: center; font-size: .68rem;
      color: var(--muted); letter-spacing: .06em; margin-top: 8px;
    }

    /* ── FOOTER — identisch ── */
    .footer {
      background: var(--bg); border-top: 1px solid var(--border-rose); padding: 44px 0;
    }
    .footer-bereiche {
      display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
      gap: 12px 28px;
      padding-bottom: 28px; margin-bottom: 28px;
      border-bottom: 1px solid var(--border-rose);
    }
    .footer-bereiche a {
      font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--muted); text-decoration: none; transition: color .2s;
    }
    .footer-bereiche a:hover { color: var(--gold); }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
    .footer-copy { font-size: .75rem; color: var(--muted); letter-spacing: .06em; }
    .footer-links { display: flex; gap: 32px; }
    .footer-links a {
      font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--muted); transition: color .2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-credit { font-size: .72rem; letter-spacing: .08em; color: var(--muted); }
    .footer-credit a { color: var(--gold); transition: opacity .2s; }
    .footer-credit a:hover { opacity: .7; }

    /* ── REVEAL ── */
    .reveal { opacity:0; transform:translateY(28px); transition:opacity .75s ease, transform .75s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }
    .reveal-delay-1 { transition-delay:.1s; }
    .reveal-delay-2 { transition-delay:.2s; }
    .reveal-delay-3 { transition-delay:.3s; }
    .reveal-delay-4 { transition-delay:.4s; }

    /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 104px 32px 48px; min-height: 62svh; justify-content: center; }
      .hero-left::after { display: none; }
      .hero-right { min-height: 50svh; }
      .site-header { padding: 0 24px; }
      .nav-name { display: none; }
    }
    @media (max-width: 640px) {
      .nav-logo img {
        height: 38px;
        max-width: 180px;
      }
      .hero-float {
        left: 20px;
        right: 20px;
        bottom: 24px;
        padding: 16px 18px;
        gap: 14px;
      }
      .hero-float-num { font-size: 1.2rem; }
      .hero-float-label {
        font-size: .56rem;
        letter-spacing: .08em;
        line-height: 1.35;
      }
    }

@media (max-width:1100px) {
      .intro-grid { grid-template-columns:1fr; gap:40px; }
      .intro-divider { display:none; }
      .intro-col { padding:0; }
      .behandlungen-main { grid-template-columns:1fr; }
      .behandlungen-secondary { grid-template-columns:1fr 1fr; }
      .philosophie-inner { grid-template-columns:1fr; gap:60px; }
      .philosophie-quote-card { margin-top:24px; }
      .ritual-grid { grid-template-columns:1fr 1fr; gap:32px; }
      .ritual-grid::before { display:none; }
      .galerie-mosaic { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
      .gal-item:first-child { grid-row:auto; }
      .booking-box { grid-template-columns:1fr; padding:60px 40px; gap:48px; }
      .footer-inner { flex-direction:column; text-align:center; gap:20px; }
      .site-header { padding:0 24px; }
      .ritual-header { grid-template-columns:1fr; gap:24px; }
    }
    @media (max-width:640px) {
      .hero-copy-inner { grid-template-columns:1fr; gap:36px; }
      .behandlungen-secondary { grid-template-columns:1fr; }
      .special-item { grid-template-columns:40px 1fr auto; }
      .special-tag { display:none; }
      .ritual-grid { grid-template-columns:1fr; }
    }