/* ============================================
   BONUSETU.MEDIA — Light Premium Editorial
   Inspired by Masterskapssidan design language
   Navy + Gold, Clean Cards, Strong Typography
   ============================================ */

/* Self-hosted fonts — eliminates render-blocking Google Fonts DNS lookups */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-var-latin.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Serif 4';
  src: url('/fonts/source-serif-4-var-latin.woff2') format('woff2');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Navy palette */
  --navy: #001D3D;
  --navy-mid: #0E204D;
  --navy-light: #003466;

  /* Gold accent */
  --accent: #FFC300;
  --accent-hover: #e6af00;
  --accent-soft: rgba(255,195,0,0.08);

  /* Surfaces */
  --white: #FFFFFF;
  --gray-50: #F7F7F7;
  --gray-100: #F0F0F0;
  --gray-200: #e0e0e0;
  --gray-300: #c8c8c8;

  /* Text */
  --text-dark: #212121;
  --text-body: #333333;
  --text-muted: #666666;
  --text-light: #6b6b6b;
  --text-faint: #aaaaaa;

  /* Typography */
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1140px;
  --header-height: 56px;
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy-light); }

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

/* ============================================
   TYPOGRAPHY — heavy weights, clear hierarchy
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  text-wrap: balance;
}

h1 { font-size: 40px; font-weight: 900; letter-spacing: -0.03em; }
h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; }
h3 { font-size: 20px; font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
h5 { font-family: var(--font-sans); font-size: 14px; font-weight: 700; color: var(--navy); }

.text-muted { color: var(--text-muted); }

/* Tags */
.tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
}

.tag--blue { background: #EBF5FF; color: #1E40AF; }
.tag--amber { background: #FEF3C7; color: #92400E; }
.tag--green { background: #ECFDF5; color: #065F46; }
.tag--purple { background: #F5F3FF; color: #6D28D9; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--transition), background var(--transition);
}

.btn:hover { opacity: 0.88; }
.btn--sm { padding: 8px 18px; font-size: 13px; }

.btn-accent { background: var(--accent); color: var(--navy); }
.btn-accent:hover { background: var(--accent-hover); color: var(--navy); opacity: 1; }

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); color: var(--white); opacity: 1; }

.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: var(--white); opacity: 1; }

.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); color: var(--white); opacity: 1; }

/* Section utilities */
.section { padding: 50px 0; }
.section--white { background: var(--white); }
.section--gray { background: var(--gray-50); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--accent);
}

.section-head h2 { margin: 0; }

.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.section-link:hover { color: var(--navy-light); text-decoration: underline; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--navy);
  padding: 6px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--accent); font-weight: 600; }
.top-bar a:hover { color: var(--white); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.site-logo .logo-text {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
}

.site-logo .logo-tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav { display: flex; align-items: center; gap: 0; }

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 16px 14px;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color var(--transition), border-color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  border-bottom-color: var(--accent);
}

/* Language */
.lang-switcher { position: relative; margin-left: 12px; }

.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px; cursor: pointer;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8);
  transition: background var(--transition);
}

.lang-toggle:hover { background: rgba(255,255,255,0.15); }

.lang-toggle .flag-icon { width: 18px; height: 13px; border: 1px solid rgba(255,255,255,0.15); }
.lang-toggle .chevron-icon { width: 11px; height: 11px; color: rgba(255,255,255,0.5); transition: transform var(--transition); }
.lang-switcher.open .lang-toggle .chevron-icon { transform: rotate(180deg); }

.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 4px); right: 0;
  min-width: 150px; background: var(--white); border: 1px solid var(--gray-200);
  padding: 4px 0; z-index: 200; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lang-switcher.open .lang-dropdown { display: block; }

.lang-option {
  display: flex; align-items: center; gap: 8px; width: 100%;
  background: none; border: none; padding: 8px 14px;
  font-family: var(--font-sans); font-size: 13px; color: var(--text-body);
  cursor: pointer; text-align: left; transition: background var(--transition);
}

.lang-option:hover { background: var(--gray-50); }
.lang-option.active { font-weight: 700; color: var(--navy); }
.lang-option .flag-icon { width: 18px; height: 13px; border: 1px solid rgba(0,0,0,0.08); }

.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--white); }

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
}

.mobile-nav-overlay.open {
  display: block;
}

.mobile-nav-inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.mobile-nav-overlay.open .mobile-nav-inner {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 3px solid var(--accent);
}

.mobile-nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.mobile-nav-close:hover { color: var(--white); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
}

.mobile-nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), background var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* ============================================
   HERO — navy with diagonal stripe pattern
   ============================================ */
