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

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

:root {
  --canvas: #181818;
  --canvas-elevated: #303030;
  --canvas-light: #ffffff;
  --surface-soft: #f7f7f7;
  --primary: #da291c;
  --primary-active: #b01e0a;
  --ink: #ffffff;
  --body-color: #969696;
  --body-on-light: #181818;
  --muted: #666666;
  --hairline: #303030;
  --hairline-on-light: #d2d2d2;
  --on-primary: #ffffff;
  --semantic-info: #4c98b9;
  --semantic-success: #03904a;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --sp-xxxs: 4px; --sp-xxs: 8px; --sp-xs: 16px; --sp-sm: 24px;
  --sp-md: 32px; --sp-lg: 48px; --sp-xl: 64px; --sp-xxl: 96px; --sp-super: 128px;
}

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

body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--body-color);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--ink); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-xs);
}

.hairline { border: 0; border-top: 1px solid var(--hairline); }
.hairline-light { border: 0; border-top: 1px solid var(--hairline-on-light); }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
  display: flex;
  align-items: center;
}

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

.site-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-logo span { color: var(--primary); }

.main-nav { display: flex; align-items: center; gap: var(--sp-md); }

.main-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--body-color);
  letter-spacing: 0.65px;
  text-transform: uppercase;
  transition: color 0.15s;
}

.main-nav a:hover, .main-nav a.active { color: var(--ink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-xxs);
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.2s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0e0e0e;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(24,24,24,0.85) 80%, var(--canvas) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--sp-xxl) 0 var(--sp-xl);
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-xs);
}

.hero-title {
  font-size: 80px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -1.6px;
  max-width: 860px;
}

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  max-width: 560px;
  margin-top: var(--sp-sm);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: var(--sp-xs);
  margin-top: var(--sp-md);
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xxs);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 14px 32px;
  height: 48px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-primary:hover { background: var(--primary-active); color: var(--on-primary); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xxs);
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 14px 32px;
  height: 48px;
  border-radius: 0;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ===== SECTION LABEL ===== */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-xs);
}

.section-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.36px;
  line-height: 1.2;
}

.section-body {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.5;
  margin-top: var(--sp-xs);
}

/* ===== CATEGORIES SECTION ===== */
.categories-section { padding: var(--sp-xxl) 0; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xs);
  margin-top: var(--sp-lg);
}

.category-card {
  background: var(--canvas-elevated);
  padding: var(--sp-md);
  border: 1px solid var(--hairline);
  border-radius: 0;
  transition: border-color 0.15s;
}

.category-card:hover { border-color: var(--primary); }

.category-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--sp-sm);
  color: var(--primary);
}

.category-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-xxs);
}

.category-card p {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.5;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: var(--sp-sm);
}

/* ===== ARTICLES GRID ===== */
.articles-section { padding: var(--sp-xxl) 0; border-top: 1px solid var(--hairline); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-lg);
  flex-wrap: wrap;
  gap: var(--sp-xs);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xs);
}

.article-card {
  background: var(--canvas-elevated);
  border-radius: 0;
  border: 1px solid var(--hairline);
  overflow: hidden;
  transition: border-color 0.15s;
}

.article-card:hover { border-color: var(--primary); }

.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-card-body { padding: var(--sp-sm); }

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-bottom: var(--sp-xs);
}

.badge {
  display: inline-block;
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
  color: var(--body-color);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
}

.article-date {
  font-size: 12px;
  color: var(--muted);
}

.article-card h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: var(--sp-xxs);
}

.article-card p {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.5;
  margin-bottom: var(--sp-sm);
}

.article-read-more {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--primary);
}

/* ===== PREVENTION BAND (light) ===== */
.prevention-band {
  background: var(--surface-soft);
  padding: var(--sp-xxl) 0;
}

.prevention-band .section-title { color: var(--body-on-light); }
.prevention-band .section-label { color: var(--primary); }
.prevention-band .section-body { color: #555; }

.prevention-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xs);
  margin-top: var(--sp-lg);
}

.check-item {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  padding: var(--sp-sm);
  background: #ffffff;
  border: 1px solid var(--hairline-on-light);
  border-radius: 0;
}

.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--semantic-success);
  margin-top: 2px;
}

