    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:      #edece9;
      --bg2:     #e5e3df;
      --ink:     #1c1b19;
      --muted:   #8a887f;
      --rule:    #cdcbc4;
      --caption: #9a988f;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      font-family: 'Jost', sans-serif;
      color: var(--ink);
    }

    /* ════════════════════════════════
       NAVIGATION
    ════════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      background: rgba(237,236,233,0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s;
    }
    .nav.scrolled { border-bottom-color: var(--rule); }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 600;
      letter-spacing: .04em;
      color: var(--ink);
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--ink); }

    .nav-links .nav-staff {
      color: var(--caption);
    }

    /* 3-Punkte Menü-Button */
    .nav-toggle {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 8px;
      position: relative;
      z-index: 110;
    }
    .nav-toggle span {
      display: block;
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--ink);
      transition: transform .3s, opacity .2s, background .2s;
    }
    .nav-toggle.open span { background: var(--ink); }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) scale(0); opacity: 0; }
    .nav-toggle.open span:nth-child(2) { transform: scale(1.3); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) scale(0); opacity: 0; }

    /* Dropdown-Menü */
    .nav-links {
      position: fixed;
      top: 64px;
      right: 24px;
      background: #fff;
      border: 1px solid var(--rule);
      border-radius: 12px;
      box-shadow: 0 8px 40px rgba(28,27,25,.12);
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      padding: 8px 0;
      min-width: 200px;
      list-style: none;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px) scale(.97);
      transform-origin: top right;
      transition: opacity .2s, transform .2s;
    }
    .nav-links.open {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0) scale(1);
    }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 12px 20px;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color .15s, background .15s;
      border-radius: 0;
    }
    .nav-links a:hover { color: var(--ink); background: #f5f4f1; }
    .nav-links li:first-child a { border-radius: 12px 12px 0 0; }
    .nav-links li:last-child  a { border-radius: 0 0 12px 12px; }
    .nav-links .nav-staff { color: var(--caption); }
    .nav-links li + li { border-top: 1px solid #f0efec; }

    /* ════════════════════════════════
       HERO
    ════════════════════════════════ */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 64px 40px 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-kicker {
      font-size: 15px;
      letter-spacing: 7px;
      text-transform: uppercase;
      color: var(--caption);
      margin-bottom: 40px;
    }

    .logo-stage {
      position: relative;
      width: 100%;
      max-width: 520px;
      height: 340px;
    }

    .logo-shadow {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      width: 280px;
      height: 30px;
      background: radial-gradient(ellipse at center, rgba(20,20,18,.2), transparent 70%);
      filter: blur(8px);
      pointer-events: none;
    }

    .logo-perspective {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 1800px;
    }

    @keyframes hs-spin {
      from { transform: rotateY(0deg); }
      to   { transform: rotateY(360deg); }
    }

    .logo-spinner {
      position: relative;
      transform-style: preserve-3d;
      animation: hs-spin 16s linear infinite;
      will-change: transform;
    }

    .logo-layer {
      display: block;
      height: 300px;
      width: auto;
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%) translateZ(var(--z));
      user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
    }

    .slogan {
      display: flex;
      align-items: center;
      gap: 22px;
      margin-top: 36px;
    }
    .slogan-rule {
      width: 54px; height: 1px;
      background: var(--rule);
      flex-shrink: 0;
    }
    .slogan-text {
      font-size: 15px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--muted);
      white-space: nowrap;
    }

    /* scroll-down hint */
    .scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      text-decoration: none;
    }
    .scroll-hint span {
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--caption);
    }
    .scroll-hint svg {
      animation: bob .4s ease-in-out infinite alternate;
    }
    @keyframes bob {
      from { transform: translateY(0); }
      to   { transform: translateY(5px); }
    }

    /* ════════════════════════════════
       SECTION COMMONS
    ════════════════════════════════ */
    .section {
      padding: 100px 48px;
    }
    .section-inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .section-label {
      font-size: 11px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--caption);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 500;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 24px;
    }
    .section-desc {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--muted);
      max-width: 560px;
    }
    .section-rule {
      width: 40px; height: 1px;
      background: var(--rule);
      margin-bottom: 48px;
    }

    /* ════════════════════════════════
       LEISTUNGEN
    ════════════════════════════════ */
    #leistungen { background: var(--bg2); }

    .services-list {
      margin-top: 48px;
      border-top: 1px solid var(--rule);
    }

    .service-item {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 0 32px;
      padding: 40px 0;
      border-bottom: 1px solid var(--rule);
    }

    .service-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 13px;
      font-style: italic;
      color: var(--caption);
      padding-top: 6px;
    }

    .service-item h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 10px;
      color: var(--ink);
    }

    .service-item p {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--muted);
      max-width: 400px;
    }

    .service-price {
      display: inline-block;
      margin-top: 20px;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--caption);
      border-top: 1px solid var(--rule);
      padding-top: 14px;
      width: 100%;
    }

    /* ════════════════════════════════
       ÜBER UNS
    ════════════════════════════════ */
    #ueber-uns { background: var(--bg); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    @media (max-width: 700px) {
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    .about-visual {
      aspect-ratio: 4/5;
      background: var(--bg2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 80px;
      position: relative;
      overflow: hidden;
    }
    .about-visual img {
      width: 55%;
      opacity: .85;
      filter: grayscale(1);
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 48px;
      padding-top: 48px;
      border-top: 1px solid var(--rule);
    }
    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 38px;
      font-weight: 500;
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--caption);
    }

    /* ════════════════════════════════
       KONTAKT
    ════════════════════════════════ */
    #kontakt { background: var(--ink); }
    #kontakt .section-label { color: rgba(255,255,255,.35); }
    #kontakt .section-title { color: #fff; }
    #kontakt .section-desc  { color: rgba(255,255,255,.5); }
    #kontakt .section-rule  { background: rgba(255,255,255,.15); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      margin-top: 56px;
    }
    @media (max-width: 700px) {
      .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    .contact-info { display: flex; flex-direction: column; gap: 32px; }

    .contact-item-label {
      font-size: 10px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      margin-bottom: 8px;
    }
    .contact-item-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 400;
      color: rgba(255,255,255,.85);
      line-height: 1.5;
    }

    .contact-form { display: flex; flex-direction: column; gap: 16px; }

    .contact-form input,
    .contact-form textarea {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 2px;
      padding: 14px 18px;
      font-family: 'Jost', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: #fff;
      outline: none;
      transition: border-color .2s;
    }
    .contact-form input::placeholder,
    .contact-form textarea::placeholder { color: rgba(255,255,255,.3); }
    .contact-form input:focus,
    .contact-form textarea:focus { border-color: rgba(255,255,255,.35); }
    .contact-form textarea { resize: vertical; min-height: 120px; }

    .btn-send {
      background: #fff;
      color: var(--ink);
      border: none;
      padding: 16px 32px;
      font-family: 'Jost', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 2px;
      transition: background .2s, color .2s;
      align-self: flex-start;
    }
    .btn-send:hover { background: var(--caption); color: #fff; }

    /* ════════════════════════════════
       FOOTER
    ════════════════════════════════ */
    footer {
      background: var(--ink);
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 32px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-weight: 500;
      color: rgba(255,255,255,.55);
      text-decoration: none;
    }

    .footer-links {
      display: flex;
      gap: 28px;
      list-style: none;
    }
    .footer-links a {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,.3);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-links a:hover { color: rgba(255,255,255,.7); }

    .footer-copy {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,.2);
    }

    /* ════════════════════════════════
       MOBILE  (≤ 600px)
    ════════════════════════════════ */
    @media (max-width: 600px) {

      /* Nav */
      .nav { padding: 0 20px; height: 56px; }
      .nav-logo { font-size: 16px; }
      .nav-links {
        top: 56px;
        right: 16px;
        min-width: 180px;
      }
      .nav-links a { padding: 11px 16px; font-size: 11px; letter-spacing: 2px; }

      /* Hero */
      .hero { padding: 56px 20px 64px; }
      .hero-kicker { font-size: 11px; letter-spacing: 5px; margin-bottom: 28px; }
      .logo-stage { height: 240px; }
      .logo-layer { height: 200px; }
      .logo-shadow { width: 180px; height: 22px; }
      .slogan { gap: 14px; margin-top: 24px; }
      .slogan-rule { width: 32px; }
      .slogan-text { font-size: 10px; letter-spacing: 3px; white-space: normal; text-align: center; }
      .scroll-hint span { font-size: 9px; }

      /* Sektionen */
      .section { padding: 64px 20px; }
      .section-title { font-size: 28px; }
      .section-desc { font-size: 14px; }

      /* Leistungen — horizontal scrollbar auf Handy */
      #leistungen .services-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: unset;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
      }
      #leistungen .service-card {
        min-width: 220px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 24px 20px;
        border-radius: 8px;
      }
      #leistungen .service-icon { font-size: 26px; margin-bottom: 12px; }
      #leistungen .service-card h3 { font-size: 16px; margin-bottom: 8px; }
      #leistungen .service-card p { font-size: 13px; line-height: 1.6; }

      /* Über uns */
      .about-grid { grid-template-columns: 1fr; gap: 36px; }
      .about-visual { aspect-ratio: 3/2; }
      .about-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; padding-top: 32px; }
      .stat-number { font-size: 28px; }
      .stat-label { font-size: 9px; letter-spacing: 1px; }

      /* Gutscheine — 1 Spalte auf Mobil */
      .voucher-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
      .voucher-card { padding: 24px 20px; }

      /* Kontakt */
      .contact-grid { grid-template-columns: 1fr; gap: 36px; margin-top: 36px; }
      .contact-item-value { font-size: 16px; }
      .btn-send { width: 100%; text-align: center; }

      /* Footer */
      footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 12px; }
      .footer-links { flex-wrap: wrap; gap: 16px; }
    }

    /* ════════════════════════════════
       GUTSCHEINE
    ════════════════════════════════ */
    #gutscheine { background: var(--bg2); }
    .voucher-grid {
      margin-top: 56px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .voucher-card {
      background: var(--bg);
      border: 1px solid var(--rule);
      border-radius: 6px;
      padding: 32px 24px;
      text-align: center;
      transition: transform .3s ease, box-shadow .3s ease;
    }
    #gutscheine .voucher-card { background: #fff; }
    .voucher-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,.1);
    }
    .voucher-icon { font-size: 30px; margin-bottom: 14px; }
    .voucher-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 10px;
      color: var(--ink);
    }
    .voucher-card p {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--muted);
    }
    .voucher-cta {
      margin-top: 40px;
      font-size: 15px;
      font-weight: 300;
      color: var(--muted);
      text-align: center;
    }
    .voucher-cta a {
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid var(--rule);
      transition: border-color .2s;
    }
    .voucher-cta a:hover { border-bottom-color: var(--ink); }

    /* ════════════════════════════════
       GALERIE
    ════════════════════════════════ */
    #galerie { background: var(--bg2); }
    .gallery-cat-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      font-weight: 500;
      color: var(--ink);
      margin: 56px 0 4px;
    }
    .gallery-cat-title:first-of-type { margin-top: 48px; }
    .gallery-cat-sub {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--caption);
      margin-bottom: 24px;
    }
    .gallery-grid {
      columns: 3;
      column-gap: 16px;
    }
    .gallery-item {
      display: block;
      width: 100%;
      margin: 0 0 16px;
      break-inside: avoid;
      border-radius: 4px;
      background: var(--bg);
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(0,0,0,.07);
      transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
    }
    .gallery-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 34px rgba(0,0,0,.13);
      filter: brightness(1.04);
    }

    /* Lightbox */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(20,19,17,.92);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      cursor: zoom-out;
      opacity: 0;
      transition: opacity .25s ease;
    }
    .lightbox.open { display: flex; opacity: 1; }
    .lightbox img {
      max-width: 92vw;
      max-height: 90vh;
      border-radius: 4px;
      box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }
    .lightbox-close {
      position: absolute;
      top: 22px; right: 26px;
      width: 42px; height: 42px;
      border: none;
      border-radius: 50%;
      background: rgba(255,255,255,.14);
      color: #fff;
      font-size: 22px;
      cursor: pointer;
      transition: background .2s;
    }
    .lightbox-close:hover { background: rgba(255,255,255,.28); }
    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px; height: 48px;
      border: none;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      color: #fff;
      font-size: 24px;
      cursor: pointer;
      transition: background .2s;
    }
    .lightbox-nav:hover { background: rgba(255,255,255,.26); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }

    @media (max-width: 900px) {
      .gallery-grid { columns: 2; }
    }
    @media (max-width: 600px) {
      .gallery-grid { columns: 2; column-gap: 12px; }
      .gallery-item { margin-bottom: 12px; }
      .stylist-grid { gap: 16px; margin-top: 40px; }
      .lightbox-nav { width: 40px; height: 40px; font-size: 20px; }
    }

