/* =========================================================================
   TingleTap Lab – Website
   Keine externen Ressourcen (keine CDNs, kein Google-Fonts-CDN) – DSGVO-konform.
   Schriften liegen lokal unter assets/fonts/ (SIL Open Font License).
   Farbwelt & Typografie wie auf der Coming-Soon-Seite.
   ========================================================================= */

/* ---------- Schriften ---------- */

/* Lora – ruhige, gut lesbare Serifenschrift mit klarem „J“ (Variable Font, wght).
   Ersetzt die kontrastreiche „Bodoni Moda“ / das quirlige „Fraunces“. */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/lora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/lora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/lora-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/jost-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/jost-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design-Tokens ---------- */

:root {
  --mauve:        #673c4f;
  --mauve-soft:   #7d5266;
  --mauve-deep:   #512e3e;
  --sage:         #858873;
  --sage-soft:    #9a9c88;
  --taupe:        #aea295;
  --taupe-300:    #c4bbb1;
  --taupe-200:    #d9d3cb;
  --taupe-100:    #ece8e3;
  --taupe-50:     #f7f5f2;
  --cream:        #faf8f5;
  --black:        #000000;
  --white:        #ffffff;
  --ink:          #4a3540;   /* Fließtext: dunkles Mauve, weicher als Schwarz */

  --font-sans:   'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                 "Helvetica Neue", Arial, sans-serif;
  --font-serif:  'Lora', "Iowan Old Style", "Palatino Linotype", Georgia, "Times New Roman", serif;

  --wrap:        68rem;   /* breiter Inhaltsrahmen  */
  --wrap-narrow: 44rem;   /* Lesetext              */

  --shadow-soft: 0 1px 2px rgba(81,46,62,0.04), 0 8px 30px rgba(81,46,62,0.06);
  --radius:      14px;
  --radius-lg:   22px;
}

/* ---------- Grundlagen ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; color: var(--mauve); }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--mauve-soft); }

/* Scroll-Anker unter dem klebrigen Header */
:target { scroll-margin-top: 6rem; }

/* ---------- Layout-Hilfen ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: var(--wrap-narrow); margin-left: auto; margin-right: auto; }

.section { padding: clamp(3.5rem, 2.5rem + 5vw, 7rem) 0; }
.section--tint { background: var(--taupe-100); }
.section--tint-2 { background: var(--taupe-200); }

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

.section-title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-title--center { text-align: center; }
.section-intro { max-width: 40rem; }
.section-intro--center { margin-left: auto; margin-right: auto; text-align: center; }

.lede {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--mauve-soft);
}

/* ---------- Links ---------- */

a { color: var(--mauve); text-decoration-thickness: 1px; text-underline-offset: 0.2em; transition: color 0.15s ease; }
a:hover, a:focus-visible { color: var(--sage); }
a:focus-visible { outline: 2px solid var(--mauve); outline-offset: 3px; border-radius: 2px; }

/* ---------- Icons: monochrom, currentColor (keine bunten Emoji) ---------- */
.ic {
  width: 1.05em; height: 1.05em;
  display: inline-block;
  vertical-align: -0.14em;
  flex: 0 0 auto;
  color: var(--mauve-soft);
}

/* =========================================================================
   Header / Navigation
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.86);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--taupe-200);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.6rem 1.5rem;
  max-width: var(--wrap);
  margin: 0 auto;
}

.brand { display: inline-flex; align-items: center; }
.brand img { width: auto; height: 2.5rem; }

.nav { display: flex; align-items: center; gap: 1.75rem; }

.nav__links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }

/* Kompaktes „Mini-Menü“ für Tablet-Breiten – Zwischenstufe zwischen vollem
   Menü und Burger. Standardmäßig aus, wird nur im Tablet-Bereich eingeblendet. */
.nav__mini { display: none; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }

