/* =====================================================
   Festival der Sinne – Stylesheet
   Hell & warm (wie die alte Seite) mit bunten
   Aura-Akzenten, Sternen & Tarot-Bögen
   ===================================================== */

/* ===== Schriften lokal eingebunden (DSGVO – kein Google-Server) ===== */
@font-face {
  font-family: "Playfair Display"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../fonts/PlayfairDisplay-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../fonts/PlayfairDisplay-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("../fonts/PlayfairDisplay-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("../fonts/PlayfairDisplay-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display"; font-style: italic; font-weight: 400;
  font-display: swap; src: url("../fonts/PlayfairDisplay-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display"; font-style: italic; font-weight: 600;
  font-display: swap; src: url("../fonts/PlayfairDisplay-600-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit"; font-style: normal; font-weight: 300;
  font-display: swap; src: url("../fonts/Outfit-300-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("../fonts/Outfit-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("../fonts/Outfit-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("../fonts/Outfit-600-normal.woff2") format("woff2");
}

:root {
  --bg: #fdfaf2;
  --bg-warm: #faf2de;
  --ink: #1b315e;          /* Marineblau – wie der Logo-Schriftzug */
  --text: #45506a;
  --text-soft: #7d859c;

  --gold: #c5912f;
  --gold-deep: #9c7016;
  --gold-soft: #f3e1ad;

  --blue: #3a78c4;         /* Blau des fließenden Bandes im Logo */
  --blue-deep: #1f4f8f;
  --sky: #79a8de;          /* helles Blau */

  /* Akzentfarben in der Gold-/Blau-Welt des Logos */
  --amber: #d98a2b;
  --rose: #e1a548;         /* helles Gold (statt Rosa) */
  --violet: #3a78c4;       /* Blau (statt Violett) */
  --teal: #2f7fb3;         /* mittleres Blau */

  --tint-amber: #fcf0d6;
  --tint-rose: #fbeccd;
  --tint-violet: #e7f0fb;
  --tint-teal: #e4eefb;
  --tint-sky: #eef5fc;

  --line: #ece2cc;
  --shadow: 0 18px 45px rgba(31, 49, 95, 0.13);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }
.center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; color: var(--ink); }

h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); line-height: 1.12; margin-bottom: 1.2rem; }
h1 em, h2 em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-deep), var(--blue) 58%, var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.06em;
}

p + p { margin-top: 1em; }
a { color: var(--gold-deep); }