/* ── Aktive Seite im Menü ── */
.nav-item.active {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* ── Seiten-Hero (Extension / Gutscheine) ── */
.page-hero {
  width: 100%;
  height: 72vh;
  min-height: 420px;
  overflow: hidden;
  background: var(--bg2);
}
.page-hero img,
.page-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Kontakt-Leiste "Jetzt Kontakt aufnehmen" ── */
.cta-bar {
  display: block;
  width: 100%;
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 34px 24px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .25s, letter-spacing .25s;
}
.cta-bar:hover { background: #000; letter-spacing: 4px; }

@media (max-width: 700px) {
  .page-hero { height: 58vh; min-height: 340px; }
  .cta-bar { padding: 26px 20px; font-size: 13px; letter-spacing: 2px; }
}

/* ── Hero-Diashow (automatischer Bildwechsel) ── */
.hero-slider { position: relative; }
.hero-slider .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slider .slide.active { opacity: 1; }
.hero-dots {
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2;
}
.hero-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
  box-shadow: 0 0 4px rgba(0,0,0,.3);
}
.hero-dot.active { background: #fff; }

/* ── Vorteile-Liste (Extension) ── */
.benefits {
  list-style: none;
  margin-top: 44px;
  max-width: 640px;
}
.benefits li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}
.benefits li::before {
  content: '+';
  position: absolute;
  left: 0; top: -1px;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}
.benefits li b { color: var(--ink); font-weight: 500; }

/* ── Video-Block ── */
.video-block {
  width: 100%;
  background: var(--ink);
  display: flex;
  justify-content: center;
}
.video-block video {
  display: block;
  max-height: 86vh;
  max-width: 100%;
}

/* ── Schlusstext (Extension) ── */
.closing {
  padding: 100px 48px 80px;
  text-align: center;
}
.closing-inner { max-width: 780px; margin: 0 auto; }
.closing-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--caption);
  margin-bottom: 28px;
}
.closing-text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
}
.closing-band {
  background: var(--bg2);
  text-align: center;
  padding: 40px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
  color: var(--ink);
}
@media (max-width: 700px) {
  .closing { padding: 64px 20px 56px; }
  .closing-text { font-size: 17px; }
}

