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

:root {
  --bg: #F7F5F0;
  --bg-alt: #EFEFEB;
  --bg-card: #FAFAF7;
  --charcoal: #1E1E1E;
  --charcoal-mid: #3A3A3A;
  --charcoal-light: #6B6B6B;
  --emerald: #2A7A5E;
  --emerald-dark: #1E5C46;
  --emerald-light: #3D9970;
  --emerald-pale: #EAF4EF;
  --border: #D8D5CE;
  --border-light: #E8E5DE;
  --white: #FFFFFF;
  --red-accent: #C0392B;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --shadow-sm: 0 1px 4px rgba(30,30,30,0.07);
  --shadow-md: 0 4px 20px rgba(30,30,30,0.10);
  --shadow-lg: 0 8px 40px rgba(30,30,30,0.13);
  --radius: 4px;
  --radius-lg: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--emerald); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 840px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ── TOP BAR ─────────────────────────────────────────────────── */
.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar__left { display: flex; align-items: center; gap: 24px; }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,0.6); transition: color .2s; }
.topbar a:hover { color: var(--emerald-light); }
.topbar__date { color: rgba(255,255,255,0.45); }

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 32px;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo__name span { color: var(--emerald); }
.logo__tagline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__item {
  position: relative;
}
.nav__link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-mid);
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  color: var(--emerald);
  background: var(--emerald-pale);
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s;
  z-index: 200;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 13.5px;
  color: var(--charcoal-mid);
  border-bottom: 1px solid var(--border-light);
  transition: color .15s, background .15s;
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover { color: var(--emerald); background: var(--emerald-pale); }

.header__search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 7px 16px;
  transition: border-color .2s;
}
.header__search:focus-within { border-color: var(--emerald); }
.header__search input {
  border: none;
  background: none;
  font-size: 13.5px;
  color: var(--charcoal);
  outline: none;
  width: 160px;
}
.header__search input::placeholder { color: var(--charcoal-light); }
.header__search button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--charcoal-light);
  display: flex;
  align-items: center;
  transition: color .2s;
}
.header__search button:hover { color: var(--emerald); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .3s;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.45) 55%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 24px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--emerald-light);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  max-width: 760px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero__excerpt {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__meta-item {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.hero__meta-item strong { color: rgba(255,255,255,0.85); font-weight: 500; }
.hero__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
}

/* ── SECTION LABELS ──────────────────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.section-label__line {
  width: 32px;
  height: 2px;
  background: var(--emerald);
  flex-shrink: 0;
}
.section-label__text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.section-subtitle {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--charcoal-light);
  margin-top: 10px;
  max-width: 560px;
  line-height: 1.6;
}

/* ── CARDS ───────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__image { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card__body { padding: 22px; }
.card__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
  display: inline-block;
}
.card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color .2s;
}
.card:hover .card__title { color: var(--emerald); }
.card__excerpt {
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.card__author {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal-mid);
}
.card__date { font-size: 12px; color: var(--charcoal-light); margin-left: auto; }

/* ── RESEARCH CARD ───────────────────────────────────────────── */
.research-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform .25s, box-shadow .25s;
}
.research-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.research-card__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--emerald-pale);
  -webkit-text-stroke: 1px var(--emerald);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.research-card__body { flex: 1; }
.research-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 8px;
}
.research-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.research-card__desc {
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.6;
  margin-bottom: 14px;
}
.research-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12.5px;
  color: var(--charcoal-light);
}

/* ── GRID LAYOUTS ─────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-featured { display: grid; grid-template-columns: 1.55fr 1fr; gap: 28px; }

/* ── SECTION SPACINGS ─────────────────────────────────────────── */
.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section--bordered { border-top: 1px solid var(--border); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
}
.btn--primary:hover {
  background: var(--emerald-dark);
  border-color: var(--emerald-dark);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--emerald);
  border-color: var(--emerald);
}
.btn--outline:hover {
  background: var(--emerald);
  color: var(--white);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal-mid);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--bg-alt);
  border-color: var(--charcoal-mid);
  color: var(--charcoal);
}
.btn--dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn--dark:hover {
  background: var(--charcoal-mid);
  border-color: var(--charcoal-mid);
  color: var(--white);
}
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn--lg { padding: 14px 32px; font-size: 16px; }

