﻿:root {
  --ink: #24313a;
  --muted: #6e7675;
  --paper: #eef7f7;
  --cream: #e8efee;
  --berry: #9f765e;
  --berry-dark: #4d6170;
  --leaf: #6f836f;
  --gold: #b68b6e;
  --rose: #c9a28e;
  --white: #ffffff;
  --shadow: 0 26px 78px rgba(36, 49, 58, 0.22);
  --font-display: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(36, 49, 58, 0.84), rgba(159, 118, 94, 0.58) 48%, rgba(238, 247, 247, 0.22)),
    url("../assets/fruchtweine.jpg") center/cover;
  color: var(--white);
  position: relative;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
  font-family: var(--font-display);
  font-size: 1.18rem;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
  font-size: 1.35rem;
}

.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a {
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 900;
}
.nav-image-link {
  width: 296px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 180ms ease, filter 180ms ease;
}
.nav-image-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 116px;
  object-fit: contain;
}
.nav-image-link:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.nav-toggle { display: none; }

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
  padding: 42px 0 92px;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--gold);
  font-weight: 700;
}
h1, h2, h3 { font-family: var(--font-display); line-height: 1.04; margin: 0; letter-spacing: 0; font-weight: 700; }
h1 { font-size: clamp(3rem, 8vw, 5.7rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.hero-text {
  margin-top: 24px;
  max-width: 640px;
  font-size: 1.25rem;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.86);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
}
.button-primary { background: var(--gold); border-color: var(--gold); color: #24313a; }
.button-secondary { color: var(--white); background: rgba(238,247,247,0.14); }
.hero-visual {
  position: relative;
  align-self: center;
  padding: 0 0 112px;
}
.hero-media {
  margin: -34px 0 0;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  border: 10px solid rgba(238,247,247,0.92);
}
.hero-media img { aspect-ratio: 4 / 3; object-fit: cover; }
.visite-card {
  width: min(62%, 390px);
  position: absolute;
  right: 10%;
  bottom: 8px;
  transform: rotate(-20deg);
  border: 8px solid rgba(238,247,247,0.96);
  box-shadow: 0 18px 34px rgba(36,49,58,0.24), 0 42px 90px rgba(36,49,58,0.22);
  z-index: 2;
}

.intro-band {
  width: min(1050px, calc(100% - 32px));
  margin: -54px auto 0;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 2;
}
.stat { padding: 26px 28px; border-right: 1px solid #eadcc9; }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 1.7rem; color: var(--berry); line-height: 1.1; }
.stat span { display: block; margin-top: 6px; font-family: var(--font-body); color: var(--muted); font-size: 0.92rem; }

.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 96px 0; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 62px; align-items: start; }
.split p + p, .exchange p + p { margin-top: 16px; }
.split p, .exchange p { font-family: var(--font-body); color: var(--muted); }
.instruction-heading {
  margin-top: 30px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  color: var(--berry-dark);
}
.checklist-download {
  margin-top: 24px;
}
.instruction-list {
  margin: 18px 0 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 14px;
  font-family: var(--font-body);
  color: var(--muted);
}
.instruction-list li {
  padding-left: 6px;
}
.instruction-list strong {
  color: var(--ink);
}
.more-text { margin-top: 16px; }
.read-more-button { margin-top: 24px; cursor: pointer; }
.read-more-button:hover { filter: brightness(1.05); }
.note-panel, .contact-card, .sample-box {
  background: var(--berry-dark);
  color: var(--white);
  padding: 32px;
  box-shadow: var(--shadow);
}
.note-panel p, .contact-card p { color: rgba(255,255,255,0.82); margin-top: 14px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading.narrow { display: block; max-width: 680px; }
.gallery-section { padding-top: 60px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: var(--white);
  box-shadow: 0 14px 45px rgba(50, 23, 16, 0.12);
  min-height: 100%;
}
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-card div:not(.text-only-card), .text-only-card { padding: 26px; }
.product-card p { margin-top: 12px; color: var(--muted); font-family: var(--font-body); }
.product-card.featured { grid-column: span 1; }
.text-only-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, var(--leaf), #263f29);
  color: var(--white);
}
.text-only-card p { color: rgba(255,255,255,0.82); }

.process-section {
  width: 100%;
  max-width: none;
  background: #efe1c8;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline li { background: rgba(255,255,255,0.7); min-height: 230px; }
.timeline-link {
  display: flex;
  min-height: 230px;
  height: 100%;
  flex-direction: column;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}
.timeline-link:hover strong { color: var(--berry); }
.timeline span { font-family: var(--font-body); color: var(--gold); font-weight: 800; }
.timeline strong { display: block; margin-top: 18px; font-size: 1.18rem; }
.timeline p { margin-top: 10px; font-family: var(--font-body); color: var(--muted); }

.info-section {
  position: relative;
}
.info-section::before {
  content: "";
  position: absolute;
  inset: 28px -26px 28px -26px;
  z-index: -1;
  opacity: 0.72;
}
.info-life::before {
  background: linear-gradient(135deg, rgba(255,249,240,0.98), rgba(238,247,247,0.82));
}
.info-making::before {
  background: linear-gradient(135deg, rgba(239,225,200,0.76), rgba(255,249,240,0.7));
}
.info-wines::before {
  background: linear-gradient(135deg, rgba(238,247,247,0.88), rgba(231,218,203,0.7));
}
.info-knowledge::before {
  background: linear-gradient(135deg, rgba(245,235,221,0.9), rgba(238,247,247,0.72));
}
.info-map::before {
  background: linear-gradient(135deg, rgba(238,247,247,0.92), rgba(255,249,240,0.74));
}
.info-copy {
  max-width: 860px;
}
.info-copy p,
.info-card-grid p {
  font-family: var(--font-body);
  color: var(--muted);
}
.info-copy p + p {
  margin-top: 16px;
}
.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card-grid article {
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(182,139,110,0.24);
  padding: 24px;
  box-shadow: 0 14px 36px rgba(50, 23, 16, 0.11);
}
.info-card-grid p {
  margin-top: 10px;
}
.tips-grid article {
  border-top: 4px solid var(--leaf);
}
.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 34px;
  align-items: stretch;
}
.map-copy {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(182,139,110,0.24);
  padding: 28px;
  box-shadow: 0 14px 36px rgba(50, 23, 16, 0.11);
}
.map-copy p {
  font-family: var(--font-body);
  color: var(--muted);
}
.map-copy p + p {
  margin-top: 14px;
}
.map-copy .button {
  margin-top: 22px;
}
.map-card {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(182,139,110,0.28);
  box-shadow: 0 18px 42px rgba(37, 24, 21, 0.16), 0 36px 90px rgba(37, 24, 21, 0.2);
  background: var(--white);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: calc(100% - 56px);
  min-height: 320px;
  border: 0;
}
.map-legal-note {
  margin: 0;
  padding: 10px 14px 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--muted);
  background: rgba(255,249,240,0.94);
  border-top: 1px solid rgba(182,139,110,0.24);
}

.prices { padding-bottom: 66px; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.price-grid article {
  background: var(--white);
  border-top: 4px solid var(--berry);
  padding: 22px;
  min-height: 140px;
  box-shadow: 0 12px 34px rgba(50, 23, 16, 0.1);
}
.price-grid span { display: block; font-family: var(--font-body); color: var(--muted); min-height: 48px; }
.price-grid strong { display: block; margin-top: 18px; font-size: 1.22rem; color: var(--berry); }
.sample-box { margin-top: 18px; background: var(--leaf); }
.sample-box p { margin-top: 10px; color: rgba(255,255,255,0.86); font-family: var(--font-body); }
.exchange {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  align-items: center;
  border-top: 1px solid #e4d4bd;
}
.contact-card .button { margin-top: 22px; }
.interest-form {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  font-family: var(--font-body);
}
.interest-form h3 {
  margin-top: 4px;
}
.interest-form label {
  color: rgba(255,255,255,0.92);
  font-weight: 800;
}
.interest-form input,
.interest-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: #24313a;
  background: rgba(255,255,255,0.92);
  box-shadow: inset 0 1px 2px rgba(36,49,58,0.12);
}
.interest-form textarea {
  resize: vertical;
  min-height: 128px;
}
.interest-form input:focus,
.interest-form textarea:focus {
  outline: 3px solid rgba(182,139,110,0.38);
  border-color: var(--gold);
}
.interest-form .button {
  margin-top: 8px;
  width: fit-content;
  cursor: default;
  opacity: 0.82;
}
.footer {
  padding: 34px 16px;
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-family: var(--font-body);
}
.footer a { color: var(--rose); text-decoration: none; font-weight: 700; }

@media (max-width: 900px) {
  .nav {
    position: relative;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 0 10px;
  }
  .nav-toggle {
    display: none;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); margin: 0 auto; }
  .nav-links {
    display: grid;
    position: static;
    flex: 0 0 100%;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 4px 0 0;
    background: transparent;
    align-items: center;
  }
  .nav-image-link {
    width: 100%;
    min-width: 0;
    padding: 2px;
  }
  .nav-image-link img {
    max-height: 58px;
  }
  .nav-links.open { display: grid; }
  .hero { grid-template-columns: 1fr; padding-top: 20px; }
  .hero-media { transform: none; max-width: 620px; }
  .intro-band, .split, .product-grid, .timeline, .price-grid, .info-card-grid, .map-layout, .exchange { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid #eadcc9; }
  .stat:last-child { border-bottom: 0; }
  .section { padding: 72px 0; }
  .price-grid span { min-height: auto; }
}

@media (max-width: 560px) {
  .site-header { min-height: auto; }
  .nav {
    width: min(100% - 20px, 1180px);
  }
  .brand {
    font-size: 1rem;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 1.1rem;
  }
  .nav-links {
    gap: 6px;
  }
  .nav-image-link img {
    max-height: 42px;
  }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  .hero { min-height: auto; padding-bottom: 86px; }
  .hero-text { font-size: 1.08rem; }
  .hero-actions, .footer { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .note-panel, .contact-card, .sample-box { padding: 24px; }
}
.reveal {
  opacity: 1;
  transform: none;
}
.animations-ready .reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 1800ms ease, transform 1800ms cubic-bezier(0.16, 0.74, 0.18, 1);
  will-change: opacity, transform;
}
.animations-ready .reveal-from-left { transform: translateX(-360px) scale(0.9); }
.animations-ready .reveal-from-right { transform: translateX(360px) scale(0.9); }
.animations-ready .hero-visual.reveal-from-right { transform: translateX(360px) scale(0.9); }
.animations-ready .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.animations-ready .hero-visual.reveal.is-visible { transform: translate(0, 0) scale(1); }

@media (max-width: 900px) {
  .animations-ready .reveal-from-left { transform: translateX(-180px) scale(0.92); }
  .animations-ready .reveal-from-right { transform: translateX(180px) scale(0.92); }
  .animations-ready .hero-visual.reveal-from-right { transform: translateX(180px) scale(0.92); }
  .animations-ready .hero-visual.reveal.is-visible { transform: none; }
}




:root {
  --ticker-height: clamp(56px, 9vw, 78px);
  --ticker-offset: max(14px, env(safe-area-inset-bottom));
}
body {
  padding-bottom: calc(var(--ticker-height) + var(--ticker-offset) + 10px);
}
.contact-ticker {
  position: fixed;
  left: 0;
  right: 0;
  bottom: var(--ticker-offset);
  z-index: 2147483647;
  height: var(--ticker-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #071f3d;
  color: #fff9f0;
  border-top: 3px solid #c28c32;
  box-shadow: 0 -12px 34px rgba(37, 24, 21, 0.26);
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 4.6vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: layout paint;
  -webkit-transform: translateZ(0);
}
.contact-ticker-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: contactTicker 14s linear infinite;
}
.contact-ticker-track span {
  display: inline-flex;
  align-items: center;
  padding-right: clamp(42px, 10vw, 90px);
}
@keyframes contactTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}








