/* ============================================================
   Olive, Brot & Wein — Styles
   Mobile-first · lokale Schriften · DSGVO-konform
   ============================================================ */

/* ---------- Lokale Schriften (keine externen CDNs) ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("assets/fonts/cormorant-garamond-var.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Karla";
  src: url("assets/fonts/karla-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design-Tokens ---------- */
:root {
  --cream: #faf5ec;
  --cream-2: #f3ead9;
  --cream-3: #efe4cf;
  --ink: #241f1a;
  --ink-soft: #5d564d;
  --olive: #4d5a35;
  --olive-deep: #36402a;
  --olive-darker: #2a3220;
  --wine: #7a2e36;
  --terracotta: #b56a3d;
  --gold: #b8923f;
  --gold-soft: #c9a86a;
  --border: #e3d7c1;
  --white: #ffffff;

  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Karla", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 10px rgba(54, 64, 42, 0.06);
  --shadow: 0 14px 40px -18px rgba(40, 44, 28, 0.28);
  --shadow-lg: 0 30px 70px -30px rgba(40, 44, 28, 0.4);

  --container: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --section-y: clamp(3.75rem, 9vw, 7.5rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / Basis ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Typografie ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: 0.01em;
}
h1 {
  font-size: clamp(2.9rem, 9vw, 5.6rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}
h3 {
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
}
p {
  color: var(--ink-soft);
}
strong {
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow-light {
  color: var(--gold-soft);
}

/* ---------- Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section-y);
}
.section-alt {
  background: var(--cream-2);
}
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-lead {
  margin-top: 1.1rem;
  font-size: 1.1rem;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--olive-deep);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1200;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  min-height: 48px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  min-height: 44px;
  font-size: 0.9rem;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.02rem;
}
.btn-block {
  width: 100%;
}
.btn-primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 10px 24px -12px rgba(77, 90, 53, 0.9);
}
.btn-primary:hover {
  background: var(--olive-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -14px rgba(54, 64, 42, 0.9);
}
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
    padding 0.3s var(--ease);
  padding-block: 0.6rem;
}
.site-header.scrolled {
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-logo {
  height: 46px;
  width: auto;
  transition: filter 0.3s var(--ease);
}
/* Logo ist dunkel: im transparenten Header über dem Hero aufhellen */
.site-header:not(.scrolled) .brand-logo {
  filter: brightness(0) invert(1);
}
.nav-desktop {
  display: none;
  gap: 2rem;
}
.nav-desktop a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding-block: 0.3rem;
  color: var(--white);
  transition: color 0.2s var(--ease);
}
.site-header.scrolled .nav-desktop a {
  color: var(--ink);
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-cta {
  display: none;
}

/* Burger */
.burger {
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.site-header.scrolled .burger {
  background: var(--cream-2);
  border-color: var(--border);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.site-header.scrolled .burger span {
  background: var(--ink);
}
body.menu-open .burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobiles Menü ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(82vw, 360px);
  background: var(--olive-darker);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  align-items: center;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
body.menu-open .mobile-menu {
  transform: translateX(0);
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
}
.mobile-menu-inner a {
  color: #f3ecdd;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 600;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.mobile-menu-inner a:hover {
  color: var(--gold-soft);
  padding-left: 0.4rem;
}
.mobile-cta {
  margin-top: 1.2rem;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  border-bottom: none !important;
  color: var(--white) !important;
}
.mobile-cta:hover {
  padding-left: 0 !important;
}
.mobile-menu-meta {
  margin-top: 1.5rem;
  color: var(--gold-soft);
  font-family: var(--font-body);
}
.mobile-menu-meta p {
  color: rgba(243, 236, 221, 0.7);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.mobile-menu-meta a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  border: none;
  padding: 0;
  color: #f3ecdd;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 31, 26, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
body.menu-open .menu-overlay {
  display: block !important;
  opacity: 1;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding-block: 7rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/imported/wine-corks.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      105deg,
      rgba(30, 36, 22, 0.92) 0%,
      rgba(36, 42, 27, 0.78) 45%,
      rgba(42, 50, 32, 0.55) 100%
    ),
    radial-gradient(circle at 80% 90%, rgba(122, 46, 54, 0.35), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero h1 {
  color: var(--white);
  margin-block: 0.5rem 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.hero-sub {
  color: rgba(245, 240, 230, 0.92);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  max-width: 580px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: rgba(245, 240, 230, 0.9);
  font-weight: 500;
}
.hero-meta-item .ico {
  width: 20px;
  height: 20px;
  color: var(--gold-soft);
  flex-shrink: 0;
}
.scroll-hint {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  display: none;
}
.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
  100% {
    opacity: 0;
  }
}

/* SVG-Icons generell */
.ico {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Vertrauensleiste ---------- */
.trustbar {
  background: var(--olive-deep);
  color: var(--white);
  padding-block: clamp(1.8rem, 4vw, 2.6rem);
}
.trustbar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.trust-item .ico {
  width: 30px;
  height: 30px;
  color: var(--gold-soft);
  flex-shrink: 0;
}
.trust-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.trust-item strong {
  color: var(--white);
  font-size: 1.05rem;
}
.trust-item span {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.7);
}

/* ---------- Split-Layout (Konzept / Standort / Kontakt) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-text h2 {
  margin-bottom: 1.2rem;
}
.split-text p {
  margin-bottom: 1rem;
  max-width: 56ch;
}
.split-media {
  position: relative;
}
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.media-badge {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--wine);
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  max-width: 60%;
}
.media-badge-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
}
.media-badge-text {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 2rem;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
  font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--olive);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Karten (Genuss) ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-soft);
}
.card-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--cream-2);
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  color: var(--olive);
}
.card-ico svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h3 {
  margin-bottom: 0.6rem;
}

/* ---------- Accordion ---------- */
.accordion {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 820px;
  margin-inline: auto;
}
.accordion-title {
  text-align: center;
  margin-bottom: 1.4rem;
}
.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease);
}
.acc-item:hover {
  box-shadow: var(--shadow-sm);
}
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  text-align: left;
  color: var(--ink);
  min-height: 44px;
}
.acc-chevron {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--olive);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}
.acc-trigger[aria-expanded="true"] .acc-chevron {
  transform: rotate(180deg);
}
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.acc-panel.open {
  grid-template-rows: 1fr;
}
.acc-panel-inner {
  overflow: hidden;
}
.acc-panel-inner p {
  padding: 0 1.4rem 1.3rem;
  margin: 0;
}

/* ---------- Vorteile ---------- */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.benefit {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--cream-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}
.benefit:hover {
  transform: translateY(-5px);
  background: var(--white);
}
.benefit-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.7rem;
}
.benefit h3 {
  margin-bottom: 0.4rem;
}

/* ---------- Kultur / Events (dark) ---------- */
.section-dark {
  background: var(--olive-darker);
  color: var(--white);
  position: relative;
}
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}
.section-lead-light {
  color: rgba(245, 240, 230, 0.82);
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
.event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}
.event-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
}
.event-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--olive-darker);
  background: var(--gold-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.event-card p {
  color: rgba(245, 240, 230, 0.75);
}
.events-note {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.6rem 1.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}
.events-note p {
  color: rgba(245, 240, 230, 0.85);
}
.social-inline {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.social-inline a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 44px;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-inline a:hover {
  background: var(--gold-soft);
  color: var(--olive-darker);
  transform: translateY(-2px);
}
.social-inline svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

/* ---------- Info-Listen ---------- */
.info-list {
  display: grid;
  gap: 1.1rem;
  margin: 1.6rem 0 2rem;
}
.info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}
.info-list .ico {
  width: 24px;
  height: 24px;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-list a:hover {
  color: var(--olive);
  text-decoration: underline;
}

/* ---------- Karten-Platzhalter ---------- */
.split-reverse .split-media {
  order: -1;
}
.map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  aspect-ratio: 5 / 4;
}
.map-art {
  width: 100%;
  height: 100%;
  display: block;
}
.map-art path {
  stroke: #cdbfa3;
  stroke-width: 6;
  fill: none;
}
.map-art .block {
  fill: #d9ccb0;
  stroke: none;
}
.map-pin {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  color: var(--wine);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25));
  animation: pinBounce 2.4s var(--ease) infinite;
}
.map-pin svg {
  width: 100%;
  height: 100%;
  fill: var(--wine);
  stroke: var(--white);
  stroke-width: 1.2;
}
@keyframes pinBounce {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -62%);
  }
}
.map-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.9rem 1.2rem;
  background: linear-gradient(transparent, rgba(36, 31, 26, 0.78));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Kontaktformular ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.field {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
}
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.req {
  color: var(--wine);
}
.field input,
.field textarea {
  font: inherit;
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  min-height: 48px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--olive);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(77, 90, 53, 0.15);
}
.field input.invalid,
.field textarea.invalid {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(122, 46, 54, 0.12);
}
.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0.4rem 0 1.4rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}
.consent input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--olive);
  cursor: pointer;
}
.consent a {
  color: var(--olive);
  text-decoration: underline;
  font-weight: 600;
}
.form-hint {
  font-size: 0.8rem;
  margin-top: 0.9rem;
  text-align: center;
}
.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #e7efdf;
  color: #3a5226;
  border: 1px solid #c2d6ad;
}
.form-status.error {
  display: block;
  background: #f6e3e1;
  color: var(--wine);
  border: 1px solid #e3bdb9;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--olive-darker);
  color: rgba(245, 240, 230, 0.78);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}
