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

:root {
  --white:            #ffffff;
  --off-white:        #f7f5f1;
  --light-gray:       #edebe6;
  --border:           #e0ddd6;
  --mid-gray:         #9b9693;
  --graphite:         #4a4a4a;
  --dark:             #252525;
  --deep-blue:        #1a3a5c;
  --deep-blue-mid:    #2e5482;
  --deep-blue-light:  #e8eff7;
  --terracotta:       #c4622d;
  --terracotta-light: #d9784a;
  --terracotta-pale:  #f6ede6;
  --font-serif:       'Playfair Display', Georgia, serif;
  --font-sans:        'Inter', -apple-system, sans-serif;
  --radius:           6px;
  --shadow-sm:        0 1px 6px rgba(0,0,0,0.06);
  --shadow-md:        0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:        0 8px 40px rgba(0,0,0,0.13);
  --header-h:         68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--white); }
body { font-family: var(--font-sans); background: var(--white); color: var(--dark); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* ────────────────────────────── LAYOUT */
.container        { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width:  860px; margin: 0 auto; padding: 0 40px; }
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-lg { padding: 110px 0; }
.section-off  { background: var(--off-white); }
.section-dark { background: var(--dark); color: var(--white); }
.section-blue { background: var(--deep-blue); color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.grid-sidebar { display: grid; grid-template-columns: 1fr 360px; gap: 60px; }
.text-center { text-align: center; }

/* ────────────────────────────── TOPBAR */
.topbar { background: var(--deep-blue); color: rgba(255,255,255,0.72); font-size: 12px; padding: 8px 0; }
.topbar-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: rgba(255,255,255,0.72); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 24px; }

/* ────────────────────────────── HEADER */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 12px rgba(0,0,0,0.05); }
.header-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 32px; }
.logo { display: flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.logo-text { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--deep-blue); letter-spacing: -.5px; }
.logo-tagline { font-size: 9.5px; color: var(--mid-gray); letter-spacing: .18em; text-transform: uppercase; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 13px; font-size: 13.5px; font-weight: 500; color: var(--graphite); border-radius: 4px; transition: all .2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--deep-blue); background: var(--off-white); }
.nav-arrow { font-size: 9px; transition: transform .2s; opacity: .5; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 210px; padding: 8px; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: all .2s; z-index: 200; }
.nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 14px; font-size: 13px; color: var(--graphite); border-radius: 4px; transition: all .2s; }
.dropdown a:hover { background: var(--off-white); color: var(--deep-blue); }
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-search { width: 36px; height: 36px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; color: var(--graphite); font-size: 14px; transition: all .2s; }
.btn-search:hover { background: var(--light-gray); color: var(--deep-blue); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; display: block; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--border); padding: 16px 0 20px; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 11px 28px; font-size: 14.5px; font-weight: 500; color: var(--graphite); border-bottom: 1px solid var(--off-white); transition: color .2s; }
.mobile-menu a:hover { color: var(--deep-blue); background: var(--off-white); }

/* ────────────────────────────── BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 26px; border-radius: 4px; font-size: 13.5px; font-weight: 600; letter-spacing: .02em; transition: all .22s; cursor: pointer; border: none; }
.btn-primary { background: var(--deep-blue); color: var(--white); }
.btn-primary:hover { background: var(--deep-blue-mid); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,58,92,.25); }
.btn-secondary { background: transparent; color: var(--deep-blue); border: 1.5px solid var(--deep-blue); }
.btn-secondary:hover { background: var(--deep-blue); color: var(--white); }
.btn-terracotta { background: var(--terracotta); color: var(--white); }
.btn-terracotta:hover { background: var(--terracotta-light); color: var(--white); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); color: var(--white); border-color: var(--white); }
.btn-sm  { padding: 8px 18px; font-size: 12.5px; }
.btn-lg  { padding: 14px 36px; font-size: 15px; }

/* ────────────────────────────── SECTION HEADER */
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-label { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }
.section-title { font-family: var(--font-serif); font-size: clamp(26px,3.5vw,44px); font-weight: 700; line-height: 1.2; color: var(--dark); margin-bottom: 16px; letter-spacing: -.3px; }
.section-title.white { color: var(--white); }
.section-desc { font-size: 16px; color: var(--mid-gray); max-width: 560px; line-height: 1.75; }
.section-desc.center { margin: 0 auto; }
.section-divider { width: 48px; height: 3px; background: var(--terracotta); margin: 16px 0; }
.section-divider.center { margin: 16px auto; }