/* ── Gutschein-Textabschnitt ── */
.gs-text { max-width: 720px; margin-top: 8px; }
.gs-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 22px;
}
.gs-text p.gs-greet { color: var(--ink); font-weight: 400; }
.gs-text p.gs-sign  { color: var(--ink); font-weight: 500; margin-bottom: 0; }

/* ── Hero mit vollständig sichtbarem Bild (z. B. Gutschein-Dokument) ── */
.page-hero.hero-contain {
  background: var(--bg2);
  margin-top: 64px;                 /* unter der fixen Navigation */
  height: calc(100vh - 64px);       /* füllt die volle Bildschirmhöhe */
  min-height: 480px;
}
.page-hero.hero-contain .slide,
.page-hero.hero-contain img,
.page-hero.hero-contain video { object-fit: contain; }
@media (max-width: 700px) {
  .page-hero.hero-contain { height: calc(100vh - 64px); min-height: 420px; }
}

/* ── Gutschein-Schlusszeile ── */
.gs-emph {
  margin-top: 36px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 26px);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  max-width: 640px;
}

/* ── Bild-Band in der Seitenmitte ── */
.mid-image {
  width: 100%;
  height: 74vh;
  min-height: 420px;
  overflow: hidden;
  background: var(--bg2);
}
.mid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}
@media (max-width: 700px) {
  .mid-image { height: 60vh; min-height: 340px; }
}

