/* ============================================================
   REFORMERWERK – Styles
   Farben: Beige #ead1c2 · Sand #c39d85 · Braun/Espresso-Akzente
   Schrift: Montserrat
   ============================================================ */

:root {
  --beige: #ead1c2;
  --sand: #c39d85;
  --navy: #4c4038;         /* warmer Braun-Akzent (fr\u00fcher Navy) */
  --navy-dark: #362d27;
  --sand-dark: #a97e63;
  --cream: #faf6f1;
  --ink: #3c332d;
  --white: #ffffff;
  --muted: #9c8d80;

  --font: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 40px -20px rgba(76, 64, 56, 0.32);
  --shadow-sm: 0 8px 24px -14px rgba(76, 64, 56, 0.28);
  --header-h: 76px;

  /* Hero + Ghost-Button (per Theme \u00fcberschreibbar) – helle Beige-Basis */
  --hero-text: var(--ink);
  --hero-o1: rgba(234, 209, 194, .55);
  --hero-o2: rgba(255, 255, 255, .35);
  --hero-base: linear-gradient(160deg, #f6efe8 0%, #ead1c2 55%, #dcc3b1 100%);
  --hero-glow: radial-gradient(1200px 600px at 80% -10%, rgba(255,255,255,.6), transparent 60%),
               radial-gradient(900px 500px at 0% 110%, rgba(195,157,133,.4), transparent 55%);
  --hero-eyebrow: var(--sand-dark);
  --hero-accent: var(--sand-dark);
  --hero-sub: rgba(60, 51, 45, .85);
  --hero-title-shadow: none;
  --ghost-color: var(--ink);
  --ghost-border: rgba(76, 64, 56, .4);
  --ghost-hover: rgba(76, 64, 56, .08);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-weight: 700; line-height: 1.1; margin: 0 0 .5em; letter-spacing: .01em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--sand-dark);
  margin: 0 0 .8rem;
}

/* ---------- Brand ---------- */
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.brand-text {
  font-weight: 500;
  letter-spacing: .32em;
  font-size: 1.15rem;
  color: var(--sand-dark);
}
.brand-text.small { font-size: .95rem; }
.brand-dots { display: inline-flex; gap: 7px; }
.brand-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--sand); display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-dark); }
.btn-ghost { background: transparent; color: var(--ghost-color); border-color: var(--ghost-border); }
.btn-ghost:hover { background: var(--ghost-hover); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 236, 228, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(195, 157, 133, .3);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  background: rgba(246, 236, 228, .96);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .45);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  padding: .3rem 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--sand);
  transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a.active-link { color: var(--navy); }
.main-nav a.active-link::after { width: 100%; }
.nav-cta { padding: .6rem 1.3rem; font-size: .85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--navy);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  color: var(--hero-text);
  background:
    linear-gradient(120deg, var(--hero-o1), var(--hero-o2)),
    var(--hero-base);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-glow);
  mix-blend-mode: multiply;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 4rem 24px; }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .4em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--hero-eyebrow);
  margin: 0 0 1rem;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: .01em;
  text-shadow: var(--hero-title-shadow);
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--hero-accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 34ch;
  font-weight: 400;
  margin: 0 0 2rem;
  color: var(--hero-sub);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-dots {
  position: absolute;
  bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 2;
}
.hero-dots i { width: 12px; height: 12px; border-radius: 50%; background: var(--sand); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--white); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--navy); }
.section-lead { color: var(--muted); font-size: 1.05rem; margin: 0; }

h2 { color: var(--navy); }

.link-arrow { font-weight: 600; color: var(--sand-dark); }
.link-arrow:hover { color: var(--navy); }