/* ────────────────────────────── TICKER */
.ticker-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 10px 0; overflow: hidden; }
.ticker-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 24px; }
.ticker-label { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; background: var(--terracotta); color: var(--white); padding: 3px 10px; border-radius: 2px; flex-shrink: 0; }
.ticker-track { display: flex; gap: 40px; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-track a { font-size: 13px; color: var(--graphite); font-weight: 500; transition: color .2s; }
.ticker-track a:hover { color: var(--deep-blue); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ────────────────────────────── HERO */
.hero { position: relative; background: var(--dark); overflow: hidden; min-height: 600px; display: flex; align-items: flex-end; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .42; filter: grayscale(20%); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,58,92,.9) 0%, rgba(26,58,92,.35) 55%, transparent 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: 1320px; margin: 0 auto; padding: 80px 40px 72px; }
.hero-category { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta-light); margin-bottom: 20px; }
.hero-title { font-family: var(--font-serif); font-size: clamp(36px,5.5vw,68px); font-weight: 700; color: var(--white); line-height: 1.1; max-width: 780px; margin-bottom: 22px; letter-spacing: -.5px; }
.hero-excerpt { font-size: 17px; color: rgba(255,255,255,.8); max-width: 580px; line-height: 1.7; margin-bottom: 36px; font-weight: 300; }
.hero-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; font-size: 12.5px; color: rgba(255,255,255,.6); }
.hero-meta span { display: flex; align-items: center; gap: 6px; }

/* ────────────────────────────── ARTICLE CARDS */
.article-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s; display: flex; flex-direction: column; }
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.article-card-img { width: 100%; height: 200px; object-fit: cover; display: block; filter: grayscale(12%); transition: filter .3s; }
.article-card:hover .article-card-img { filter: grayscale(0%); }
.article-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-category { font-size: 10.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; display: block; }
.card-title { font-family: var(--font-serif); font-size: 20px; font-weight: 600; line-height: 1.3; color: var(--dark); margin-bottom: 10px; transition: color .2s; }
.article-card:hover .card-title { color: var(--deep-blue); }
.card-excerpt { font-size: 14px; color: var(--mid-gray); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--mid-gray); border-top: 1px solid var(--light-gray); padding-top: 14px; margin-top: auto; }
.card-author { font-weight: 500; color: var(--graphite); }

/* FEATURED */
.article-card-featured { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .25s; }
.article-card-featured:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.article-card-featured .article-card-img { height: 100%; min-height: 280px; }
.article-card-featured .article-card-body { padding: 36px 32px; background: var(--white); display: flex; flex-direction: column; justify-content: center; }
.article-card-featured .card-title { font-size: 26px; }

/* HORIZONTAL */
.article-card-h { display: flex; gap: 18px; border-bottom: 1px solid var(--border); padding: 20px 0; transition: all .2s; }
.article-card-h:first-child { padding-top: 0; }
.article-card-h:last-child { border-bottom: none; padding-bottom: 0; }
.article-card-h:hover .card-title { color: var(--deep-blue); }
.article-card-h .article-card-img { width: 90px; height: 68px; flex-shrink: 0; border-radius: 3px; object-fit: cover; filter: grayscale(10%); }
.article-card-h .card-title { font-size: 14.5px; margin-bottom: 4px; }
.article-card-h .card-meta { border-top: none; padding-top: 0; margin-top: 6px; }

/* ────────────────────────────── STATS BAR */
.stats-bar { background: var(--deep-blue); color: var(--white); padding: 52px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 24px 16px; border-right: 1px solid rgba(255,255,255,.12); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-serif); font-size: 48px; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 8px; display: block; }
.stat-number span { color: var(--terracotta-light); }
.stat-label { font-size: 12.5px; color: rgba(255,255,255,.6); letter-spacing: .08em; display: block; }

