/* =====================================================================
   Lovelin Events – Stylesheet
   Reines, modernes CSS (keine Build-Tools nötig).
   Struktur:
     1. Design-Tokens (CSS-Variablen)
     2. Reset & Basis
     3. Layout-Helfer & wiederkehrende Bausteine
     4. Sektionen (Header, Hero, Über, Ablauf, …)
     5. Responsive (Media Queries)
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. DESIGN-TOKENS
   --------------------------------------------------------------------- */
:root {
  /* Farben */
  --ink:        #2e2a26;   /* Haupt-Dunkelton (Text, dunkle Flächen) */
  --ink-soft:   #34302a;   /* Karte auf dunklem Grund */
  --cream:      #fbfaf8;   /* Seiten-Hintergrund */
  --cream-2:    #f4f1ea;   /* abgesetzte Sektionen */
  --paper:      #f6f2ea;   /* helle Karte / Akzentfläche */
  --text:       #5b554d;   /* Fließtext */
  --muted:      #a89a86;   /* Eyebrows, Captions */
  --gold:       #b6a78f;   /* Akzent auf dunklem Grund */
  --line:       #e7e2d9;   /* feine Linien / Bildrahmen */
  --line-2:     #ece7de;   /* Kartenrand hell */
  --line-3:     #e3ddd2;   /* FAQ-Trenner */

  /* Schrift */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Maße */
  --maxw:       1080px;
  --header-h:   90px;
  --radius:     1px;
}

/* ---------------------------------------------------------------------
   2. RESET & BASIS
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--ink); color: var(--cream); }

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

/* ---------------------------------------------------------------------
   3. LAYOUT-HELFER & BAUSTEINE
   --------------------------------------------------------------------- */
.container { max-width: var(--maxw); margin-inline: auto; }

.section {
  padding: 80px 32px;
  scroll-margin-top: var(--header-h);
}
.section--cream { background: var(--cream-2); }
.section--dark  { background: var(--ink); }

.section-head { text-align: center; margin-bottom: 60px; }

.eyebrow {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--gold  { color: var(--gold); }
.eyebrow--light { color: #f0e9dd; }

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.12;
  color: var(--ink);
  margin: 16px 0 0;
}
.section-title--light { color: var(--paper); }

.prose {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 18px;
}
.prose:last-child { margin-bottom: 0; }

/* Buttons -------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--cream);
  background: var(--ink);
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { opacity: .82; }
.btn--lg     { font-size: 13px; letter-spacing: .18em; padding: 16px 38px; }
.btn--block  { width: 100%; padding: 16px; font-size: 13px; letter-spacing: .18em; }
.btn--outline {
  color: var(--paper);
  background: transparent;
  border: 1px solid #6a6258;
  padding: 14px;
  letter-spacing: .18em;
}
.btn--solid  { padding: 14px; letter-spacing: .18em; }

/* ---------------------------------------------------------------------
   4. HEADER
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, .88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-2);
}
.site-header__inner {
  max-width: 1180px;
  margin-inline: auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 58px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  color: #7a7165;
  transition: color .2s ease;
}
.nav__link:hover { color: var(--ink); }

/* ---------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------- */
.hero { padding: 24px 32px 80px; text-align: center; }
.hero__inner { max-width: 920px; margin-inline: auto; }
.hero .eyebrow { margin-bottom: 10px; }
.hero__logo {
  height: clamp(172px, 19vw, 248px);
  width: auto;
  margin: 0 auto;
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 20px 0 0;
}
.hero__lead {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  max-width: 600px;
  margin: 24px auto 0;
}
.hero__cta { margin-top: 36px; }

/* ---------------------------------------------------------------------
   ÜBER LINDA
   --------------------------------------------------------------------- */
.about__grid {
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: center;
}
.about__photo { margin: 0; }
.about__photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 35%;
  border: 1px solid var(--line);
}
.credit {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted);
  margin-top: 9px;
}
.about__body .section-title { margin-top: 18px; }
.rule { width: 54px; height: 1px; background: #cfc7ba; margin: 28px 0; }
.signature {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--ink);
  margin-top: 18px;
}