.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.overline::before { content: "✦"; font-size: 0.85em; color: var(--amber); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-ink {
  background: var(--ink);
  color: #fdfaf2;
  box-shadow: 0 10px 26px rgba(55, 43, 82, 0.25);
}
.btn-ink:hover { transform: translateY(-2px); background: #2a4a82; }
.btn-outline {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fdfaf2; transform: translateY(-2px); }

/* ===== Navigation ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 242, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand-mark { color: var(--amber); margin-right: 0.35rem; }
.nav-logo { height: 58px; width: 58px; display: block; }

/* Nur für Screenreader sichtbar (SEO-Überschrift) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.93rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.is-active { color: var(--ink); border-bottom: 2px solid var(--amber); padding-bottom: 2px; }
.nav-links .nav-cta {
  background: var(--ink);
  color: #fdfaf2;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
}
.nav-links .nav-cta:hover { background: #2a4a82; color: #fff; }
/* Auf der eigenen Seite: weiße Schrift behalten (nicht die blaue Aktiv-Farbe erben) */
.nav-links .nav-cta.is-active { color: #fdfaf2; border-bottom: none; padding-bottom: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }

/* ===== Aura-Hintergrund ===== */
.aura {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.aura::before, .aura::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.aura::before {
  width: 560px; height: 560px;
  left: -140px; top: -120px;
  background: radial-gradient(circle at 30% 30%, #f7d9a3, #cfe0f3 60%, transparent 75%);
}
.aura::after {
  width: 620px; height: 620px;
  right: -180px; bottom: -200px;
  background: radial-gradient(circle at 70% 60%, #bcd7f2, #aed8f5 55%, transparent 78%);
}

/* Sternkonstellation (Inline-SVG) */
.constellation {
  position: absolute;
  color: var(--gold);
  opacity: 0.5;
  pointer-events: none;
}

/* ===== Hero (Startseite) ===== */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(56px, 7vw, 90px);
  overflow: hidden;
  background: linear-gradient(115deg, #fbe6c2 0%, #fdf6e6 42%, #eaf2fc 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-text { position: relative; }
.hero-visual { position: relative; }
.hero-dancer {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 26px;
  box-shadow: 0 26px 60px rgba(31, 49, 95, 0.18);
}
/* Logo in der Hero – so groß wie das Bild, runder Schatten direkt am Logo */
.hero-logo {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 22px 42px rgba(31, 49, 95, 0.22));
}
.hero-visual .constellation { right: -22px; top: -26px; }
.hero-date {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.3rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(82, 60, 25, 0.08);
  margin-bottom: 1.8rem;
}
.hero-date .dot { color: var(--rose); }
.hero h1 { margin-bottom: 0.5rem; }
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
  background: linear-gradient(115deg, var(--gold-deep), var(--blue) 58%, var(--blue-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub { max-width: 480px; margin: 0 0 2.2rem; font-size: 1.1rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: flex-start; flex-wrap: wrap; }
.hero-free {
  margin-top: 2.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-deep);
}

/* Schwebende Bilder im Hero (Desktop) */
.hero-photos { position: absolute; inset: 0; pointer-events: none; }
.hero-photo {
  position: absolute;
  width: clamp(120px, 15vw, 210px);
  border-radius: 999px 999px 22px 22px; /* Tarot-Bogen */
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo.p1 { left: 3%; top: 10%; transform: rotate(-5deg); }
.hero-photo.p2 { right: 3.5%; top: 14%; transform: rotate(4deg); }
.hero-photo.p3 { left: 7%; bottom: 6%; transform: rotate(3deg); width: clamp(100px, 12vw, 170px); }
.hero-photo.p4 { right: 7%; bottom: 4%; transform: rotate(-4deg); width: clamp(100px, 12vw, 170px); }

/* ===== Sektionen ===== */
.section { padding: clamp(70px, 9vw, 110px) 0; position: relative; }
.section-warm { background: var(--bg-warm); }
.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4.5vw, 3.5rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-intro { color: var(--text-soft); font-size: 1.05rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

/* ===== Sinne-Karten ===== */
.senses-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.1rem;
}
.sense-card {
  border-radius: 130px 130px 20px 20px;
  padding: 2.6rem 1.4rem 1.8rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease;
}
.sense-card:hover { transform: translateY(-6px); }
.sense-card .sense-icon { font-size: 1.9rem; display: block; margin-bottom: 0.9rem; line-height: 1; }
.sense-card h3 { font-size: 1.22rem; margin-bottom: 0.45rem; }
.sense-card p { font-size: 0.88rem; line-height: 1.55; color: var(--text); }
.sense-card.c-amber  { background: var(--tint-amber);  }
.sense-card.c-rose   { background: var(--tint-rose);   }
.sense-card.c-violet { background: var(--tint-violet); }
.sense-card.c-teal   { background: var(--tint-teal);   }
.sense-card.c-sky    { background: var(--tint-sky);    }
.sense-card.c-amber .sense-icon  { color: var(--amber); }
.sense-card.c-rose .sense-icon   { color: var(--rose); }
.sense-card.c-violet .sense-icon { color: var(--violet); }
.sense-card.c-teal .sense-icon   { color: var(--teal); }
.sense-card.c-sky .sense-icon    { color: var(--sky); }

/* ===== Porträt / Willkommen ===== */
.portrait { position: relative; max-width: 430px; margin: 0 auto; }
.portrait img {
  width: 100%;
  display: block;
  border-radius: 20px;
  border: 6px solid #fff;
  box-shadow: var(--shadow);
}
.portrait figcaption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-soft);
}
.portrait .constellation { right: -40px; top: -30px; }

.founders-quote { margin-top: 1.8rem; padding-left: 1.3rem; border-left: 3px solid var(--gold-soft); }
.founders-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.5;
}
.founders-quote footer { margin-top: 0.5rem; font-size: 0.88rem; color: var(--text-soft); }

/* ===== Info-Fakten (Wann/Wo/Eintritt) ===== */
.facts-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.fact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem 1.8rem;
  display: flex;
  gap: 1.1rem;
  align-items: center;
  box-shadow: 0 8px 24px rgba(82, 60, 25, 0.06);
}
.fact-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}
.fact-card:nth-child(1) .fact-icon { background: var(--tint-amber); color: var(--amber); }
.fact-card:nth-child(2) .fact-icon { background: var(--tint-violet); color: var(--violet); }
.fact-card:nth-child(3) .fact-icon { background: var(--tint-rose); color: var(--rose); }
.fact-card h3 { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-soft); font-family: var(--font-body); font-weight: 500; margin-bottom: 0.15rem; }
.fact-card p { font-family: var(--font-display); font-size: 1.18rem; color: var(--ink); line-height: 1.35; }

/* ===== Teaser-Karten (Startseite) ===== */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.teaser {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(82, 60, 25, 0.06);
}
.teaser:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.teaser-img { aspect-ratio: 16 / 10; overflow: hidden; }
.teaser-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.teaser:hover .teaser-img img { transform: scale(1.04); }
.teaser-body { padding: 1.5rem 1.7rem 1.7rem; }
.teaser-body h3 { font-size: 1.4rem; margin-bottom: 0.4rem; }
.teaser-body p { font-size: 0.94rem; color: var(--text); }
.teaser-link {
  margin-top: 0.9rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}
.teaser-link::after { content: " →"; transition: margin 0.2s; }
.teaser:hover .teaser-link::after { margin-left: 4px; }

/* ===== Unterseiten-Hero ===== */
.page-hero {
  position: relative;
  padding: clamp(56px, 7vw, 90px) 0;
  text-align: center;
  background: linear-gradient(115deg, #faf0d8 0%, #fdf7e9 52%, #eaf2fc 100%);
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); margin-bottom: 0.8rem; }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--text); }

