/* ============================================================
   Hofcafé & Hofladen Vogler — Demo-Stylesheet
   Palette: Weinrot #A8202A | Gold #C8981A | Creme #FDF8F0
   Fonts: Rokkitt (Headline), Barlow (Body) — lokal
   ============================================================ */

/* ---------- @font-face ---------- */
@font-face {
  font-family: 'Rokkitt';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/rokkitt-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Rokkitt';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/rokkitt-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Rokkitt';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/rokkitt-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/barlow-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/barlow-600.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --wine:       #A8202A;
  --wine-dark:  #5C2D0A;
  --wine-deep:  #7A1820;
  --gold:       #C8981A;
  --gold-light: #E8B830;
  --cream:      #FDF8F0;
  --beige:      #F0E5C8;
  --ink:        #2C1A0E;
  --ink-soft:   #6B4C35;
  --white:      #FFFFFF;

  --font-head: 'Rokkitt', Georgia, serif;
  --font-body: 'Barlow', system-ui, sans-serif;

  --radius:  0.5rem;
  --radius-l: 1rem;
  --shadow: 0 4px 24px rgba(44,26,14,0.10);
  --shadow-sm: 0 2px 8px rgba(44,26,14,0.08);

  --max-w: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--wine); }
a:hover { color: var(--wine-dark); }
ul { list-style: none; }

/* ---------- Grain-Overlay (Textur-Simulation) ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--wine);
  color: var(--white);
  text-align: center;
  font-size: 0.8rem;
  padding: 0.45rem var(--gutter);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.demo-bar strong { font-weight: 600; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  hyphens: manual;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.mark { color: var(--wine); }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid var(--wine);
  color: var(--wine);
  background: transparent;
}
.btn:hover { background: var(--wine); color: var(--white); }

.btn--solid {
  background: var(--wine);
  color: var(--white);
}
.btn--solid:hover { background: var(--wine-deep); border-color: var(--wine-deep); color: var(--white); }

.btn--gold {
  background: var(--gold);
  color: var(--wine-dark);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--wine-dark); }

.btn--light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--light:hover { background: rgba(255,255,255,0.15); color: var(--white); border-color: var(--white); }

/* ---------- Site Header ---------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
}
.site-head__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 72px;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__emblem {
  width: 52px;
  height: 34px;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--wine);
  line-height: 1.15;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--wine);
  background: rgba(168,32,42,0.07);
}
.nav__cta {
  background: var(--wine) !important;
  color: var(--white) !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: var(--radius) !important;
}
.nav__cta:hover { background: var(--wine-deep) !important; }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--wine-dark) 0%, var(--wine) 40%, #8B1C22 100%);
  color: var(--white);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200,152,26,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 40% 80% at 10% 80%, rgba(0,0,0,0.2) 0%, transparent 60%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 .mark { color: var(--gold); }
.hero .lead { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Hero Emblem */
.hero__emblem-wrap { flex-shrink: 0; }
.hero__emblem {
  width: clamp(180px, 22vw, 280px);
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.section--wine {
  background: linear-gradient(160deg, var(--wine-dark) 0%, var(--wine) 100%);
  color: var(--white);
}
.section--wine .eyebrow { color: var(--gold); }
.section--wine h2, .section--wine h3 { color: var(--white); }
.section--wine .mark { color: var(--gold); }
.section--wine p { color: rgba(255,255,255,0.88); }
.section--wine a { color: var(--gold); }

.section--beige { background: var(--beige); }
.section--cream { background: var(--cream); }

.section__head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.section__head p { color: var(--ink-soft); margin-top: 0.8rem; }

/* ---------- Dinnele-Feature ---------- */
.dinnele-band {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 50%, #6B1218 100%);
  color: var(--white);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  position: relative;
  overflow: hidden;
}
.dinnele-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,152,26,0.15) 0%, transparent 65%);
}
.dinnele-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.dinnele-band .eyebrow { color: var(--gold); }
.dinnele-band h2 { color: var(--white); margin-bottom: 1rem; }
.dinnele-band h2 .mark { color: var(--gold-light); }
.dinnele-band p { color: rgba(255,255,255,0.88); margin-bottom: 0.8rem; }
.dinnele-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--wine-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.dinnele-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dinnele-art svg {
  width: clamp(180px, 25vw, 300px);
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.4));
}

/* ---------- Highlights-Grid (3er) ---------- */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.highlight-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.highlight-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(168,32,42,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.highlight-card__icon svg { width: 28px; height: 28px; color: var(--wine); }
.highlight-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.highlight-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Öffnungszeiten ---------- */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.hours-block {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.hours-block h3 {
  font-size: 1.1rem;
  color: var(--wine);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--beige);
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.hours-table tr + tr td,
.hours-table tr + tr th { border-top: 1px solid var(--beige); }
.hours-table th {
  text-align: left;
  font-weight: 600;
  padding: 0.55rem 0;
  width: 55%;
  color: var(--ink);
}
.hours-table td {
  text-align: right;
  padding: 0.55rem 0;
  color: var(--ink-soft);
}
.hours-table .is-note td,
.hours-table .is-note th {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
}
.hours-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--beige);
}

/* ---------- Produkte-Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--wine);
}
.product-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--wine); }
.product-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Zukauf-Liste ---------- */
.zukauf-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.zukauf-tag {
  background: var(--beige);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 2rem;
  border: 1px solid rgba(168,32,42,0.15);
}