/* :not(.btn) – der „Termin buchen“-Button (a.btn) soll NICHT die Textlink-Optik erben. */
.nav__links a:not(.btn), .nav__mini a:not(.btn) {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--mauve);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1.5px solid transparent;
}
.nav__links a:not(.btn):hover, .nav__links a:not(.btn):focus-visible,
.nav__mini a:not(.btn):hover, .nav__mini a:not(.btn):focus-visible { color: var(--sage); border-bottom-color: var(--taupe); }

/* Mobile-Navigation über versteckte Checkbox (kein JavaScript nötig) */
.nav-toggle, .nav-toggle-label { display: none; }

/* Tablet-Bereich: Mini-Menü einblenden (zwischen 40rem und 60rem). */
@media (min-width: 40.0625rem) and (max-width: 60rem) {
  .nav__mini { display: flex; }
}

@media (max-width: 60rem) {
  .nav__links {
    position: fixed;
    inset: 4.5rem 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--taupe-200);
    padding: 0.5rem 1.5rem 1.25rem;
    box-shadow: var(--shadow-soft);
    transform: translateY(-120%);
    transition: transform 0.28s ease;
  }
  @media (prefers-reduced-motion: reduce) { .nav__links { transition: none; } }
  .nav__links li { width: 100%; }
  .nav__links a:not(.btn) { display: block; padding: 0.8rem 0; border-bottom: 1px solid var(--taupe-200); }
  .nav__links .nav__cta { margin-top: 0.9rem; }
  .nav-toggle:checked ~ .nav__links { transform: translateY(0); }

  .nav-toggle-label {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem; height: 2.75rem;
    cursor: pointer;
    border: 0; background: none;
  }
  .nav-toggle-label span {
    display: block; height: 2px; width: 1.5rem; margin: 0 auto;
    background: var(--mauve); border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =========================================================================
   Buttons / Call-to-Action
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.btn--primary { background: var(--mauve); color: var(--white); box-shadow: var(--shadow-soft); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--mauve-deep); color: var(--white); transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--mauve); border-color: var(--taupe); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--taupe-100); color: var(--mauve); }

.btn--small { font-size: 0.9rem; padding: 0.55rem 1.1rem; }
.nav__cta { font-size: 0.9rem; padding: 0.6rem 1.2rem; }

.btn:focus-visible { outline: 2px solid var(--mauve); outline-offset: 3px; }

/* Deaktivierter Buchungs-Button, solange die Buchungsplattform fehlt.
   → Zum Aktivieren: siehe assets/BUCHUNG-AKTIVIEREN.txt */
.btn--book[disabled],
.btn--book.is-disabled {
  cursor: not-allowed;
  background: var(--taupe-300);
  color: var(--white);
  box-shadow: none;
  opacity: 0.9;
}
.btn--book[disabled]:hover, .btn--book.is-disabled:hover { transform: none; }

/* Zentrierter CTA-Block mit Hinweis */
.cta { text-align: center; }
.cta .btn { margin: 0 auto; }
.cta__hint, .btn-hint {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--sage);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.cta-row--center { justify-content: center; }

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  position: relative;
  background:
    radial-gradient(120% 100% at 50% 0%, var(--taupe-50) 0%, var(--cream) 45%, var(--taupe-100) 100%);
  overflow: hidden;
}

.hero__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(3rem, 2rem + 6vw, 6.5rem) 1.5rem clamp(3rem, 2rem + 5vw, 5.5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}

@media (max-width: 60rem) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }          /* Text darunter */
  .hero__media { order: 1; }         /* Slider zuerst – direkt beim Öffnen sichtbar */
  .hero .cta-row { justify-content: center; }
  .hero__media .slider { max-width: 30rem; margin-inline: auto; }
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 1.6rem + 4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--mauve);
}

.hero__title .accent { display: block; color: var(--sage); font-style: italic; font-size: 0.62em; margin-top: 0.35em; }