/* ===== Programm ===== */
.day-tabs { display: flex; gap: 0.8rem; margin-bottom: 2.4rem; flex-wrap: wrap; justify-content: center; }
.day-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.9rem 2.2rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  font-family: var(--font-body);
}
.day-tab:hover { transform: translateY(-2px); }
.day-tab .day-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--text-soft); }
.day-tab .day-date { font-size: 0.82rem; color: var(--text-soft); letter-spacing: 0.05em; }
.day-tab.is-active { border-color: var(--amber); background: var(--tint-amber); }
.day-tab.is-active .day-name { color: var(--ink); }
.day-tab.is-active .day-date { color: var(--gold-deep); }

.schedule { list-style: none; max-width: 820px; margin: 0 auto; }
.slot {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  padding: 1.4rem 1.6rem;
  align-items: baseline;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 18px rgba(82, 60, 25, 0.05);
}
.slot-time {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-deep);
  min-width: 76px;
  flex-shrink: 0;
}
.slot-body h3 { font-size: 1.16rem; margin-bottom: 0.15rem; font-weight: 500; }
.slot-body p { color: var(--text-soft); font-size: 0.93rem; }
.slot-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.slot-tag.vortrag  { background: var(--tint-violet); color: var(--violet); }
.slot-tag.workshop { background: var(--tint-teal); color: var(--teal); }
.slot-tag.musik    { background: var(--tint-rose); color: var(--rose); }

.kakao-card {
  max-width: 820px;
  margin: 3rem auto 0;
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  background: linear-gradient(120deg, var(--tint-amber), var(--tint-rose));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: 2rem 2.2rem;
}
.kakao-icon { font-size: 2.1rem; line-height: 1; margin-top: 0.2rem; }
.kakao-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.kakao-card ul { list-style: none; margin-top: 0.6rem; }
.kakao-card li { padding: 0.25rem 0; }
.kakao-card strong { color: var(--ink); font-weight: 500; }

