:root {
  --bg: #e0cba5;
  --gold: #946b2d;
  --text: #1f1508;
  --muted: #5a4525;
  --border: rgba(148, 107, 45, 0.25);
  --surface: #ebdab8;
  --shadow: 0 18px 40px rgba(148, 107, 45, 0.12);
  --radius: 18px;
  --gold-gradient: linear-gradient(135deg, #b08035, #946b2d);
  --card-bg: linear-gradient(135deg, rgba(240, 225, 195, 0.95), rgba(224, 203, 165, 0.95));
  --body-gradient: linear-gradient(180deg, rgba(235, 218, 184, 0.8), rgba(224, 203, 165, 0.98));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.55), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.4), transparent 38%),
    var(--body-gradient),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.4s ease, color 0.3s ease;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--gold);
  margin: 0 0 0.4em;
  line-height: 1.2;
}

p {
  margin: 0 0 1em;
  color: var(--text);
}

a {
  color: var(--gold);
}

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

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 24px;
}

.section,
.hero {
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  padding: 20px;
}

.section-header {
  max-width: 840px;
  margin-bottom: 24px;
}

.section-header h2 {
  margin-bottom: 0.35em;
}

.lede {
  color: var(--muted);
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.3em;
}

.lead {
  font-size: 1.1rem;
  max-width: 720px;
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--gold);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(224, 203, 165, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--gold);
}

.logo-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(26, 16, 7, 0.15), rgba(26, 16, 7, 0.04));
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  display: grid;
  place-items: center;
}

.logo-mark .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(26, 16, 7, 0.12);
}

.main-nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(26, 16, 7, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  margin-top: 28px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding: 32px 20px 0;
}

.hero-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.hero-title {
  display: block;
  font-size: 0.45em;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.4em;
}

.hero-tagline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 400;
  color: var(--gold);
  opacity: 0.85;
  margin: 0 0 0.5em;
  line-height: 1.4;
}

.hero-image {
  height: 100%;
  max-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(148, 107, 45, 0.26);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 14px;
  color: var(--muted);
}

.hero-meta div {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, rgba(148, 107, 45, 0.08), rgba(148, 107, 45, 0.16));
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: var(--gold-gradient);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(148, 107, 45, 0.28);
}

.button.ghost {
  background: rgba(148, 107, 45, 0.08);
}

.button.small {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.button.block {
  width: 100%;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(26, 16, 7, 0.16);
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}


.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px 22px;
  box-shadow: var(--shadow);
}

.card.card-with-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  margin: 0;
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card.card-with-image:hover .card-image img {
  transform: scale(1.05);
}

.card-number {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(148, 107, 45, 0.9), rgba(148, 107, 45, 0.75));
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.card-content {
  padding: 16px 18px 20px;
}

.card .icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--gold-gradient);
  box-shadow: 0 10px 24px rgba(148, 107, 45, 0.25);
}

/* Bildergalerie */
.image-gallery {
  padding: 40px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 200px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item-large img {
  min-height: 100%;
}

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: start;
}

.card.highlight {
  background: #fff3d6;
  border: 1px solid rgba(26, 16, 7, 0.14);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: rgba(26, 16, 7, 0.08);
  color: var(--gold);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.list {
  padding: 0;
  margin: 0 0 1em 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li {
  padding-left: 18px;
  position: relative;
}

.list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.list.compact {
  gap: 6px;
}

.contact-inline {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-weight: 600;
}

.strong-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

.muted {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.region-section {
  position: relative;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 32px 40px;
  overflow: hidden;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.region-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 450px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 80%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 20%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 80%, transparent 100%);
}

.region-section .section-header {
  position: relative;
  z-index: 1;
  max-width: 60%;
}

.region-card {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(235, 218, 184, 0.75);
  backdrop-filter: blur(6px);
}

@media (max-width: 768px) {
  .region-section {
    padding: 24px;
  }

  .region-section .section-header {
    max-width: 100%;
  }

  .region-bg {
    width: 70%;
    right: -10%;
    opacity: 0.1;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
  }
}

.muted-text {
  color: var(--muted);
}

.grid.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  box-shadow: var(--shadow);
}

.quote blockquote {
  margin: 0 0 10px;
  color: var(--muted);
}

.quote figcaption {
  font-weight: 700;
  color: var(--gold);
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--surface);
}

.faq-list details + details {
  margin-top: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  color: var(--gold);
  margin-bottom: 1em;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  color: var(--gold);
  margin-bottom: 0.8em;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

label {
  font-weight: 700;
  color: var(--gold);
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(148, 107, 45, 0.12);
}

input::placeholder,
textarea::placeholder {
  color: rgba(59, 42, 18, 0.5);
}

textarea {
  resize: vertical;
}

.field.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-hint {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1em;
}

.form-hint a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  min-height: 24px;
  font-weight: 700;
  color: var(--gold);
}

.contact-card .note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(148, 107, 45, 0.08), rgba(148, 107, 45, 0.04));
  border: 1px solid rgba(148, 107, 45, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.legal {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
}

.legal h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5em;
}

.legal h3 {
  color: var(--gold);
  margin-top: 1.2em;
  margin-bottom: 0.4em;
  font-size: 1.1rem;
}

.legal p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-page {
  padding: 40px 24px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.legal-page .legal {
  margin-top: 20px;
}

.legal-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stand {
  color: var(--muted);
  font-style: italic;
}

.site-footer {
  margin: 60px auto 40px;
  max-width: 1180px;
  border-top: 1px solid var(--border);
  padding: 16px 20px 0;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: -200px;
  transform: translateX(-50%);
  width: min(1100px, 92%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -10px 34px rgba(0, 0, 0, 0.12);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: bottom 0.4s ease;
  z-index: 30;
}

.cookie-banner.visible {
  bottom: 0;
}

.cookie-text {
  color: var(--muted);
}

@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    right: 16px;
    top: 68px;
    background: rgba(235, 218, 184, 0.95);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .two-col,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
  }
}

@media (max-width: 960px) {
  .grid.cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid.cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

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

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item img {
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  main {
    padding: 16px;
    gap: 48px;
  }

  .hero {
    padding-top: 12px;
  }

  .section {
    padding: 10px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: span 1;
  }

  .gallery-item img {
    min-height: 220px;
  }

  .card-image {
    height: 140px;
  }
}