.hero__text { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem); color: var(--mauve-soft); margin-bottom: 2rem; }

/* Adresse im Hero – deutlich sichtbar direkt auf dem ersten Bildschirm */
.hero__address {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.7rem 0 0;
  font-style: normal;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  font-weight: 500;
  color: var(--mauve);
}
.hero__address .ic { width: 1.3rem; height: 1.3rem; color: var(--sage); }
.hero__address a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }
.hero__address a:hover, .hero__address a:focus-visible { border-bottom-color: currentColor; }
@media (max-width: 60rem) { .hero .hero__address { justify-content: center; text-align: center; } }

/* Social-Buttons im Hero (heller Hintergrund – Mauve statt Weiß).
   .social.social--hero = höhere Spezifität als die späteren Footer-.social-Regeln. */
.social.social--hero { margin-top: 1.2rem; }
.social.social--hero a { border-color: rgba(103, 60, 79, 0.3); color: var(--mauve); }
.social.social--hero a:hover, .social.social--hero a:focus-visible { background: var(--mauve); color: var(--white); border-color: var(--mauve); }
@media (max-width: 60rem) { .hero .social.social--hero { justify-content: center; } }

/* Zwei Stimmungsfotos nebeneinander – „Eindrücke" */
.impressions { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: 2rem; }
.impressions .ph { margin: 0; }
@media (max-width: 40rem) { .impressions { grid-template-columns: 1fr; } }

/* =========================================================================
   Bild-Platzhalter  (später leicht durch <img>/<picture> ersetzbar)
   ========================================================================= */

.ph {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--taupe-200) 0%, var(--taupe-100) 45%, var(--taupe-50) 100%);
  box-shadow: var(--shadow-soft);
}
.ph::after { /* dezente Textur/Vignette */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 30% 20%, rgba(255,255,255,0.35), transparent 60%);
  pointer-events: none;
}
.ph__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--mauve-soft);
}
.ph__label .ph__icon { width: 2rem; height: 2rem; color: var(--mauve-soft); opacity: 0.5; }
.ph__label .ph__cap { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mauve-soft); opacity: 0.7; }

/* Seitenverhältnisse */
.ph--hero    { aspect-ratio: 4 / 5; }
.ph--wide    { aspect-ratio: 16 / 9; }
.ph--square  { aspect-ratio: 1 / 1; }
.ph--portrait{ aspect-ratio: 3 / 4; }
.ph--landscape { aspect-ratio: 3 / 2; }
.ph--band    { aspect-ratio: 21 / 7; }

.nowrap { white-space: nowrap; }

/* Wenn später ein echtes Bild eingesetzt wird: <figure class="ph"><img ...></figure>
   Das <img> überdeckt Verlauf und Label automatisch. */
.ph > img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.ph > img ~ .ph__label { display: none; }

.figure-caption { margin-top: 0.6rem; font-size: 0.85rem; color: var(--sage); text-align: center; }

/* Auf Tablet/Handy rutschen die zweispaltigen Abschnitte untereinander.
   Dann sollen die Bilder nicht die volle Breite einnehmen – sonst werden
   Hoch- und Quadratformate zu groß. Breite deckeln und zentrieren. */
@media (max-width: 52rem) {
  .split__media .ph { max-width: 22rem; margin-left: auto; margin-right: auto; }
  .about__media .ph { max-width: 20rem; margin-left: auto; margin-right: auto; }
}

/* ---------- Bild-Slider (Hero) ---------- *
 * Basis: horizontaler Scroll-Snap – funktioniert auch ohne JavaScript (wischen).
 * assets/site.js ergänzt Pfeile, Punkte und Autoplay. */
.slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--taupe-100); }
.slider__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  aspect-ratio: 4 / 3;
}
.slider__track::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 100%; scroll-snap-align: center; margin: 0; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.slider__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.6rem; height: 2.6rem; border-radius: 50%; border: 0;
  background: rgba(250,248,245,0.85); color: var(--mauve);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-soft);
  opacity: 0; transition: opacity 0.2s ease, background-color 0.2s ease;
}
.slider:hover .slider__btn, .slider:focus-within .slider__btn { opacity: 1; }
.slider__btn:hover { background: var(--cream); }
.slider__btn:focus-visible { opacity: 1; outline: 2px solid var(--mauve); outline-offset: 2px; }
.slider__btn--prev { left: 0.6rem; }
.slider__btn--next { right: 0.6rem; }
.slider__btn svg { width: 1.2rem; height: 1.2rem; }
.slider__btn--prev svg { transform: rotate(90deg); }
.slider__btn--next svg { transform: rotate(-90deg); }

.slider__dots { position: absolute; left: 0; right: 0; bottom: 0.7rem; display: flex; gap: 0.4rem; justify-content: center; }
.slider__dots button {
  width: 0.5rem; height: 0.5rem; border-radius: 50%; border: 0; padding: 0;
  background: rgba(255,255,255,0.55); cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.slider__dots button[aria-current="true"] { background: var(--white); transform: scale(1.3); }

@media (max-width: 60rem) {
  .slider__btn { opacity: 1; }        /* Touch-Geräte: Pfeile immer sichtbar */
}

/* =========================================================================
   Feature-/Text-Blöcke im Wechsel
   ========================================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 52rem) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__media { order: -1; }
}

.prose > * + * { margin-top: 0; }
.prose h2 + p, .prose h3 + p { margin-top: 0; }

/* =========================================================================
   tingleTaps – Materialkategorien (Ausklapp-Karten)
   ========================================================================= */

.cards { display: grid; gap: 1.25rem; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 60rem) { .cards--3 { grid-template-columns: 1fr; } }

.accordion {
  background: var(--white);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.accordion + .accordion { margin-top: 0; }

.accordion > summary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--mauve);
}
.accordion > summary::-webkit-details-marker { display: none; }

.accordion > summary .acc__title { flex: 1 1 auto; }
.accordion > summary .acc__chevron {
  flex: 0 0 auto;
  width: 1.15rem; height: 1.15rem;
  color: var(--mauve);
  transition: transform 0.25s ease;
}
.accordion[open] > summary .acc__chevron { transform: rotate(180deg); }
@media (prefers-reduced-motion: reduce) { .accordion > summary .acc__chevron { transition: none; } }

.accordion > summary:hover { background: var(--taupe-50); }
.accordion > summary:focus-visible { outline: 2px solid var(--mauve); outline-offset: -2px; }

.accordion__body { padding: 0.85rem 1.4rem 1.6rem; }
.accordion__body > *:first-child { margin-top: 0; }
/* Bild in den Ausklapp-Feldern kompakt halten – nicht auf volle Kartenbreite. */
.accordion__body .ph { max-width: 34rem; margin-top: 1.1rem; }

/* ---------- tingleTaps-Galerie (einzelne Objekte) ---------- */
.tt-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 60rem) { .tt-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 40rem) { .tt-gallery { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; } }

.tt { margin: 0; }
.tt__frame {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  background: var(--taupe-100);
  box-shadow: var(--shadow-soft);
}
.tt__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.tt:hover .tt__frame img,
.tt.is-zoomed .tt__frame img { transform: scale(1.32); }
@media (prefers-reduced-motion: reduce) { .tt__frame img { transition: none; } }

.tt__cap {
  margin-top: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--mauve-soft);
  text-align: center;
}

.tt-note {
  margin: 1.6rem 0 0;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--sage);
  text-align: center;
}

/* =========================================================================
   tingleTap-Erlebnisse (Preise zum Ausklappen)
   ========================================================================= */

.experiences { display: grid; gap: 1.1rem; }