/* 3D depth enhancements */
.hero-media,
.product-card,
.note-panel,
.contact-card,
.sample-box,
.map-copy,
.map-card,
.info-card-grid article,
.price-grid article,
.timeline li,
.intro-band {
  transform-style: preserve-3d;
  box-shadow:
    0 18px 28px rgba(37, 24, 21, 0.16),
    0 38px 90px rgba(37, 24, 21, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.hero-media,
.product-card img {
  filter: drop-shadow(0 18px 28px rgba(7, 31, 61, 0.26));
}
.hero-media {
  border-color: rgba(255, 249, 240, 0.95);
  box-shadow:
    0 22px 32px rgba(7, 31, 61, 0.28),
    0 48px 110px rgba(37, 24, 21, 0.36);
}
.product-card,
.price-grid article,
.map-copy,
.map-card,
.info-card-grid article,
.timeline li,
.note-panel,
.contact-card,
.sample-box {
  position: relative;
  transition: transform 240ms ease, box-shadow 240ms ease, filter 240ms ease;
}
.product-card::after,
.price-grid article::after,
.map-copy::after,
.map-card::after,
.info-card-grid article::after,
.timeline li::after,
.note-panel::after,
.contact-card::after,
.sample-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), rgba(255,255,255,0) 42%, rgba(7,31,61,0.08));
  border-radius: inherit;
}
.product-card:hover,
.price-grid article:hover,
.map-copy:hover,
.map-card:hover,
.info-card-grid article:hover,
.timeline li:hover,
.note-panel:hover,
.contact-card:hover,
.sample-box:hover {
  transform: translateY(-7px) perspective(900px) rotateX(1.6deg);
  box-shadow:
    0 24px 34px rgba(37, 24, 21, 0.2),
    0 52px 120px rgba(37, 24, 21, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.product-card img {
  border-bottom: 1px solid rgba(37, 24, 21, 0.08);
}
.nav-image-link img {
  filter: drop-shadow(0 10px 14px rgba(7, 31, 61, 0.28));
}
.nav-image-link:hover img {
  filter: drop-shadow(0 14px 20px rgba(7, 31, 61, 0.34)) brightness(1.06);
}
.section-heading h2,
h1 {
  text-shadow: 0 3px 12px rgba(37, 24, 21, 0.22);
}
@media (max-width: 900px) {
  .product-card:hover,
  .price-grid article:hover,
  .map-copy:hover,
  .map-card:hover,
  .info-card-grid article:hover,
  .timeline li:hover,
  .note-panel:hover,
  .contact-card:hover,
  .sample-box:hover {
    transform: translateY(-4px);
  }
}

/* Sauerkirschbowle image card */
.bowle-card {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #fff9f0;
  box-shadow:
    0 22px 34px rgba(7, 31, 61, 0.24),
    0 48px 100px rgba(37, 24, 21, 0.26);
}
.bowle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/sauerkirsch1.png") center/cover no-repeat;
  opacity: 0.36;
  filter: saturate(0.9) contrast(0.96);
  transform: scale(1.03);
}
.bowle-card::after {
  z-index: 1;
}
.bowle-card-content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  background: rgba(255, 249, 240, 0.48);
  color: #050505;
}
.bowle-card-content h3,
.bowle-card-content p {
  color: #050505;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

/* Kräuterliköre image card */
.kraeuter-card {
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(rgba(37, 24, 21, 0.48), rgba(37, 24, 21, 0.48)),
    url("../assets/kraeuter1.png") center/cover no-repeat;
  box-shadow:
    0 22px 34px rgba(7, 31, 61, 0.24),
    0 48px 100px rgba(37, 24, 21, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.kraeuter-card h3,
.kraeuter-card p {
  position: relative;
  z-index: 2;
}
.kraeuter-card::after {
  z-index: 1;
}

.contact-ticker a {
  color: inherit;
  text-decoration: none;
  font-weight: 900;
}
.contact-ticker a:hover {
  text-decoration: underline;
}

@supports (-webkit-touch-callout: none) {
  .contact-ticker {
    position: fixed;
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}

/* Legal / Impressum page */
.legal-page {
  background: var(--paper);
  color: var(--ink);
}
.legal-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(37, 24, 21, 0.92), rgba(7, 31, 61, 0.76)),
    url("../assets/l1.webp") center/cover;
  padding-bottom: 86px;
}
.legal-nav-links {
  display: flex;
  gap: 18px;
  font-family: var(--font-body);
  font-weight: 800;
}
.legal-nav-links a {
  color: #fff9f0;
  text-decoration: none;
}
.legal-nav-links a:hover {
  color: var(--gold);
}
.legal-hero-copy {
  width: min(980px, calc(100% - 32px));
  margin: 64px auto 0;
}
.legal-hero-copy h1 {
  font-size: clamp(3rem, 8vw, 5.3rem);
}
.legal-hero-copy p:last-child {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255,255,255,0.86);
  font-family: var(--font-body);
  font-size: 1.12rem;
}
.legal-main {
  width: min(980px, calc(100% - 32px));
  margin: -48px auto 100px;
  display: grid;
  gap: 18px;
}
.legal-card,
.legal-note {
  position: relative;
  background: rgba(255, 249, 240, 0.96);
  border: 1px solid rgba(7, 31, 61, 0.1);
  padding: 30px;
  box-shadow:
    0 18px 28px rgba(37, 24, 21, 0.13),
    0 36px 90px rgba(37, 24, 21, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.legal-card h2,
.legal-note h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}
.legal-card p,
.legal-note p,
.legal-list {
  font-family: var(--font-body);
  color: var(--muted);
}
.legal-list {
  margin: 0;
  display: grid;
  gap: 12px;
}
.legal-list div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(7, 31, 61, 0.1);
}
.legal-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.legal-list dt {
  font-weight: 800;
  color: #071f3d;
}
.legal-list dd {
  margin: 0;
}
.legal-card a,
.legal-note a:not(.button) {
  color: #071f3d;
  font-weight: 800;
}
.legal-note .button {
  margin-top: 22px;
}
@media (max-width: 720px) {
  .legal-nav-links {
    display: none;
  }
  .legal-main {
    margin-top: -34px;
  }
  .legal-card,
  .legal-note {
    padding: 24px;
  }
  .legal-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Visitenkarten-inspirierte Farbveredelung */
body {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.78), rgba(238,247,247,0) 34%),
    linear-gradient(180deg, #eef7f7 0%, #f4f2ed 56%, #eef7f7 100%);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 2px solid rgba(182, 139, 110, 0.56);
  pointer-events: none;
  box-shadow: inset 0 0 0 6px rgba(238,247,247,0.18);
}
.hero,
.nav {
  position: relative;
  z-index: 1;
}
.intro-band,
.product-card,
.legal-card,
.legal-note {
  border: 1px solid rgba(182, 139, 110, 0.26);
}
.footer {
  background: #24313a;
  border-top: 3px solid rgba(182, 139, 110, 0.72);
}
.legal-hero {
  background:
    linear-gradient(90deg, rgba(36, 49, 58, 0.86), rgba(159, 118, 94, 0.58)),
    url("../assets/l1.webp") center/cover;
}
@media (max-width: 900px) {
  .hero-visual {
    max-width: 620px;
    padding-bottom: 92px;
  }
  .hero-media {
    margin-top: 0;
  }
  .visite-card {
    width: min(70%, 330px);
    right: 6%;
    bottom: 8px;
  }
}
@media (max-width: 560px) {
  .site-header::after {
    inset: 12px;
  }
  .hero-visual {
    padding-bottom: 78px;
  }
  .visite-card {
    width: min(74%, 280px);
    right: 2%;
    border-width: 5px;
  }
}