/* ── Info-Band (Adresse & Öffnungszeiten) ── */
.info-band {
  background: var(--bg2);
  padding: 80px 48px;
  border-top: 1px solid var(--rule);
}
.info-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.info-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.info-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--caption);
}
.info-link {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color .2s;
}
.info-link:hover { border-bottom-color: var(--ink); }
.info-status {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.info-status::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.info-status.open   { color: #4a9d5b; }
.info-status.closed { color: #b0554e; }

.info-address {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 32px;
}
.info-contact { display: flex; flex-direction: column; gap: 12px; }
.info-contact > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: baseline;
  font-size: 16px;
  font-weight: 300;
}
.info-contact span { color: var(--ink); }
.info-contact a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color .2s, border-color .2s;
  justify-self: start;
}
.info-contact a:hover { color: var(--ink); border-bottom-color: var(--ink); }

.hours { list-style: none; }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  font-size: 17px;
  font-weight: 300;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.hours li:last-child { border-bottom: none; }
.hours li.today { font-weight: 500; }
.hours li .h-closed { color: var(--muted); }

@media (max-width: 760px) {
  .info-band { padding: 56px 20px; }
  .info-inner { grid-template-columns: 1fr; gap: 44px; }
  .info-address { font-size: 18px; }
  .hours li { font-size: 15px; }
}

/* ── Fakten-Karussell (automatisch wechselnd) ── */
.facts {
  background: var(--bg);
  padding: 96px 40px 80px;
  text-align: center;
}
.facts-stage {
  position: relative;
  height: 190px;
  max-width: 720px;
  margin: 0 auto;
}
.fact {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.fact.active { opacity: 1; transform: none; }
.fact-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 8vw, 78px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.fact-sub {
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--muted);
}
.facts-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.fact-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1.5px solid #b8b6ae;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s, border-color .2s;
}
.fact-dot.active { background: var(--ink); border-color: var(--ink); }