.about__more { max-width: var(--maxw); margin: 72px auto 0; }
.about__more .section-head { margin-bottom: 54px; }
.section-subtitle {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.18;
  color: var(--ink);
  max-width: 680px;
  margin: 14px auto 0;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.fact { text-align: center; }
.fact__icon { display: flex; justify-content: center; margin-bottom: 20px; }
.fact p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

/* ---------------------------------------------------------------------
   ABLAUF (geschwungener Weg)
   --------------------------------------------------------------------- */
.path {
  position: relative;
  max-width: 1000px;
  margin-inline: auto;
  height: 540px;
}
.path__line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.station {
  position: absolute;
  width: 212px;
  transform: translateX(-50%);
  text-align: center;
}
.station--1 { left: 12.5%; top: 66px; }
.station--2 { left: 37.5%; top: 264px; }
.station--3 { left: 62.5%; top: 66px; }
.station--4 { left: 87.5%; top: 264px; }
.station__medallion {
  width: 104px;
  height: 104px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.station__medallion img { object-fit: contain; }
.station__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 18px 0 10px;
}
.station p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 auto;
  max-width: 196px;
}

/* ---------------------------------------------------------------------
   BANNER
   --------------------------------------------------------------------- */
.banner { position: relative; overflow: hidden; }
.banner img {
  width: 100%;
  height: clamp(340px, 46vw, 560px);
  object-fit: cover;
  object-position: center 44%;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,42,38,.28), rgba(46,42,38,.38));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 32px;
}
.banner__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.16;
  color: var(--cream);
  max-width: 760px;
  margin-top: 18px;
  text-shadow: 0 1px 24px rgba(0,0,0,.25);
}

/* ---------------------------------------------------------------------
   MOMENTE
   --------------------------------------------------------------------- */
.collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 230px 230px;
  gap: 16px;
  margin-bottom: 16px;
}
.collage figure { margin: 0; display: flex; flex-direction: column; }
.collage img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  border: 1px solid var(--line);
}
.collage figcaption {
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--muted);
  margin-top: 6px;
  min-height: 14px;
}
.collage__tall { grid-column: 1; grid-row: 1 / span 2; }
.collage img.is-tall { object-position: center 30%; }

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.quote {
  background: var(--cream-2);
  border: 1px solid var(--line-2);
  padding: 36px 30px;
}
.quote__mark {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: .6;
  color: #cfc7ba;
  height: 30px;
}
.quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: #3a352f;
  margin: 0 0 22px;
}
.quote__author {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8a8074;
}

/* ---------------------------------------------------------------------
   PAKETE & PREISE
   --------------------------------------------------------------------- */
.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 880px;
  margin-inline: auto;
}
.plan {
  background: var(--ink-soft);
  border: 1px solid #4a443c;
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
}
.plan--featured { background: var(--paper); border-color: var(--paper); position: relative; }
.plan__tag {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.plan--featured .plan__tag { color: var(--muted); }
.plan__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 34px;
  color: var(--paper);
  margin: 10px 0 4px;
}
.plan__price {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--paper);
}
.plan--featured .plan__name,
.plan--featured .plan__price { color: var(--ink); }
.plan__rule { height: 1px; background: #4a443c; margin: 24px 0; }
.plan--featured .plan__rule { background: #ddd5c8; }
.plan p {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.85;
  color: #d8d0c4;
  margin: 0;
  flex: 1;
}
.plan--featured p { color: #4a443c; }
.plan .btn { margin-top: 30px; }
.plan__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--muted);
  color: #fff;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.plans-note {
  text-align: center;
  font-weight: 300;
  font-size: 13px;
  color: #9a8f7d;
  margin: 34px 0 0;
}

/* ---------------------------------------------------------------------
   FAQ  (native <details> – ohne JavaScript)
   --------------------------------------------------------------------- */
.faq { max-width: 840px; margin-inline: auto; border-bottom: 1px solid var(--line-3); }
.faq-item { border-top: 1px solid var(--line-3); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 23px;
  color: var(--ink);
}
.faq-icon {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 300;
  color: var(--muted);
  flex: none;
  line-height: 1;
}
.faq-icon::before { content: "+"; }
.faq-item[open] .faq-icon::before { content: "\2013"; } /* – */
.faq-a {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  margin: 0;
  padding: 0 60px 30px 0;
  max-width: 720px;
}

/* ---------------------------------------------------------------------
   KONTAKT
   --------------------------------------------------------------------- */
.contact {
  max-width: 1040px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact__intro .section-title { margin-top: 16px; }
.contact__details { display: flex; flex-direction: column; gap: 18px; }
.contact__label {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.contact__value {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink);
}
.contact__value--multi { line-height: 1.35; }
.contact__value a { text-decoration: none; color: inherit; }

.contact__card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 40px;
}
.form { display: flex; flex-direction: column; gap: 22px; }
.field { display: block; }
.field > span {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #8a8074;
}
.field input,
.field textarea {
  width: 100%;
  margin-top: 9px;
  padding: 13px 14px;
  border: 1px solid #ddd6ca;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: var(--radius);
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--ink); }

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
}
.field--check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: var(--ink);
  cursor: pointer;
}
.field--check span {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}
.field--check a { color: var(--ink); text-decoration: underline; }