/* ---------- Über uns ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.img-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(195,157,133,.18) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--beige), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.img-placeholder span {
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 700;
  color: rgba(76,64,56,.55);
  font-size: .85rem;
}

/* modern framed image with floating badge */
.about-figure {
  position: relative;
  margin: 0;
  max-width: 460px;
}
.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-figure::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid var(--sand);
  border-radius: var(--radius);
  z-index: -1;
}
.about-badge {
  position: absolute;
  left: -14px;
  bottom: 26px;
  background: var(--navy);
  color: var(--beige);
  padding: .8rem 1.4rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.about-badge span {
  font-style: italic;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 1rem;
}
.about-text h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.about-text p { margin: 0 0 1.1rem; }

/* ---------- Kurse ---------- */
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
}
.card {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(195,157,133,.3);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.section-alt .card { background: var(--cream); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--sand); }
.card h3 {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  letter-spacing: .02em;
}
.card-tag {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--sand-dark);
  margin: 0 0 1rem;
}
.card p:last-child { margin-bottom: 0; }
.card-wide { background: var(--navy); color: var(--beige); border-color: var(--navy); }
.card-wide h3 { color: var(--white); }
.card-wide .card-tag { color: var(--beige); }

/* ---------- Wochenplan ---------- */
.week-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.day {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(76,64,56,.12);
  box-shadow: var(--shadow-sm);
}
.day h3 {
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1.05rem;
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--beige);
}
.day ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .9rem; }
.day li { display: flex; flex-direction: column; gap: .15rem; }
.day .cls { font-weight: 700; font-size: .82rem; color: var(--navy); letter-spacing: .02em; }
.day .tm { font-size: .82rem; color: var(--sand-dark); font-weight: 600; }
.day-note { margin: 1rem 0 0; font-style: italic; font-size: .8rem; color: var(--muted); }

