@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Raleway:wght@300;400;500;600&display=swap');

/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
  --rose:        #C9A4A4;
  --rose-dark:   #9C7070;
  --rose-light:  #F2E3E3;
  --gold:        #C4973A;
  --gold-light:  #E8D5A3;
  --cream:       #FDFBF7;
  --warm:        #FFF8F2;
  --section:     #F5EDE5;
  --text:        #3A3030;
  --muted:       #7A6868;

  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Raleway', sans-serif;

  --shadow-s: 0 2px 12px rgba(58,48,48,.07);
  --shadow-m: 0 6px 28px rgba(58,48,48,.12);
  --shadow-l: 0 12px 48px rgba(58,48,48,.16);
  --radius:   6px;
  --ease:     all .3s ease;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }

.label {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: .6rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =============================================
   LAYOUT HELPERS
   ============================================= */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section--alt  { background: var(--section); }
.section--dark { background: var(--text); color: var(--cream); }

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: .75rem 0 1.75rem;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: var(--rose);
  opacity: .5;
}
.ornament span {
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: .85rem 2.5rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--rose-dark);
  color: #fff;
  border: 1.5px solid var(--rose-dark);
}
.btn-primary:hover { background: var(--text); border-color: var(--text); }

.btn-outline {
  background: transparent;
  color: var(--rose-dark);
  border: 1.5px solid var(--rose-dark);
}
.btn-outline:hover { background: var(--rose-dark); color: #fff; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  padding: 1.6rem 2rem;
  transition: var(--ease);
}
.nav.scrolled {
  background: rgba(253,251,247,.96);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-s);
}

.nav__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #fff;
  transition: var(--ease);
  letter-spacing: .04em;
}
.nav.scrolled .nav__brand { color: var(--text); }

.nav__list {
  display: flex;
  gap: 2.5rem;
}
.nav__list a {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  transition: var(--ease);
}
.nav.scrolled .nav__list a { color: var(--muted); }
.nav__list a:hover { color: var(--gold) !important; }

/* Language switcher */
.nav__lang {
  display: flex;
  gap: .35rem;
  align-items: center;
  margin-left: 2rem;
}
.nav__lang-link {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .2rem .45rem;
  border-radius: 2px;
  color: rgba(255,255,255,.6);
  border: 1px solid transparent;
  transition: var(--ease);
}
.nav.scrolled .nav__lang-link { color: var(--muted); }
.nav__lang-link:hover { color: var(--gold) !important; border-color: var(--gold); }
.nav__lang-link.active { color: var(--gold) !important; border-color: var(--gold); }

@media (max-width: 760px) {
  .nav__lang { margin-left: 0; margin-top: 1rem; }
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--ease);
}
.nav.scrolled .nav__burger span { background: var(--text); }