/* ── TAGS ────────────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 24px;
  background: var(--emerald-pale);
  color: var(--emerald-dark);
  border: 1px solid rgba(42,122,94,0.15);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.tag:hover { background: var(--emerald); color: var(--white); }
.tag--active { background: var(--emerald); color: var(--white); }

/* ── FEATURED STRIP ──────────────────────────────────────────── */
.featured-strip {
  border-top: 3px solid var(--emerald);
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.featured-strip__inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.featured-strip__label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--emerald);
  padding: 6px 16px;
  margin-right: 28px;
  white-space: nowrap;
}
.featured-strip__items {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.featured-strip__items::-webkit-scrollbar { display: none; }
.featured-strip__item {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-mid);
  cursor: pointer;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured-strip__item:hover { color: var(--emerald); }
.featured-strip__item::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.sidebar__widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.sidebar__widget-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--bg-alt);
}
.sidebar__widget-body { padding: 20px; }
.sidebar__mini-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.sidebar__mini-card:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar__mini-card img {
  width: 70px;
  height: 52px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.sidebar__mini-card__title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 4px;
  transition: color .2s;
}
.sidebar__mini-card:hover .sidebar__mini-card__title { color: var(--emerald); }
.sidebar__mini-card__meta { font-size: 12px; color: var(--charcoal-light); }

/* ── AUTHOR BOX ──────────────────────────────────────────────── */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 40px 0;
}
.author-box__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}
.author-box__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.author-box__role {
  font-size: 12px;
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.author-box__bio { font-size: 14px; color: var(--charcoal-mid); line-height: 1.6; }

/* ── STATS ROW ───────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 48px 0;
}
.stats-row__item {
  background: var(--bg-card);
  padding: 32px 24px;
  text-align: center;
}
.stats-row__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-row__label {
  font-size: 13px;
  color: var(--charcoal-light);
  font-weight: 500;
}

/* ── NEWSLETTER ──────────────────────────────────────────────── */
.newsletter {
  background: var(--emerald);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  text-align: center;
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.newsletter__subtitle {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 28px;
}
.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter__input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 14.5px;
  outline: none;
  color: var(--charcoal);
  background: var(--white);
}
.newsletter__input::placeholder { color: #888; }
.newsletter__btn {
  padding: 12px 24px;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter__btn:hover { background: #000; }

/* ── ARTICLE CONTENT ─────────────────────────────────────────── */
.article-header { padding: 56px 0 40px; }
.article-category {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-category::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--emerald);
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  max-width: 820px;
}
.article-lead {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--charcoal-mid);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 740px;
  border-left: 3px solid var(--emerald);
  padding-left: 20px;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.article-meta-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--charcoal-mid);
}
.article-meta-bar__item svg { color: var(--emerald); }
.article-image {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 32px 0;
}
.article-body {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.8;
  color: var(--charcoal-mid);
  max-width: 740px;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 40px 0 16px;
  letter-spacing: -0.3px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 30px 0 12px;
}
.article-body p { margin-bottom: 20px; }
.article-body blockquote {
  border-left: 4px solid var(--emerald);
  padding: 16px 24px;
  background: var(--emerald-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 20px;
  color: var(--charcoal);
}
.article-body ul { margin: 16px 0 20px 24px; list-style: disc; }
.article-body ol { margin: 16px 0 20px 24px; list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--emerald); text-decoration: underline; }
.article-body strong { font-weight: 700; color: var(--charcoal); }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--charcoal-light);
  padding: 16px 0;
}
.breadcrumb a { color: var(--charcoal-light); transition: color .2s; }
.breadcrumb a:hover { color: var(--emerald); }
.breadcrumb__sep { color: var(--border); }

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}
.pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal-mid);
  cursor: pointer;
  transition: all .2s;
  background: var(--white);
  text-decoration: none;
}
.pagination__btn:hover, .pagination__btn.active {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}
.pagination__btn--arrow {
  font-size: 18px;
  color: var(--charcoal-light);
}