/* ---------- Preise ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 860px;
}
.price-card {
  background: var(--cream);
  border: 1px solid rgba(195,157,133,.35);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.price-card-featured { background: var(--navy); color: var(--beige); border-color: var(--navy); }
.price-card h3 { font-size: 1.6rem; color: var(--navy); }
.price-card-featured h3 { color: var(--white); }
.price-sub { font-size: .9rem; color: var(--muted); margin: 0 0 1.4rem; }
.price-card-featured .price-sub { color: rgba(234,209,194,.85); }
.price-amount { font-size: 2.6rem; font-weight: 800; margin: 0 0 .4rem; }
.price-amount span { font-size: 1rem; font-weight: 500; opacity: .8; }
.price-note { font-size: .85rem; margin: 0 0 1.8rem; opacity: .85; }
.price-list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: flex; flex-direction: column; gap: .9rem; }
.price-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: .9rem; border-bottom: 1px solid rgba(76,64,56,.12);
  font-weight: 600;
}
.price-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.price-amount-sm { font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.price-card .btn { margin-top: auto; }

/* ---------- So funktioniert's ---------- */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.how-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  border: 1px solid rgba(76,64,56,.12);
  box-shadow: var(--shadow-sm);
}
.how-step {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  background: var(--sand);
  padding: .35rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.how-card h3 { color: var(--navy); font-size: 1.25rem; }
.how-card ol { margin: 0 0 1rem; padding-left: 1.2rem; }
.how-card li { margin-bottom: .5rem; }
.how-card p { margin: 0 0 .8rem; }
.how-note { font-size: .85rem; color: var(--muted); margin: 0; }

/* ---------- Anfahrt / Öffnungszeiten ---------- */
.hours-panel {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.2rem 2rem; margin-top: 2rem;
  background: var(--white); border: 1px solid rgba(76, 64, 56, .12);
  border-radius: var(--radius); padding: 1.6rem 2rem; box-shadow: var(--shadow-sm);
}
.hours-line {
  margin: .2rem 0 0; font-size: 1.2rem; font-weight: 700; color: var(--navy);
  display: flex; gap: .8rem; align-items: baseline; flex-wrap: wrap;
}
.hours-line span { color: var(--sand-dark); }
.hours-panel .map-link { margin: 0; }

/* ---------- Booking CTA ---------- */
.booking {
  background: linear-gradient(120deg, var(--sand), var(--beige));
  padding: 5rem 0;
  text-align: center;
}
.booking-inner { max-width: 640px; }
.booking h2 { color: var(--navy); font-size: clamp(1.9rem, 4vw, 2.8rem); }
.booking p { color: var(--navy-dark); font-size: 1.1rem; margin: 0 0 2rem; }
.booking-actions { display: flex; justify-content: center; }
.booking-hint { font-size: .85rem; opacity: .75; margin: 1.5rem 0 0; font-style: italic; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.contact-grid h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.contact-phone {
  display: inline-block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin: 1rem 0 .5rem;
  letter-spacing: .01em;
}
.contact-phone:hover { color: var(--sand-dark); }
.contact-note { font-size: .85rem; color: var(--muted); margin: 0; }
.contact-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--beige);
  box-shadow: var(--shadow);
}
.contact-card .brand-text { color: var(--beige); }
.contact-card .brand-dots { justify-content: center; margin: .5rem auto 1.5rem; }
.contact-tagline { font-style: italic; font-weight: 600; margin: 0; letter-spacing: .04em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(234,209,194,.85); padding: 2.5rem 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.2rem;
}
.footer-inner .brand-text { color: var(--beige); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.site-footer nav a { font-size: .88rem; font-weight: 600; }
.site-footer nav a:hover { color: var(--white); }
.footer-copy { font-size: .8rem; margin: 0; opacity: .75; width: 100%; }
.footer-version { width: 100%; margin: .4rem 0 0; font-size: .78rem; opacity: .8; }
.footer-version a { font-weight: 600; color: var(--beige); }
.footer-version a:hover { color: var(--white); text-decoration: underline; }
.footer-version .active { color: var(--white); text-decoration: underline; }

/* Instagram-Icon-Link (in Logo-Farbe) */
.ig-link { display: inline-flex; align-items: center; justify-content: center; color: var(--sand-dark); line-height: 0; transition: transform .15s ease, color .15s ease; }
.ig-link:hover { color: var(--ink); transform: translateY(-2px); }
.ig-link svg { width: 26px; height: 26px; }
.contact-social { margin: .7rem 0 0; }

/* Footer: Social-Icon + Credit */
.footer-social { width: 100%; display: flex; align-items: center; gap: 12px; margin-top: .4rem; }
.footer-social .ig-link { color: var(--beige); }
.footer-social .ig-link:hover { color: var(--white); }
.footer-credit { width: 100%; margin: .5rem 0 0; font-size: .74rem; opacity: .7; }
.footer-credit a { color: var(--beige); font-weight: 600; }
.footer-credit a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Rechtsseiten (Impressum / AGB) ---------- */
.legal { padding: calc(var(--header-h) + 3.5rem) 0 5rem; background: var(--cream); }
.legal-inner { max-width: 820px; }
.legal-title { font-size: clamp(2rem, 5vw, 3rem); margin: .2rem 0 .6rem; }
.legal-lead { font-size: 1.05rem; color: var(--muted); margin: 0 0 1.8rem; }
.legal-inner h2 {
  font-size: 1.15rem;
  margin: 2rem 0 .6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(76, 64, 56, .12);
}
.legal-inner p { margin: 0 0 1rem; }
.legal-note {
  background: rgba(195, 157, 133, .14);
  border: 1px solid rgba(195, 157, 133, .35);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: .92rem;
  margin: 0 0 2rem;
}
.legal-note code, .legal-inner code {
  background: rgba(76, 64, 56, .08);
  padding: .1em .4em;
  border-radius: 6px;
  font-size: .88em;
}
.legal-address { font-style: normal; line-height: 1.8; margin: 0 0 1rem; }
.legal-list { margin: 0 0 1rem; padding-left: 1.2rem; }
.legal-list li { margin: .25rem 0; }
.legal-updated { font-size: .85rem; color: var(--muted); margin-top: 2rem; }
.legal-back { margin-top: 1.5rem; }
.legal-back a { font-weight: 600; color: var(--sand-dark); }
.legal-back a:hover { text-decoration: underline; }

/* ---------- Kontakt-Details ---------- */
.contact-address { margin: .2rem 0 .7rem; font-weight: 600; }
.contact-email { margin: 0 0 .2rem; font-size: 1.15rem; }
.contact-email a { color: var(--sand-dark); font-weight: 700; }
.contact-email a:hover { text-decoration: underline; }

/* ---------- Google-Karte (warm eingefärbt, passend zum Beige-Look) ---------- */
.map-embed {
  margin-top: 2.6rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(169, 126, 99, .28);
  box-shadow: var(--shadow);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: sepia(.45) saturate(.72) hue-rotate(-12deg) brightness(1.04) contrast(.9);
  transition: filter .45s ease;
}
.map-embed:hover iframe,
.map-embed:focus-within iframe { filter: none; }
.map-link { margin: .7rem 0 0; font-size: .85rem; text-align: right; }
.map-link a { color: var(--sand-dark); font-weight: 600; }
.map-link a:hover { text-decoration: underline; }

/* ---------- FAQ (Akkordeon, ohne JS) ---------- */
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(76, 64, 56, .14);
  border-radius: var(--radius-sm);
  margin-bottom: .8rem;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(169, 126, 99, .35); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.3rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--sand-dark);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.3rem 1.2rem; }