/* ────────────────────────────── TOPIC CARDS */
.topic-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; transition: all .25s; position: relative; overflow: hidden; }
.topic-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--deep-blue); transform: scaleY(0); transform-origin: bottom; transition: transform .3s; }
.topic-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.topic-card:hover::before { transform: scaleY(1); }
.topic-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; color: var(--deep-blue); }
.topic-card-title { font-family: var(--font-serif); font-size: 19px; font-weight: 600; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.topic-card-desc { font-size: 13.5px; color: var(--mid-gray); line-height: 1.65; margin-bottom: 18px; }
.topic-card-link { font-size: 13px; font-weight: 600; color: var(--deep-blue); display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.topic-card:hover .topic-card-link { gap: 10px; }

/* ────────────────────────────── NEWSLETTER */
.newsletter-block { background: var(--deep-blue); color: var(--white); padding: 72px; border-radius: 8px; text-align: center; }
.newsletter-block h2 { font-family: var(--font-serif); font-size: 36px; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.newsletter-block p { font-size: 16px; color: rgba(255,255,255,.72); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.newsletter-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; }
.newsletter-form input[type="email"] { flex: 1; padding: 12px 18px; border-radius: 4px; border: 1.5px solid rgba(255,255,255,.25); background: rgba(255,255,255,.1); color: var(--white); font-size: 14px; outline: none; transition: border-color .2s; }
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input[type="email"]:focus { border-color: rgba(255,255,255,.6); }
.newsletter-msg { margin-top: 14px; font-size: 13.5px; color: rgba(255,255,255,.85); display: none; }
.newsletter-msg.show { display: block; }

/* ────────────────────────────── PAGE HERO */
.page-hero { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 64px 0; }
.page-hero-dark { background: var(--deep-blue); color: var(--white); padding: 72px 0; }
.page-hero-title { font-family: var(--font-serif); font-size: clamp(30px,4vw,52px); font-weight: 700; line-height: 1.15; margin-bottom: 18px; letter-spacing: -.3px; }
.page-hero-desc { font-size: 17px; line-height: 1.75; color: var(--graphite); max-width: 640px; }
.page-hero-dark .page-hero-desc { color: rgba(255,255,255,.75); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--mid-gray); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { color: var(--mid-gray); transition: color .2s; }
.breadcrumb a:hover { color: var(--deep-blue); }
.breadcrumb .sep { color: var(--light-gray); }

/* ────────────────────────────── PULL QUOTE */
.pull-quote { border-top: 2px solid var(--deep-blue); border-bottom: 2px solid var(--deep-blue); padding: 32px 0; margin: 52px 0; text-align: center; }
.pull-quote p { font-family: var(--font-serif); font-size: 24px; font-style: italic; color: var(--dark); line-height: 1.5; max-width: 640px; margin: 0 auto 12px; }
.pull-quote cite { font-size: 13px; color: var(--mid-gray); font-style: normal; }

/* ────────────────────────────── TEAM CARD */
.team-card { text-align: center; }
.team-card-img-wrap { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; border: 3px solid var(--light-gray); }
.team-card-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(18%); transition: filter .3s; }
.team-card:hover .team-card-img { filter: grayscale(0%); }
.team-card-name { font-family: var(--font-serif); font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.team-card-role { font-size: 12px; color: var(--terracotta); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.team-card-bio { font-size: 14px; color: var(--mid-gray); line-height: 1.65; max-width: 280px; margin: 0 auto 16px; }
.team-social { display: flex; justify-content: center; gap: 10px; }
.team-social a { width: 32px; height: 32px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--graphite); transition: all .2s; }
.team-social a:hover { background: var(--deep-blue); color: var(--white); }

/* ────────────────────────────── SIDEBAR */
.sidebar-widget { background: var(--off-white); border-radius: var(--radius); padding: 28px 24px; margin-bottom: 28px; }
.sidebar-widget-title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--deep-blue); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 5px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--graphite); transition: all .2s; display: inline-block; }
.tag:hover { background: var(--deep-blue); color: var(--white); border-color: var(--deep-blue); }

/* ────────────────────────────── DATA BARS */
.data-bar-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.data-bar-label { font-size: 13px; color: var(--graphite); width: 160px; flex-shrink: 0; }
.data-bar-track { flex: 1; height: 8px; background: var(--light-gray); border-radius: 4px; overflow: hidden; }
.data-bar-fill { height: 100%; background: var(--deep-blue); border-radius: 4px; transition: width 1s ease; }
.data-bar-fill.terra { background: var(--terracotta); }
.data-bar-pct { font-size: 13px; font-weight: 600; color: var(--dark); width: 38px; text-align: right; flex-shrink: 0; }