.contact__thanks { padding: 40px 10px; text-align: center; }
.contact__thanks img { height: 120px; opacity: .6; margin: 0 auto 18px; }
.thanks-title {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 10px;
}
.contact__thanks p {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.site-footer { background: var(--ink); padding: 64px 32px 40px; }
.site-footer__top {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo { max-width: 300px; }
.footer-logo img { height: 120px; width: auto; }
.footer-nav { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-link {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #cbc2b4;
  transition: color .2s ease;
}
.footer-link:hover { color: #fff; }
.site-footer__bottom {
  max-width: var(--maxw);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #46403a;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.copyright { font-size: 12px; line-height: 1.7; color: #8a8074; max-width: 560px; }
.legal { display: flex; gap: 24px; }
.legal a { font-size: 12px; color: #8a8074; text-decoration: none; }
.legal a:hover { color: #cbc2b4; }

/* Utility */
[hidden] { display: none !important; }

.cookie-banner {
  position: fixed;
  bottom: 78px;
  right: 24px;
  z-index: 9999;
  max-width: 360px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(46, 42, 38, 0.12);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  font-family: var(--font-sans);
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.4;
}

.cookie-banner__description {
  font-size: 12px;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner__description a {
  color: var(--muted);
  text-decoration: underline;
}

.cookie-banner__description a:hover {
  color: var(--gold);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 8px 16px;
  font-size: 13px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-weight: 500;
}

.cookie-banner__btn--accept {
  background-color: var(--ink);
  color: var(--cream);
}

.cookie-banner__btn--accept:hover {
  background-color: var(--text);
}

.cookie-banner__btn--reject {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.cookie-banner__btn--reject:hover {
  background-color: var(--paper);
  border-color: var(--muted);
}

.cookie-settings-toggle {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  border: 1px solid var(--line);
  background: rgba(251, 250, 248, 0.96);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-family: var(--font-sans);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(46, 42, 38, 0.12);
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.cookie-settings-toggle:hover {
  background: var(--paper);
}

.cookie-settings-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cookie-banner.is-visible + .cookie-settings-toggle {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}

/* ---------------------------------------------------------------------
   5. RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 860px) {
  .nav { gap: 16px; }
  .nav__link { display: none; }
}

@media (max-width: 760px) {
  .about__grid { grid-template-columns: 1fr; gap: 34px; }
  .about__photo img { height: 440px; }
  .facts { grid-template-columns: 1fr; gap: 36px; }

  .path { height: auto; }
  .path__line { display: none; }
  .station {
    position: static;
    width: 100%;
    max-width: 360px;
    transform: none;
    margin: 0 auto 44px;
  }
  .station:last-child { margin-bottom: 0; }
  .station p { max-width: 320px; }

  .collage {
    display: block;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 0;
  }
  .collage figure {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
    margin: 0 0 16px;
  }
  .collage figure:last-child { margin-bottom: 0; }
  .collage__tall { grid-column: auto !important; grid-row: auto !important; }
  .collage img,
  .collage__tall img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    flex: none;
  }

  .quotes { grid-template-columns: 1fr; gap: 16px; }
  .plans { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 40px; }

  /* Cookie Banner responsive */
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 72px;
    max-width: 100%;
  }
  .cookie-settings-toggle {
    right: 16px;
    bottom: 16px;
    font-size: 11px;
    padding: 8px 12px;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
  .cookie-banner__btn {
    flex: 1;
    font-size: 13px;
    padding: 10px 12px;
  }
}