.faq-a p { margin: 0; }


/* ============================================================
   FARB-SCHALTER (Beige  <->  Blau)
   ============================================================ */
.theme-switch {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 64, 56, .14);
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.theme-switch-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  transition: color .2s ease;
}
.theme-switch-label.is-active { color: var(--ink); }
.theme-switch-track {
  position: relative;
  width: 58px;
  height: 30px;
  flex: none;
  border: 0;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(90deg, #c39d85 0%, #4a6a8f 100%);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .25);
}
.theme-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
  transition: transform .25s cubic-bezier(.22, .61, .36, 1);
}
.theme-switch-track[aria-checked="true"] .theme-switch-thumb { transform: translateX(28px); }
.theme-switch-track:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

@media (max-width: 480px) {
  .theme-switch { bottom: 14px; padding: 7px 13px; gap: 10px; }
}

/* ============================================================
   ERÖFFNUNGS-OVERLAY (Vollbild-Splash über der Startseite)
   ============================================================ */
.launch-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: var(--ink);
  opacity: 0;
  transition: opacity .5s ease;
  overflow: hidden;
}
.launch-overlay.in { opacity: 1; }
.launch-overlay.out { opacity: 0; }
html.lo-lock, body.lo-lock { overflow: hidden; }

.lo-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 520px at 80% -10%, rgba(255,255,255,.6), transparent 60%),
    radial-gradient(820px 460px at 0% 110%, rgba(195,157,133,.45), transparent 55%),
    linear-gradient(160deg, #f6efe8 0%, #ead1c2 55%, #dcc3b1 100%);
}
.lo-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.4) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: launchSheen 7s ease-in-out infinite;
}
@keyframes launchSheen { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }

.lo-content {
  position: relative;
  max-width: 660px;
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), opacity .6s ease;
}
.launch-overlay.in .lo-content { transform: none; opacity: 1; }

.lo-eyebrow { text-transform: uppercase; letter-spacing: .3em; font-size: .74rem; font-weight: 700; color: var(--sand-dark); margin: 0 0 1rem; }
.lo-brand { font-weight: 500; letter-spacing: .16em; font-size: clamp(1.7rem, 7vw, 3.6rem); color: var(--sand-dark); margin: 0; line-height: 1.05; max-width: 100%; }
.lo-tag { font-style: italic; font-weight: 800; font-size: clamp(1.15rem, 4vw, 1.8rem); margin: .6rem 0 0; }
.lo-tag span { color: var(--sand-dark); }
.lo-lead { font-size: 1.05rem; margin: 1.6rem 0 1.1rem; }
.lo-lead strong { color: var(--sand-dark); }

.lo-countdown { display: flex; justify-content: center; gap: .6rem; margin: 0 0 1.9rem; }
.lo-countdown .cd {
  display: flex; flex-direction: column; align-items: center; min-width: 68px;
  background: rgba(255,255,255,.65); border: 1px solid rgba(169,126,99,.28);
  border-radius: 14px; padding: .6rem .3rem;
}
.lo-countdown .cd-num { font-size: 1.7rem; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; color: var(--ink); }
.lo-countdown .cd-lbl { font-size: .6rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-top: 5px; }