.xp {
  background: var(--white);
  border: 1px solid var(--taupe-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.xp[open] { border-color: var(--taupe-300); }

.xp > summary {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
}
.xp > summary::-webkit-details-marker { display: none; }
.xp > summary:hover { background: var(--taupe-50); }
.xp > summary:focus-visible { outline: 2px solid var(--mauve); outline-offset: -2px; }

.xp__name { font-family: var(--font-serif); font-size: clamp(1.2rem, 1rem + 0.7vw, 1.5rem); color: var(--mauve); }
.xp__duration { font-size: 0.9rem; color: var(--sage); white-space: nowrap; }

.xp__toggle {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; color: var(--mauve-soft); white-space: nowrap;
}
.xp__toggle .acc__chevron { transition: transform 0.25s ease; }
.xp[open] .xp__toggle .acc__chevron { transform: rotate(180deg); }
.xp[open] .xp__toggle .label-closed { display: none; }
.xp:not([open]) .xp__toggle .label-open { display: none; }
@media (prefers-reduced-motion: reduce) { .xp__toggle .acc__chevron { transition: none; } }

.xp__body { padding: 0.75rem 1.5rem 1.7rem; }
.xp__tagline { font-family: var(--font-serif); font-size: 1.15rem; color: var(--mauve-soft); margin: 0.5rem 0 0.7rem; }
.xp__time-detail { font-size: 0.9rem; color: var(--sage); margin-bottom: 1rem; }

.xp__includes { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.xp__includes li { position: relative; padding: 0.35rem 0 0.35rem 1.9rem; border-top: 1px solid var(--taupe-100); }
.xp__includes li:first-child { border-top: 0; }
.xp__includes li .ic { position: absolute; left: 0; top: 0.4rem; }
.xp__includes small { display: block; color: var(--sage); font-size: 0.85rem; line-height: 1.5; margin-top: 0.15rem; }

.xp__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 0.2rem; }
.xp__price { font-family: var(--font-serif); font-size: 1.9rem; color: var(--mauve); }
.xp__price small { font-family: var(--font-sans); font-size: 0.95rem; color: var(--sage); font-weight: 400; }

@media (max-width: 40rem) {
  .xp > summary { grid-template-columns: 1fr auto; row-gap: 0.4rem; }
  .xp__name { grid-column: 1 / -1; }
  .xp__duration { grid-column: 1; }
  .xp__toggle { grid-column: 2; justify-content: flex-end; }
}

.note {
  border-left: 3px solid var(--taupe);
  background: var(--taupe-50);
  padding: 1.1rem 1.3rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.98rem;
}

/* =========================================================================
   Zitat / Philosophie
   ========================================================================= */

.pullquote {
  max-width: 44rem; margin: 0 auto; text-align: center;
}
.pullquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem);
  line-height: 1.35;
  color: var(--mauve);
}

/* =========================================================================
   Über mich
   ========================================================================= */

.about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: start;
}
@media (max-width: 52rem) { .about__grid { grid-template-columns: 1fr; } }
.about__media { position: sticky; top: 6rem; }
@media (max-width: 52rem) { .about__media { position: static; } }
.about__sign { font-family: var(--font-serif); font-size: 1.5rem; color: var(--mauve); margin-top: 1.5rem; }

/* =========================================================================
   FAQ-Seite
   ========================================================================= */

.faq-group { margin-bottom: 2.5rem; }
.faq-group__title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.8rem);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--taupe-200);
}

.faq {
  border-bottom: 1px solid var(--taupe-200);
}
.faq > summary {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1.05rem 0.25rem;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--mauve);
}
.faq > summary::-webkit-details-marker { display: none; }
.faq > summary:hover { color: var(--sage); }
.faq > summary:focus-visible { outline: 2px solid var(--mauve); outline-offset: 2px; border-radius: 3px; }
.faq > summary .acc__chevron { margin-left: auto; flex: 0 0 auto; transition: transform 0.25s ease; }
.faq[open] > summary .acc__chevron { transform: rotate(180deg); }
@media (prefers-reduced-motion: reduce) { .faq > summary .acc__chevron { transition: none; } }
.faq__body { padding: 0 0.25rem 1.15rem 2.15rem; color: var(--ink); }
.faq__body > *:first-child { margin-top: 0; }
.faq__body ul { margin: 0 0 1rem; padding-left: 1.2rem; }
.faq__body li { margin-bottom: 0.35rem; }