/* ===== Aussteller ===== */
.exhibitor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}
.exhibitor {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid var(--card-accent, var(--gold-soft));
}
.exhibitor:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.exhibitor h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 0.15rem; }
.exhibitor p { color: var(--text-soft); font-size: 0.88rem; line-height: 1.5; }
.exhibitor:nth-child(5n+1) { --card-accent: var(--gold-soft); }
.exhibitor:nth-child(5n+2) { --card-accent: #cfe0f3; }
.exhibitor:nth-child(5n+3) { --card-accent: #f6e7bf; }
.exhibitor:nth-child(5n+4) { --card-accent: #a9cdee; }
.exhibitor:nth-child(5n+5) { --card-accent: #d9e7f8; }

/* Kontakt-Pills: machen klar, dass es klickbare Links sind */
.exhibitor-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.1rem;
}
.exhibitor-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-deep);
  background: var(--gold-soft);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  overflow-wrap: anywhere;
}
.exhibitor-link:hover { background: var(--gold); color: #fff; transform: translateY(-1px); }
.exhibitor-link .el-icon { font-size: 0.95em; line-height: 1; }
.exhibitor-link.is-web::after { content: "↗"; font-size: 0.85em; }
.exhibitor-link.is-mail { background: var(--tint-violet); color: var(--violet); }
.exhibitor-link.is-mail:hover { background: var(--violet); color: #fff; }
.exhibitor-link.is-phone { background: var(--tint-teal); color: var(--teal); }
.exhibitor-link.is-phone:hover { background: var(--teal); color: #fff; }

/* ===== Galerie ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gallery figure {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(82, 60, 25, 0.1);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery figure:hover img { transform: scale(1.045); }
.photo-note { margin-top: 2rem; font-size: 0.82rem; color: var(--text-soft); max-width: 720px; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(40, 30, 60, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 2.2rem;
  cursor: pointer; line-height: 1;
}

/* ===== Preise / Aussteller werden ===== */
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.4rem 2.6rem;
  box-shadow: var(--shadow);
}
.price-card h3 { font-size: 1.45rem; margin-bottom: 1.2rem; }
.price-list { list-style: none; }
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.98rem;
}
.price-list li:last-child { border-bottom: none; }
.price { font-family: var(--font-display); color: var(--gold-deep); font-size: 1.15rem; white-space: nowrap; }
.price-note { margin-top: 1rem; font-size: 0.85rem; color: var(--text-soft); }

.steps { list-style: none; counter-reset: step; max-width: 640px; }
.steps li { counter-increment: step; display: flex; gap: 1.2rem; padding: 1rem 0; align-items: flex-start; }
.steps li::before {
  content: counter(step);
  font-family: var(--font-display);
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--tint-violet);
  color: var(--violet);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

/* ===== Anreise / Infokarten ===== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: stretch; }
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.2rem 2.4rem;
  box-shadow: 0 8px 24px rgba(82, 60, 25, 0.06);
}
.info-card h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.address { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); line-height: 1.5; margin-bottom: 1.4rem; }
.link-list { list-style: none; margin-top: 0.8rem; }
.link-list li { padding: 0.35rem 0; }
.link-list a { color: var(--gold-deep); text-decoration: none; border-bottom: 1px solid var(--gold-soft); }
.link-list a:hover { border-color: var(--gold-deep); }

/* ===== Kontakt ===== */
.contact-row { display: flex; justify-content: center; gap: 1.1rem; flex-wrap: wrap; margin-top: 2.4rem; }
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem 2.2rem;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  min-width: 210px;
  text-align: center;
}
.contact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-label { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-soft); }
.contact-value { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.contact-names { margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--gold-deep); }

