/* =====================================================================
   Weinbau Büchele – Stylesheet
   Mobile-first, DSGVO-freundlich (lokale Schriften, keine externen CDNs)
   ===================================================================== */

@import url('./assets/fonts/fonts.css');

/* ------------------------------------------------------------------ *
   Design-Tokens
 * ------------------------------------------------------------------ */
:root {
  /* Farbwelt – abgeleitet aus Logo (Bordeaux + Gold) & Herbst-Weinberg */
  --wine:        #6e1023;
  --wine-deep:   #48101c;
  --wine-soft:   #8a1a30;
  --gold:        #b1852f;
  --gold-bright: #c9a24a;
  --gold-soft:   #e4c98a;
  --cream:       #f8f3ea;
  --cream-2:     #f2ead9;
  --paper:       #fffdf9;
  --ink:         #2b211d;
  --muted:       #6f6157;
  --line:        rgba(72, 16, 28, 0.14);
  --line-soft:   rgba(72, 16, 28, 0.08);
  --brand-blue:  #22b8e0; /* nur für "wowobot" */

  /* Typografie */
  --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  /* Schatten */
  --shadow-sm: 0 2px 10px rgba(72, 16, 28, 0.06);
  --shadow:    0 14px 40px -18px rgba(72, 16, 28, 0.28);
  --shadow-lg: 0 30px 70px -30px rgba(72, 16, 28, 0.40);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 320ms;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;         /* 16px – kein iOS-Autozoom */
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;      /* keine horizontalen Scrollbalken */
}

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

a { color: var(--wine); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--wine-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--wine-deep);
  margin: 0 0 0.5em;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1rem; }

ul { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ------------------------------------------------------------------ *
   Layout-Helfer
 * ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 72px 0; }
.section--tight { padding: 52px 0; }
.section--cream2 { background: var(--cream-2); }
.section--paper { background: var(--paper); }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold);
}
.section-head.center .eyebrow, .section-head:not(.left) .eyebrow { justify-content: center; }

.section-title { font-size: clamp(2rem, 5vw, 3rem); }
.section-sub { color: var(--muted); font-size: 1.06rem; margin-top: 0.4em; }

/* "Sonnenkamm" – Signatur-Hairline (Sonnenaufgang über dem Rebhügel) */
.sun-rule {
  width: 100%; height: 26px; display: block;
  color: var(--gold);
  opacity: 0.9;
}

/* ------------------------------------------------------------------ *
   Buttons
 * ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 26px;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-align: center;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease),
              color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--wine); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--wine-soft); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--gold { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); color: #3a2a0c; box-shadow: var(--shadow); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #3a2a0c; }

.btn--ghost { background: transparent; color: var(--wine-deep); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--wine); color: var(--wine); transform: translateY(-2px); }

.btn--light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.55); backdrop-filter: blur(4px); }
.btn--light:hover { background: #fff; color: var(--wine-deep); transform: translateY(-2px); }

.btn--block { width: 100%; }

/* ------------------------------------------------------------------ *
   Header / Navigation
 * ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 243, 234, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); border-bottom-color: var(--line-soft); background: rgba(248, 243, 234, 0.94); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--wine-deep); }
.brand__tag { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

.nav__links { display: none; }

.nav__cta { display: none; align-items: center; gap: 14px; }

.nav-menu-list { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-menu-list a {
  display: inline-block; padding: 10px 14px; border-radius: 10px;
  font-weight: 600; font-size: 0.96rem; color: var(--ink);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-menu-list a:hover { background: var(--cream-2); color: var(--wine); }

/* Burger */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 11px; margin-right: -6px;
  background: transparent; border: 1px solid var(--line); border-radius: 12px;
  cursor: pointer;
}
.burger span {
  display: block; height: 2px; width: 100%; background: var(--wine-deep); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Off-Canvas */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; z-index: 200;
  width: min(86vw, 360px); height: 100dvh;
  background: var(--wine-deep); color: #fff;
  padding: 26px 26px calc(26px + env(safe-area-inset-bottom));
  transform: translateX(100%); transition: transform 360ms var(--ease);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg); overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mobile-nav__brand { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.mobile-nav__close {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.28);
  background: transparent; color: #fff; font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.mobile-nav__links { list-style: none; display: flex; flex-direction: column; gap: 2px; margin-top: 8px; }
.mobile-nav__links a {
  display: block; padding: 15px 8px; color: #f3e7d8; font-size: 1.18rem;
  font-family: var(--font-display); font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.mobile-nav__links a:hover { color: var(--gold-soft); }
.mobile-nav__foot { margin-top: auto; padding-top: 22px; font-size: 0.92rem; color: #e9d9c5; }
.mobile-nav__foot a { color: var(--gold-soft); }
.mobile-nav .btn { margin-top: 20px; }

.scrim {
  position: fixed; inset: 0; z-index: 150; background: rgba(30, 8, 14, 0.55);
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.scrim.is-open { opacity: 1; visibility: visible; }

body.no-scroll { overflow: hidden; }

/* ------------------------------------------------------------------ *
   Hero
 * ------------------------------------------------------------------ */
.hero { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(45,10,18,0.55) 0%, rgba(45,10,18,0.30) 40%, rgba(45,10,18,0.78) 100%),
    linear-gradient(90deg, rgba(72,16,28,0.55), rgba(72,16,28,0.10));
}
.hero__inner { position: relative; padding: 92px 0 78px; max-width: 720px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 20px;
}
.hero__eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold-soft); }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 9vw, 5rem); font-weight: 600;
  margin-bottom: 0.32em; text-shadow: 0 2px 30px rgba(0,0,0,0.30);
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__lead { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: #f4e9dc; max-width: 42ch; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 38px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.20);
}
.hero__trust li {
  list-style: none; display: flex; align-items: center; gap: 9px;
  font-size: 0.92rem; font-weight: 600; color: #f0e4d5;
}
.hero__trust svg { flex: none; color: var(--gold-soft); }