/* ────────────────────────────── CONTACT FORM */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--graphite); margin-bottom: 8px; }
.form-control { width: 100%; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: 4px; font-size: 14.5px; color: var(--dark); background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s; }
.form-control:focus { border-color: var(--deep-blue); box-shadow: 0 0 0 3px rgba(26,58,92,.08); }
.form-control::placeholder { color: var(--mid-gray); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--graphite); margin-bottom: 20px; }
.form-check input { margin-top: 2px; flex-shrink: 0; accent-color: var(--deep-blue); }
.form-success { display: none; background: #ebf5ee; border: 1px solid #a8d5b5; border-radius: var(--radius); padding: 18px 22px; margin-top: 20px; color: #2a6c40; font-size: 15px; font-weight: 500; align-items: center; gap: 12px; }
.form-success.show { display: flex; }
.form-success-icon { font-size: 22px; flex-shrink: 0; }

/* ────────────────────────────── POLICY PAGES */
.policy-content { max-width: 840px; margin: 0 auto; padding: 72px 40px; }
.policy-content h1 { font-family: var(--font-serif); font-size: 40px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.2; }
.policy-meta { font-size: 13px; color: var(--mid-gray); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.policy-content h2 { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--dark); margin: 44px 0 14px; scroll-margin-top: 90px; }
.policy-content h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin: 28px 0 10px; }
.policy-content p { font-size: 15.5px; color: var(--graphite); line-height: 1.82; margin-bottom: 18px; }
.policy-content ul, .policy-content ol { margin: 0 0 18px 24px; list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: 15.5px; color: var(--graphite); line-height: 1.75; margin-bottom: 8px; }
.policy-content a { color: var(--deep-blue); text-decoration: underline; }
.policy-content a:hover { color: var(--terracotta); }
.policy-content strong { color: var(--dark); font-weight: 700; }
.highlight-box { background: var(--off-white); border-left: 4px solid var(--deep-blue); padding: 16px 20px; border-radius: 0 4px 4px 0; margin: 24px 0; }
.highlight-box p { margin: 0 !important; font-size: 14.5px; }
.policy-toc { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 48px; }
.policy-toc-title { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 14px; display: block; }
.policy-toc ol { margin-left: 20px; list-style: decimal; }
.policy-toc ol li { font-size: 14px; line-height: 1.7; margin-bottom: 6px; }
.policy-toc ol li a { color: var(--deep-blue); text-decoration: underline; transition: color .2s; }
.policy-toc ol li a:hover { color: var(--terracotta); }
.policy-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 20px 0 28px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.policy-table th { background: var(--off-white); font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--mid-gray); padding: 11px 16px; text-align: left; border-bottom: 2px solid var(--border); }
.policy-table td { padding: 11px 16px; color: var(--graphite); border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.65; font-size: 14px; }
.policy-table tr:last-child td { border-bottom: none; }