.lo-actions { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.lo-ig { display: inline-flex; align-items: center; gap: .5rem; }
.lo-ig svg { width: 18px; height: 18px; }

/* Passwort-Gate im Overlay */
.lo-gate { width: 100%; max-width: 360px; margin: 0 auto; }
.lo-gate-label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .55rem; }
.lo-gate-row { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; }
.lo-gate-input {
  font-family: var(--font); font-size: 1rem; font-weight: 600;
  padding: .75rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(76, 64, 56, .25); background: rgba(255, 255, 255, .85);
  color: var(--ink); min-width: 170px; text-align: center; letter-spacing: .25em;
}
.lo-gate-input::placeholder { letter-spacing: normal; color: var(--muted); }
.lo-gate-input:focus { outline: 2px solid var(--sand-dark); outline-offset: 2px; }
.lo-gate-error { color: #b23a3a; font-size: .85rem; font-weight: 600; margin: .7rem 0 0; }
.lo-shake { animation: loShake .4s; }
@keyframes loShake { 0%, 100% { transform: none; } 20%, 60% { transform: translateX(-7px); } 40%, 80% { transform: translateX(7px); } }
.lo-dots { display: flex; gap: 10px; justify-content: center; margin-top: 2rem; }
.lo-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--sand); }

.lo-close {
  position: absolute; top: 18px; right: 20px; z-index: 2;
  width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.6); color: var(--ink);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  transition: background .15s ease, transform .2s ease;
}
.lo-close:hover { background: rgba(255,255,255,.92); transform: rotate(90deg); }

@media (max-width: 480px) {
  .lo-brand { letter-spacing: .08em; }
  .lo-eyebrow { letter-spacing: .22em; }
  .lo-countdown .cd { min-width: 58px; padding: .5rem .2rem; }
  .lo-countdown .cd-num { font-size: 1.4rem; }
  .lo-actions .btn { width: 100%; }
}

/* ============================================================
   ANIMATIONEN (High-End Feinschliff)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Scroll-Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s cubic-bezier(.22, .61, .36, 1),
                transform .75s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: none; }

  /* Hero-Einblendung gestaffelt */
  @keyframes riseIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
  }
  .hero-eyebrow { animation: riseIn .9s cubic-bezier(.22,.61,.36,1) both; animation-delay: .05s; }
  .hero-title   { animation: riseIn .9s cubic-bezier(.22,.61,.36,1) both; animation-delay: .18s; }
  .hero-sub     { animation: riseIn .9s cubic-bezier(.22,.61,.36,1) both; animation-delay: .38s; }
  .hero-actions { animation: riseIn .9s cubic-bezier(.22,.61,.36,1) both; animation-delay: .52s; }

  /* sanfte Bewegung im Hintergrund-Glow */
  @keyframes glowDrift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(0, -1.5%, 0) scale(1.03); }
    100% { transform: translate3d(0, 0, 0) scale(1); }
  }
  .hero::before { animation: glowDrift 16s ease-in-out infinite; }

  /* pulsierende Markenpunkte im Hero */
  @keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: .7; }
  }
  .hero-dots i { animation: dotPulse 2.4s ease-in-out infinite; }
  .hero-dots i:nth-child(2) { animation-delay: .3s; }
  .hero-dots i:nth-child(3) { animation-delay: .6s; }

  /* Bild-Motiv leichter Schwebeeffekt */
  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .about-figure { animation: floaty 6s ease-in-out infinite; }

  /* Buchungs-Button dezenter Puls */
  @keyframes ctaPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 0, 0, .18); }
    70% { box-shadow: 0 0 0 16px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
  }
  .booking .btn-primary { animation: ctaPulse 2.8s ease-out infinite; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(195,157,133,.3);
    transform: translateY(-120%);
    transition: transform .28s ease;
    box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: 0; padding: 1rem 24px; }
  .main-nav li { border-bottom: 1px solid rgba(195,157,133,.25); }
  .main-nav li:last-child { border-bottom: 0; }
  .main-nav a { display: block; padding: .9rem 0; font-size: 1rem; }

  .card { max-width: 100%; }
  .week-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }

  .hero { min-height: auto; padding: 5rem 0 4rem; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .footer-inner { justify-content: center; text-align: center; }
  .site-footer nav { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 3.25rem 0; }
  .brand-text { font-size: 1rem; letter-spacing: .26em; }
  .hero-title { font-size: clamp(2.1rem, 10vw, 2.8rem); }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .btn-lg { width: 100%; padding: .95rem 1.6rem; }
  .contact-phone { font-size: 1.4rem; word-break: break-word; }
  .legal-inner h2 { font-size: 1.05rem; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .lo-bg::after { animation: none !important; }
}
