/* =====================================================
   how-to-connect.de – Style System
   Theme: Marketing & Kommunikation für Transport, Logistik & Remote-Teams
   Fonts: Barlow Semi Condensed (headings) + Source Sans 3 (body)
   Colors: Teal, Coral, Warm Neutral
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --navy: #0d6e7c;
  --navy-mid: #1a8c9e;
  --navy-dark: #084a55;
  --navy-light: #e6f4f6;
  --orange: #e85a4f;
  --orange-dark: #c94238;
  --orange-light: #fff0ee;
  --orange-mid: #fcd9d3;
  --warm-bg: #f7f7f4;
  --white: #ffffff;
  --border: #e5e7eb;
  --border-strong: #d1d5db;
  --text: #1f2937;
  --text-mid: #4b5563;
  --text-light: #9ca3af;

  --font-head: 'Barlow Semi Condensed', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-xs: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-sm: 0 2px 8px rgba(13,110,124,0.09);
  --shadow-md: 0 6px 24px rgba(13,110,124,0.13);
  --shadow-lg: 0 16px 48px rgba(13,110,124,0.18);

  --container: 1160px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
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(--navy);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); 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: 4px;
  width: 0%;
  background: var(--orange);
  z-index: 9999; transition: width 0.1s linear;
}

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

.main-nav { list-style: none; display: flex; gap: 4px; padding: 0; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}
.main-nav a:hover { color: var(--navy); background: var(--navy-light); text-decoration: none; }
.main-nav .nav-highlight {
  background: var(--orange);
  color: var(--white) !important;
  padding: 7px 16px;
}
.main-nav .nav-highlight:hover { background: var(--orange-dark) !important; }

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

/* ===== HERO ===== */
.site-hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 0 68px;
  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.18; display: block;
}
.site-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(8,74,85,0.97) 0%, rgba(13,110,124,0.88) 55%, rgba(232,90,79,0.15) 100%);
}
/* Orange left-edge accent */
.site-hero::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--orange);
  z-index: 3;
}
.site-hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--orange);
}
.site-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  max-width: 680px;
}
.site-hero h1 span { color: var(--orange); }
.site-hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 13px 30px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-dark); text-decoration: none; color: var(--white); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 26px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); text-decoration: none; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-val span { color: var(--orange); }
.hero-stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  margin-top: 5px;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.band-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.band-header h2 { margin: 0; }
.band-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.band-header a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--orange);
}
.band-header a:hover { text-decoration: none; color: var(--orange); }

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

.tm-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 22px;
  transition: box-shadow 0.2s, border-top-color 0.2s, transform 0.2s;
  color: var(--text);
}
.tm-card:hover {
  box-shadow: var(--shadow-md);
  border-top-color: var(--orange);
  transform: translateY(-2px);
  text-decoration: none;
}
.tm-card.card-dark {
  background: var(--navy);
  border-color: transparent;
  border-top-color: var(--orange);
}
.tm-card-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-light);
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.card-dark .tm-card-tag { background: rgba(244,99,30,0.2); color: #fba080; }
.tm-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 10px;
}
.card-dark .tm-card-title { color: var(--white); }
.tm-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 14px;
}
.card-dark .tm-card-excerpt { color: rgba(255,255,255,0.6); }
.tm-card-meta {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-dark .tm-card-meta { color: rgba(255,255,255,0.3); }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--navy);
  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.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--orange);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-top: 0; margin-bottom: 12px; font-size: 2rem; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; }
.btn-cta-white {
  display: inline-block;
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-cta-white:hover { background: var(--navy); color: var(--white); text-decoration: none; transform: translateY(-1px); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-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.875rem;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-top: 16px;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  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(--white); 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.25);
}
.footer-logo img { height: 36px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: var(--white); text-decoration: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--warm-bg);
  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-head);
  font-size: 0.8rem;
  font-weight: 500;
  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(--orange); text-decoration: none; }
.crumb-sep { color: var(--border-strong); }
.crumb-cur { color: var(--navy); font-weight: 700; }

/* ===== ARTICLE HERO ===== */
.art-hero {
  background: var(--navy);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--orange);
}
.art-hero::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--orange);
}
.art-hero .container { position: relative; z-index: 1; padding-left: 36px; }
.art-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.art-hero h1 {
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 820px;
  letter-spacing: 0.01em;
}
.art-hero p.lead {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-top: 14px;
  max-width: 720px;
  margin-bottom: 0;
}

