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

:root {
  --white: #FFFFFF;
  --bg-light: #F8F9FC;
  --bg-secondary: #EDF1F7;
  --bg-card: #FFFFFF;
  --gray-light: #E2E8F0;
  --gray-mid: #CBD5E1;
  --gray: #94A3B8;
  --gray-blue: #64748B;
  --gray-blue-dark: #4A5C7A;
  --navy: #1E293B;
  --text-dark: #1A202C;
  --text-medium: #374151;
  --text-light: #6B7280;
  --ochre: #C9973B;
  --ochre-light: #F0E0B8;
  --ochre-dark: #A87A2A;
  --border: #E2E8F0;
  --border-dark: #CBD5E1;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
  --radius: 4px;
  --radius-md: 8px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Libre Baskerville', serif;
  --max-width: 1240px;
  --header-height: 72px;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

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

/* ===== HEADER & NAV ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

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

.site-logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-dot {
  width: 8px; height: 8px;
  background: var(--ochre);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 4px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item {
  position: relative;
}
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--navy); background: var(--bg-secondary); }
.nav-link.active { font-weight: 600; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  color: var(--text-medium);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--bg-secondary); color: var(--navy); }

.nav-has-dropdown > .nav-link::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.6;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-contact-header {
  padding: 9px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-contact-header:hover { background: var(--gray-blue-dark); }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius);
}
.burger-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu-list { display: flex; flex-direction: column; }
.mobile-menu-list a {
  display: block;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.mobile-menu-list a:last-child { border-bottom: none; }
.mobile-menu-list a:hover { background: var(--bg-secondary); color: var(--navy); }
.mobile-menu-section { padding: 8px 24px 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-top: 8px; }

/* ===== PAGE WRAPPER ===== */
.page-content { padding-top: var(--header-height); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.breadcrumb ol { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; font-size: 0.8125rem; color: var(--text-light); }
.breadcrumb li a { color: var(--gray-blue); transition: color 0.2s; }
.breadcrumb li a:hover { color: var(--ochre); }
.breadcrumb li:not(:last-child)::after { content: '/'; opacity: 0.5; }
.breadcrumb li:last-child { color: var(--text-dark); font-weight: 500; }

/* ===== SECTION LABELS ===== */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  margin-bottom: 16px;
}
.section-kicker::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--ochre);
}

/* ===== HERO - HOMEPAGE ===== */
.hero-editorial {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  overflow: hidden;
}
.hero-topbar {
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  background: var(--navy);
}
.hero-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-date {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.hero-topics {
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-topics a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.hero-topics a:hover { color: var(--ochre); }

.hero-main {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  min-height: 520px;
}
.hero-content {
  padding: 52px 48px 52px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
}
.hero-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ochre);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-deck {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 32px;
}
.hero-meta-divider { width: 1px; height: 14px; background: var(--gray-mid); }
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}
.hero-cta:hover { background: var(--ochre-dark); transform: translateY(-1px); }
.hero-cta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.hero-image-wrap {
  position: relative;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
  background: var(--navy);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(255,255,255,0.03) 39px,
    rgba(255,255,255,0.03) 40px
  );
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ochre);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-kicker::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--ochre);
  display: block;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin-bottom: 20px;
}
.page-hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  line-height: 1.7;
}
.page-hero-with-image {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
.page-hero-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 300px;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }
.section-white { background: var(--white); }
.section-light { background: var(--bg-light); }
.section-navy { background: var(--navy); }
.section-divider { border-top: 1px solid var(--border); }

.section-header {
  margin-bottom: 48px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ochre);
  white-space: nowrap;
  transition: gap 0.2s;
}
.view-all-link:hover { gap: 10px; }
.view-all-link::after { content: '→'; }

/* ===== ARTICLE CARDS ===== */
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card-img {
  overflow: hidden;
  height: 220px;
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-card:hover .article-card-img img { transform: scale(1.03); }
.article-card-body { padding: 24px; }
.article-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ochre);
  margin-bottom: 10px;
}
.article-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.article-card:hover .article-card-title { color: var(--ochre-dark); }
.article-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--gray);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.article-card-meta span:not(:last-child)::after {
  content: '·';
  margin-left: 12px;
  opacity: 0.5;
}
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 14px;
  transition: color 0.2s, gap 0.2s;
}
.read-more-link:hover { color: var(--ochre); gap: 10px; }
.read-more-link::after { content: '→'; }