/* ------------------------------------------------------------------ *
   Vertrauens-Streifen
 * ------------------------------------------------------------------ */
.trustbar { background: var(--wine-deep); color: #fbeede; }
.trustbar__grid {
  display: grid; grid-template-columns: 1fr; gap: 4px 30px;
  padding: 26px 0;
}
.trust-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.trust-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.12); }
.trust-item__ic {
  flex: none; width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: rgba(255,255,255,0.08); color: var(--gold-soft);
}
.trust-item b { display: block; font-family: var(--font-display); font-size: 1.28rem; color: #fff; line-height: 1; }
.trust-item span { font-size: 0.9rem; color: #e6cfc4; }

/* ------------------------------------------------------------------ *
   Über uns
 * ------------------------------------------------------------------ */
.about__grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.about__badge {
  position: absolute; left: 18px; bottom: -18px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.about__badge b { font-family: var(--font-display); font-size: 1.9rem; color: var(--wine); line-height: 1; }
.about__badge span { font-size: 0.82rem; color: var(--muted); max-width: 12ch; }
.about__text p { font-size: 1.06rem; color: #4a3d35; }
.about__sign { margin-top: 18px; font-family: var(--font-display); font-size: 1.6rem; color: var(--wine); font-style: italic; }
.about__sign small { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ------------------------------------------------------------------ *
   Warum wir – Karten
 * ------------------------------------------------------------------ */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.why-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.why-card__ic {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: linear-gradient(160deg, var(--cream-2), #fff); color: var(--wine);
  border: 1px solid var(--line-soft); margin-bottom: 18px;
}
.why-card h3 { font-size: 1.5rem; margin-bottom: 0.35em; }
.why-card p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ------------------------------------------------------------------ *
   Sortiment – Accordions + Tasting-Cards
 * ------------------------------------------------------------------ */
.sortiment__note {
  max-width: 620px; margin: 0 auto 34px; text-align: center; color: var(--muted);
  font-size: 0.92rem;
}
.acc { max-width: 960px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.acc-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.acc-trigger {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 22px 22px; background: transparent; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-body); color: var(--ink);
}
.acc-trigger:hover { background: var(--cream); }
.acc-trigger__no {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold);
  min-width: 34px;
}
.acc-trigger__title { flex: 1; }
.acc-trigger__title b { display: block; font-family: var(--font-display); font-size: 1.45rem; color: var(--wine-deep); line-height: 1.1; }
.acc-trigger__title span { font-size: 0.88rem; color: var(--muted); }
.acc-trigger__ic {
  flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--wine); transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.acc-trigger[aria-expanded="true"] .acc-trigger__ic { transform: rotate(180deg); background: var(--cream-2); }

.acc-panel { overflow: hidden; height: 0; transition: height var(--dur) var(--ease); }
.acc-panel__inner { padding: 4px 22px 26px; }

.wine-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

.wine-card {
  position: relative; background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 20px 20px 18px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wine-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.wine-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.wine-card__name { font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; color: var(--wine-deep); line-height: 1.12; margin: 0; }
.wine-card__type { font-size: 0.85rem; color: var(--muted); margin: 3px 0 0; }
.wine-card__price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--wine); white-space: nowrap; }
.wine-card__price small { display: block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; color: var(--muted); text-align: right; }

.seal {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  padding: 4px 11px 4px 8px; border-radius: 999px; font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.seal svg { flex: none; }
.seal--gold { background: rgba(177,133,47,0.14); color: #8a6510; border: 1px solid rgba(177,133,47,0.4); }
.seal--silver { background: rgba(120,120,125,0.14); color: #5a5a60; border: 1px solid rgba(120,120,125,0.34); }
.seal--barrel { background: rgba(110,16,35,0.10); color: var(--wine); border: 1px solid rgba(110,16,35,0.24); }

/* Tabellarische Analyse-Werte (Signatur) */
.wine-specs {
  display: flex; flex-wrap: wrap; gap: 4px 20px; margin-top: 14px; padding-top: 13px;
  border-top: 1px dashed var(--line); list-style: none;
}
.wine-specs li { display: flex; flex-direction: column; }
.wine-specs .k { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.wine-specs .v { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ink); font-size: 0.98rem; }

.sold-out {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px;
  background: var(--cream); border: 1px dashed var(--line); border-radius: var(--radius-sm); color: var(--muted);
}
.sold-out svg { flex: none; color: var(--wine); }

/* Destillate – kompakte Preisliste */
.spirit-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 2px; }
.spirit-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 13px 4px; border-bottom: 1px solid var(--line-soft);
}
.spirit-row:last-child { border-bottom: 0; }
.spirit-row__name { font-family: var(--font-display); font-size: 1.24rem; color: var(--wine-deep); font-weight: 600; }
.spirit-row__name span { display: block; font-family: var(--font-body); font-size: 0.8rem; color: var(--muted); font-weight: 400; }
.spirit-row__price { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--wine); white-space: nowrap; text-align: right; font-size: 0.98rem; }

/* ------------------------------------------------------------------ *
   Ablauf
 * ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }
.step {
  position: relative; background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 30px 26px 26px; box-shadow: var(--shadow-sm);
}
.step__no {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--gold);
  line-height: 1; display: block; margin-bottom: 8px;
}
.step h3 { font-size: 1.42rem; margin-bottom: 0.3em; }
.step p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* ------------------------------------------------------------------ *
   Standort
 * ------------------------------------------------------------------ */
.location__grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: stretch; }
.location__map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--cream-2);
}
.location__map img { width: 100%; height: 100%; object-fit: cover; min-height: 240px; }
.location__map-cta { position: absolute; left: 16px; bottom: 16px; }
.location__card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.info-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 6px 0 24px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list__ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--cream-2); color: var(--wine); display: grid; place-items: center; }
.info-list__k { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.info-list__v { font-size: 1.06rem; color: var(--ink); font-weight: 600; }
.info-list__v a { font-weight: 600; }
.hours-note { font-size: 0.9rem; color: var(--muted); }

/* ------------------------------------------------------------------ *
   Kontakt
 * ------------------------------------------------------------------ */
.contact { background: var(--wine-deep); color: #f4e5da; }
.contact h2, .contact .section-title { color: #fff; }
.contact .eyebrow { color: var(--gold-soft); }
.contact .eyebrow::before { background: var(--gold-soft); }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 34px; align-items: start; }
.contact__intro p { color: #ecd8c9; font-size: 1.05rem; }
.contact__direct { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact__direct li { display: flex; align-items: center; gap: 14px; }
.contact__direct .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.08); color: var(--gold-soft); display: grid; place-items: center; }
.contact__direct .k { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: #cbae9c; }
.contact__direct a, .contact__direct .v { color: #fff; font-weight: 600; font-size: 1.04rem; }

.form-card {
  background: var(--paper); color: var(--ink); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.86rem; font-weight: 700; color: var(--wine-deep); }
.field .req { color: var(--wine); }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; min-height: 48px;
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--wine); background: #fff;
  box-shadow: 0 0 0 4px rgba(110,16,35,0.10);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #b3261e; }
.field .error { font-size: 0.8rem; color: #b3261e; min-height: 1em; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 18px; }
.consent input {
  flex: none; width: 22px; height: 22px; margin-top: 2px; accent-color: var(--wine); cursor: pointer;
}
.consent label { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.consent a { font-weight: 700; text-decoration: underline; }

.form-status {
  margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: 0.94rem; font-weight: 600;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.ok { background: rgba(46,125,50,0.12); color: #2e6b32; border: 1px solid rgba(46,125,50,0.3); }
.form-status.err { background: rgba(179,38,30,0.10); color: #b3261e; border: 1px solid rgba(179,38,30,0.3); }
.form-hint { font-size: 0.78rem; color: var(--muted); margin-top: 14px; }

/* ------------------------------------------------------------------ *
   Footer
 * ------------------------------------------------------------------ */
.site-footer { background: #23090f; color: #d9c6ba; padding: 60px 0 26px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
.footer__brand img { height: 54px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer__brand p { color: #b7a294; font-size: 0.95rem; max-width: 34ch; }
.footer__col h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a, .footer__col .fx { color: #d9c6ba; font-size: 0.96rem; }
.footer__col a:hover { color: var(--gold-soft); }

.footer__bottom {
  margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
}
.footer__copy { font-size: 0.86rem; color: #a9968a; }
.footer__powered { font-size: 0.9rem; color: #a9968a; }
.footer__powered a { color: var(--brand-blue); font-weight: 800; letter-spacing: 0.01em; }
.footer__powered a:hover { color: var(--brand-blue); text-decoration: underline; }

/* ------------------------------------------------------------------ *
   Reveal-Animationen
 * ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 640ms var(--ease), transform 640ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }
.reveal[data-delay="3"] { transition-delay: 270ms; }

/* ================================================================== *
   Responsive – ab Tablet aufwärts
 * ================================================================== */
@media (min-width: 620px) {
  .wine-grid { grid-template-columns: 1fr 1fr; }
  .spirit-list { grid-template-columns: 1fr 1fr; column-gap: 34px; }
  .trustbar__grid { grid-template-columns: repeat(4, 1fr); gap: 0 24px; }
  .trust-item { border-bottom: 0 !important; padding: 6px 0; }
  .hero__actions .btn { min-width: 190px; }
}

@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .about__grid { grid-template-columns: 1.05fr 0.95fr; }
  .contact__grid { grid-template-columns: 0.9fr 1.1fr; gap: 46px; }
  .location__grid { grid-template-columns: 1.1fr 0.9fr; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 940px) {
  .nav__links { display: block; }
  .nav__cta { display: flex; }
  .burger { display: none; }
  .hero__inner { padding: 120px 0 96px; }
}

@media (min-width: 1024px) {
  .about__grid { gap: 56px; }
}

/* ================================================================== *
   Bewegungsreduktion respektieren
 * ================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::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; }
}

/* ================================================================== *
   Rechtliche Seiten (Impressum / Datenschutz)
 * ================================================================== */
.legal { padding: 56px 0 80px; }
.legal__wrap { max-width: var(--maxw-narrow); margin: 0 auto; }
.legal h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); margin-bottom: 0.2em; }
.legal .lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 34px; }
.legal h2 { font-size: 1.6rem; margin: 36px 0 0.5em; padding-top: 22px; border-top: 1px solid var(--line-soft); }
.legal h3 { font-size: 1.2rem; margin: 22px 0 0.4em; color: var(--wine); }
.legal p, .legal li { color: #4a3d35; }
.legal ul { padding-left: 1.2em; margin-bottom: 1rem; }
.legal ul li { list-style: disc; margin-bottom: 6px; }
.legal address { font-style: normal; line-height: 1.8; }
.legal .placeholder {
  background: var(--cream-2); border: 1px dashed var(--gold); border-radius: var(--radius-sm);
  padding: 18px 20px; margin: 18px 0; color: #6a5544; font-size: 0.94rem;
}
.legal .placeholder b { color: var(--wine); }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-weight: 700; }

.legal-header { background: var(--wine-deep); }
.legal-header .nav { height: 74px; }
.legal-header .brand__name, .legal-header .brand__tag { color: #fff; }
.legal-header .brand__tag { color: var(--gold-soft); }