.hero {
  padding: 60px 0 50px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.02) 10px,
    rgba(255,255,255,0.02) 20px
  );
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 16px;
  font-size: 40px;
}

.hero-deck {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   STATS — navy bar, large numbers
   ============================================ */
.stats-section {
  padding: 40px 0;
  background: var(--navy);
  border-bottom: 3px solid var(--accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.stat-source {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
}

/* ============================================
   CARDS — clean borders, white bg
   ============================================ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 20px;
  transition: background var(--transition);
}

.card:hover { background: var(--gray-50); }

.card--featured { padding: 28px; }

.card--compact { padding: 16px 20px; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.card-meta time {
  font-size: 13px;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}

.card--featured h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.card--featured h3 a { color: var(--navy); }
.card--featured h3 a:hover { text-decoration: underline; }

.card--featured p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.card--compact h3,
.card--compact h4 {
  font-size: 15px;
  line-height: 1.35;
}

.card--compact h3 a, .card--compact h4 a { color: var(--navy); }
.card--compact h3 a:hover, .card--compact h4 a:hover { text-decoration: underline; }

.analysis-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 16px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================
   COVERAGE — 2x2 card grid
   ============================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.coverage-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}

.coverage-card:hover { background: var(--accent-soft); color: inherit; }

.coverage-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--navy);
}

.coverage-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.coverage-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.coverage-card:hover .coverage-link { text-decoration: underline; }

/* ============================================
   FEATURED — 3:2 layout
   ============================================ */
.featured-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
}

.featured-main {
  padding-right: 32px;
  border-right: 1px solid var(--gray-200);
}

.featured-main .tag { margin-bottom: 12px; }

.featured-main h3 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.featured-main h3 a { color: var(--navy); }
.featured-main h3 a:hover { text-decoration: underline; }

.featured-main > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.featured-sidebar h3,
.featured-sidebar h4 {
  font-size: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  padding-bottom: 10px;
  margin-bottom: 0;
  border-bottom: 3px solid var(--accent);
}

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

.sidebar-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.sidebar-list li:last-child { border-bottom: none; }

.sidebar-list li a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
}

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

.sidebar-list li time {
  font-size: 12px;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}

/* ============================================
   PRESS — homepage
   ============================================ */
.press-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
}

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

.press-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.press-list li:last-child { border-bottom: none; }

.press-list li time {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
  min-width: 90px;
}

.press-list li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

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

.press-contact-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  padding: 24px;
}

.press-contact-box h3, .press-contact-box h4 {
  font-size: 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}

.press-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.press-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.press-contact-row strong { display: block; font-size: 15px; color: var(--navy); }
.press-contact-row span { font-size: 13px; color: var(--text-muted); }

.press-contact-box > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 40px;
}

.about-layout > div > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 12px;
}

.trust-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
}

.trust-card h5, .trust-card h3 { margin-bottom: 4px; }

.trust-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.65); }

.footer-col h2,
.footer-col h4 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.65); margin-bottom: 12px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.65); }

.footer-bottom .disclaimer {
  font-size: 11px; color: rgba(255,255,255,0.6);
  max-width: 500px; line-height: 1.5;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  padding: 10px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb .container { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.breadcrumb a { color: var(--text-muted); font-weight: 500; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span[aria-hidden] { color: var(--gray-300); }
.breadcrumb span[aria-current] { color: var(--navy); font-weight: 600; }

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  padding: 40px 0 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
  pointer-events: none;
}

.page-hero .section-label { color: var(--accent); position: relative; z-index: 1; }

.page-hero h1 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}

.page-hero-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 680px;
  position: relative; z-index: 1;
}

/* ============================================
   PRESS PAGE SPECIFICS
   ============================================ */
.press-contact-section { padding: 40px 0; }

.press-contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
}

.press-contact-main h2 { margin-bottom: 12px; }
.press-contact-main > p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }

.press-contact-card {
  display: flex; gap: 20px; padding: 20px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent); margin-bottom: 24px;
}

.press-contact-photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.press-contact-info h3 { margin-bottom: 2px; }
.press-contact-role { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.press-contact-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.press-contact-email { font-weight: 700; font-size: 14px; color: var(--navy); }
.press-contact-email:hover { color: var(--navy-light); }

.press-expertise h3,
.press-expertise h4 {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-light); margin-bottom: 12px;
}

.press-expertise ul { list-style: none; }

.press-expertise li {
  position: relative; padding-left: 16px;
  font-size: 14px; color: var(--text-body); line-height: 1.6; margin-bottom: 6px;
}

.press-expertise li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.press-contact-sidebar {
  display: flex; flex-direction: column; gap: 0;
}