.check-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--body-on-light);
  margin-bottom: 4px;
}

.check-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: var(--sp-xl) 0 var(--sp-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--hairline);
}

.footer-brand p {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.6;
  margin-top: var(--sp-xs);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-xxs); }

.footer-col ul li a {
  font-size: 13px;
  color: var(--body-color);
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: var(--ink); }

.footer-bottom {
  padding-top: var(--sp-md);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.footer-disclaimers {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 700px;
}

.footer-disclaimers p + p { margin-top: 6px; }

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

/* ===== BLOG PAGE SPECIFIC ===== */
.page-hero {
  padding: var(--sp-xxl) 0 var(--sp-xl);
  border-bottom: 1px solid var(--hairline);
}

.page-hero .hero-label { margin-bottom: var(--sp-xxs); }

.page-hero .hero-title {
  font-size: 56px;
  letter-spacing: -1.12px;
  max-width: 700px;
}

.blog-main { padding: var(--sp-xxl) 0; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-xl);
  align-items: start;
}

.blog-articles-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.blog-article-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--sp-md);
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.15s;
}

.blog-article-row:hover { border-color: var(--primary); }

.blog-article-row img {
  width: 260px;
  height: 180px;
  object-fit: cover;
}

.blog-article-row-body {
  padding: var(--sp-sm) var(--sp-sm) var(--sp-sm) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-article-row-body h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: var(--sp-xxs);
}

.blog-article-row-body p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.5;
  margin-top: 6px;
  margin-bottom: var(--sp-xs);
}

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: var(--sp-md); }

.sidebar-block {
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
  padding: var(--sp-md);
}

.sidebar-block h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
  padding-bottom: var(--sp-xxs);
  border-bottom: 1px solid var(--hairline);
}

.sidebar-links { display: flex; flex-direction: column; gap: 10px; }

.sidebar-links a {
  font-size: 13px;
  color: var(--body-color);
  padding: 8px 0;
  border-bottom: 1px solid var(--hairline);
  transition: color 0.15s;
}

.sidebar-links a:hover { color: var(--ink); }
.sidebar-links a:last-child { border-bottom: none; }

/* ===== ARTICLE PAGE ===== */
.article-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #0e0e0e;
}

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

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(24,24,24,0.9) 80%, var(--canvas) 100%);
}

.article-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 var(--sp-xs) var(--sp-xl);
  max-width: 1280px;
  margin: 0 auto;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--sp-xl);
  padding: var(--sp-xl) 0 var(--sp-xxl);
  align-items: start;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-xxs);
  margin-bottom: var(--sp-md);
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--hairline); }
.breadcrumb .current { color: var(--body-color); }

/* ===== ARTICLE CONTENT ===== */
.article-content h1 {
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.36px;
  line-height: 1.2;
  margin-bottom: var(--sp-sm);
}

.article-content h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.195px;
  line-height: 1.3;
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--hairline);
}

.article-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: var(--sp-lg); }

.article-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-xs);
}

.article-content p {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}

.article-content ul, .article-content ol {
  margin: var(--sp-sm) 0;
  padding-left: var(--sp-md);
}

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

.article-content li {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--sp-xxs);
}

.article-content strong { color: var(--ink); font-weight: 600; }

.article-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

.article-content figure {
  margin: var(--sp-lg) 0;
  border: 1px solid var(--hairline);
}

.article-content figcaption {
  font-size: 12px;
  color: var(--muted);
  padding: var(--sp-xxs) var(--sp-xs);
  border-top: 1px solid var(--hairline);
  background: var(--canvas-elevated);
}

/* ===== TOC ===== */
.toc {
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
  padding: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.toc h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
}

.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc-counter; }

.toc ol li {
  counter-increment: toc-counter;
  display: flex;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--body-color);
}

.toc ol li:last-child { border-bottom: none; }

.toc ol li::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
  padding-top: 1px;
}

.toc ol li a { color: var(--body-color); transition: color 0.15s; }
.toc ol li a:hover { color: var(--ink); }

/* ===== RELATED CONTENT ===== */
.related-content {
  margin-top: var(--sp-xxl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--hairline);
}

.related-content h2 {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: var(--sp-md);
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xs);
}