/* ===== FEATURED ARTICLE (LARGE) ===== */
.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s;
}
.featured-article:hover { box-shadow: var(--shadow-lg); }
.featured-article-img {
  overflow: hidden;
  min-height: 340px;
}
.featured-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.featured-article:hover .featured-article-img img { transform: scale(1.03); }
.featured-article-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-article-body .article-tag { margin-bottom: 14px; }
.featured-article-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.featured-article-excerpt {
  font-size: 0.9375rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== ARTICLES GRID ===== */
.articles-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.articles-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.articles-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.articles-grid-mixed {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}
.articles-grid-mixed .article-card:first-child .article-card-img { height: 280px; }

/* ===== COURSE CARDS ===== */
.course-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.course-card-header {
  padding: 24px 24px 0;
}
.course-level {
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.level-beginner { background: #E8F5E9; color: #2E7D32; }
.level-intermediate { background: #FFF3E0; color: #E65100; }
.level-advanced { background: #EDE7F6; color: #4527A0; }
.level-all { background: var(--ochre-light); color: var(--ochre-dark); }

.course-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.course-card-body {
  padding: 0 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-card-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.course-meta-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.course-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-medium);
}
.course-meta-icon { color: var(--ochre); font-style: normal; font-size: 0.875rem; }
.btn-course {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-course:hover { background: var(--ochre-dark); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--navy); color: var(--white); border: 2px solid var(--navy); }
.btn-primary:hover { background: var(--gray-blue-dark); border-color: var(--gray-blue-dark); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ochre { background: var(--ochre); color: var(--white); border: 2px solid var(--ochre); }
.btn-ochre:hover { background: var(--ochre-dark); border-color: var(--ochre-dark); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }

/* ===== PULL QUOTE ===== */
.pull-quote {
  border-left: 4px solid var(--ochre);
  padding: 24px 32px;
  background: var(--ochre-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 36px 0;
}
.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 12px;
}
.pull-quote cite {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ochre-dark);
  font-style: normal;
  display: block;
}
.pull-quote cite::before { content: '— '; }

/* ===== STATS ROW ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--ochre); }
.stat-label { font-size: 0.875rem; color: var(--text-light); font-weight: 500; line-height: 1.4; }

/* ===== EXPERT CARDS ===== */
.expert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.expert-card:hover { box-shadow: var(--shadow-md); }
.expert-photo {
  height: 260px;
  overflow: hidden;
}
.expert-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.expert-info { padding: 24px; }
.expert-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.expert-title { font-size: 0.875rem; color: var(--ochre); font-weight: 600; margin-bottom: 12px; }
.expert-bio { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.expert-specialties { display: flex; flex-wrap: wrap; gap: 6px; }
.specialty-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg-secondary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-blue-dark);
}

/* ===== EVENT CARDS ===== */
.event-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.25s;
}
.event-card:hover { box-shadow: var(--shadow-md); }
.event-date-block {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.event-day { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 900; color: var(--white); line-height: 1; }
.event-month { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ochre); }
.event-info { flex: 1; }
.event-type {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ochre);
  margin-bottom: 6px;
}
.event-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.event-meta { font-size: 0.8125rem; color: var(--text-light); display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== OCHRE FEATURE BLOCK ===== */
.ochre-feature {
  background: var(--ochre);
  border-radius: var(--radius-md);
  padding: 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.ochre-feature::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 18rem;
  line-height: 0.7;
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255,255,255,0.12);
  font-weight: 900;
}
.ochre-feature-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-style: italic;
  line-height: 1.5;
  max-width: 680px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.ochre-feature-author {
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

/* ===== TOPIC TAGS ===== */
.topics-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.topic-tag {
  padding: 6px 16px;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: all 0.2s;
  cursor: pointer;
}
.topic-tag:hover, .topic-tag.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.cta-band p { font-size: 1.0625rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 32px; line-height: 1.7; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== ARTICLE BODY (Long read) ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: flex-start;
}
.article-body {
  min-width: 0;
}
.article-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--navy);
}
.article-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}
.article-date { font-size: 0.8125rem; color: var(--text-light); }
.article-read-time {
  font-size: 0.8125rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-lead {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.article-text { font-size: 1rem; line-height: 1.85; color: var(--text-medium); }
.article-text p { margin-bottom: 24px; }
.article-text h2 {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ochre);
}
.article-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 36px;
  margin-bottom: 12px;
}
.article-text ul, .article-text ol { margin-bottom: 24px; padding-left: 24px; }
.article-text ul { list-style: disc; }
.article-text ol { list-style: decimal; }
.article-text li { margin-bottom: 8px; line-height: 1.75; }
.article-text strong { color: var(--navy); font-weight: 600; }
.article-drop-cap::first-letter {
  font-family: var(--font-heading);
  float: left;
  font-size: 4.5rem;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 8px;
  color: var(--navy);
  font-weight: 900;
}
.article-sidebar { position: sticky; top: calc(var(--header-height) + 24px); }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ochre);
}
.sidebar-toc-list { display: flex; flex-direction: column; gap: 8px; }
.sidebar-toc-list a {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.4;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.sidebar-toc-list a:hover { color: var(--ochre); }
.sidebar-toc-list a:last-child { border-bottom: none; }
.toc-num { flex-shrink: 0; color: var(--ochre); font-weight: 700; font-size: 0.75rem; padding-top: 1px; }
.sidebar-related-list { display: flex; flex-direction: column; gap: 14px; }
.sidebar-related-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sidebar-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-related-tag { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ochre); }
.sidebar-related-title { font-size: 0.875rem; font-weight: 600; color: var(--navy); line-height: 1.4; transition: color 0.2s; }
.sidebar-related-title:hover { color: var(--ochre); }