/* =========================================================================
   Inhaltsseiten (Impressum / Datenschutz)
   ========================================================================= */

.content { max-width: var(--wrap-narrow); margin: 0 auto; padding: clamp(2.5rem, 2rem + 3vw, 4rem) 1.5rem; }
.content h1 { margin: 0 0 2rem; font-size: clamp(1.9rem, 1.5rem + 1.6vw, 2.6rem); line-height: 1.2; }
.content h2 { margin: 2.5rem 0 0.6rem; font-family: var(--font-sans); font-size: 1.1rem; font-weight: 600; color: var(--mauve); letter-spacing: 0.01em; }
.content h3 { margin: 1.75rem 0 0.4rem; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--mauve-soft); }
.content p, .content ul { margin: 0 0 1rem; }
.content ul { padding-left: 1.25rem; }
.content li { margin-bottom: 0.35rem; }
.content address { font-style: normal; margin-bottom: 1rem; }
.meta { margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--taupe-300); font-size: 0.9rem; color: var(--sage); }

/* =========================================================================
   Footer
   ========================================================================= */

.site-footer {
  background: var(--mauve);
  color: var(--taupe-100);
  padding: clamp(2.5rem, 2rem + 3vw, 4rem) 0 2rem;
  margin-top: 0;
}
.site-footer a { color: var(--taupe-100); }
.site-footer a:hover, .site-footer a:focus-visible { color: var(--white); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 52rem) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer__brand img { height: 2.4rem; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.92; }
.footer__brand a { display: inline-block; }
.footer__brand a:hover img, .footer__brand a:focus-visible img { opacity: 1; }
.footer__brand p { color: var(--taupe-200); max-width: 22rem; font-size: 0.95rem; }

/* Adressblock im Footer */
.footer__address { font-style: normal; margin: 1.1rem 0 0; color: var(--taupe-200); font-size: 0.98rem; line-height: 1.55; }
.footer__address strong { color: var(--taupe-100); font-weight: 600; }
.footer__address a { color: inherit; text-decoration: none; }
.footer__address a:hover, .footer__address a:focus-visible { text-decoration: underline; }

/* Social-Media-Icons */
.social { display: flex; gap: 0.75rem; list-style: none; margin: 1.3rem 0 0; padding: 0; }
.social a {
  display: inline-flex; width: 2.4rem; height: 2.4rem;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--taupe-100);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.social a:hover, .social a:focus-visible {
  background: var(--white); color: var(--mauve); border-color: var(--white);
  transform: translateY(-1px);
}
.social svg { width: 1.15rem; height: 1.15rem; display: block; }

.footer__col h4 { font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe-300); margin: 0 0 0.9rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 0.6rem; }
.footer__col a { text-decoration: none; font-size: 0.98rem; }
.footer__col a:hover { text-decoration: underline; }

.footer__bottom {
  max-width: var(--wrap); margin: 2.5rem auto 0; padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.85rem; color: var(--taupe-300);
}

/* =========================================================================
   Sanftes Einblenden beim Scrollen (nur mit erlaubter Bewegung)
   ========================================================================= */

@media (prefers-reduced-motion: no-preference) {
  /* Nur wenn JavaScript aktiv ist (html.js), damit Inhalte ohne JS sichtbar bleiben. */
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .js .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .btn, .cta { display: none !important; }
  body { background: #fff; color: #000; }
  .accordion__body, .xp__body, .faq__body { display: block !important; }
}