/* ---------- Split-Layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

/* ---------- Photo-Placeholder ---------- */
.photo-ph {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--beige), #E8DEC4);
  border-radius: var(--radius-l);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  border: 2px dashed rgba(168,32,42,0.2);
}
.photo-ph svg { width: 40px; height: 40px; opacity: 0.4; }
.photo-ph small { display: block; font-size: 0.75rem; opacity: 0.7; margin-top: 0.25rem; }

/* ---------- CTA-Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 100%);
  color: var(--white);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 56ch; margin-inline: auto; margin-bottom: 2rem; }
.tel-link {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.tel-link:hover { color: var(--gold-light); }

/* ---------- Kontakt-Karte ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.kontakt-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.kontakt-card h3 {
  font-size: 1rem;
  color: var(--wine);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-body);
  font-weight: 600;
}
.kontakt-row {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--beige);
  font-size: 0.92rem;
}
.kontakt-row:last-child { border-bottom: none; }
.kontakt-row__label { color: var(--ink-soft); min-width: 90px; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; padding-top: 0.1rem; }
.kontakt-row__val { flex: 1; }
.kontakt-row__val a { color: var(--wine); text-decoration: none; font-weight: 600; }
.kontakt-row__val a:hover { text-decoration: underline; }

/* Anfahrt-Button */
.maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wine);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  margin-top: 1.2rem;
  transition: background 0.2s;
}
.maps-link:hover { background: var(--wine-deep); color: var(--white); }
.maps-link svg { width: 18px; height: 18px; }

/* ---------- Impressum / Datenschutz ---------- */
.legal-page { max-width: 780px; margin-inline: auto; padding: clamp(2rem, 5vw, 4rem) 0; }
.legal-page h2 { font-size: 1.4rem; margin-top: 2.4rem; margin-bottom: 0.6rem; }
.legal-page h3 { font-size: 1.1rem; margin-top: 1.8rem; margin-bottom: 0.4rem; }
.legal-page p, .legal-page li { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 0.6rem; }
.legal-page ul { list-style: disc; padding-left: 1.5rem; }
.legal-page a { color: var(--wine); }

.demo-notice {
  background: var(--beige);
  border-left: 4px solid var(--wine);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2rem;
}
.demo-notice strong { color: var(--wine); }
.demo-notice p { font-size: 0.9rem; color: var(--ink); margin: 0; }

/* ---------- Note-Card ---------- */
.note-card {
  background: rgba(200,152,26,0.1);
  border: 1px solid rgba(200,152,26,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 2rem;
}

/* ---------- Checker / Ornament ---------- */
.checker {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--wine) 0px,
    var(--wine) 20px,
    var(--gold) 20px,
    var(--gold) 40px
  );
  opacity: 0.7;
}

/* ---------- Footer ---------- */
.site-foot {
  background: var(--wine-dark);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.site-foot h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.site-foot ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.site-foot li { font-size: 0.88rem; }
.site-foot a { color: rgba(255,255,255,0.75); text-decoration: none; }
.site-foot a:hover { color: var(--gold); }
.foot-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.foot-meta a { color: rgba(255,255,255,0.55); text-decoration: none; }
.foot-meta a:hover { color: var(--gold); }

/* ---------- Reveal-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ---------- Dinnele-Varianten ---------- */
.dinnele-variants {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.dinnele-variant {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(200,152,26,0.4);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}
.dinnele-variant h4 { font-size: 0.95rem; color: var(--gold-light); margin-bottom: 0.3rem; }
.dinnele-variant p { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

/* ---------- Café-Angebot ---------- */
.cafe-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.cafe-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 3px solid var(--wine);
}
.cafe-card__emoji {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}
.cafe-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.cafe-card p { font-size: 0.86rem; color: var(--ink-soft); }

/* ---------- Team / Über uns ---------- */
.team-info {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.team-info__name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wine);
}
.team-info p { color: var(--ink-soft); }

/* ---------- Timeline (Über uns) ---------- */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0.6rem;
  top: 0.4rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--wine), var(--gold));
  border-radius: 2px;
}
.timeline__item {
  position: relative;
  margin-bottom: 2rem;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wine);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--wine);
}
.timeline__year {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 0.2rem;
}
.timeline__text { font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Seiten-Hero (interne Seiten) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 100%);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 60ch; margin-inline: auto; margin-top: 0.7rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__emblem-wrap { order: -1; display: flex; justify-content: center; }
  .hero .lead { margin-inline: auto; }
  .hero__actions { justify-content: center; }

  .dinnele-band__inner { grid-template-columns: 1fr; text-align: center; }
  .dinnele-art { order: -1; }

  .highlights { grid-template-columns: 1fr 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
}

/* Mobil */
@media (max-width: 600px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--cream); border-bottom: 2px solid var(--beige); padding: 1rem var(--gutter) 1.5rem; gap: 0.2rem; z-index: 190; }
  .nav.is-open { display: flex; }
  .nav-toggle { display: flex; }

  .highlights { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .cafe-cards { grid-template-columns: 1fr 1fr; }
  .dinnele-variants { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .foot-meta { flex-direction: column; gap: 0.4rem; }
}

@media (max-width: 390px) {
  .cafe-cards { grid-template-columns: 1fr; }
  .btn { padding: 0.65rem 1.2rem; font-size: 0.88rem; }
}