.press-sidebar-box {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.press-sidebar-box:first-child { padding-top: 0; }
.press-sidebar-box:last-child { border-bottom: none; }
.press-sidebar-box h3, .press-sidebar-box h4 { font-size: 14px; margin-bottom: 4px; color: var(--navy); }
.press-sidebar-box p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.press-sidebar-box a { font-weight: 700; color: var(--navy); }

/* Press facts */
.press-facts { padding: 40px 0; background: var(--white); border-top: 1px solid var(--gray-200); }

.press-facts .section-header,
.press-timeline .section-header,
.press-releases-section .section-header,
.press-resources .section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 12px; border-bottom: 3px solid var(--accent);
}

.press-facts .section-header h2,
.press-timeline .section-header h2,
.press-releases-section .section-header h2,
.press-resources .section-header h2 {
  font-size: 28px; margin: 0;
}

.section-label {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 8px;
}

.press-facts-intro { font-size: 15px; color: var(--text-muted); line-height: 1.7; max-width: 720px; margin-bottom: 24px; }

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

.press-fact-card {
  padding: 20px; background: var(--gray-50);
  border: 1px solid var(--gray-200); border-left: 4px solid var(--accent);
}

.press-fact-card h3 { font-size: 18px; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--gray-200); }

.fact-list { margin-bottom: 12px; }

.fact-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0; border-bottom: 1px solid var(--gray-200);
}

.fact-row:last-child { border-bottom: none; }
.fact-row dt { font-size: 14px; color: var(--text-muted); }
.fact-row dd { font-size: 14px; font-weight: 700; color: var(--navy); text-align: right; font-variant-numeric: tabular-nums; }

.fact-highlights { list-style: none; margin-bottom: 12px; }

.fact-highlights li {
  position: relative; padding-left: 16px;
  font-size: 14px; line-height: 1.6; margin-bottom: 6px; color: var(--text-body);
}

.fact-highlights li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.fact-source { font-size: 11px; color: var(--text-light); font-style: italic; }

/* Timeline */
.press-timeline { padding: 40px 0; background: var(--gray-50); }

.timeline { list-style: none; position: relative; padding-left: 28px; }

.timeline::before {
  content: ''; position: absolute; left: 6px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-200);
}

.timeline-item { position: relative; padding-bottom: 20px; }

.timeline-item::before {
  content: ''; position: absolute; left: -22px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--text-light);
}

.timeline-item--active::before { background: var(--accent); border-color: var(--accent); }
.timeline-item--future::before { background: var(--white); border-color: var(--gray-300); border-style: dashed; }

.timeline-date { font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 2px; }
.timeline-item--active .timeline-date { color: var(--accent-hover); }
.timeline-item--future .timeline-date { color: var(--text-light); }

.timeline-content h3, .timeline-content h4 { font-size: 16px; margin-bottom: 2px; }
.timeline-content p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* Press releases */
.press-releases-section { padding: 40px 0; background: var(--white); }

.press-release-list { list-style: none; }

.press-release-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--gray-200);
}

.press-release-meta { display: flex; flex-direction: column; gap: 4px; }
.press-release-meta .article-date { font-size: 13px; color: var(--text-light); font-variant-numeric: tabular-nums; }
.press-release-meta .article-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.press-release-body h3 { font-size: 16px; margin-bottom: 4px; }
.press-release-body h3 a { color: var(--navy); }
.press-release-body h3 a:hover { text-decoration: underline; }
.press-release-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Resources */
.press-resources { padding: 40px 0; background: var(--gray-50); }
.press-resources-intro { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.press-resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.resource-card {
  display: flex; gap: 12px; padding: 16px;
  background: var(--white); border: 1px solid var(--gray-200);
  text-decoration: none; color: inherit; transition: background var(--transition);
}

.resource-card:hover { background: var(--accent-soft); color: inherit; }

.resource-icon { flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.resource-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.resource-card h3, .resource-card h4 { font-size: 14px; margin-bottom: 2px; }
.resource-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* Guidelines */
.press-guidelines { padding: 20px 0 40px; }

.guidelines-box {
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-top: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.guidelines-box h3 { font-size: 16px; margin-bottom: 8px; }
.guidelines-box p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.guidelines-box em { color: var(--navy); font-weight: 600; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-main p { font-size: 15px; line-height: 1.8; color: var(--text-body); margin-bottom: 16px; }

.about-list { list-style: none; margin-top: 20px; }

.about-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}

.about-list li:first-child { border-top: 1px solid var(--gray-200); }

.about-list li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-list li span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  padding: 24px;
}

.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.team-role {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.team-card p:last-child { font-size: 14px; color: var(--text-body); line-height: 1.7; }

/* Editorial principles */
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.principle-item {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: var(--gray-50);
}

.principle-item h3, .principle-item h4 { margin-bottom: 8px; }
.principle-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-person {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.contact-person strong { display: block; font-size: 15px; color: var(--navy); }
.contact-person span { font-size: 13px; color: var(--text-muted); }

.contact-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Form styles */
.contact-form { margin-top: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-body);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
  border-color: var(--navy);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  border: 2px solid var(--navy);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================
   ARTICLE PAGE
   ============================================ */
.article-hero {
  padding: 40px 0 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 20px);
  pointer-events: none;
}

.article-hero .container { position: relative; z-index: 1; }

.article-hero .article-header-meta {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}

.article-hero-date { font-size: 13px; color: rgba(255,255,255,0.5); font-variant-numeric: tabular-nums; }

.article-hero-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--accent);
  padding-left: 12px; border-left: 1px solid rgba(255,255,255,0.2);
}

.article-hero h1 {
  font-size: 36px; line-height: 1.15; color: var(--white);
  max-width: 820px; margin-bottom: 16px;
}

.article-subtitle {
  font-size: 18px; line-height: 1.6; color: rgba(255,255,255,0.85);
  max-width: 720px; margin-bottom: 20px;
}

.article-preamble {
  font-family: var(--font-serif); font-size: 18px; font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 700px; margin-bottom: 20px;
  padding-left: 20px; border-left: 3px solid var(--accent);
}

.article-byline {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1);
}