/* ── Sekundärer Menübereich (kleiner, unten) ── */
.nav-sep {
  height: 1px;
  background: #f0efec;
  margin: 6px 0;
}
.nav-links a.nav-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--caption);
  padding: 9px 20px;
}
.nav-links a.nav-sub:hover { color: var(--ink); }

/* ── Impressum / Rechtstext ── */
.legal { max-width: 760px; }
.legal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 32px 0 10px;
}
.legal p, .legal address {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  font-style: normal;
  margin-bottom: 10px;
}
.legal a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.legal a:hover { border-bottom-color: var(--ink); }
.legal b { color: var(--ink); font-weight: 500; }

/* ── Video-Kachel in der Galerie ── */
.gallery-video {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  break-inside: avoid;
  border-radius: 4px;
  background: var(--bg);
  box-shadow: 0 6px 18px rgba(0,0,0,.07);
}
@media (max-width: 600px) {
  .gallery-video { margin-bottom: 12px; }
}

video { max-width: 100%; height: auto; }

/* ── Galerie-Hero-Video mit Beschriftung ── */
.gallery-hero-caption {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  color: var(--ink);
  padding: 20px 24px 4px;
}

/* ── Über uns: Titelbild ── */
.about-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.about-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero::after { content: ''; position: absolute; inset: 0; background: rgba(20,19,17,.45); }
.about-hero-inner { position: relative; z-index: 2; color: #fff; padding: 60px 24px; max-width: 840px; }
.about-hero-kicker { font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 20px; }
.about-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 5vw, 54px); font-weight: 500; line-height: 1.2; }
.about-hero-title span { display: block; font-size: .55em; font-weight: 400; font-style: italic; color: rgba(255,255,255,.85); margin-top: 14px; }

/* ── Über uns: Team-Grid ── */
.team-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.team-card img { width: 100%; border-radius: 6px; display: block; box-shadow: 0 10px 30px rgba(0,0,0,.08); }
@media (max-width: 820px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; } }

/* ── Über uns: Werte ── */
.values-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 44px; }
.value-icon { font-size: 26px; margin-bottom: 10px; }
.value-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.value-item p { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--muted); }
@media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ── Über uns: Story-Text ── */
.story-text p { font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--muted); margin-bottom: 18px; max-width: 720px; }
.story-text p b { color: var(--ink); font-weight: 500; }
