/* ==================== TOKENS ==================== */
:root {
  --bg:        #f4ede0;
  --bg-soft:   #ede4d3;
  --bg-deep:   #e5dac3;
  --ink:       #2e2e24;
  --ink-soft:  #4a4a3e;
  --ink-mute:  #636059;
  --sage:      #c9d5b5;
  --sage-deep: #8a9b7a;
  --moss:      #5d6b4f;
  --terra:     #e8c9b0;
  --terra-deep:#c9a68a;
  --line:      rgba(58, 58, 48, 0.12);
  --line-soft: rgba(58, 58, 48, 0.06);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Nunito Sans', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==================== BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--sage-deep); color: var(--bg); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}
em { font-style: italic; color: var(--moss); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ==================== NAV ==================== */
nav.top {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 22px 40px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  border-bottom: 1px solid var(--line-soft);
}
.logo {
  font-family: var(--f-display);
  font-size: 22px;
  font-style: italic;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}
nav.top ul {
  list-style: none; display: flex; gap: 36px;
  font-size: 14px; color: var(--ink-soft);
  /* nimmt den Raum zwischen Logo und rechten Elementen ein und zentriert
     die Punkte darin — ohne Überlappung mit Flagge/CTA */
  flex: 1; justify-content: center;
}
nav.top ul a { transition: color 0.3s; }
nav.top ul a:hover,
nav.top ul a.active { color: var(--moss); }
nav.top .book-cta {
  font-family: var(--f-body);
  font-size: 13px;
  padding: 10px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
nav.top .book-cta:hover { background: var(--ink); color: var(--bg); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
  position: relative; z-index: 1000;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
@media (max-width: 860px) {
  nav.top {
    padding: 16px 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--bg);
  }
  .nav-toggle { display: flex; }
  nav.top ul {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    transform: none;
    background: var(--bg);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 32px; font-size: 22px;
    z-index: 999; list-style: none;
  }
  nav.top ul.open { display: flex; }
  nav.top .book-cta { display: none; }
  .container { padding: 0 20px; }
  /* hamburger → X when active */
  .nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  /* shared section padding reductions */
  .page-hero { padding: 110px 0 50px; }
  .legal-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-contact { gap: 8px 20px; }
  .btn { padding: 14px 24px; font-size: 13px; }
}

/* ==================== WHATSAPP ==================== */
.wa-nav { display: none; }

.wa-fab {
  display: none;
  position: fixed; bottom: 22px; right: 20px;
  z-index: 500;
  width: 52px; height: 52px;
  background: var(--ink);
  border-radius: 50%;
  align-items: center; justify-content: center;
  color: var(--bg);
  box-shadow: 0 4px 18px rgba(46,46,36,0.22);
  transition: transform 0.2s var(--ease), background 0.25s var(--ease), box-shadow 0.2s var(--ease);
}
.wa-fab:hover {
  background: var(--moss-deep, var(--sage-deep));
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(46,46,36,0.28);
}

@media (max-width: 860px) {
  .wa-fab { display: flex; }
}

/* ==================== SCROLL REVEAL ==================== */
.js-reveal [data-sr] {
  opacity: 0;
  transition:
    opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-reveal [data-sr="up"]    { transform: translateY(34px); }
.js-reveal [data-sr="left"]  { transform: translateX(-28px); }
.js-reveal [data-sr="right"] { transform: translateX(28px); }
.js-reveal [data-sr="scale"] { transform: scale(0.95) translateY(20px); }
.js-reveal [data-sr].sr-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-sr] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--sage) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 16px; display: block; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
}
.page-hero .lead {
  font-size: 18px; color: var(--ink-soft);
  max-width: 600px; margin: 0 auto;
  line-height: 1.7;
}

/* ==================== PROSE ==================== */
.prose-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--line-soft);
}
.prose-section:last-of-type { border-bottom: none; }

.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 28px;
  margin-top: 48px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  margin-top: 36px;
  color: var(--moss);
}
.prose p {
  margin-bottom: 20px;
  line-height: 1.75;
}
.prose p:last-child { margin-bottom: 0; }
.prose ul {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.prose ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  line-height: 1.6;
}
.prose ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--ink-mute);
}
.prose .subhead {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--moss);
  margin-bottom: 8px; margin-top: 40px;
  display: block;
}
.prose strong { font-weight: 600; }

/* ==================== PULL QUOTE ==================== */
.pull-quote {
  border-left: 3px solid var(--moss);
  padding: 20px 28px;
  margin: 40px 0;
  background: var(--bg-soft);
}
.pull-quote p {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--moss);
  margin-bottom: 0 !important;
  line-height: 1.5;
}