.byline-photo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.byline-name { display: block; font-size: 14px; font-weight: 700; color: var(--white); }
.byline-role { display: block; font-size: 12px; color: rgba(255,255,255,0.5); }

/* Article body */
.article-page { padding: 40px 0 50px; }

.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; }

.article-body-content {
  max-width: 100%;
  overflow-x: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.article-body-content h2 {
  font-size: 22px; margin-top: 40px; margin-bottom: 16px; padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

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

.article-body-content p {
  font-size: 15px; line-height: 1.8; color: var(--text-body);
  margin-bottom: 16px; text-wrap: pretty;
}

.article-body-content h2:first-child + p::first-letter {
  float: left; font-family: var(--font-serif); font-size: 56px; font-weight: 900;
  line-height: 0.8; padding-right: 4px; padding-top: 4px; color: var(--navy);
}

.article-body-content a {
  font-weight: 600; color: var(--navy);
  text-decoration: underline; text-decoration-color: var(--accent);
  text-decoration-thickness: 2px; text-underline-offset: 2px;
}

.article-body-content a:hover { text-decoration-color: var(--navy); }

/* Blockquotes */
.article-body-content blockquote {
  margin: 32px 0; padding: 20px 24px;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-top: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.article-body-content blockquote p {
  font-family: var(--font-serif); font-size: 20px; font-weight: 500;
  color: var(--navy); line-height: 1.5; margin-bottom: 8px;
}

.article-body-content blockquote cite {
  font-family: var(--font-sans); font-style: normal; font-size: 12px;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
}

/* Tables — gold header */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
}

.article-table {
  width: 100%; border-collapse: collapse; margin: 0;
  font-size: 14px; font-variant-numeric: tabular-nums;
  border-radius: 0; overflow: hidden;
  max-width: 100%;
}

.article-table th {
  text-align: left; font-family: var(--font-sans); font-weight: 700;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.3px;
  color: var(--navy); padding: 10px 12px;
  background: var(--accent);
}

.article-table td {
  padding: 10px 12px; border-bottom: 1px solid var(--gray-200); color: var(--text-body);
}

.article-table td:last-child { font-weight: 700; color: var(--navy); }
.article-table tbody tr:nth-child(even) { background: #f8f9fa; }
.article-table tbody tr:hover { background: var(--accent-soft); }

/* Fact box */
.article-factbox {
  margin: 40px 0 20px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--accent);
  background: var(--gray-50);
}

.article-factbox h3 {
  font-size: 12px; font-family: var(--font-sans); text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--navy); padding: 12px 16px;
  background: var(--accent); font-weight: 700;
}

.factbox-list { margin: 0; }

.factbox-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 16px; border-bottom: 1px solid var(--gray-200);
}

.factbox-row:last-child { border-bottom: none; }
.factbox-row dt { font-size: 14px; color: var(--text-muted); }
.factbox-row dd { font-size: 14px; font-weight: 700; color: var(--navy); text-align: right; font-variant-numeric: tabular-nums; }

/* Sources */
.article-sources {
  margin: 32px 0 20px; padding-top: 16px; border-top: 1px solid var(--gray-200);
}