.related-card {
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
  padding: var(--sp-sm);
  border-radius: 0;
  transition: border-color 0.15s;
}

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

.related-card span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: var(--sp-xxs);
}

.related-card h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

/* ===== FAQ ===== */
.faq-section { padding: var(--sp-xxl) 0; border-top: 1px solid var(--hairline); }

.faq-list { margin-top: var(--sp-lg); display: flex; flex-direction: column; }

details {
  border-bottom: 1px solid var(--hairline);
}

details:first-of-type { border-top: 1px solid var(--hairline); }

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-sm) 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  gap: var(--sp-xs);
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 400;
  transition: transform 0.2s;
}

details[open] summary::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 var(--sp-sm);
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.7;
}

/* ===== STATIC PAGES ===== */
.static-page { padding: var(--sp-xxl) 0; }

.static-page-header {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--hairline);
}

.static-page-header h1 {
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -1.12px;
  line-height: 1.1;
}

.static-page-header p {
  font-size: 16px;
  color: var(--body-color);
  margin-top: var(--sp-sm);
  max-width: 600px;
  line-height: 1.6;
}

.static-content h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--hairline);
}

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

.static-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--sp-md);
  margin-bottom: var(--sp-xs);
}

.static-content p {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: var(--sp-sm);
}

.static-content ul {
  list-style: disc;
  padding-left: var(--sp-md);
  margin-bottom: var(--sp-sm);
}

.static-content ul li {
  font-size: 15px;
  color: var(--body-color);
  line-height: 1.7;
  margin-bottom: 4px;
}

.static-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }

.disclaimer-box {
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--primary);
  padding: var(--sp-md);
  margin: var(--sp-md) 0;
}

.disclaimer-box p {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* ===== CONTACT FORM ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--sp-xl);
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: var(--sp-sm); }

.form-group { display: flex; flex-direction: column; gap: var(--sp-xxs); }

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--ink);
}

.form-group input, .form-group textarea {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font);
  height: 48px;
  transition: border-color 0.15s;
  outline: none;
}

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

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--primary);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--muted);
}

.form-status {
  font-size: 14px;
  color: var(--semantic-success);
  padding: var(--sp-sm);
  background: rgba(3, 144, 74, 0.1);
  border: 1px solid var(--semantic-success);
  display: none;
}

.contact-info {
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
  padding: var(--sp-md);
}

.contact-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-sm);
  padding-bottom: var(--sp-xxs);
  border-bottom: 1px solid var(--hairline);
}

.contact-info p {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: var(--sp-xs);
}

.contact-info p strong { color: var(--ink); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  background: var(--canvas-elevated);
  border: 1px solid var(--hairline);
  padding: var(--sp-sm) var(--sp-md);
  z-index: 9999;
  display: none;
}

#cookie-banner p {
  font-size: 13px;
  color: var(--body-color);
  line-height: 1.5;
  margin-bottom: var(--sp-xs);
}

#cookie-banner a { color: var(--primary); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: var(--sp-xs);
}

.cookie-btn-accept {
  background: var(--primary);
  color: var(--on-primary);
  border: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.15s;
}

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

.cookie-btn-reject {
  background: transparent;
  color: var(--body-color);
  border: 1px solid var(--hairline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0;
  transition: color 0.15s, border-color 0.15s;
}

.cookie-btn-reject:hover { color: var(--ink); border-color: var(--ink); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 56px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
  .article-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .prevention-checklist { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    padding: var(--sp-md);
    gap: var(--sp-md);
    z-index: 99;
  }
  .hero-title { font-size: 32px; letter-spacing: -0.5px; }
  .hero { min-height: 420px; }
  .hero-desc { font-size: 14px; }
  .page-hero .hero-title { font-size: 32px; letter-spacing: -0.5px; }
  .static-page-header h1 { font-size: 36px; }
  .section-title { font-size: 26px; }
  .categories-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .blog-article-row { grid-template-columns: 1fr; }
  .blog-article-row img { width: 100%; height: 200px; }
  .blog-article-row-body { padding: var(--sp-sm); }
  .footer-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  #cookie-banner { left: var(--sp-xs); right: var(--sp-xs); max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
  .cookie-actions { flex-direction: column; }
}