/* ===== Kontaktformular ===== */
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-soft); opacity: 0.7; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 149, 47, 0.14);
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23877c9e' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  cursor: pointer;
}
.form-hint { font-size: 0.84rem; color: var(--text-soft); margin-bottom: 1.4rem; }
.form-error { margin-top: 1rem; color: var(--rose); font-size: 0.92rem; }
.form-status {
  border: 1px solid var(--gold-soft);
  background: var(--bg-warm);
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  text-align: center;
}
.form-status h3 { font-family: var(--font-display); color: var(--ink); font-size: 1.4rem; margin-bottom: 0.5rem; }
.form-status p { color: var(--text-soft); }
.form-consent { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 1.4rem; }
.form-consent input { margin-top: 0.2rem; width: 1.1rem; height: 1.1rem; flex-shrink: 0; accent-color: var(--gold-deep); cursor: pointer; }
.form-consent label { font-size: 0.88rem; color: var(--text-soft); line-height: 1.55; }
.form-consent a { color: var(--gold-deep); text-decoration: underline; }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ===== CTA-Banner ===== */
.cta-banner {
  position: relative;
  background: var(--ink);
  border-radius: 28px;
  padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center;
  overflow: hidden;
}
.cta-banner h2 { color: #fdfaf2; }
.cta-banner p { color: #c9c0dd; max-width: 520px; margin: 0 auto 2rem; }
.cta-banner .btn-ink { background: #fdfaf2; color: var(--ink); }
.cta-banner .btn-ink:hover { background: #fff; }
.cta-banner .constellation { opacity: 0.35; color: #f5e3b8; }

/* ===== Footer ===== */
.site-footer { background: var(--bg-warm); border-top: 1px solid var(--line); padding: 3.5rem 0 2rem; margin-top: clamp(60px, 8vw, 100px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); margin-bottom: 0.6rem; }
.footer-grid p { font-size: 0.92rem; }
.footer-grid h4 { font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; font-family: var(--font-body); font-weight: 500; color: var(--text-soft); margin-bottom: 0.9rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { padding: 0.22rem 0; }
.footer-grid a { color: var(--text); text-decoration: none; font-size: 0.94rem; }
.footer-grid a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--text-soft);
}
.footer-bottom a { color: var(--text-soft); text-decoration: none; margin-left: 1.2rem; }
.footer-bottom a:hover { color: var(--ink); }

/* ===== Datenschutz-Hinweis (Banner) ===== */
.cookie-note {
  position: fixed;
  left: 50%; bottom: 18px;
  transform: translateX(-50%) translateY(24px);
  width: min(700px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(31, 49, 95, 0.18);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-note.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.cookie-note p { font-size: 0.9rem; margin: 0; flex: 1 1 340px; color: var(--text); }
.cookie-note a { color: var(--gold-deep); }
.cookie-note .btn { padding: 0.6rem 1.5rem; font-size: 0.88rem; white-space: nowrap; }

/* ===== Rechtstexte (Impressum/Datenschutz) ===== */
.legal h2 { margin-top: 2.4rem; font-size: 1.7rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.2rem; margin: 1.8rem 0 0.5rem; }
.legal p { margin-bottom: 0.8rem; }
.legal ul { list-style: disc; margin: 0 0 1rem 1.3rem; }
.legal li { margin-bottom: 0.35rem; }
.legal a { color: var(--gold-deep); }
.legal .muted { color: var(--text-soft); font-size: 0.9rem; }
.note-box {
  background: var(--tint-amber);
  border: 1px solid var(--gold-soft);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  margin: 1.2rem 0;
  font-size: 0.95rem;
}
.note-box strong { color: var(--gold-deep); }

/* ===== Reveal (dezent) ===== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .hero-photo.p3, .hero-photo.p4 { display: none; }
}
@media (max-width: 960px) {
  .senses-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .facts-strip { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-text { text-align: center; }
  .hero-text .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-text .hero-actions { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 1.5rem 24px 2rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .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); }
  .senses-grid { grid-template-columns: repeat(2, 1fr); }
  .slot { flex-direction: column; gap: 0.3rem; }
  .slot-time { min-width: 0; }
  .kakao-card { flex-direction: column; padding: 1.6rem; }
}
@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .senses-grid { grid-template-columns: 1fr; }
}
