@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --canvas: #eeefe9;
  --ink: #23251d;
  --body-text: #4d4f46;
  --charcoal: #33342d;
  --mute: #6c6e63;
  --ash: #9b9c92;
  --stone: #b6b7af;
  --hairline: #bfc1b7;
  --hairline-soft: #dcdfd2;
  --primary: #f7a501;
  --primary-pressed: #dd9001;
  --on-primary: #23251d;
  --surface-card: #ffffff;
  --surface-soft: #e5e7e0;
  --surface-doc: #fcfcfa;
  --surface-dark: #23251d;
  --link-teal: #1078a3;
  --link-blue: #1d4ed8;
  --accent-blue: #2c84e0;
  --accent-blue-soft: #dceaf6;
  --accent-green-soft: #d9eddf;
  --accent-red-soft: #f7d6d3;
  --accent-purple-soft: #e7d8ee;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-full: 9999px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'IBM Plex Sans', -apple-system, system-ui, sans-serif;
  background: var(--canvas);
  color: var(--body-text);
  line-height: 1.5;
  font-weight: 400;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--link-teal); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid rgba(59,130,246,0.5); outline-offset: 2px; border-radius: var(--radius-sm); }

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HEADER ─── */
.site-header {
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo svg { width: 36px; height: 36px; }

.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.site-logo-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.site-logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  transition: background 0.15s;
  white-space: nowrap;
}

.site-nav a:hover { background: var(--surface-soft); text-decoration: none; }
.site-nav a.active { background: var(--surface-soft); }

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  color: var(--ink);
  flex-shrink: 0;
}

.burger-btn:hover { background: var(--surface-soft); }
.burger-btn svg { display: block; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--canvas);
  z-index: 200;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  color: var(--ink);
}

.mobile-close-btn:hover { background: var(--surface-soft); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  display: block;
}

.mobile-nav-links a:hover { background: var(--surface-soft); text-decoration: none; }

body.nav-open { overflow: hidden; }

/* ─── HERO ─── */
.editorial-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--hairline-soft);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.hero-headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.5px;
  max-width: 760px;
  margin-bottom: 20px;
}

.hero-summary {
  font-size: 17px;
  color: var(--body-text);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-meta-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* ─── SECTION ─── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--mute);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 40px;
}

/* ─── CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.editorial-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.15s;
  display: flex;
  flex-direction: column;
}

.editorial-card:hover { border-color: var(--ash); }

.card-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-soft);
  overflow: hidden;
  position: relative;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-soft);
  color: var(--ash);
  font-size: 13px;
}

.card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--mute);
  margin-bottom: 10px;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.card-title a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover { text-decoration: underline; }

.card-excerpt {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.card-meta {
  font-size: 12px;
  font-weight: 500;
  color: var(--ash);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── FEATURED ARTICLE ─── */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.featured-article-img {
  aspect-ratio: 4/3;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.featured-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article-content { padding: 8px 0; }

.featured-article-content .card-title {
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 14px;
}

.featured-article-content .card-excerpt {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  line-height: 1.5;
}

.btn-primary:hover { background: var(--primary-pressed); text-decoration: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
  line-height: 1.5;
}

.btn-secondary:hover { background: var(--hairline-soft); text-decoration: none; }

/* ─── EDITORIAL SUMMARY BAND ─── */
.editorial-band {
  background: var(--surface-soft);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 40px 0;
}

.editorial-band-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.editorial-band-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--mute);
  margin-bottom: 12px;
}

.editorial-band-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 12px;
}

.editorial-band-body {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
}

/* ─── ARTICLE PAGE ─── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
  padding: 60px 0 80px;
}

.article-main { min-width: 0; }

.article-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.article-breadcrumb a { color: var(--mute); }
.article-breadcrumb a:hover { color: var(--link-teal); }
.article-breadcrumb-sep { color: var(--stone); }

.article-header { margin-bottom: 32px; }

.article-category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--mute);
  margin-bottom: 14px;
}

.article-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.article-summary {
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.65;
  font-weight: 500;
  border-left: 3px solid var(--primary);
  padding-left: 16px;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--mute);
  padding: 16px 0;
  border-top: 1px solid var(--hairline-soft);
  border-bottom: 1px solid var(--hairline-soft);
  margin-bottom: 32px;
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-meta-item strong { color: var(--charcoal); font-weight: 600; }

.article-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  margin-bottom: 40px;
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body { font-size: 16px; line-height: 1.75; color: var(--body-text); }

.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--hairline-soft);
}

.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
}

.article-body p { margin-bottom: 20px; }
.article-body p:last-child { margin-bottom: 0; }

.article-body ul, .article-body ol {
  margin: 16px 0 20px 24px;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; line-height: 1.65; }

.article-body a { color: var(--link-teal); }
.article-body a:hover { text-decoration: underline; }

.article-body strong { font-weight: 600; color: var(--charcoal); }

.article-body blockquote {
  border-left: 3px solid var(--primary);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--surface-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
}

.callout {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.callout-blue { background: var(--accent-blue-soft); }
.callout-green { background: var(--accent-green-soft); }

.article-inline-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
  margin: 32px 0;
}

.article-inline-img img {
  width: 100%;
  height: auto;
}

.article-inline-img figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--mute);
  background: var(--surface-soft);
  border-top: 1px solid var(--hairline-soft);
}

.article-does-not-cover {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 48px 0;
}

.article-does-not-cover h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--mute);
  margin-bottom: 12px;
}

.article-does-not-cover ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
}

.article-does-not-cover li {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 6px;
}

/* Key context box */
.key-context {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 32px 0;
}

