/* =====================================================
   weinhauselsass.de – Style System
   Theme: Elegantes Weinmagazin
   Fonts: Playfair Display (headings) + Lora (body)
   Colors: Wine Red, Gold, Cream, Deep Brown
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --wine: #722F37;
  --wine-deep: #5A1E25;
  --wine-dark: #2A1A1E;
  --wine-light: #f5e8ea;
  --wine-muted: #a66670;
  --gold: #C5A55A;
  --gold-dark: #9E8340;
  --gold-light: #f7f0dc;
  --cream: #F8F4EC;
  --cream-dark: #EDE6D8;
  --white: #ffffff;
  --border: #e8e0d4;
  --border-strong: #d4c9b8;
  --text: #3a2e2e;
  --text-mid: #6b5c5c;
  --text-light: #9e8e8e;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, serif;

  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-xs: 0 1px 3px rgba(42,26,30,0.06);
  --shadow-sm: 0 2px 8px rgba(42,26,30,0.08);
  --shadow-md: 0 6px 24px rgba(42,26,30,0.12);
  --shadow-lg: 0 16px 48px rgba(42,26,30,0.16);

  --container: 1120px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background: var(--cream);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--wine-deep); }
ul, ol { padding-left: 1.5rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--wine-dark);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-top: 1.8rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1.2rem; }

/* ===== CONTAINER ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== READ BAR ===== */
.read-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  z-index: 9999; transition: width 0.1s linear;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 72px;
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 42px; width: auto; }

.main-nav { list-style: none; display: flex; gap: 2px; padding: 0; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.main-nav a:hover { color: var(--wine); background: var(--wine-light); text-decoration: none; }
.main-nav .nav-highlight {
  background: var(--wine);
  color: var(--white) !important;
  padding: 8px 18px;
}
.main-nav .nav-highlight:hover { background: var(--wine-deep) !important; }

.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--wine-dark); margin: 5px 0;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.site-hero {
  background: var(--wine-dark);
  color: var(--white);
  padding: 88px 0 76px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.2; display: block;
}
.site-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(42,26,30,0.95) 0%, rgba(114,47,55,0.85) 50%, rgba(197,165,90,0.12) 100%);
}
.site-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  z-index: 3;
}
.site-hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.site-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  max-width: 640px;
}
.site-hero h1 span { color: var(--gold); }
.site-hero p.lead {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--wine-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-dark); text-decoration: none; color: var(--white); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

.hero-stats {
  display: flex; gap: 48px; margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-val span { color: var(--gold); }
.hero-stat-desc {
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  font-family: var(--font-body);
}

/* ===== TOPIC BAND ===== */
.topic-band { background: var(--cream); padding: 68px 0; }
.topic-band.bg-warm { background: var(--white); }

.band-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.band-header h2 { margin: 0; }
.band-eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.band-header a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wine);
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--gold);
}
.band-header a:hover { text-decoration: none; color: var(--wine-deep); }

/* ===== ARTICLE CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.wh-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.25s, transform 0.2s;
  color: var(--text);
  position: relative;
}
.wh-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 2px;
}
.wh-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  text-decoration: none;
}
.wh-card:hover::before { opacity: 1; }

.wh-card.card-featured {
  background: var(--wine-dark);
  border-color: transparent;
}
.wh-card.card-featured::before { opacity: 1; left: 0; right: 0; background: var(--gold); }
.wh-card-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--wine);
  background: var(--wine-light);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.card-featured .wh-card-tag { background: rgba(197,165,90,0.2); color: var(--gold); }
.wh-card-title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.32;
  color: var(--wine-dark);
  margin-bottom: 10px;
}
.card-featured .wh-card-title { color: var(--white); }
.wh-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.card-featured .wh-card-excerpt { color: rgba(255,255,255,0.55); }
.wh-card-meta {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-light);
}
.card-featured .wh-card-meta { color: rgba(255,255,255,0.3); }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--wine);
  padding: 52px 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--wine), var(--gold));
}
.cta-band h2 { color: var(--white); margin-top: 0; margin-bottom: 14px; font-size: 2.2rem; }
.cta-band p { color: rgba(255,255,255,0.7); font-style: italic; max-width: 500px; margin: 0 auto 32px; }
.btn-cta-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--wine-dark);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 15px 36px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-cta-gold:hover { background: var(--white); color: var(--wine); text-decoration: none; transform: translateY(-1px); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--wine-dark);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.38);
  max-width: 280px;
  margin-top: 16px;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}
.footer-logo img { height: 38px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: var(--gold); text-decoration: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--text-mid); }
.breadcrumb-inner a:hover { color: var(--wine); text-decoration: none; }
.crumb-sep { color: var(--border-strong); }
.crumb-cur { color: var(--wine-dark); font-weight: 600; font-style: normal; }

/* ===== ARTICLE HERO ===== */
.art-hero {
  background: linear-gradient(135deg, var(--wine-dark) 0%, var(--wine) 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.art-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--wine));
}
.art-hero .container,
.art-hero .art-hero-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.art-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.06em;
  background: var(--gold);
  color: var(--wine-dark);
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.art-hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 780px;
  letter-spacing: -0.01em;
}
.art-hero p.lead,
.art-hero .art-subtitle,
.art-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  font-style: italic;
  margin-top: 16px;
  max-width: 680px;
  margin-bottom: 0;
}

