/* ==================================================================
   Rosi's Weinstube – Gestaltung der öffentlichen Seiten
   ================================================================== */

:root {
  --wine:       #6b1f32;
  --wine-dark:  #34101c;
  --wine-deep:  #4a1524;
  --wine-light: #8c3448;
  --gold:       #c19a4b;
  --gold-soft:  #e4cf9f;
  --vine:       #5f6d47;
  --cream:      #f6efe3;
  --paper:      #fffcf6;
  --ink:        #241c1a;
  --muted:      #7a6c65;
  --line:       rgba(52, 16, 28, .14);
  --shadow:     0 22px 60px rgba(52, 16, 28, .13);
  --radius:     20px;
  --serif:      Georgia, "Iowan Old Style", "Times New Roman", serif;
  --sans:       "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container { width: min(1140px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section--tint { background: linear-gradient(180deg, var(--cream), #f2e9db); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .2em; font-weight: 700;
  color: var(--wine); font-size: .74rem;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); }

.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.08; margin: 12px 0 18px; color: var(--wine-dark);
}
.lead { font-size: 1.08rem; color: var(--muted); max-width: 66ch; margin: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 700; cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--wine); color: #fff; box-shadow: 0 14px 30px rgba(107, 31, 50, .25); }
.btn-primary:hover { background: var(--wine-dark); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(107, 31, 50, .25); color: var(--wine); background: rgba(255, 255, 255, .6); }
.btn-ghost:hover { background: #fff; border-color: var(--wine); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-light:hover { background: rgba(255,255,255,.22); }

/* ---------- Kopfbereich ---------- */

.topbar { background: var(--wine-dark); color: #f6ece0; font-size: .86rem; }
.topbar-inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a:hover { color: var(--gold-soft); }
.status { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.status-dot { width: 9px; height: 9px; border-radius: 99px; background: #9db06f; box-shadow: 0 0 0 4px rgba(157, 176, 111, .18); }
.status.zu .status-dot { background: #d08b6a; box-shadow: 0 0 0 4px rgba(208, 139, 106, .18); }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 252, 246, .93); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 31, 50, .1);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-text { font-family: var(--serif); font-size: 1.32rem; color: var(--wine-dark); line-height: 1.15; }
.brand-text small {
  display: block; font-family: var(--sans); font-size: .64rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}
.nav-links { list-style: none; display: flex; align-items: center; gap: 26px; margin: 0; padding: 0; }
.nav-links a { font-size: .95rem; font-weight: 600; color: #3d302c; }
.nav-links a:hover { color: var(--wine); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 13px; background: var(--cream); color: var(--wine); font-size: 1.3rem; cursor: pointer; }

/* ---------- Meldungs-Banner ---------- */

.banner { background: var(--vine); color: #fff; }
.banner.typ-urlaub { background: linear-gradient(90deg, #7a2438, #a24a37); }
.banner.typ-warnung { background: #a3522a; }
.banner-inner { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; }
.banner-icon { flex: none; font-size: 1.15rem; line-height: 1.5; }
.banner strong { display: block; font-size: 1rem; }
.banner p { margin: 2px 0 0; font-size: .93rem; opacity: .95; }

/* ---------- Hero ---------- */

.hero {
  position: relative; padding: 84px 0 78px; overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(193, 154, 75, .2), transparent 30%),
    radial-gradient(circle at 10% 85%, rgba(107, 31, 50, .12), transparent 34%),
    linear-gradient(140deg, #fffcf6 0%, #f4ebdd 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero h1 {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.03em;
  font-size: clamp(2.9rem, 6.6vw, 5.6rem); line-height: .98;
  margin: 16px 0 22px; color: var(--wine-dark);
}
.hero h1 em { color: var(--wine); font-style: italic; }
.hero p.hero-text { font-size: 1.12rem; color: #61554f; max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-meta { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 30px; color: #6a5d57; font-size: .9rem; }
.hero-meta strong { display: block; color: var(--ink); font-size: .98rem; }

.hero-visual { position: relative; justify-self: end; width: min(100%, 440px); }
.hero-visual svg { width: 100%; height: auto; filter: drop-shadow(0 26px 50px rgba(52, 16, 28, .22)); }

/* ---------- Kacheln / Karten ---------- */

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 28px; box-shadow: 0 10px 30px rgba(52, 16, 28, .05);
}
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.35rem; margin: 8px 0 8px; color: var(--wine-dark); }
.card p { margin: 0; color: var(--muted); font-size: .97rem; }
.card .tag {
  display: inline-block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--wine); background: rgba(107, 31, 50, .08);
  border-radius: 99px; padding: 4px 11px;
}

/* ---------- Weine ---------- */

.wine-note {
  margin-top: 26px; padding: 18px 22px; border-left: 3px solid var(--gold);
  background: rgba(193, 154, 75, .1); border-radius: 0 14px 14px 0; color: #5b4f49; font-size: .97rem;
}

/* ---------- Speisekarte ---------- */

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 26px; margin-top: 36px; }
.menu-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.menu-card h3 {
  font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin: 0 0 6px; color: var(--wine);
}
.menu-card h3::after { content: ""; display: block; width: 46px; height: 2px; background: var(--gold); margin-top: 12px; }
.menu-list { list-style: none; margin: 18px 0 0; padding: 0; }
.menu-list li { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.menu-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-item-head { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.menu-item-head span:first-child { font-weight: 600; }
.menu-price { color: var(--wine); font-weight: 700; white-space: nowrap; }
.menu-desc { display: block; color: var(--muted); font-size: .9rem; margin-top: 2px; }

/* ---------- Öffnungszeiten ---------- */

.hours-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 18px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.hours li:last-child { border-bottom: 0; }
.hours .tag-day { font-weight: 600; }
.hours .zu { color: var(--muted); }
.hours li.heute { color: var(--wine); font-weight: 700; }
.hours li.heute .tag-day::before { content: "▸ "; color: var(--gold); }

.hours-side { background: var(--wine-dark); color: #f3e7da; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.hours-side h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 0 0 10px; color: #fff; }
.hours-side p { color: rgba(243, 231, 218, .82); font-size: .96rem; }
.hours-side .btn { margin-top: 14px; }

/* ---------- Aktuelles ---------- */

.news-list { display: grid; gap: 18px; margin-top: 34px; }
.news-item {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 24px 26px;
}
.news-item.typ-urlaub { border-left-color: var(--wine); }
.news-item.typ-warnung { border-left-color: #b4603a; }
.news-item.typ-termin { border-left-color: var(--vine); }
.news-meta {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--wine);
}
.news-meta .datum { color: var(--muted); letter-spacing: .06em; }
.news-item h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin: 10px 0 8px; color: var(--wine-dark); }
.news-item p { margin: 0 0 8px; color: #574c47; }
.news-item p:last-child { margin-bottom: 0; }

/* ---------- So finden Sie uns ---------- */

.find-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; margin-top: 38px; }
.map-frame {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--cream);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 14px; background: #fff; border-top: 1px solid var(--line); }
.map-actions .btn { min-height: 44px; font-size: .9rem; }

.info-block { margin-bottom: 26px; }
.info-block h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin: 0 0 6px; color: var(--wine-dark); }
.info-block p { margin: 0; color: #574c47; }
.info-block p + p { margin-top: 10px; }
.info-block a:hover { color: var(--wine); }

/* ---------- Fußbereich ---------- */

.site-footer { background: var(--wine-dark); color: rgba(246, 239, 227, .8); padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.site-footer h4 { color: #fff; font-family: var(--serif); font-weight: 500; font-size: 1.15rem; margin: 0 0 10px; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 3px 0; font-size: .94rem; }
.footer-bottom {
  margin-top: 40px; padding-top: 18px; border-top: 1px solid rgba(246, 239, 227, .16);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: .84rem; color: rgba(246, 239, 227, .6);
}
.admin-link {
  display: inline-flex; align-items: center; gap: 7px; font-size: .78rem;
  color: rgba(246, 239, 227, .45); border: 1px solid rgba(246, 239, 227, .18);
  border-radius: 99px; padding: 5px 13px;
}
.admin-link:hover { color: var(--gold-soft); border-color: rgba(228, 207, 159, .5); }

/* ---------- Rechtstexte ---------- */

.legal { padding: 64px 0 80px; }
.legal h1 { font-family: var(--serif); font-weight: 500; color: var(--wine-dark); font-size: clamp(2rem, 4vw, 2.8rem); }
.legal h2 { font-family: var(--serif); font-weight: 500; color: var(--wine); font-size: 1.35rem; margin-top: 34px; }
.legal p, .legal li { color: #4f4540; max-width: 78ch; }

/* ---------- Mobil ---------- */

@media (max-width: 960px) {
  .hero-grid, .hours-wrap, .find-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { justify-self: center; width: min(100%, 340px); margin-top: 34px; }
  .section { padding: 64px 0; }
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 20px;
    background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a { display: block; padding: 13px 2px; }
  .mobile-toggle { display: grid; place-items: center; }
  .nav-actions .btn-primary { display: none; }
}

@media (max-width: 560px) {
  .topbar-inner { justify-content: center; text-align: center; }
  .hero { padding: 56px 0 48px; }
  .map-frame iframe { height: 320px; }
}

/* ==================================================================
   Edition 2026 – Eleganter Reben-Look
   ================================================================== */

:root {
  --wine:       #74213a;
  --wine-dark:  #2c0d18;
  --wine-deep:  #491323;
  --wine-light: #963e57;
  --gold:       #bb9250;
  --gold-soft:  #ead7aa;
  --vine:       #596943;
  --cream:      #f3eadc;
  --paper:      #fdfaf4;
  --ink:        #211916;
  --muted:      #74645d;
  --line:       rgba(67, 28, 38, .13);
  --shadow:     0 26px 70px rgba(44, 13, 24, .13);
  --radius:     22px;
}

body {
  background:
    radial-gradient(circle at 15% 8%, rgba(187,146,80,.055), transparent 25rem),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
}

/* feine Papierstruktur ohne externe Bilder */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .22;
  background-image:
    radial-gradient(rgba(64,39,30,.10) .55px, transparent .65px),
    radial-gradient(rgba(255,255,255,.65) .55px, transparent .65px);
  background-position: 0 0, 5px 5px;
  background-size: 10px 10px;
}

.section {
  position: relative;
  isolation: isolate;
}

.section:not(.section--tint)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -130px;
  width: min(620px, 48vw);
  aspect-ratio: 1;
  background: url("vine-ornament.svg") center/contain no-repeat;
  z-index: -1;
  pointer-events: none;
  opacity: .58;
}

.section:nth-of-type(even):not(.section--tint)::after {
  right: auto;
  left: -150px;
  transform: scaleX(-1) rotate(-4deg);
  opacity: .42;
}

.section--tint {
  background:
    linear-gradient(90deg, rgba(116,33,58,.035), transparent 24%, transparent 76%, rgba(89,105,67,.035)),
    linear-gradient(180deg, #f7f0e6 0%, #f0e6d7 100%);
  border-top: 1px solid rgba(187,146,80,.10);
  border-bottom: 1px solid rgba(187,146,80,.10);
}

.section--tint::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    url("vine-ornament.svg") calc(100% + 120px) -120px/590px auto no-repeat,
    url("vine-ornament.svg") -170px calc(100% + 130px)/540px auto no-repeat;
  opacity: .45;
}

.container { width: min(1180px, calc(100% - 44px)); }

.eyebrow {
  color: var(--wine);
  letter-spacing: .24em;
  font-size: .71rem;
}
.eyebrow::before {
  width: 38px;
  background: linear-gradient(90deg, var(--gold), rgba(187,146,80,.25));
}

.section-title {
  letter-spacing: -.025em;
  text-wrap: balance;
}
.section-title::after {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Header: mehr Boutique-Hotel / Weingut */
.topbar {
  background:
    linear-gradient(90deg, rgba(187,146,80,.08), transparent 22%, transparent 78%, rgba(187,146,80,.07)),
    #260b14;
}
.site-header {
  background: rgba(253,250,244,.90);
  border-bottom: 1px solid rgba(187,146,80,.22);
  box-shadow: 0 10px 30px rgba(44,13,24,.035);
}
.brand-mark {
  filter: drop-shadow(0 8px 13px rgba(44,13,24,.18));
  transition: transform .25s ease;
}
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.03); }
.brand-text { letter-spacing: -.01em; }
.nav-links a {
  position: relative;
  padding: 27px 0 25px;
  font-size: .91rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 18px;
  height: 1px;
  background: var(--gold);
  transition: left .2s ease, right .2s ease;
}
.nav-links a:hover::after { left: 0; right: 0; }

.btn {
  letter-spacing: .01em;
  border-radius: 999px;
}
.btn-primary {
  background: linear-gradient(135deg, #7c263f, #5d182e);
  box-shadow: 0 14px 34px rgba(93,24,46,.24), inset 0 1px rgba(255,255,255,.12);
  border-color: rgba(234,215,170,.14);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #692036, #421020);
  box-shadow: 0 18px 38px rgba(61,14,31,.28);
}
.btn-ghost {
  background: rgba(255,252,246,.74);
  border-color: rgba(187,146,80,.52);
  color: #652038;
}
.btn-ghost:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(77,37,43,.08);
}

/* Hero: Reben, Glas-Effekt und mehr Tiefe */
.hero {
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 104px 0 96px;
  background:
    radial-gradient(circle at 80% 20%, rgba(187,146,80,.20), transparent 29%),
    radial-gradient(circle at 12% 80%, rgba(116,33,58,.105), transparent 30%),
    linear-gradient(140deg, #fffdf9 0%, #f6eee1 52%, #efe2d1 100%);
  border-bottom: 1px solid rgba(187,146,80,.16);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -80px -110px auto auto;
  width: min(790px, 58vw);
  aspect-ratio: 1;
  background: url("vine-ornament.svg") center/contain no-repeat;
  transform: rotate(4deg);
  opacity: .80;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(187,146,80,.28) 9% 22%, transparent 22% 78%, rgba(187,146,80,.22) 78% 91%, transparent 91%),
    linear-gradient(180deg, transparent, rgba(255,255,255,.30));
  mask: linear-gradient(#000 0 1px, transparent 1px);
}
.hero-grid { gap: 72px; }
.hero h1 {
  max-width: 720px;
  font-size: clamp(3.15rem, 6.8vw, 6.15rem);
  text-shadow: 0 1px rgba(255,255,255,.85);
}
.hero h1 em {
  color: #7d2540;
  text-decoration: underline;
  text-decoration-color: rgba(187,146,80,.38);
  text-decoration-thickness: 1px;
  text-underline-offset: .12em;
}
.hero p.hero-text {
  max-width: 58ch;
  font-size: 1.15rem;
  line-height: 1.75;
}
.hero-meta {
  position: relative;
  gap: 0;
  border-top: 1px solid rgba(187,146,80,.24);
  padding-top: 22px;
  max-width: 610px;
}
.hero-meta > div {
  min-width: 135px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(116,33,58,.13);
}
.hero-meta > div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }

.hero-visual {
  width: min(100%, 470px);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 6% -8% -4% 8%;
  border: 1px solid rgba(234,215,170,.45);
  border-radius: 48% 48% 28px 28px;
  background: linear-gradient(150deg, rgba(255,255,255,.32), rgba(255,255,255,.03));
  box-shadow: inset 0 0 0 8px rgba(255,255,255,.04), 0 40px 85px rgba(44,13,24,.12);
  transform: rotate(3deg);
  z-index: -1;
}
.hero-visual svg {
  filter: drop-shadow(0 34px 54px rgba(44,13,24,.27));
  transform: translateY(-4px);
}

/* Karten mit feinem Goldrand statt "App-Kacheln" */
.card,
.menu-card,
.news-item,
.map-frame {
  position: relative;
  overflow: hidden;
}
.card {
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(253,248,239,.90));
  border-color: rgba(187,146,80,.22);
  box-shadow: 0 18px 45px rgba(44,13,24,.065);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -80px;
  top: -86px;
  border: 1px solid rgba(187,146,80,.20);
  border-radius: 50%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 64px rgba(44,13,24,.11);
  border-color: rgba(187,146,80,.42);
}
.card .tag {
  color: #6a1d35;
  background: rgba(187,146,80,.12);
  border: 1px solid rgba(187,146,80,.19);
}
.card h3 { font-size: 1.42rem; }

.wine-note {
  border-left: 0;
  border: 1px solid rgba(187,146,80,.28);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(187,146,80,.13), rgba(255,255,255,.45));
  box-shadow: inset 4px 0 0 var(--gold);
}

.menu-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(250,244,234,.92));
  border-color: rgba(187,146,80,.24);
  box-shadow: 0 16px 42px rgba(44,13,24,.055);
}
.menu-card::after {
  content: "";
  position: absolute;
  right: -76px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  background: url("vine-ornament.svg") center/contain no-repeat;
  transform: rotate(100deg);
  opacity: .34;
  pointer-events: none;
}
.menu-card h3::after {
  width: 68px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.menu-list li { position: relative; z-index: 1; }
.menu-list li:hover .menu-item-head span:first-child { color: var(--wine); }

.hours-side {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(234,215,170,.14), transparent 32%),
    linear-gradient(145deg, #37101f, #230a12);
  border: 1px solid rgba(234,215,170,.18);
}
.hours-side::after {
  content: "";
  position: absolute;
  right: -125px;
  bottom: -185px;
  width: 430px;
  height: 430px;
  background: url("vine-gold.svg") center/contain no-repeat;
  opacity: .72;
  transform: rotate(22deg);
  pointer-events: none;
}
.hours-side > * { position: relative; z-index: 1; }
.hours li.heute {
  background: linear-gradient(90deg, rgba(187,146,80,.11), transparent);
  margin-inline: -12px;
  padding-inline: 12px;
  border-radius: 10px;
}

.news-item {
  border: 1px solid rgba(187,146,80,.22);
  border-left-width: 4px;
  box-shadow: 0 12px 34px rgba(44,13,24,.045);
  background: rgba(255,255,255,.82);
}

.map-frame {
  border-color: rgba(187,146,80,.30);
  box-shadow: 0 28px 70px rgba(44,13,24,.11);
}

/* Footer bekommt dieselbe Reben-Sprache */
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 12%, rgba(187,146,80,.10), transparent 28%),
    linear-gradient(145deg, #2d0d19, #1f0810);
  border-top: 1px solid rgba(234,215,170,.18);
}
.site-footer::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -250px;
  width: 700px;
  height: 700px;
  background: url("vine-gold.svg") center/contain no-repeat;
  opacity: .9;
  pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.site-footer h4 { color: var(--gold-soft); }
.footer-bottom { border-top-color: rgba(234,215,170,.16); }

/* Rechtstexte bleiben ruhig, erhalten aber den gleichen Hintergrundcharakter */
.legal {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(247,240,230,.52));
}
.legal::after {
  content: "";
  position: absolute;
  right: -130px;
  top: 20px;
  width: 520px;
  height: 520px;
  background: url("vine-ornament.svg") center/contain no-repeat;
  opacity: .42;
  pointer-events: none;
}
.legal .container { position: relative; z-index: 1; }

@media (max-width: 960px) {
  .hero { min-height: auto; padding: 74px 0 64px; }
  .hero::before { width: 760px; right: -330px; opacity: .48; }
  .hero-grid { gap: 34px; }
  .nav-links a { padding: 13px 2px; }
  .nav-links a::after { display: none; }
  .section:not(.section--tint)::after { width: 560px; right: -300px; opacity: .34; }
  .section:nth-of-type(even):not(.section--tint)::after { left: -300px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { padding: 60px 0 52px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 4.1rem); }
  .hero-meta { gap: 16px; }
  .hero-meta > div {
    min-width: calc(50% - 8px);
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
  }
  .hero-visual { width: min(88%, 360px); }
  .section--tint::before { opacity: .28; }
}

@media (prefers-reduced-motion: reduce) {
  .card, .brand-mark, .btn { transition: none; }
}

/* ---------- Originalfotos von Rosi's Weinstube ---------- */
.photo-intro {
  position: relative;
  overflow: hidden;
  min-height: clamp(220px, 27vw, 360px);
  border-bottom: 1px solid rgba(187,146,80,.22);
  background: #2e171b;
}
.photo-intro__main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(.92) contrast(1.04) brightness(.84);
}
.photo-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(36,12,20,.68) 0%, rgba(36,12,20,.28) 43%, rgba(36,12,20,.12) 68%, rgba(36,12,20,.34) 100%),
    linear-gradient(180deg, rgba(29,10,16,.12), rgba(29,10,16,.40));
}
.photo-intro::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(232,211,166,.48);
  pointer-events: none;
}
.photo-intro__inner {
  position: relative;
  z-index: 3;
  min-height: clamp(220px, 27vw, 360px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 34px;
}
.photo-intro__copy {
  max-width: 620px;
  color: #fffaf1;
  text-shadow: 0 2px 24px rgba(0,0,0,.36);
}
.photo-intro__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .23em;
  text-transform: uppercase;
  color: #ead7aa;
}
.photo-intro__kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #d4ad63;
}
.photo-intro__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.3vw, 5rem);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.02em;
}
.photo-intro__subtitle {
  margin: 16px 0 0;
  max-width: 50ch;
  color: rgba(255,250,241,.88);
  font-size: 1.02rem;
}
.photo-intro__sign {
  width: clamp(150px, 19vw, 220px);
  flex: none;
  padding: 8px;
  background: rgba(255,252,246,.88);
  border: 1px solid rgba(226,199,139,.72);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(20,5,11,.36);
  transform: rotate(-2.2deg);
  backdrop-filter: blur(7px);
}
.photo-intro__sign img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 11px;
}
.photo-intro__sign figcaption {
  padding: 8px 6px 3px;
  text-align: center;
  font-family: var(--serif);
  color: var(--wine-dark);
  font-size: .86rem;
}
@media (max-width: 760px) {
  .photo-intro { min-height: 360px; }
  .photo-intro__inner {
    min-height: 360px;
    align-items: flex-end;
    padding-bottom: 30px;
  }
  .photo-intro__copy { padding-right: 105px; }
  .photo-intro__subtitle { display: none; }
  .photo-intro__sign {
    position: absolute;
    right: 6px;
    bottom: 26px;
    width: 116px;
    padding: 5px;
    border-radius: 13px;
  }
  .photo-intro__sign img { border-radius: 8px; }
  .photo-intro__sign figcaption { display: none; }
  .photo-intro::after { inset: 10px; }
}
@media (max-width: 460px) {
  .photo-intro__copy { padding-right: 88px; }
  .photo-intro__title { font-size: clamp(2.25rem, 12vw, 3.15rem); }
  .photo-intro__sign { width: 96px; right: 0; }
}
