/* ============================================================
 * STIELGLAS — Naturwein & Kleine Küche · Musterort
 * ============================================================
 * Sidebar Macro-Layout — vertikale Navigation links, Hauptbereich
 * rechts. Luxury Dark — Tiefenschwarz, Bordeaux/Champagner-Gold,
 * Kerzenlicht-Atmosphäre.
 */

:root {
  /* Farben */
  --ink: #0d120f;
  --ink-soft: #161d18;
  --ink-deep: #050807;
  --paper: #e8dcb7;
  --paper-soft: #d8c8a4;
  --paper-deep: #b8a785;
  --paper-dim: #8e8268;
  --bordeaux: #8a2b3a;
  --bordeaux-deep: #6a1d28;
  --bordeaux-soft: #a13746;
  --gold: #c2a878;
  --gold-soft: #d8be8a;
  --gold-deep: #9d8857;
  --stone: #5a5546;
  --line: rgba(232, 220, 183, 0.14);
  --line-strong: rgba(232, 220, 183, 0.28);

  /* Typo */
  --display: 'EB Garamond', 'Cormorant Garamond', Georgia, serif;
  --serif:   'EB Garamond', 'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter Tight', 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --body:    'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --sidebar-w: 280px;
  --content-max: 1080px;
  --gutter: 32px;

    --demo-banner-bg: #050807;
    --demo-banner-fg: #e8dcb7;
    --demo-banner-accent: #8a2b3a;
}

/* Reset / Base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--ink-deep); }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--paper);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--bordeaux); color: var(--paper); }

/* Typo */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1.06;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5.4rem); letter-spacing: -0.022em; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.4rem); letter-spacing: -0.018em; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--display); }
em {
  font-style: italic;
  color: var(--gold);
}
p { margin: 0 0 1em; color: var(--paper-soft); }
strong { font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.eyebrow--bordeaux { color: var(--bordeaux-soft); }
.eyebrow--bordeaux::before { background: var(--bordeaux-soft); }

.tagline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--paper);
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 24px;
  max-width: 600px;
}
.tagline em { color: var(--bordeaux-soft); }

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 40px 0;
}
.rule--strong { border-top: 1.5px solid var(--gold); margin: 48px 0; }

/* ============================================================
 * SIDEBAR LAYOUT
 * Body grid: Sidebar links (fix), Main rechts (scrollend)
 * ============================================================ */

.layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: var(--ink-deep);
  border-right: 1px solid var(--line);
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  z-index: 30;
}

.sidebar__brand {
  text-decoration: none;
  color: var(--paper);
  display: block;
  margin-bottom: 44px;
}
.sidebar__brand-mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.sidebar__brand-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--paper);
  letter-spacing: 0.02em;
  line-height: 1;
  display: block;
}
.sidebar__brand-sub {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--paper-deep);
  margin-top: 6px;
  display: block;
  line-height: 1.3;
}

.sidebar__nav {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 0;
}
.sidebar__nav li {
  border-top: 1px solid var(--line);
}
.sidebar__nav li:last-child { border-bottom: 1px solid var(--line); }
.sidebar__nav a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  text-decoration: none;
  color: var(--paper);
  padding: 14px 4px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s ease, padding-left 0.18s ease;
}
.sidebar__nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.sidebar__nav a[aria-current="page"] {
  color: var(--gold);
}
.sidebar__nav a[aria-current="page"]::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--bordeaux-soft);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: 1px;
}
.sidebar__nav-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--paper-dim);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.sidebar__info {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  font-family: var(--body);
  font-size: 0.86rem;
  color: var(--paper-dim);
  line-height: 1.55;
}
.sidebar__info strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.sidebar__info a {
  color: var(--paper-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}
.sidebar__info a:hover { color: var(--gold); }
.sidebar__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-transform: uppercase;
  font-weight: 500;
}
.sidebar__status::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: stielglasPulse 2.4s ease-in-out infinite;
}
.sidebar__status--closed::before { background: var(--bordeaux-soft); animation: none; }
@keyframes stielglasPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Main */
.main {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0; /* fix grid overflow */
}

/* Mobile-Topbar (replaces sidebar < 880px) */
.mobile-topbar {
  display: none;
  position: sticky;
  top: 0;
  height: 64px;
  padding: 0 24px;
  background: rgba(13, 18, 15, 0.94);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  z-index: 50;
  align-items: center;
  justify-content: space-between;
}
.mobile-topbar__brand {
  text-decoration: none;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--paper);
  letter-spacing: 0.04em;
}
.mobile-topbar__brand em {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-right: 8px;
}
.mobile-topbar__burger {
  background: transparent;
  border: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mobile-topbar__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--paper);
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.mobile-topbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-topbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-topbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sections inside main */
.section {
  padding: clamp(64px, 7vw, 110px) clamp(28px, 5vw, 64px);
  position: relative;
}
.section--paper {
  background: var(--ink-soft);
  color: var(--paper);
}
.section--paper h2, .section--paper h3 { color: var(--paper); }

