:root {
  --wald-dunkel: #1a2615;
  --wald-mittel: #2d4a1e;
  --wald-hell: #4a7a32;
  --gold: #c8962a;
  --creme: #f5f0e8;
  --text-dunkel: #1a1a1a;
  --weiss: #ffffff;
  --grau: #6e6e6e;
  --border: rgba(26, 38, 21, 0.12);
  --shadow: 0 12px 32px rgba(26, 38, 21, 0.14);
  --radius: 18px;
  --nav-height: 78px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-dunkel);
  background: var(--creme);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1, h2, h3, .brand-name {
  font-family: Georgia, "Times New Roman", Times, serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  color: var(--weiss);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  color: var(--wald-dunkel);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  color: var(--wald-dunkel);
  margin-bottom: 0.55rem;
}

p {
  margin-bottom: 1rem;
}

.subheadline {
  font-size: 1.08rem;
  color: rgba(26, 26, 26, 0.82);
  max-width: 70ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 38, 21, 0.08);
}

.nav {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-size: 1.18rem;
  color: var(--wald-dunkel);
  font-weight: 700;
}

.brand-sub {
  font-size: 0.82rem;
  color: var(--wald-mittel);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(26, 38, 21, 0.15);
  border-radius: 12px;
  background: var(--weiss);
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--wald-dunkel);
  margin: 0 auto;
  transition: 0.3s ease;
}

.nav-links {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 1rem;
  left: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--weiss);
  border: 1px solid rgba(26, 38, 21, 0.1);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.nav-links a {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: var(--wald-dunkel);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(74, 122, 50, 0.08);
}

.nav-links.open {
  display: flex;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--weiss);
  padding-top: calc(var(--nav-height) + 1rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 38, 21, 0.88) 0%, rgba(26, 38, 21, 0.45) 45%, rgba(26, 38, 21, 0.72) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 780px;
  padding: 2rem 0 3rem;
}

.hero-claim {
  margin-top: 1rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255, 255, 255, 0.94);
}

.hero-subline {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--wald-dunkel);
  box-shadow: 0 10px 30px rgba(200, 150, 42, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.intro-text {
  max-width: 780px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.products-layout,
.about-layout,
.hours-layout,
.contact-layout {
  display: grid;
  gap: 1.5rem;
}

.image-card,
.card,
.faq-item,
.map-placeholder {
  background: var(--weiss);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card-content,
.card-content {
  padding: 1.2rem;
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-card {
  background: var(--weiss);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.product-card p {
  margin-bottom: 0;
  color: rgba(26, 26, 26, 0.82);
}

.highlight-band {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--wald-dunkel), var(--wald-mittel));
  color: var(--weiss);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.highlight-band strong {
  color: #f6d98b;
}

.hours-card,
.contact-card {
  background: var(--weiss);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hours-list {
  display: grid;
  gap: 0.9rem;
}

.hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(26, 38, 21, 0.08);
}

.hours-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-item strong {
  color: var(--wald-dunkel);
}

.address-box {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  background: rgba(74, 122, 50, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
}

.map-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border: 2px dashed rgba(26, 26, 26, 0.22);
  box-shadow: none;
  text-align: center;
  color: var(--grau);
  background: #faf8f4;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list a {
  color: var(--wald-mittel);
  font-weight: 700;
  word-break: break-word;
}

.contact-note {
  margin-top: 1rem;
  color: rgba(26, 26, 26, 0.8);
}

.faq-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.faq-item {
  padding: 1.3rem;
}

.faq-item h3 {
  margin-bottom: 0.7rem;
  color: var(--wald-dunkel);
}

.site-footer {
  background: var(--wald-dunkel);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #f1d48a;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
}

#produkte {
  background: linear-gradient(180deg, var(--creme) 0%, #f9f5ee 100%);
}

#ueber {
  background: #fffdf9;
}

#oeffnungszeiten {
  background: linear-gradient(180deg, #f8f4ec 0%, #f3eee5 100%);
}

#kontakt {
  background: #fffdf9;
}

.anchor-offset {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

@media (min-width: 700px) {
  .products-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .about-layout,
  .hours-layout,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-links a {
    padding: 0.7rem 1rem;
  }

  .hero-content {
    padding-bottom: 4rem;
  }
}

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

  * {
    transition: none !important;
  }
}