/* ===== META BAR ===== */
.meta-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.meta-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 11px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.02em;
}
.meta-av {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.meta-sep { color: var(--border-strong); }
.meta-updated { margin-left: auto; font-size: 0.72rem; color: var(--text-light); }

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

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

/* Pull Quote */
.pull-quote {
  margin: 32px 0;
  padding: 20px 26px;
  border-left: 5px solid var(--orange);
  background: var(--orange-light);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Highlight Box (dark) */
.hl-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin: 28px 0;
}
.hl-box-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.hl-box p { color: rgba(255,255,255,0.82); margin-bottom: 0; }
.hl-box ul { color: rgba(255,255,255,0.82); list-style: none; padding: 0; margin: 0; }
.hl-box ul li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  display: flex; justify-content: space-between;
}
.hl-box ul li:last-child { border-bottom: none; }
.hl-box ul li strong, .hl-box strong { color: var(--orange); }

/* Info Box */
.info-box {
  border: 1px solid var(--navy-light);
  border-left: 4px solid var(--navy);
  background: var(--navy-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 0.95rem;
}
.info-box-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.info-box p { margin-bottom: 0; color: var(--text); }
.info-box ul { margin: 0; }
.info-box ul li { margin-bottom: 0.4rem; }

/* Verdict Box */
.verdict-box {
  background: var(--orange-light);
  border: 1px solid var(--orange-mid);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 36px 0;
}
.verdict-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 10px;
}
.verdict-box p { margin-bottom: 0; font-size: 0.95rem; }
.verdict-box p + p { margin-top: 0.8rem; margin-bottom: 0; }

/* Warning Box */
.warn-box {
  border-left: 4px solid #f59e0b;
  background: #fffbeb;
  padding: 14px 18px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
}
.warn-box p { margin: 0; color: var(--text); }

/* Sources Box */
.sources-box {
  background: var(--warm-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-top: 32px;
  font-size: 0.83rem;
}
.sources-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  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: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 18px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--orange); font-weight: 400; flex-shrink: 0; }
.faq-a { padding: 0 18px 14px; font-size: 0.9rem; line-height: 1.7; color: var(--text); }

/* ===== AUTHOR BOX ===== */
.art-author {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--navy-light);
  border: 1px solid rgba(13,110,124,0.12);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 40px;
}
.author-av {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  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(--navy); margin-bottom: 2px; }
.author-role { font-size: 0.78rem; color: var(--text-mid); margin-bottom: 8px; }
.author-bio { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

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

/* TL;DR box */
.side-tldr {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 18px;
}
.side-tldr-head {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.side-tldr ul {
  list-style: none;
  padding: 0; margin: 0;
  color: rgba(255,255,255,0.82);
}
.side-tldr ul li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.875rem;
  line-height: 1.5;
  display: flex; align-items: flex-start; gap: 8px;
}
.side-tldr ul li::before { content: '▸'; color: var(--orange); flex-shrink: 0; font-size: 0.7rem; margin-top: 4px; }
.side-tldr ul li:last-child { border-bottom: none; }

/* Articles box */
.side-links {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 18px;
}
.side-links-head {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  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: 8px 0; }
.side-links ul li:last-child { border-bottom: none; }
.side-links ul li a {
  font-size: 0.875rem;
  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(--orange); text-decoration: none; }

/* CTA box */
.side-cta {
  background: var(--orange);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
}
.side-cta-head {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.side-cta p { font-size: 0.875rem; color: rgba(255,255,255,0.9); margin-bottom: 14px; line-height: 1.55; }
.btn-side {
  display: block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  padding: 11px 18px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-side:hover { background: var(--navy-dark); color: var(--white); text-decoration: none; }

/* ===== RELATED ===== */
.related-section {
  background: var(--warm-bg);
  border-top: 1px solid var(--border);
  padding: 52px 0;
}
.related-section h2 { font-size: 1.3rem; margin: 0 0 22px; border: none; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 18px;
  transition: box-shadow 0.2s, border-top-color 0.2s;
  color: var(--text);
}
.related-card:hover { box-shadow: var(--shadow-sm); border-top-color: var(--orange); text-decoration: none; }
.related-card-tag {
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--orange); margin-bottom: 7px;
}
.related-card-title {
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700;
  line-height: 1.35; color: var(--navy);
}
.related-card-arrow { font-size: 0.8rem; color: var(--orange); font-weight: 600; margin-top: 10px; display: block; }

/* ===== UTILITY PAGES ===== */
.page-hero { background: var(--navy); padding: 52px 0; border-bottom: 4px solid var(--orange); }
.page-hero h1 { color: var(--white); font-size: 2.2rem; }
.page-body { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; }
.page-body h2 { border-bottom: 2px solid var(--navy-light); padding-bottom: 8px; }
.page-body h3 { font-size: 1.1rem; }
.page-body ul li, .page-body ol li { margin-bottom: 0.4rem; }

/* ===== 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: 68px; 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(--navy); 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); }
  .art-hero .container { padding-left: 24px; }
  .site-hero::after { width: 4px; }
}