/* Mobile drawer */
@media (max-width: 760px) {
  .nav__burger { display: flex; }

  .nav__list {
    position: fixed;
    inset: 0 0 0 auto;
    width: 280px;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: var(--shadow-l);
    z-index: 1000;
  }
  .nav__list.open { transform: translateX(0); }
  .nav__list a { color: var(--muted) !important; font-size: 1rem; }
  .nav__list a:hover { color: var(--gold) !important; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(175deg, rgba(40,25,25,.55) 0%, rgba(40,30,30,.38) 55%, rgba(40,25,25,.68) 100%),
    url('../images/hero-1.jpg')
    center / cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2rem;
  animation: fadeUp 1.4s ease both;
}

.hero__pre {
  font-size: .8rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.hero__names {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 11vw, 7.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.hero__amp {
  font-style: italic;
  color: var(--gold-light);
  margin: 0 .15em;
}

.hero__line {
  width: 56px;
  height: 1px;
  background: var(--gold-light);
  margin: 1.75rem auto;
  opacity: .7;
}

.hero__date {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: rgba(255,255,255,.92);
  margin-bottom: .4rem;
}

.hero__loc {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 3rem;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.cntd__box {
  text-align: center;
  min-width: 60px;
}
.cntd__n {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  display: block;
}
.cntd__l {
  font-size: .63rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .2rem;
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: bounce 2.2s ease infinite;
}
.hero__scroll svg { width: 18px; }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  55%      { transform: translateX(-50%) translateY(7px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   SPRACHAUSWAHL BANNER
   ============================================= */
.lang-banner {
  background: var(--section);
  padding: .85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  font-size: .82rem;
  color: var(--muted);
}
.lang-banner a {
  font-weight: 600;
  color: var(--rose-dark);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 1px;
  transition: var(--ease);
  flex-shrink: 0;
}
.lang-banner a:hover { color: var(--gold); border-color: var(--gold); }
@media (max-width: 600px) {
  .lang-banner { gap: 1rem; padding: .75rem 1.25rem; justify-content: flex-start; }
  .lang-banner > span { display: none; }
}

/* =============================================
   EINLADUNG
   ============================================= */
.invite {
  text-align: center;
  padding: 6rem 0;
}
.invite__intro {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 400;
  max-width: 580px;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}

.invite__quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-style: italic;
  max-width: 780px;
  margin: 0 auto 1.75rem;
  line-height: 1.45;
  color: var(--text);
}
.invite__text {
  font-size: .98rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.9;
}

/* =============================================
   ABLAUF / TIMELINE
   ============================================= */
.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--rose-light) 12%, var(--rose-light) 88%, transparent);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  align-items: center;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-card {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 1.6rem 1.75rem;
  box-shadow: var(--shadow-s);
  border: 1px solid rgba(201,164,164,.14);
  transition: var(--ease);
}
.tl-card:hover { box-shadow: var(--shadow-m); transform: translateY(-3px); }

.tl-item:nth-child(odd)  .tl-card { text-align: right; }
.tl-item:nth-child(even) .tl-card { grid-column: 3; }

.tl-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--rose-dark);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2.5px var(--rose);
  margin: 0 auto;
  position: relative; z-index: 1;
}

.tl-time {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--rose-dark);
  display: block;
  margin-bottom: .3rem;
}
.tl-event {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .25rem;
}
.tl-detail {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   LOCATION CARDS
   ============================================= */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.loc-card {
  background: var(--warm);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  border: 1px solid rgba(201,164,164,.1);
  transition: var(--ease);
}
.loc-card:hover { box-shadow: var(--shadow-m); transform: translateY(-5px); }

.loc-card__img {
  height: 210px;
  overflow: hidden;
}
.loc-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.loc-card:hover .loc-card__img img { transform: scale(1.06); }

.loc-card__body { padding: 1.75rem; }

.loc-card__ico {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--rose-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.loc-card__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: .65rem;
}
.loc-card__text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}
.loc-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  border-bottom: 1px solid var(--rose);
  transition: var(--ease);
}
.loc-card__link:hover { color: var(--gold); border-color: var(--gold); }

/* =============================================
   PRAKTISCHES INFO GRID
   ============================================= */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.info-item {
  background: var(--warm);
  padding: 1.85rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--rose);
  box-shadow: var(--shadow-s);
  transition: var(--ease);
}
.info-item:hover { border-left-color: var(--gold); transform: translateX(4px); }

.info-item__ico { font-size: 1.9rem; margin-bottom: .9rem; line-height: 1; }
.info-item__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: .45rem;
}
.info-item__text { font-size: .89rem; color: var(--muted); line-height: 1.75; }

/* =============================================
   UNSERE GESCHICHTE
   ============================================= */
.story-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.story-imgs__main {
  grid-column: span 2;
  height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-m);
}
.story-imgs__sub {
  height: 185px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
}
.story-imgs__main img,
.story-imgs__sub img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.story-imgs__main:hover img,
.story-imgs__sub:hover img { transform: scale(1.05); }

.story-content .section-title { text-align: left; }
.story-text {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* =============================================
   GALLERY STRIP
   ============================================= */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
  gap: 3px;
}
.gallery-strip__item { overflow: hidden; }
.gallery-strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-strip__item:hover img { transform: scale(1.08); }

/* =============================================
   KONTAKT
   ============================================= */
.contact {
  text-align: center;
  padding: 6rem 0;
}
.contact__mail {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  color: var(--rose-dark);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 3px;
  transition: var(--ease);
}
.contact__mail:hover { color: var(--text); border-color: var(--text); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.5);
  padding: 3.5rem 0;
  text-align: center;
}
.footer__names {
  font-family: var(--serif);
  font-size: 2rem;
  color: #fff;
  letter-spacing: .03em;
  margin-bottom: .4rem;
}
.footer__date {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
}
.footer__nav {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer__nav a { color: rgba(255,255,255,.45); transition: var(--ease); }
.footer__nav a:hover { color: var(--gold); }

/* =============================================
   SUBPAGE HERO (inner pages)
   ============================================= */
.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-bottom: 4rem;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(175deg, rgba(40,25,25,.6) 0%, rgba(40,30,30,.45) 100%),
    var(--img, linear-gradient(135deg, var(--rose-dark), var(--text)))
    center / cover no-repeat;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.page-hero__content .section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: .5rem;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 760px) {
  .section { padding: 4rem 0; }
  .section-head { margin-bottom: 2.5rem; }

  .countdown { gap: 1.2rem; }
  .cntd__n   { font-size: 2rem; }

  /* Mobile timeline */
  .timeline::before { left: 20px; }
  .tl-item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
  }
  .tl-dot { grid-column: 1; grid-row: 1; }
  .tl-card {
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: left !important;
  }
  .tl-item .tl-empty { display: none; }

  .story-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .story-imgs { display: none; }

  .gallery-strip { grid-template-columns: repeat(2, 1fr); height: 300px; }
}