/* ===== META BAR ===== */
.meta-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.meta-bar-inner,
.meta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-mid);
}
.meta-av {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  font-style: normal;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.meta-sep { color: var(--border-strong); }
.meta-updated { margin-left: auto; font-size: 0.75rem; color: var(--text-light); }

/* ===== ARTICLE LAYOUT ===== */
.art-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 52px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 52px;
  align-items: start;
}

/* ===== ARTICLE BODY ===== */
.art-body h2 {
  color: var(--wine-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.art-body ul li { margin-bottom: 0.5rem; }
.art-body a { color: var(--wine); }
.art-body a:hover { color: var(--wine-deep); }
.art-body strong { font-weight: 700; color: var(--wine-dark); }

/* Pull Quote */
.pull-quote {
  margin: 36px 0;
  padding: 22px 28px;
  border-left: 3px solid var(--gold);
  background: var(--gold-light);
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--wine-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Highlight Box */
.hl-box {
  background: var(--wine-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.hl-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hl-box-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 12px;
}
.hl-box p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.hl-box ul { color: rgba(255,255,255,0.8); list-style: none; padding: 0; margin: 0; }
.hl-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.92rem;
}
.hl-box ul li:last-child { border-bottom: none; }
.hl-box ul li strong, .hl-box strong { color: var(--gold); }

/* Info Box */
.info-box {
  border: 1px solid var(--border);
  border-left: 3px solid var(--wine);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 0.95rem;
}
.info-box-title {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  font-style: italic;
  color: var(--wine);
  margin-bottom: 8px;
}
.info-box p { margin-bottom: 0; color: var(--text); }

/* Verdict Box */
.verdict-box {
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 26px;
  margin: 40px 0;
}
.verdict-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.verdict-box p { margin-bottom: 0; font-size: 0.95rem; }
.verdict-box p + p { margin-top: 0.8rem; }

/* Sources Box */
.sources-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 36px;
  font-size: 0.85rem;
}
.sources-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.sources-box ul { padding-left: 1.1rem; }
.sources-box li { color: var(--text-mid); margin-bottom: 4px; }

/* ===== FAQ ===== */
.faq-list { margin-top: 28px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 20px;
  background: var(--white);
  color: var(--wine-dark);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--gold); font-weight: 400; flex-shrink: 0; }
.faq-a { padding: 0 20px 15px; font-size: 0.92rem; line-height: 1.75; color: var(--text); }

/* ===== AUTHOR BOX ===== */
.art-author {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--wine);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 44px;
}
.author-av {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.author-name { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--wine-dark); margin-bottom: 2px; }
.author-role { font-size: 0.78rem; font-style: italic; color: var(--text-mid); margin-bottom: 8px; }
.author-bio { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ===== SIDEBAR ===== */
.art-side { position: sticky; top: 84px; }

.side-tldr {
  background: var(--wine-dark);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.side-tldr::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.side-tldr-head {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
}
.side-tldr ul {
  list-style: none; padding: 0; margin: 0;
  color: rgba(255,255,255,0.8);
}
.side-tldr ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
  line-height: 1.5;
  display: flex; align-items: flex-start; gap: 8px;
}
.side-tldr ul li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }
.side-tldr ul li:last-child { border-bottom: none; }

.side-links {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--wine);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}
.side-links-head {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.side-links ul { list-style: none; padding: 0; margin: 0; }
.side-links ul li { border-bottom: 1px solid var(--border); padding: 9px 0; }
.side-links ul li:last-child { border-bottom: none; }
.side-links ul li a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-head);
  transition: color 0.2s;
  line-height: 1.4;
}
.side-links ul li a:hover { color: var(--wine); text-decoration: none; }

.side-cta {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 100%);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.side-cta::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.side-cta-head {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
}
.side-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.85); margin-bottom: 16px; line-height: 1.55; }
.btn-side {
  display: block;
  background: var(--gold);
  color: var(--wine-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-side:hover { background: var(--white); color: var(--wine); text-decoration: none; }

/* ===== RELATED ===== */
.related-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 56px 0;
}
.related-section h2 { font-size: 1.3rem; margin: 0 0 24px; border: none; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow 0.25s, transform 0.2s;
  color: var(--text);
}
.related-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); text-decoration: none; }
.related-card-tag {
  font-family: var(--font-head);
  font-size: 0.7rem; font-weight: 600; font-style: italic;
  color: var(--wine); margin-bottom: 8px;
}
.related-card-title {
  font-family: var(--font-head);
  font-size: 0.92rem; font-weight: 700;
  line-height: 1.35; color: var(--wine-dark);
}
.related-card-arrow { font-size: 0.82rem; color: var(--gold-dark); font-weight: 600; margin-top: 12px; display: block; }

/* ===== LEGAL PAGES ===== */
.legal-page { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.3rem; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.legal-page h3 { font-size: 1.1rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .site-header { padding: 0 16px; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 16px;
    gap: 4px;
    z-index: 800;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .main-nav.open a { color: var(--wine-dark); padding: 10px 14px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .art-layout { grid-template-columns: 1fr; }
  .art-side { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