.section--bordeaux {
  background: var(--bordeaux);
  color: var(--paper);
}
.section--bordeaux h2, .section--bordeaux h3 { color: var(--paper); }
.section--bordeaux em { color: var(--gold-soft); }
.section--bordeaux .eyebrow { color: var(--gold-soft); }
.section--bordeaux .eyebrow::before { background: var(--gold-soft); }
.section--bordeaux p { color: rgba(232, 220, 183, 0.88); }

.section__head { margin: 0 0 56px; max-width: 760px; }
.section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__head p { color: var(--paper-deep); font-size: 1.06rem; max-width: 580px; margin: 18px 0 0; line-height: 1.62; }
.section__head--center p { margin: 18px auto 0; }

.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--bordeaux);
  color: var(--paper);
  border: 1.5px solid var(--bordeaux);
  font-family: var(--body);
  font-size: 0.96rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover {
  background: var(--bordeaux-deep);
  border-color: var(--bordeaux-deep);
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--paper); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Hero — image-fokussiert mit Text-Overlay */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: stretch;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 18, 15, 0.85) 0%, rgba(13, 18, 15, 0.5) 60%, rgba(13, 18, 15, 0.2) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 12vw, 140px) clamp(28px, 5vw, 64px) clamp(48px, 7vw, 90px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero__content > .container > * { max-width: 680px; }
.hero h1 { margin-bottom: 28px; font-weight: 400; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  color: var(--paper);
  max-width: 540px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero__meta {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--paper-soft);
  flex-wrap: wrap;
}
.hero__meta strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 2px;
  letter-spacing: 0;
  font-weight: 400;
}

/* Tageskarte */
.tageskarte {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.menu-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.menu-item:nth-child(odd) { padding-right: 32px; }
.menu-item:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--line); }
.menu-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 8px;
}
.menu-item__title {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--paper);
  margin: 0;
  line-height: 1.2;
}
.menu-item__title em { font-style: italic; color: var(--gold); }
.menu-item__price {
  font-family: var(--mono);
  font-size: 0.96rem;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.menu-item__desc {
  color: var(--paper-deep);
  margin: 0 0 6px;
  font-size: 0.92rem;
  line-height: 1.55;
}
.menu-item__tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--paper-dim);
  text-transform: uppercase;
}

/* Wein-Liste */
.wine-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.wine-row {
  display: grid;
  grid-template-columns: 56px 1.4fr 1fr auto auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  font-family: var(--body);
}
.wine-row__country {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--paper-dim);
  text-transform: uppercase;
}
.wine-row__name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--paper);
  line-height: 1.3;
}
.wine-row__name em { font-style: italic; color: var(--gold); display: block; font-size: 0.86rem; margin-top: 2px; }
.wine-row__winzer {
  font-size: 0.88rem;
  color: var(--paper-deep);
}
.wine-row__year {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--paper-dim);
}
.wine-row__price {
  font-family: var(--mono);
  font-size: 0.94rem;
  color: var(--gold);
  font-weight: 500;
  text-align: right;
  letter-spacing: 0.02em;
}
.wine-row__price small {
  display: block;
  color: var(--paper-dim);
  font-size: 0.74rem;
  margin-top: 2px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* USP-Block */
.usp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.usp__item {
  padding: 32px 28px;
  background: var(--ink-deep);
  border: 1px solid var(--line);
}
.usp__item-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--bordeaux-soft);
  line-height: 0.9;
  margin-bottom: 14px;
  display: block;
}
.usp__item h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0 0 12px;
  font-weight: 500;
}
.usp__item h3 em { color: var(--gold); font-style: italic; }
.usp__item p {
  color: var(--paper-deep);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.62;
}

/* About Split */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: flex-start;
}
.about-split__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }
.about-split__body p { color: var(--paper-soft); margin: 0 0 14px; line-height: 1.7; }
.about-split__quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--paper);
  line-height: 1.3;
  margin: 0 0 24px;
  font-weight: 400;
}
.about-split__quote em { color: var(--gold); }
.about-split__sig {
  display: block;
  margin-top: 24px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--paper);
  font-weight: 400;
}
.about-split__sig-role {
  display: block;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 4px;
}

/* Bottle Shop */
.bottle {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.bottle__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
}
.bottle__media img { width: 100%; height: 100%; object-fit: cover; }
.bottle__body p { color: var(--paper-soft); margin: 0 0 16px; line-height: 1.65; max-width: 520px; }

