@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@500;700&family=Inter:wght@400;600&display=swap');

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

:root {
  --forest: #16281F;
  --pine: #24402F;
  --clay: #C2673F;
  --linen: #F1EBDD;
  --sage: #A8B79E;
  --brass: #B08D57;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --section-pad: clamp(3.5rem, 7vw, 8rem);
  --max-width: 74rem;
  --transition: 0.35s ease;
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: currentColor; text-decoration: underline; text-underline-offset: 0.2em; }
a:hover { opacity: 0.85; }

.surface-forest { background-color: var(--forest); color: var(--linen); }
.surface-linen { background-color: var(--linen); color: var(--forest); }
.surface-pine { background-color: var(--pine); color: var(--linen); }
.surface-clay { background-color: var(--clay); color: var(--linen); }

.container { width: min(100% - 2.5rem, var(--max-width)); margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 5.5vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); font-weight: 500; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  transition: filter var(--transition), box-shadow var(--transition);
}

.btn:hover { filter: brightness(1.08); box-shadow: 0 4px 20px rgba(0,0,0,0.12); opacity: 1; }
.btn-primary { background-color: var(--clay); color: var(--linen); }
.btn-secondary { background: transparent; color: inherit; border: 1px solid currentColor; border-radius: 999px; }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: transparent;
  color: var(--linen);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background-color: var(--linen);
  color: var(--forest);
  box-shadow: 0 1px 0 rgba(176,141,87,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.logo span { color: var(--clay); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid currentColor;
  color: inherit;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  border-radius: 4px;
}

.main-nav ul { display: flex; gap: 2rem; list-style: none; }
.main-nav a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.main-nav a.is-active { color: var(--clay); }

/* Hero Schaufenster */
.hero-schaufenster {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-schaufenster .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-schaufenster .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,40,31,0.88) 0%, rgba(22,40,31,0.55) 45%, rgba(22,40,31,0.35) 100%);
  z-index: 1;
}

.hero-schaufenster .hero-inner {
  position: relative;
  z-index: 2;
  padding: 7rem 0 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-badge {
  position: absolute;
  top: 6rem;
  right: 0;
  background: var(--linen);
  color: var(--forest);
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge svg { width: 16px; height: 16px; fill: var(--brass); }

.hero-content-block { max-width: 38rem; padding-bottom: 2rem; }

.hero-content-block h1 em { color: var(--clay); font-style: normal; }

.hero-sub {
  margin-top: 1.25rem;
  max-width: 33.75rem;
  opacity: 0.85;
  font-size: 1.125rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.hero-trust {
  padding: 0.875rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass);
  border-top: 1px solid rgba(176,141,87,0.45);
}

/* Sections */
.section { padding: var(--section-pad) 0; }
.section-header { margin-bottom: 3rem; max-width: 40rem; }

.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--clay);
  line-height: 1;
}

.stat-label { font-size: 0.875rem; margin-top: 0.5rem; opacity: 0.85; }

.stage-card {
  padding: 2rem 0;
  border-top: 1px solid var(--brass);
}

.pill-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.pill-tag {
  display: inline-block;
  padding: 0.5rem 1.125rem;
  background: var(--clay);
  color: var(--linen);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.photo-frame img { border-radius: 4px; }

.menu-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(176,141,87,0.3);
}

.menu-items { margin-top: 1.5rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px dotted rgba(22,40,31,0.15);
}

.menu-item span:last-child { white-space: nowrap; font-weight: 600; }

.disclaimer {
  font-size: 0.875rem;
  opacity: 0.85;
  padding: 1.5rem;
  border-left: 2px solid var(--clay);
  margin-top: 2rem;
}

.page-hero { padding: 8rem 0 4rem; }
.page-hero h1 { margin-top: 1rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.375rem; font-size: 0.9375rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--sage);
  background: #fff;
  color: var(--forest);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 4px;
}
.form-group textarea { min-height: 8rem; resize: vertical; }
.checkbox-group { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9375rem; }
.checkbox-group input { width: auto; margin-top: 0.25rem; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.faq-list details { border-bottom: 1px solid rgba(176,141,87,0.25); padding: 1.5rem 0; }
.faq-list summary { font-weight: 600; cursor: pointer; font-size: 1.0625rem; }
.faq-list p, .faq-list ul { margin-top: 1rem; opacity: 0.92; }

.legal-prose h2 { margin: 2.5rem 0 1rem; font-size: 1.5rem; }
.legal-prose h3 { margin: 1.5rem 0 0.75rem; font-size: 1.125rem; }
.legal-prose p, .legal-prose ul { margin-bottom: 1rem; }
.legal-prose ul { padding-left: 1.5rem; }

.site-footer { padding: 4rem 0 2rem; font-size: 0.9375rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1rem; }
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a { text-decoration: none; font-size: 0.875rem; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(176,141,87,0.3); font-size: 0.8125rem; opacity: 0.75; }
.footer-disclaimer { margin-top: 1.5rem; font-size: 0.8125rem; opacity: 0.8; line-height: 1.6; }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-text { flex: 1; min-width: 280px; font-size: 0.9375rem; }
.cookie-text a { color: var(--clay); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cookie-actions button {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 999px;
}
.cookie-actions .btn-accept-all { background: var(--clay); color: var(--linen); border-color: var(--clay); }

.js .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal:not(.is-visible) { opacity: 0; transform: translateY(16px); }
.reveal.is-visible, .no-js .reveal { opacity: 1; transform: none; }

.cta-band { text-align: center; padding: var(--section-pad) 0; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 36rem; margin: 0 auto 2rem; opacity: 0.9; }

.error-page { min-height: 70vh; display: flex; align-items: center; text-align: center; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 1.5rem; background: var(--linen); color: var(--forest); }
  .main-nav.is-open { display: block; }
  .main-nav ul { flex-direction: column; gap: 1rem; }
  .hero-schaufenster, .hero-schaufenster .hero-inner { min-height: 82vh; }
  .hero-badge { top: 5rem; right: 1rem; }
}

@media (max-width: 600px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}