/* ==================== STORY CARDS ==================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
}
.story-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}
.story-card .story-name {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--moss);
  margin-bottom: 16px;
}
.story-card p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 15px;
}
.story-card p:last-child { margin-bottom: 0; }

/* ==================== CONTACT LAYOUT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-block h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 400;
}
.contact-block p, .contact-block a {
  font-size: 17px;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
.contact-block a:hover { color: var(--moss); }

.bank-block {
  margin-top: 48px;
  padding: 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto; margin-right: auto;
}
.bank-block h3 {
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--moss); margin-bottom: 16px; font-weight: 400;
}
.bank-block p { margin-bottom: 6px; font-size: 15px; color: var(--ink-soft); }
.bank-block strong { color: var(--ink); font-weight: 500; }

/* ==================== PRICING BOX ==================== */
.pricing-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px;
  margin: 40px 0;
  display: flex; gap: 32px; flex-wrap: wrap;
  align-items: flex-start;
}
.price-item {
  flex: 1; min-width: 180px;
}
.price-item .amount {
  font-family: var(--f-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--moss);
}
.price-item .label {
  font-size: 13px; color: var(--ink-soft); margin-top: 6px;
}

/* ==================== AUDIENCE GRID ==================== */
.audience-section {
  padding: 0 0 80px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  outline: 1px solid var(--line);
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 680px) {
  .audience-grid { grid-template-columns: 1fr; }
}

.audience-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s;
}
.audience-card:hover { background: var(--bg-soft); }

.audience-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0;
}

.audience-mark {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}
.audience-mark::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--moss);
  opacity: 0.5;
}

.audience-card--closing {
  grid-column: 1 / -1;
  background: var(--bg-soft);
  padding: 40px 40px;
}
.audience-card--closing:hover { background: var(--bg-deep); }
.audience-card--closing p {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
}
.audience-card--closing .audience-mark {
  color: var(--moss);
}

/* ==================== EVENT FLYER ==================== */
.flyer-section {
  padding: 60px 0;
  text-align: center;
}
.flyer-img {
  max-width: 480px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(58,58,48,0.12);
}

/* ==================== CTA STRIP ==================== */
.cta-strip {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-soft);
}
.cta-strip h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}
.cta-strip p {
  color: var(--ink-soft); max-width: 500px;
  margin: 0 auto 36px;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 32px;
  font-family: var(--f-body);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: none;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--moss); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ==================== FOOTER ==================== */
footer.site-footer {
  padding: 64px 0 44px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-brand {
  font-family: var(--f-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 36px;
}
.footer-contact {
  display: flex;
  gap: 10px 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--ink-mute);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.footer-contact-item svg { flex-shrink: 0; opacity: 0.65; transition: opacity 0.25s var(--ease); }
.footer-contact-item:hover { color: var(--moss); }
.footer-contact-item:hover svg { opacity: 1; }
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.footer-legal a {
  font-size: 11px;
  color: var(--ink-mute);
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.footer-legal a:hover { color: var(--moss); }
.footer-legal-sep { color: var(--line); font-size: 14px; line-height: 1; }
.footer-copy {
  font-size: 12px;
  color: var(--ink-mute);
  opacity: 0.7;
}
.footer-credit {
  font-size: 11px; color: var(--ink-mute); opacity: 0.45;
  margin-top: 12px; letter-spacing: 0.04em;
}
.footer-credit a { color: inherit; text-decoration: none; transition: opacity 0.25s; }
.footer-credit a:hover { opacity: 1; }

/* ==================== CUSTOM CURSOR ==================== */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }

  .cursor-dot {
    position: fixed;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--moss);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow:
      0 0 8px 4px color-mix(in oklab, var(--moss) 55%, transparent),
      0 0 22px 10px color-mix(in oklab, var(--moss) 22%, transparent);
    transition: width 0.18s var(--ease), height 0.18s var(--ease);
  }
  .cursor-dot.pressing {
    width: 14px; height: 14px;
    box-shadow:
      0 0 14px 6px color-mix(in oklab, var(--moss) 65%, transparent),
      0 0 32px 14px color-mix(in oklab, var(--moss) 28%, transparent);
  }

  .cursor-ring {
    position: fixed;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 1px solid color-mix(in oklab, var(--moss) 40%, transparent);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.28s var(--ease), height 0.28s var(--ease), border-color 0.28s;
  }
  .cursor-ring.pressing {
    width: 22px; height: 22px;
    border-color: color-mix(in oklab, var(--moss) 70%, transparent);
  }
}

/* ==================== LEGAL / IMPRESSUM ==================== */
.legal-section {
  padding: 80px 0;
}
.legal-block {
  max-width: 720px;
  margin: 0 auto;
}
.legal-block h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  margin-top: 40px;
}
.legal-block h2:first-child { margin-top: 0; }
.legal-block p { margin-bottom: 12px; color: var(--ink-soft); line-height: 1.75; }
.legal-block address { font-style: normal; line-height: 1.9; color: var(--ink-soft); }