.key-context-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--primary);
  margin-bottom: 12px;
}

.key-context ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.key-context li {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ─── TOC ─── */
.toc-box {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.toc-box-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--mute);
  margin-bottom: 14px;
}

.toc-list { list-style: none; }

.toc-list li { margin-bottom: 8px; }

.toc-list a {
  font-size: 14px;
  color: var(--link-teal);
  font-weight: 500;
  line-height: 1.4;
}

.toc-list a:hover { text-decoration: underline; }

/* ─── RELATED ARTICLES ─── */
.related-section {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
}

.related-section-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--mute);
  margin-bottom: 24px;
}

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

.related-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color 0.15s;
}

.related-card:hover { border-color: var(--ash); }

.related-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--mute);
  margin-bottom: 8px;
}

.related-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 8px;
}

.related-card-title a {
  color: inherit;
  text-decoration: none;
}

.related-card-title a:hover { text-decoration: underline; }

.related-card-meta {
  font-size: 12px;
  color: var(--ash);
}

/* ─── SIDEBAR TOC (article page) ─── */
.sidebar-toc { margin-bottom: 24px; }

.sidebar-toc-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--mute);
  margin-bottom: 12px;
}

.sidebar-toc-list { list-style: none; }

.sidebar-toc-list li { margin-bottom: 4px; }

.sidebar-toc-list a {
  font-size: 13px;
  color: var(--mute);
  font-weight: 500;
  padding: 4px 0;
  display: block;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: color 0.15s, border-color 0.15s;
}

.sidebar-toc-list a:hover,
.sidebar-toc-list a.active {
  color: var(--link-teal);
  border-left-color: var(--primary);
  text-decoration: none;
}

.sidebar-info-box {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.6;
}

.sidebar-info-box-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--mute);
  margin-bottom: 8px;
}

/* ─── STATIC PAGES ─── */
.static-page { padding: 60px 0 80px; }

.static-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.static-breadcrumb a { color: var(--mute); }
.static-breadcrumb a:hover { color: var(--link-teal); }
.static-breadcrumb-sep { color: var(--stone); }

.static-content { max-width: 760px; }

.static-content h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.static-content .page-date {
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 32px;
  display: block;
}

.static-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 14px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-soft);
}

.static-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }

.static-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 28px 0 10px;
}

.static-content p {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.static-content ul, .static-content ol {
  margin: 12px 0 16px 24px;
}

.static-content ul { list-style: disc; }
.static-content ol { list-style: decimal; }

.static-content li {
  font-size: 15px;
  color: var(--body-text);
  margin-bottom: 8px;
  line-height: 1.65;
}

.static-content a { color: var(--link-teal); }
.static-content a:hover { text-decoration: underline; }

.static-content strong { font-weight: 600; color: var(--charcoal); }

/* ─── CONTACT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 60px 0 80px;
}

.contact-intro h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}

.contact-intro p {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-form-wrap {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-error {
  font-size: 12px;
  color: #cd4239;
  margin-top: 4px;
  display: none;
}

.form-success-msg {
  display: none;
  background: var(--accent-green-soft);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
  margin-top: 20px;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  background: var(--surface-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  z-index: 300;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-banner p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.cookie-banner a { color: var(--primary); }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--on-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s;
}

.cookie-btn-accept:hover { background: var(--primary-pressed); }

.cookie-btn-reject {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.15s;
}

.cookie-btn-reject:hover { background: rgba(255,255,255,0.2); }

.cookie-btn-settings {
  background: none;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 12px;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 40px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand-col .site-logo { margin-bottom: 12px; }

.footer-brand-desc {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--ink);
  margin-bottom: 14px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 13px;
  color: var(--mute);
  font-weight: 500;
  text-decoration: none;
}

.footer-links a:hover { color: var(--link-teal); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid var(--hairline-soft);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--ash);
  font-weight: 500;
}

.footer-handle {
  font-size: 12px;
  color: var(--stone);
  font-weight: 500;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--surface-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--hairline);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── BREADCRUMB GENERIC ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--mute); }
.breadcrumb a:hover { color: var(--link-teal); }
.breadcrumb-sep { color: var(--stone); }

/* ─── DIVIDER ─── */
.divider {
  border: none;
  border-top: 1px solid var(--hairline-soft);
  margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .site-nav { display: none; }
  .burger-btn { display: flex; }

  .editorial-hero { padding: 48px 0 40px; }
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }

  .featured-article { grid-template-columns: 1fr; gap: 24px; }

  .editorial-band-inner { grid-template-columns: 1fr; gap: 20px; }

  .contact-layout { grid-template-columns: 1fr; gap: 32px; }

  .related-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-headline { font-size: 26px; }
  .article-title { font-size: 22px; }
  .contact-form-wrap { padding: 20px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
}