/* Events */
.events { display: grid; gap: 0; border-top: 1px solid var(--line); }
.event {
  display: grid;
  grid-template-columns: 90px 1fr 200px 160px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.event__date {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--gold);
  line-height: 1.1;
  font-weight: 400;
}
.event__date strong {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--paper);
  font-weight: 400;
  line-height: 1;
}
.event__date span {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--paper-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.event__title h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 0 0 6px;
  font-weight: 500;
}
.event__title h3 em { font-style: italic; color: var(--bordeaux-soft); }
.event__title p { color: var(--paper-deep); margin: 0; font-size: 0.92rem; line-height: 1.55; }
.event__meta {
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--paper-soft);
  line-height: 1.55;
}
.event__meta strong { color: var(--paper); display: block; font-family: var(--display); font-style: italic; font-size: 1rem; font-weight: 400; margin-bottom: 2px; letter-spacing: 0; }
.event__cta { display: flex; justify-content: flex-end; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card { display: flex; flex-direction: column; }
.team-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0 0 18px;
  background: var(--ink-deep);
}
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-family: var(--display); font-size: 1.45rem; margin: 0 0 4px; font-weight: 500; color: var(--paper); }
.team-card__role {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.team-card__bio { color: var(--paper-deep); font-size: 0.94rem; margin: 0; line-height: 1.55; }

/* Page hero (subpages) */
.page-hero {
  padding: clamp(64px, 8vw, 110px) clamp(28px, 5vw, 64px) clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}
.page-hero__crumbs {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.page-hero__crumbs a { color: var(--paper-dim); text-decoration: none; }
.page-hero__crumbs a:hover { color: var(--gold); }
.page-hero h1 { font-weight: 400; max-width: 800px; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { color: var(--paper-deep); max-width: 580px; font-size: 1.06rem; margin: 20px 0 0; line-height: 1.6; }

/* Sub-Nav (page section anchors) — for speisekarte / weinkarte */
.subnav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}
.subnav a {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper-deep);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.subnav a:hover { color: var(--gold); }
.subnav a.is-active { color: var(--gold); border-color: var(--gold); }

/* FAQ */
.faq { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--gold); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 60px 24px 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--paper);
  position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--gold);
  transition: transform 0.25s ease;
  line-height: 1;
  font-style: italic;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer {
  color: var(--paper-deep);
  padding: 0 0 24px;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 720px;
}
.faq__answer p { margin-bottom: 12px; color: var(--paper-deep); }
.faq__answer p:last-child { margin-bottom: 0; }

/* Jobs */
.jobs { border-top: 1px solid var(--gold); }
.job {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 160px;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.job h3 { font-family: var(--display); font-size: 1.4rem; margin-bottom: 6px; font-weight: 500; }
.job h3 em { font-style: italic; color: var(--gold); }
.job__tag-row { display: flex; gap: 8px; flex-wrap: wrap; }
.job__tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  background: var(--ink-deep);
  color: var(--paper);
  padding: 4px 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
}
.job__cell {
  font-family: var(--mono);
  font-size: 0.86rem;
  color: var(--paper-deep);
}
.job__cell strong { display: block; color: var(--paper); font-family: var(--display); font-style: italic; font-size: 1rem; font-weight: 400; margin-bottom: 2px; letter-spacing: 0; }
.job__apply { display: flex; justify-content: flex-end; }

/* Form */
.form {
  background: var(--ink-deep);
  padding: clamp(36px, 4vw, 52px);
  border: 1px solid var(--line-strong);
  max-width: 760px;
  margin: 0 auto;
}
.form__row { display: grid; gap: 18px; margin-bottom: 18px; }
.form__row--two { grid-template-columns: 1fr 1fr; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.form__field input,
.form__field select,
.form__field textarea {
  font-family: var(--body);
  font-size: 1rem;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: var(--paper);
  transition: border-color 0.2s ease;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__radios { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.form__radios label {
  background: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  cursor: pointer;
  letter-spacing: normal;
  font-size: 0.92rem;
  text-transform: none;
  font-weight: 500;
  color: var(--paper);
  font-family: var(--body);
}
.form__radios input { accent-color: var(--gold); }
.form__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--paper-deep);
  margin: 12px 0 20px;
}
.form__consent input { margin-top: 4px; accent-color: var(--gold); }
.form__submit { width: 100%; justify-content: center; }
.form__status {
  display: none;
  background: var(--bordeaux-deep);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  color: var(--paper);
  margin-bottom: 16px;
  font-size: 0.94rem;
}

/* Map */
.map {
  overflow: hidden;
  background: var(--ink-deep);
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
}
.map__static {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle at 50% 50%, rgba(194, 168, 120, 0.18) 0%, transparent 28%),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(232, 220, 183, 0.04) 48px 49px),
    repeating-linear-gradient(90deg, transparent 0 48px, rgba(232, 220, 183, 0.04) 48px 49px),
    var(--ink-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__pin {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bordeaux-soft);
  border: 4px solid var(--paper);
  position: relative;
}
.map__pin::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1.5px solid var(--bordeaux-soft);
  opacity: 0.5;
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--gold);
  padding-top: 32px;
  margin-bottom: 64px;
}
.contact-card { }
.contact-card__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 500;
}
.contact-card__value {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--paper);
  margin: 0;
  line-height: 1.25;
  font-weight: 500;
}
.contact-card__value a { text-decoration: none; }
.contact-card__value a:hover { color: var(--gold); }
.contact-card__sub {
  display: block;
  margin-top: 12px;
  font-family: var(--body);
  font-size: 0.94rem;
  color: var(--paper-deep);
  line-height: 1.6;
}