.footer-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 1.1rem;
}
.footer-brand p {
  color: rgba(245, 240, 230, 0.7);
  max-width: 34ch;
  margin-bottom: 1.3rem;
}
.social {
  display: flex;
  gap: 0.7rem;
}
.social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social a:hover {
  background: var(--gold-soft);
  color: var(--olive-darker);
  transform: translateY(-3px);
}
.social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.footer-col ul {
  display: grid;
  gap: 0.65rem;
}
.footer-col a {
  color: rgba(245, 240, 230, 0.78);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover {
  color: var(--white);
}
.footer-col address {
  font-style: normal;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.78);
}
.footer-col address a:hover {
  color: var(--white);
}
.hours {
  margin-top: 0.8rem;
  color: var(--gold-soft);
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.copyright {
  color: rgba(245, 240, 230, 0.6);
  font-size: 0.88rem;
}
.powered {
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.7);
}
.wowobot {
  color: #22b8e0;
  font-weight: 700;
  transition: opacity 0.2s var(--ease);
}
.wowobot:hover {
  opacity: 0.82;
  text-decoration: underline;
}

/* ============================================================
   Rechtliche Seiten (Impressum / Datenschutz)
   ============================================================ */
.legal-header {
  position: static;
  background: var(--olive-darker);
  padding-block: 1rem;
}
.legal-header .brand-logo {
  filter: brightness(0) invert(1);
}
.legal-back {
  color: rgba(245, 240, 230, 0.85);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.legal-back:hover {
  color: var(--white);
}
.legal-main {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  min-height: 60vh;
}
.legal-main .container {
  max-width: 800px;
}
.legal-main h1 {
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  margin-bottom: 0.6rem;
}
.legal-intro {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.legal-block {
  margin-bottom: 2.4rem;
}
.legal-block h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.8rem;
}
.legal-block h3 {
  font-size: 1.15rem;
  margin: 1.4rem 0 0.5rem;
}
.legal-block p,
.legal-block li {
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
}
.legal-block ul {
  list-style: disc;
  padding-left: 1.3rem;
}
.legal-block a {
  color: var(--olive);
  text-decoration: underline;
}
.legal-note {
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  margin: 1.2rem 0;
}
.legal-note strong {
  color: var(--olive-deep);
}
.placeholder-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wine);
  background: #f6e3e1;
  border: 1px solid #e3bdb9;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  vertical-align: middle;
}

/* ============================================================
   Scroll-Reveal-Animationen
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Breakpoints (Mobile First)
   ============================================================ */
@media (min-width: 600px) {
  .trustbar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
  .events-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .scroll-hint {
    display: block;
  }
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }
  .header-cta {
    display: inline-flex;
  }
  .burger {
    display: none;
  }
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .trustbar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .benefits {
    grid-template-columns: repeat(4, 1fr);
  }
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .cards {
    gap: 1.6rem;
  }
}

/* ============================================================
   Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-bg {
    transform: none;
  }
}