/* ===== CONTACT FORM ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
}
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--ochre-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ochre);
  font-size: 1.25rem;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 4px; }
.contact-info-value { font-size: 0.9375rem; font-weight: 500; color: var(--text-dark); }
.contact-info-value a { color: var(--navy); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--ochre); }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-label span { color: var(--ochre); }
.form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,41,59,0.08); }
.form-control::placeholder { color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { margin-top: 8px; }
.form-note { font-size: 0.8125rem; color: var(--text-light); margin-top: 12px; line-height: 1.5; }

.success-message {
  display: none;
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 24px;
}
.success-message.show { display: block; }
.success-message h4 { font-size: 1rem; font-weight: 700; color: #15803D; margin-bottom: 8px; }
.success-message p { font-size: 0.875rem; color: #166534; line-height: 1.6; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--gray-blue-dark) 100%);
  padding: 64px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.newsletter-text h3 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.newsletter-text p { font-size: 0.9375rem; color: rgba(255,255,255,0.7); }
.newsletter-form { display: flex; gap: 8px; align-items: stretch; }
.newsletter-input {
  flex: 1;
  min-width: 280px;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  outline: none;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.5); }
.newsletter-btn {
  padding: 12px 24px;
  background: var(--ochre);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--ochre-dark); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-dot { background: var(--ochre); }
.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--ochre); }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--ochre); }
.footer-links a::before { content: '›'; color: var(--ochre); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--ochre); }

/* ===== POLICY PAGES ===== */
.policy-page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: flex-start;
}
.policy-nav {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.policy-nav-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 14px; }
.policy-nav-list { display: flex; flex-direction: column; gap: 2px; }
.policy-nav-list a {
  display: block;
  padding: 8px 10px;
  font-size: 0.875rem;
  color: var(--text-medium);
  border-radius: var(--radius);
  transition: all 0.15s;
  line-height: 1.4;
}
.policy-nav-list a:hover { background: var(--bg-secondary); color: var(--navy); }
.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ochre);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 10px;
}
.policy-content p { font-size: 0.9375rem; line-height: 1.8; color: var(--text-medium); margin-bottom: 16px; }
.policy-content ul, .policy-content ol { padding-left: 24px; margin-bottom: 16px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: 0.9375rem; line-height: 1.75; color: var(--text-medium); margin-bottom: 6px; }
.policy-content strong { color: var(--text-dark); font-weight: 600; }
.policy-content a { color: var(--ochre); text-decoration: underline; }
.policy-meta {
  display: flex;
  gap: 24px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.policy-meta-item { font-size: 0.8125rem; color: var(--text-light); }
.policy-meta-item strong { color: var(--text-dark); }

/* ===== INFO BOXES ===== */
.info-box {
  background: var(--bg-secondary);
  border-left: 4px solid var(--gray-blue-dark);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box.ochre { border-left-color: var(--ochre); background: var(--ochre-light); }
.info-box-title { font-weight: 700; font-size: 0.9375rem; color: var(--navy); margin-bottom: 8px; }
.info-box p { font-size: 0.875rem; color: var(--text-medium); margin: 0; line-height: 1.65; }

/* ===== ABOUT PAGE ===== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 4px;
  width: 12px; height: 12px;
  background: var(--ochre);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--ochre);
}
.timeline-year { font-size: 0.75rem; font-weight: 700; color: var(--ochre); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.timeline-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.timeline-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--ochre);
}
.value-icon { font-size: 2rem; margin-bottom: 16px; color: var(--ochre); }
.value-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-text { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; }

/* ===== RESOURCES PAGE ===== */
.resource-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s;
}
.resource-card:hover { box-shadow: var(--shadow-md); }
.resource-type-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.resource-type-icon.pdf { background: #FEE2E2; color: #DC2626; }
.resource-type-icon.video { background: #DBEAFE; color: #1D4ED8; }
.resource-type-icon.guide { background: var(--ochre-light); color: var(--ochre-dark); }
.resource-type-icon.template { background: #F3E8FF; color: #7C3AED; }
.resource-info { flex: 1; }
.resource-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.resource-desc { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; }
.resource-meta { font-size: 0.8125rem; color: var(--gray); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: none;
  align-items: flex-start;
  gap: 20px;
}
.cookie-banner.show { display: flex; }
.cookie-text { flex: 1; }
.cookie-text p { font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.85); }
.cookie-text a { color: var(--ochre); text-decoration: underline; }
.cookie-actions { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.btn-cookie-accept { padding: 10px 20px; background: var(--ochre); color: var(--white); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius); border: none; cursor: pointer; white-space: nowrap; }
.btn-cookie-decline { padding: 10px 20px; background: transparent; color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; white-space: nowrap; }

/* ===== CONTACT PAGE EXTRAS ===== */
.contact-success-message {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 28px;
  text-align: center;
}
.contact-success-message .success-icon {
  font-size: 2.5rem;
  color: #16A34A;
  margin-bottom: 12px;
}
.contact-success-message h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #15803D;
  margin-bottom: 8px;
}
.contact-success-message p { font-size: 0.9375rem; color: #166534; line-height: 1.65; }

.form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,41,59,0.08); }
.form-input::placeholder { color: var(--gray); }
.form-textarea { resize: vertical; min-height: 140px; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748B' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-error { display: block; font-size: 0.8125rem; color: #DC2626; margin-top: 5px; }
.form-checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.6;
  cursor: pointer;
}
.form-checkbox-label input[type="checkbox"] { flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; cursor: pointer; accent-color: var(--navy); }
.form-checkbox-label a { color: var(--ochre); text-decoration: underline; }

.contact-main { min-width: 0; }
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 24px;
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ochre);
}
.contact-info-card .contact-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-info-card .contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--ochre-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--ochre);
  font-size: 1rem;
}
.contact-info-card strong { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 4px; }
.contact-info-card address { font-style: normal; font-size: 0.9375rem; color: var(--text-dark); line-height: 1.6; }
.contact-info-card a { color: var(--navy); font-size: 0.9375rem; font-weight: 500; transition: color 0.2s; }
.contact-info-card a:hover { color: var(--ochre); }
.contact-directions-list { display: flex; flex-direction: column; gap: 14px; list-style: none; }
.contact-directions-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-directions-list strong { font-size: 0.8125rem; color: var(--text-dark); }
.contact-directions-list a { font-size: 0.8125rem; color: var(--ochre); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.highlight-ochre { color: var(--ochre); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-main { grid-template-columns: 1fr 360px; }
  .footer-grid { grid-template-columns: 240px 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 2; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .main-nav, .header-actions .btn-contact-header { display: none; }
  .burger-btn { display: flex; }
  .hero-main { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-wrap { height: 280px; }
  .hero-content { padding: 40px 0 32px; border-right: none; border-bottom: 1px solid var(--border); }
  .articles-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .articles-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .featured-article { grid-template-columns: 1fr; }
  .featured-article-img { min-height: 240px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { min-width: 0; }
  .policy-page-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .page-hero-with-image { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .articles-grid-mixed { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .articles-grid-3 { grid-template-columns: 1fr; }
  .articles-grid-2 { grid-template-columns: 1fr; }
  .articles-grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-topics { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .ochre-feature { padding: 32px 24px; }
  .event-card { flex-direction: column; gap: 14px; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .page-hero { padding: 52px 0 44px; }
  .section { padding: 52px 0; }
}