/* ── TEAM CARD ───────────────────────────────────────────────── */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}
.team-card__body { padding: 22px; }
.team-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
}
.team-card__bio { font-size: 13.5px; color: var(--charcoal-light); line-height: 1.55; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-label span { color: var(--red-accent); }
.form-control {
  display: block;
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14.5px;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-control:focus { border-color: var(--emerald); }
.form-control::placeholder { color: #aaa; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  background: var(--emerald-pale);
  border: 1px solid var(--emerald);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--emerald-dark);
  font-size: 14.5px;
  margin-top: 16px;
  font-weight: 500;
}
.form-success.visible { display: flex; align-items: center; gap: 12px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── INFO BLOCKS ─────────────────────────────────────────────── */
.info-block {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-block__icon {
  width: 44px;
  height: 44px;
  background: var(--emerald-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--emerald);
}
.info-block__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.info-block__text { font-size: 14px; color: var(--charcoal-light); line-height: 1.6; }

/* ── TOPIC CARD ──────────────────────────────────────────────── */
.topic-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: all .25s;
  cursor: pointer;
  display: block;
}
.topic-card:hover {
  border-color: var(--emerald);
  background: var(--emerald-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.topic-card__icon { font-size: 28px; margin-bottom: 14px; }
.topic-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.topic-card:hover .topic-card__title { color: var(--emerald-dark); }
.topic-card__count { font-size: 13px; color: var(--charcoal-light); }

/* ── QUOTE BLOCK ─────────────────────────────────────────────── */
.pull-quote {
  border-left: 4px solid var(--emerald);
  padding: 24px 32px;
  background: var(--emerald-pale);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 40px 0;
}
.pull-quote__text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: 12px;
  font-style: italic;
}
.pull-quote__author {
  font-size: 13px;
  color: var(--emerald-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── EVENT CARD ──────────────────────────────────────────────── */
.event-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: flex-start;
  transition: box-shadow .2s;
}
.event-card:hover { box-shadow: var(--shadow-md); }
.event-card__date {
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  background: var(--emerald);
  border-radius: var(--radius);
  padding: 10px 8px;
  color: var(--white);
}
.event-card__date-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2px;
}
.event-card__date-mon {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.event-card__body { flex: 1; }
.event-card__type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 6px;
}
.event-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}
.event-card__meta { font-size: 13px; color: var(--charcoal-light); }
.event-card__desc { font-size: 14px; color: var(--charcoal-mid); margin-top: 10px; line-height: 1.6; }

/* ── POLICY PAGES ─────────────────────────────────────────────── */
.policy-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.policy-header__title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}
.policy-header__meta {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.policy-content {
  max-width: 820px;
  margin: 56px auto;
  padding: 0 24px;
}
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.policy-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
  margin: 24px 0 10px;
}
.policy-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal-mid);
  margin-bottom: 16px;
}
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.policy-content ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 16px;
}
.policy-content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal-mid);
  margin-bottom: 8px;
}
.policy-content a { color: var(--emerald); text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  margin-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-name span { color: var(--emerald-light); }
.footer__brand-desc {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 12px 0 20px;
  color: rgba(255,255,255,0.55);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.6);
}
.footer__contact-item svg { color: var(--emerald-light); flex-shrink: 0; }
.footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color .2s;
}
.footer__link:hover { color: var(--emerald-light); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  color: rgba(255,255,255,0.35);
  font-size: 12.5px;
  transition: color .2s;
}
.footer__bottom-links a:hover { color: var(--emerald-light); }

/* ── TABS ────────────────────────────────────────────────────── */
.tabs { border-bottom: 2px solid var(--border); margin-bottom: 32px; }
.tabs__list { display: flex; gap: 0; }
.tabs__btn {
  padding: 12px 24px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--charcoal-light);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
}
.tabs__btn.active, .tabs__btn:hover {
  color: var(--emerald);
  border-bottom-color: var(--emerald);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── SKILL CARDS ─────────────────────────────────────────────── */
.skill-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all .25s;
}
.skill-card:hover { border-color: var(--emerald); box-shadow: var(--shadow-md); }
.skill-card__level {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.skill-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.skill-card__dot.filled { background: var(--emerald); }
.skill-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.skill-card__desc { font-size: 14.5px; color: var(--charcoal-light); line-height: 1.65; }
.skill-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ── MOBILE NAV ──────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal-mid);
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--emerald); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-featured { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .nav, .header__search { display: none; }
  .burger { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .newsletter { padding: 32px 24px; }
  .newsletter__form { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 420px; }
  .hero__excerpt { font-size: 16px; }
  .section { padding: 48px 0; }
  .contact-form { padding: 24px; }
  .research-card { flex-direction: column; }
  .event-card { flex-direction: column; }
  .author-box { flex-direction: column; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero__title { font-size: 28px; }
}

/* R13 */
:root {
  --coal: inherit;
  --ink: inherit;
  --ink-muted: inherit;
  --sand: inherit;
}