.article-sources h3 {
  font-size: 11px; font-family: var(--font-sans); text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-light); margin-bottom: 8px;
}

.article-sources ul { list-style: none; }
.article-sources li { font-size: 12px; color: var(--text-light); line-height: 1.5; padding: 2px 0; }

/* Author box */
.article-author-box {
  display: flex; gap: 16px; padding: 16px 0;
  margin-top: 16px; border-top: 1px solid var(--gray-200);
}

.author-box-photo, .author-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.article-author-box h3, .article-author-box h4 { font-size: 15px; margin-bottom: 2px; }
.article-author-box p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Sidebar Table of Contents */
.sidebar-toc { list-style: none; padding: 0; margin: 0; }
.sidebar-toc li { padding: 0; }
.sidebar-toc a {
  display: block; padding: 6px 0; font-size: 13px; font-weight: 500;
  color: var(--text-body); line-height: 1.35; border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition);
}
.sidebar-toc li:last-child a { border-bottom: none; }
.sidebar-toc a:hover { color: var(--navy); text-decoration: none; }

/* Sidebar */
.article-sidebar {
  position: sticky; top: calc(var(--header-height) + 24px); align-self: start;
}

.sidebar-section {
  margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200);
}

.sidebar-section:last-child { border-bottom: none; }

.sidebar-section h3,
.sidebar-section h4 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-light); margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 3px solid var(--accent);
}

.sidebar-item { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item a { display: block; font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 2px; }
.sidebar-item a:hover { text-decoration: underline; }
.sidebar-item .article-date { font-size: 12px; color: var(--text-light); font-variant-numeric: tabular-nums; }

.sidebar-stat { padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.sidebar-stat:first-of-type { padding-top: 0; }
.sidebar-stat:last-child { border-bottom: none; }

.sidebar-stat-value {
  display: block; font-family: var(--font-serif); font-size: 28px; font-weight: 900;
  color: var(--navy); line-height: 1.1; font-variant-numeric: tabular-nums;
}

.sidebar-stat-label { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.sidebar-press p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }

/* Article nav */
.article-nav { border-top: 3px solid var(--accent); background: var(--gray-50); }

.article-nav-inner { display: grid; grid-template-columns: 1fr 1fr; }

.article-nav-link { display: block; text-decoration: none; padding: 16px 12px; transition: background var(--transition); }
.article-nav-link:hover { background: var(--accent-soft); }
.article-nav-prev { border-right: 1px solid var(--gray-200); }
.article-nav-next { text-align: right; }

.article-nav-label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 6px; }
.article-nav-title { display: block; font-family: var(--font-serif); font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.3; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 32px; }
  .hero h1 { font-size: 32px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 36px; }

  .analysis-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }

  .featured-layout { grid-template-columns: 1fr; }
  .featured-main { padding-right: 0; border-right: none; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }

  .press-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }

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

  .press-contact-grid { grid-template-columns: 1fr; }
  .press-facts-grid { grid-template-columns: 1fr; }
  .press-resources-grid { grid-template-columns: repeat(2, 1fr); }

  .about-content-grid { grid-template-columns: 1fr; }
  .about-sidebar { flex-direction: row; flex-wrap: wrap; }
  .about-sidebar .trust-card { flex: 1 1 calc(50% - 8px); }
  .contact-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }

  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar {
    position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    padding-top: 24px; border-top: 3px solid var(--accent);
  }
  .sidebar-section { border-bottom: none; padding-bottom: 0; }
}

@media (max-width: 768px) {
  :root { --header-height: 52px; }
  .container { padding: 0 12px; }
  h1 { font-size: 28px; }
  .hero h1 { font-size: 28px; }

  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .lang-switcher { margin-left: 0; }

  .hero { padding: 40px 0 32px; min-height: auto; }
  .hero-deck { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 28px; }

  .press-list li { flex-direction: column; gap: 2px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .press-contact-card { flex-direction: column; align-items: center; text-align: center; }
  .press-resources-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-sidebar .trust-card { flex: 1 1 100%; }
  .press-release-item { grid-template-columns: 1fr; gap: 4px; }

  .article-hero h1 { font-size: 28px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-nav-inner { grid-template-columns: 1fr; }
  .article-nav-next { text-align: left; }
  .article-author-box { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .factbox-row { flex-wrap: wrap; }
  .factbox-row dd { text-align: left; }
}

@media print {
  .site-header, .top-bar, .lang-switcher, .mobile-menu-btn, .hero-actions { display: none; }
  body { font-size: 11pt; color: #000; background: #fff; }
}