/* ────────────────────────────── FOOTER */
.site-footer { background: var(--dark); color: rgba(255,255,255,.65); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .logo-text { color: var(--white); font-size: 26px; }
.footer-brand .logo-tagline { color: rgba(255,255,255,.4); }
.footer-about { font-size: 13.5px; line-height: 1.75; margin-top: 14px; margin-bottom: 22px; color: rgba(255,255,255,.55); max-width: 280px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; margin-bottom: 10px; color: rgba(255,255,255,.55); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ────────────────────────────── COOKIE BANNER */
.cookie-banner { position: fixed; bottom: 24px; left: 24px; max-width: 420px; background: var(--dark); color: rgba(255,255,255,.85); border-radius: 8px; padding: 24px; box-shadow: 0 8px 40px rgba(0,0,0,.3); z-index: 1500; font-size: 13.5px; line-height: 1.65; display: none; }
.cookie-banner.show { display: block; }
.cookie-banner h4 { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.cookie-banner a { color: var(--terracotta-light); text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 10px; margin-top: 16px; }
.cookie-accept { padding: 8px 20px; background: var(--deep-blue); color: var(--white); border: none; border-radius: 4px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .2s; }
.cookie-accept:hover { background: var(--deep-blue-mid); }
.cookie-reject { padding: 8px 16px; background: transparent; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.2); border-radius: 4px; font-size: 13px; cursor: pointer; transition: all .2s; }
.cookie-reject:hover { color: var(--white); border-color: rgba(255,255,255,.5); }

/* ────────────────────────────── SEARCH OVERLAY */
.search-overlay { position: fixed; inset: 0; background: rgba(26,58,92,.96); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box { width: 100%; max-width: 700px; padding: 40px; }
.search-box input { width: 100%; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,.4); color: var(--white); font-family: var(--font-serif); font-size: 36px; padding: 12px 0; outline: none; transition: border-color .2s; }
.search-box input::placeholder { color: rgba(255,255,255,.3); }
.search-box input:focus { border-bottom-color: var(--white); }
.search-close { position: absolute; top: 28px; right: 36px; color: rgba(255,255,255,.6); font-size: 28px; cursor: pointer; transition: color .2s; }
.search-close:hover { color: var(--white); }
.search-hint { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 12px; }

/* ────────────────────────────── MISC */
.divider { height: 1px; background: var(--border); margin: 60px 0; }
.inline-link { color: var(--deep-blue); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.inline-link:hover { color: var(--terracotta); }
.fw-700 { font-weight: 700; }
.color-terra { color: var(--terracotta); }
.color-blue { color: var(--deep-blue); }
.color-mid { color: var(--mid-gray); }

/* ────────────────────────────── CORRECTIONS */
.correction-item { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 22px; }
.correction-date { font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 5px; display: block; }
.correction-article-title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.correction-type { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--terracotta); border: 1px solid var(--terracotta); border-radius: 3px; padding: 2px 8px; margin-bottom: 10px; }
.correction-text { font-size: 14px; color: var(--graphite); line-height: 1.7; }

/* ────────────────────────────── ARTICLE BODY */
.article-full-body { max-width: 760px; }
.article-full-body h2 { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--dark); margin: 40px 0 16px; line-height: 1.25; }
.article-full-body h3 { font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--dark); margin: 32px 0 12px; }
.article-full-body p { font-size: 16.5px; color: var(--graphite); line-height: 1.82; margin-bottom: 22px; }
.article-full-body ul, .article-full-body ol { margin: 0 0 22px 24px; list-style: disc; }
.article-full-body ol { list-style: decimal; }
.article-full-body li { font-size: 16px; color: var(--graphite); line-height: 1.7; margin-bottom: 8px; }
.article-full-body blockquote { border-left: 4px solid var(--terracotta); padding: 16px 24px; margin: 32px 0; background: var(--off-white); border-radius: 0 4px 4px 0; }
.article-full-body blockquote p { font-family: var(--font-serif); font-size: 19px; font-style: italic; color: var(--dark); margin: 0; line-height: 1.6; }
.article-full-body a { color: var(--deep-blue); text-decoration: underline; }
.article-img-full { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); margin: 32px 0 8px; filter: grayscale(10%); }
.article-img-caption { font-size: 12.5px; color: var(--mid-gray); text-align: center; margin-bottom: 32px; font-style: italic; }
.article-meta-bar { display: flex; align-items: center; gap: 20px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.author-thumb { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; color: var(--dark); display: block; }
.author-meta { font-size: 12px; color: var(--mid-gray); }
.article-kpi-box { background: var(--dark); color: var(--white); border-radius: var(--radius); padding: 32px 36px; margin: 36px 0; }
.article-kpi-label { font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 24px; display: block; }
.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.kpi-item { text-align: center; }
.kpi-number { display: block; font-family: var(--font-serif); font-size: 40px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.kpi-label { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; display: block; }
.article-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.article-tags .tag-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid-gray); margin-right: 4px; }
.article-tags a { padding: 4px 12px; background: var(--off-white); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--graphite); transition: all .2s; }
.article-tags a:hover { background: var(--deep-blue); color: var(--white); border-color: var(--deep-blue); }

/* ────────────────────────────── CATEGORIES NAV */
.cat-nav { border-bottom: 2px solid var(--border); margin-bottom: 48px; }
.cat-nav-inner { display: flex; gap: 0; overflow-x: auto; }
.cat-tab { padding: 13px 20px; font-size: 13px; font-weight: 500; color: var(--mid-gray); border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: all .2s; text-decoration: none; display: block; }
.cat-tab:hover, .cat-tab.active { color: var(--deep-blue); border-bottom-color: var(--deep-blue); }

/* ────────────────────────────── RESPONSIVE */
@media (max-width:1100px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .article-card-featured { grid-template-columns: 1fr; }
  .article-card-featured .article-card-img { height: 240px; }
}
@media (max-width:900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .newsletter-block { padding: 44px 32px; }
  .newsletter-form { flex-direction: column; }
  .topbar { display: none; }
}
@media (max-width:768px) {
  .container, .container-narrow { padding: 0 20px; }
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 60px 20px 52px; }
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }
  .newsletter-block h2 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .policy-content { padding: 48px 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { padding: 0 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
}