/* Hours */
.hours {
  display: grid; gap: 0;
  font-family: var(--body);
  max-width: 420px;
  border-top: 1px solid var(--line);
}
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
  color: var(--paper-soft);
}
.hours__day { color: var(--paper); font-weight: 500; font-family: var(--mono); font-size: 0.84rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hours__row--closed { color: var(--paper-dim); font-style: italic; }

/* Legal */
.legal { max-width: 780px; }
.legal h2 { margin: 48px 0 14px; font-size: 1.6rem; font-family: var(--display); font-weight: 500; }
.legal h2 em { font-style: italic; color: var(--gold); }
.legal h3 { margin: 32px 0 10px; font-size: 1.1rem; font-weight: 600; color: var(--paper); }
.legal p, .legal li { color: var(--paper-soft); line-height: 1.7; margin: 0 0 12px; }
.legal address { font-style: normal; color: var(--paper-soft); }
.legal ul { padding-left: 20px; }
.legal__note {
  background: var(--bordeaux-deep);
  border-left: 3px solid var(--gold);
  padding: 18px 24px;
  font-size: 0.92rem;
  margin: 18px 0;
  color: var(--paper);
}
.legal__note strong { color: var(--gold); }

/* Footer */
.footer {
  padding: 56px clamp(28px, 5vw, 64px) 32px;
  border-top: 1px solid var(--line);
  background: var(--ink-deep);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer__brand {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--paper);
  text-decoration: none;
  margin-bottom: 14px;
  display: block;
}
.footer__about { font-size: 0.94rem; line-height: 1.65; color: var(--paper-deep); max-width: 320px; margin: 0; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.footer__col a, .footer__col p {
  display: block;
  text-decoration: none;
  color: var(--paper-deep);
  font-size: 0.94rem;
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.footer__col a:hover { color: var(--gold); }
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--paper-dim);
  flex-wrap: wrap;
}
.footer__legal a {
  color: var(--paper-deep);
  text-decoration: none;
  margin-left: 18px;
}
.footer__legal a:hover { color: var(--gold); }

/* Cookie banner */
.cookie {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 460px;
  background: var(--ink-deep);
  color: var(--paper);
  padding: 22px 24px;
  z-index: 200;
  display: none;
  border: 1px solid var(--gold);
  border-top: 3px solid var(--gold);
}
.cookie.is-visible { display: block; }
.cookie h4 {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--paper);
  margin: 0 0 8px;
  font-weight: 500;
}
.cookie p {
  font-size: 0.92rem;
  margin: 0 0 16px;
  color: var(--paper-deep);
  line-height: 1.55;
}
.cookie__row { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { padding: 10px 18px; font-size: 0.86rem; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
 * Responsive
 * ============================================================ */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .usp { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr 1fr; }
  .about-split__media:nth-child(2) { display: none; }
}
@media (max-width: 880px) {
  :root { --sidebar-w: 0; }
  .layout { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
    padding: 80px 28px 28px;
  }
  body.menu-open .sidebar { transform: translateX(0); }
  .mobile-topbar { display: flex; }
  .main { padding-top: 0; }
  .tageskarte { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { padding-right: 0; }
  .menu-item:nth-child(even) { padding-left: 0; border-left: 0; }
  .wine-row { grid-template-columns: 1fr 1fr; gap: 6px 16px; }
  .wine-row__country { grid-column: 1 / -1; }
  .wine-row__name { grid-column: 1 / -1; }
  .wine-row__year { grid-column: 1; }
  .wine-row__price { grid-column: 2; }
  .about-split, .bottle { grid-template-columns: 1fr; }
  .about-split__media { aspect-ratio: 4 / 3; max-height: 320px; }
  .event { grid-template-columns: 76px 1fr; gap: 18px; }
  .event__meta, .event__cta { grid-column: 2; justify-self: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form__row--two { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .job { grid-template-columns: 1fr; }
  .hero { min-height: 60vh; }
}
@media (max-width: 540px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 18px; }
}
