:root {
  --bg: #33481f;
  --panel: #4b6a32;
  --card: #f5eedc;
  --coral: #e8879c;
  --dark: #22301a;
  --line: #b9ae8e;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  background: var(--card);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: "Poppins", "Inter", Arial, sans-serif;
  margin: 0 0 0.5em;
  line-height: 1.2;
}

a {
  color: inherit;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 3px solid var(--coral);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--card);
}

.brand img {
  height: 48px;
  width: 48px;
}

.brand span {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

nav.main-nav {
  display: flex;
  gap: 28px;
}

nav.main-nav a {
  color: var(--card);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: opacity 0.2s;
}

nav.main-nav a:hover {
  opacity: 1;
  color: var(--coral);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--card);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: var(--bg);
  color: var(--card);
  padding: 64px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 380px;
}

.hero-text p.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.hero-text h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
}

.hero-text p.lead {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 480px;
}

.hero-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--coral);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(232, 135, 156, 0.4);
}

.btn-outline {
  border: 2px solid var(--card);
  color: var(--card);
  margin-left: 12px;
}

.btn-outline:hover {
  background: var(--card);
  color: var(--dark);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head p.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--panel);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--dark);
}

/* Preise */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.price-card h3 {
  font-size: 1.2rem;
  color: var(--panel);
  margin-bottom: 14px;
}

.price-card .amount {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--dark);
}

.price-card .amount .unit {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  opacity: 0.7;
}

.price-card .detail {
  margin: 10px 0 0;
  color: var(--dark);
  opacity: 0.75;
}

.price-note {
  text-align: center;
  max-width: 560px;
  margin: 32px auto 0;
  opacity: 0.75;
  font-size: 0.95rem;
}

/* Angebote */
.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
}

.offer-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.offer-card h3 {
  font-size: 1.3rem;
  color: var(--panel);
}

.offer-card p {
  margin: 0;
  color: var(--dark);
  opacity: 0.85;
}

/* About */
.about {
  background: var(--panel);
  color: var(--card);
}

.about .container {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 420px;
}

.about-text h2 {
  color: var(--card);
}

.about-image {
  flex: 1 1 280px;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 260px;
  border-radius: 50%;
  border: 6px solid var(--card);
  background: var(--card);
  padding: 10px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-grid figure.real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid figure.placeholder {
  color: var(--panel);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  opacity: 0.6;
  border-style: dashed;
}

/* Voucher teaser */
.voucher {
  background: var(--bg);
  color: var(--card);
  text-align: center;
}

.voucher h2 {
  color: var(--card);
}

.voucher p {
  max-width: 560px;
  margin: 0 auto 28px;
  opacity: 0.9;
}

/* Contact */
.contact .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  text-align: center;
}

.contact-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 20px;
}

.contact-item .label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--panel);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-item a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--card);
  padding: 32px 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

footer a {
  color: var(--coral);
  text-decoration: none;
}

/* Mobile */
@media (max-width: 780px) {
  nav.main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    transform: translateY(-150%);
    transition: transform 0.25s ease;
    border-bottom: 3px solid var(--coral);
  }

  nav.main-nav.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .about .container,
  .hero .container {
    text-align: center;
    justify-content: center;
  }

  .about-text,
  .hero-text {
    text-align: center;
  }

  .hero-text p.lead {
    margin-left: auto;
    margin-right: auto;
  }
}