@media (max-width: 480px) {
  .countdown { gap: .75rem; }
  .cntd__box { min-width: 44px; }
  .cntd__n   { font-size: 1.6rem; }
  .hero__names { letter-spacing: -.03em; }
}

/* =============================================
   WEATHER WIDGET
   ============================================= */
.wx-section {
  background: linear-gradient(135deg, #eef4fb 0%, var(--rose-light) 100%);
}

/* Dual layout: weather + water side by side */
.wx-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (max-width: 760px) {
  .wx-dual { grid-template-columns: 1fr; }
}

#weather-widget,
#water-widget {
  /* fill their grid cell */
}

/* Shared card base */
.wx-card, .water-card {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-m);
}

/* Header: icon + main value */
.wx-card__head, .water-card__head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: .9rem;
}
.wx-card__icon, .water-card__icon {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.wx-card__temp, .water-card__temp {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--text);
  line-height: 1;
}
.wx-card__tmin { font-size: 1.4rem; color: var(--muted); }

/* Description + location */
.wx-card__label, .water-card__label {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: .3rem;
}
.wx-card__loc, .water-card__loc {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .8;
}

/* Pills row */
.wx-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rose-light);
}
.wx-pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--rose-light);
  border-radius: 999px;
  padding: .3rem .8rem;
  font-size: .8rem;
  color: var(--text);
  white-space: nowrap;
}
.water-card .wx-pills { border-top-color: #ddeef7; }
.water-card .wx-pill  { background: #e8f4fb; }

/* Placeholder (forecast not yet available) */
.wx-placeholder {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-m);
}
.wx-placeholder__icon { font-size: 2.8rem; margin-bottom: .75rem; }
.wx-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: .3rem;
}
.wx-subtitle {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.wx-soon {
  font-size: .88rem;
  color: var(--text);
  line-height: 1.75;
}
.wx-src {
  font-size: .7rem;
  color: var(--muted);
  margin-top: 1rem;
  opacity: .6;
}

/* Loading / error */
.wx-loading, .wx-error {
  text-align: center;
  color: var(--muted);
  padding: 2rem;
  font-style: italic;
  font-size: .9rem;
}

/* =============================================
   CHAT WIDGET
   ============================================= */
#chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  font-family: var(--sans);
}

.chat-toggle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--rose-dark);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(156,112,112,.45);
  transition: var(--ease);
  color: #fff;
  margin-left: auto;
}
.chat-toggle:hover, .chat-toggle.active { background: var(--text); }
.chat-toggle svg { width: 26px; display: block; }

