:root {
  --bg: #F8F6F1;
  --bg-alt: #EFECE5;
  --bg-dark: #E8E4DB;
  --text: #2C2C2C;
  --text-muted: #6B6B70;
  --text-light: #9E9EA3;
  --accent: #2C4A6E;
  --accent-dark: #1E3550;
  --accent-soft: rgba(44,74,110,0.07);
  --accent-border: rgba(44,74,110,0.15);
  --border: rgba(44,44,44,0.1);
  --card: #FFFFFF;
  --shadow: 0 2px 24px rgba(44,44,44,0.08);
  --shadow-lg: 0 8px 48px rgba(44,44,44,0.12);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; align-items: center;
  height: 64px;
  background: rgba(248,246,241,0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%; max-width: 1100px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 40px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}
.wordmark-img { display: block; }
.wordmark-img--inverted { filter: brightness(0) invert(1); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 40px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-alt); }
.nav-links .btn-nav {
  background: var(--text);
  color: var(--bg) !important;
  padding: 8px 18px;
}
.nav-links .btn-nav:hover { background: var(--accent); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(44,74,110,0.28);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(44,74,110,0.38);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: rgba(44,44,44,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 10px 0;
}
.btn-ghost:hover { text-decoration: underline; }

/* ── FOOTER ── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  padding: 48px 40px;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  list-style: none;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 13px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── PROSE (for Privacy & Impressum) ── */
.prose-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}
.prose-page h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.prose-page .subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.prose-page h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 40px 0 12px;
  color: var(--text);
}
.prose-page p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.prose-page ul {
  margin: 0 0 16px 20px;
  color: var(--text-muted);
  line-height: 1.75;
}
.prose-page ul li { margin-bottom: 6px; }
.prose-page a { color: var(--accent); text-decoration: none; }
.prose-page a:hover { text-decoration: underline; }
.prose-page strong { color: var(--text); font-weight: 600; }
.prose-page .info-box {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 32px 0;
}
.prose-page .info-box p { color: var(--text); margin: 0; font-size: 15px; }

@media (max-width: 680px) {
  .nav-inner { padding: 0 20px; }
  .nav-links { gap: 4px; }
  .nav-links a { padding: 6px 10px; font-size: 13px; }
  .prose-page { padding: 100px 24px 64px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── NOTIFY / SIGNUP ── */
.notify-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 56px auto 36px;
}
.notify-block {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.notify-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--text);
  margin: 0 0 10px 0;
}
.notify-sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px 0;
}
.notify-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: left;
}
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.notify-form input[type="email"] {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  padding: 14px 16px;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.notify-form input[type="email"]::placeholder { color: var(--text-light); }
.notify-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.notify-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.notify-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  cursor: pointer;
}
.notify-consent input[type="checkbox"] {
  margin: 2px 0 0 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}
.notify-consent a { color: var(--accent); text-decoration: none; }
.notify-consent a:hover { text-decoration: underline; }
.notify-submit { width: 100%; }
.notify-success {
  text-align: center;
  padding: 8px 0;
}
.notify-success h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px 0;
}
.notify-success p {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.notify-error {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(255, 71, 71, 0.08);
  border: 1px solid rgba(255, 71, 71, 0.25);
  border-radius: var(--radius-sm);
}
.notify-error p {
  color: #b03030;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.notify-error p a { color: #b03030; }

@media (max-width: 480px) {
  .notify-divider { margin: 48px auto 32px; }
}