.chat-window {
  position: absolute;
  bottom: 70px; right: 0;
  width: 340px;
  max-height: 530px;
  background: var(--cream);
  border-radius: 16px;
  box-shadow: var(--shadow-l);
  display: flex; flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(.97);
  pointer-events: none;
  transition: opacity .26s ease, transform .26s ease;
}
.chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  background: var(--rose-dark);
  padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .85rem;
  flex-shrink: 0;
}
.chat-header__avatar {
  font-size: 1.5rem; width: 40px; height: 40px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.chat-header__info { flex: 1; }
.chat-header__name { font-family: var(--serif); font-size: 1rem; color: #fff; }
.chat-header__status { font-size: .7rem; color: rgba(255,255,255,.7); margin-top: .1rem; }

.chat-messages {
  flex: 1; overflow-y: auto;
  padding: 1rem;
  display: flex; flex-direction: column; gap: .6rem;
  scroll-behavior: smooth;
}
.chat-msg { display: flex; }
.chat-msg--bot  { justify-content: flex-start; }
.chat-msg--user { justify-content: flex-end; }
.chat-bubble {
  max-width: 84%;
  padding: .6rem .9rem;
  border-radius: 14px;
  font-size: .875rem;
  line-height: 1.55;
}
.chat-msg--bot  .chat-bubble { background: var(--section); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg--user .chat-bubble { background: var(--rose-dark); color: #fff; border-bottom-right-radius: 4px; }

.chat-qr-wrap {
  padding: .35rem .75rem .55rem;
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.chat-qr-btn {
  background: #fff;
  border: 1.5px solid var(--rose);
  color: var(--rose-dark);
  font-family: var(--sans);
  font-size: .74rem; font-weight: 500;
  padding: .32rem .72rem;
  border-radius: 20px; cursor: pointer;
  transition: var(--ease);
}
.chat-qr-btn:hover { background: var(--rose-dark); color: #fff; border-color: var(--rose-dark); }

.chat-input-row {
  border-top: 1px solid rgba(201,164,164,.2);
  display: flex; align-items: center;
  padding: .6rem .75rem; gap: .5rem;
  flex-shrink: 0;
}
#chat-input {
  flex: 1; border: none;
  background: var(--section);
  border-radius: 20px;
  padding: .5rem .9rem;
  font-family: var(--sans); font-size: .875rem;
  color: var(--text); outline: none;
}
#chat-input::placeholder { color: var(--muted); }
#chat-input:focus { box-shadow: 0 0 0 2px var(--rose-light); }
#chat-send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--rose-dark); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: var(--ease); flex-shrink: 0;
}
#chat-send:hover { background: var(--text); }
#chat-send svg { width: 15px; }

@media (max-width: 400px) {
  .chat-window { width: calc(100vw - 3rem); }
}

/* =============================================
   THEMEN-NAVIGATION (3 Karten)
   ============================================= */
.topics {
  padding: 5rem 0 6rem;
  background: var(--cream);
}

.topics__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.topic-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.topic-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.topic-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  display: block;
}

.topic-card:hover .topic-card__img img {
  transform: scale(1.04);
}

.topic-card__title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--rose-dark);
  line-height: 1.25;
  transition: color .25s ease;
}

.topic-card:hover .topic-card__title {
  color: var(--text);
}

.topic-card__text {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  margin-top: .65rem;
}

@media (max-width: 680px) {
  .topics__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .topic-card__img {
    aspect-ratio: 4 / 3;
  }
}

/* =============================================
   SONGTEXT / LYRICS SECTION
   ============================================= */
.lyrics-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.lyrics-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(30,20,20,.97) 0%, rgba(50,35,35,.95) 100%),
    url('../images/hero-1.jpg') center / cover no-repeat;
  background-attachment: fixed;
}

.lyrics-inner {
  position: relative;
  z-index: 1;
}

/* Header */
.lyrics-header {
  text-align: center;
  margin-bottom: 4rem;
}

.lyrics-artist {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.lyrics-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: .6rem;
  letter-spacing: .02em;
}

.lyrics-subtitle {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 400;
}

/* Strophen */
.lyrics-verse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 4rem;
  max-width: 820px;
  margin: 0 auto 3.5rem;
  border-left: 1px solid rgba(201,164,164,.2);
  padding-left: 2rem;
}

.lyrics-col p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 2;
  font-weight: 300;
}

/* Refrain */
.lyrics-chorus {
  text-align: center;
  margin: 0 auto 3.5rem;
  padding: 2.5rem 2rem;
  max-width: 680px;
  position: relative;
}

.lyrics-chorus::before,
.lyrics-chorus::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 2rem;
  opacity: .5;
}
.lyrics-chorus::after {
  margin-bottom: 0;
  margin-top: 2rem;
}

.lyrics-chorus__main {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-style: italic;
  color: #fff;
  line-height: 1.3;
  margin-bottom: .75rem;
}

.lyrics-chorus__echo {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.lyrics-chorus__lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  margin-bottom: 1.5rem;
}

.lyrics-chorus__lines span {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  font-weight: 300;
  white-space: nowrap;
}

/* Bridge */
.lyrics-bridge {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.lyrics-bridge p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* Outro / Spoken Word */
.lyrics-outro {
  max-width: 640px;
  margin: 0 auto 4rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}

.lyrics-outro p {
  font-size: .88rem;
  color: rgba(255,255,255,.4);
  line-height: 1.9;
  font-style: italic;
  font-weight: 300;
}

/* Schluss-Quote */
.lyrics-quote {
  text-align: center;
}

.lyrics-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.35;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(196,151,58,.25);
}

.lyrics-quote cite {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  font-style: normal;
}

/* Responsive */
@media (max-width: 640px) {
  .lyrics-verse {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 1.25rem;
  }
  .lyrics-chorus__lines {
    flex-direction: column;
    align-items: center;
    gap: .3rem;
  }
  .lyrics-bg { background-attachment: scroll; }
}
