/* ============================================
   Agent Insured / European Coverage Platform
   Shared design system
   ============================================ */

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

:root {
  --bg: #FAF8F3;
  --bg-alt: #F4F1E9;
  --bg-white: #FFFFFF;
  --navy: #0F1B3D;
  --navy-deep: #0A1330;
  --navy-soft: #1F2B50;
  --accent: #2D4A7C;
  --accent-soft: rgba(45, 74, 124, 0.08);
  --ochre: #B8743A;
  --rule: #D9D2C0;
  --rule-soft: #E8E2D2;
  --text: #0F1B3D;
  --text-muted: #59617A;
  --text-faint: #8A8F9E;
  --text-inverse: #EDE7D3;
  --text-inverse-muted: #9AA0B8;
  --serif: 'Fraunces', 'Source Serif 4', 'EB Garamond', Georgia, serif;
  --sans: 'Inter', 'IBM Plex Sans', system-ui, sans-serif;
  --max: 1280px;
  --gutter: 56px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga", "ss01";
  min-height: 100vh;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   UTILITY BAR
   ============================================ */
.utility-bar {
  background: var(--navy-deep);
  color: var(--text-inverse);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.utility-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.utility-bar__left {
  display: flex;
  gap: 28px;
  align-items: center;
}

.utility-bar__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ochre);
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px rgba(184, 116, 58, 0.18);
}

.utility-bar__right {
  color: var(--text-inverse-muted);
  font-weight: 400;
}

/* ============================================
   MASTHEAD
   ============================================ */
.masthead {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.masthead__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Wordmark */
.wordmark {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
}

.wordmark:hover {
  text-decoration: none;
}

.wordmark__seal {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  position: relative;
}

.wordmark__seal svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wordmark__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark__primary {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--navy);
}

.wordmark__primary em {
  font-style: italic;
  font-weight: 400;
}

.wordmark__sub {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  text-decoration: none;
  transition: border-color 120ms ease;
}

.nav__link:hover {
  text-decoration: none;
  border-bottom-color: var(--navy);
}

.nav__link--active {
  border-bottom-color: var(--ochre);
}

.nav__cta {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--navy);
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.nav__cta:hover {
  background: var(--navy);
  color: var(--bg);
  text-decoration: none;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 64px 0;
}

.section--dark {
  background: var(--navy);
  color: var(--text-inverse);
}

.section--dark .eyebrow {
  color: var(--ochre);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--bg);
}

.section--dark p {
  color: var(--text-inverse);
}

.section--alt {
  background: var(--bg-alt);
}

hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.eyebrow--ochre {
  color: var(--ochre);
}

.eyebrow__dash {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--navy);
}

.display em {
  font-style: italic;
  font-weight: 300;
}

h1.page-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy);
}

h2 em {
  font-style: italic;
  font-weight: 300;
}

h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 400;
}

p.lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 400;
  max-width: 68ch;
}

p.small {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.tabular {
  font-variant-numeric: tabular-nums;
}

.dateline {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--navy);
  color: var(--text-inverse);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 116, 58, 0.09), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(45, 74, 124, 0.35), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero__meta {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 0;
  margin-bottom: 54px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}

.hero__meta strong {
  color: var(--bg);
  font-weight: 600;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 1.02;
  letter-spacing: -0.024em;
  color: var(--bg);
  max-width: 18ch;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
}

.hero__sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-inverse);
  max-width: 58ch;
  margin-top: 34px;
  font-weight: 300;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 80px;
  align-items: end;
}

.hero__side {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 40px;
  padding-bottom: 14px;
}

.hero__side-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.hero__side-text {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--bg);
  font-style: italic;
}

.hero__side-attrib {
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  font-weight: 500;
}

/* ============================================
   STATS / AT-A-GLANCE
   ============================================ */
.stats {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

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

.stat {
  padding: 44px 32px 44px 0;
  border-right: 1px solid var(--rule);
}

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

.stat__label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}

.stat__value {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}

.stat__note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
  line-height: 1.5;
}

/* ============================================
   REGULATORY TIMELINE
   ============================================ */
.timeline {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.timeline__entries {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.timeline__entry {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--rule);
}

.timeline__entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timeline__date {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ochre);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.timeline__date small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 6px;
  font-family: var(--sans);
}

.timeline__body h3 {
  margin-bottom: 10px;
}

/* ============================================
   PULL QUOTE
   ============================================ */
.pullquote {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
  padding: 80px 0;
}

.pullquote__mark {
  font-family: var(--serif);
  font-size: 90px;
  line-height: 0.6;
  color: var(--ochre);
  margin-bottom: 10px;
  display: block;
}

.pullquote__text {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.22;
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  letter-spacing: -0.012em;
}

.pullquote__attrib {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

/* ============================================
   FORMS (institutional style)
   ============================================ */
.registration {
  background: var(--bg-white);
  border: 1px solid var(--rule);
  padding: 56px;
  max-width: 760px;
  margin: 0 auto;
}

.registration__head {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 28px;
  margin-bottom: 36px;
}

.registration__head .dateline {
  margin-bottom: 14px;
  display: block;
}

.registration__head h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.registration__head p {
  font-size: 15px;
  color: var(--text-muted);
}

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

.form__field {
  display: flex;
  flex-direction: column;
}

.form__field--full {
  grid-column: 1 / -1;
}

.form__label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.form__label-num {
  color: var(--text-faint);
  margin-right: 8px;
  font-weight: 500;
}

.form__input,
.form__select,
.form__textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--navy);
  width: 100%;
  transition: border-color 150ms ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-bottom-color: var(--navy);
}

.form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%230F1B3D' stroke-width='1.2' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 24px;
}

.form__textarea {
  border: 1px solid var(--rule);
  padding: 14px 16px;
  min-height: 96px;
  resize: vertical;
  font-family: var(--sans);
}

.form__submit {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 38px;
  background: var(--navy);
  color: var(--bg);
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
  font-variant-numeric: tabular-nums;
}

.form__submit:hover {
  background: transparent;
  color: var(--navy);
}

.form__footer {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.form__small {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 44ch;
}

/* Success state */
.form__success {
  display: none;
  padding: 40px 0;
  text-align: center;
}

.form__success h3 {
  margin-bottom: 14px;
  color: var(--navy);
}

.form__success p {
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto;
}

.registration.is-submitted .form__body { display: none; }
.registration.is-submitted .form__success { display: block; }

/* ============================================
   COVERAGE CARDS (coverage.html)
   ============================================ */
.coverage-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}

.coverage-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}

.coverage-item__num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--ochre);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
}

.coverage-item h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.coverage-item__ref {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.coverage-item__body p {
  font-size: 15.5px;
  line-height: 1.65;
}

.coverage-item__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--rule);
}

.coverage-item__split h4 {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.coverage-item__split p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

/* ============================================
   TWO-COLUMN ARTICLE (coverage sidebar)
   ============================================ */
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 80px;
}

.article__aside {
  border-left: 1px solid var(--rule);
  padding-left: 32px;
  position: sticky;
  top: 40px;
  align-self: start;
}

.article__aside h4 {
  margin-bottom: 18px;
}

.definition {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-soft);
}

.definition:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.definition dt {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 6px;
}

.definition dd {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================
   MONITOR / BRIEFING PREVIEW
   ============================================ */
.briefing {
  background: var(--bg-white);
  border: 1px solid var(--rule);
  padding: 48px 56px;
  max-width: 820px;
  margin: 0 auto;
}

.briefing__head {
  border-bottom: 2px solid var(--navy);
  padding-bottom: 20px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.briefing__title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -0.015em;
  font-weight: 500;
}

.briefing__title em { font-style: italic; font-weight: 400; }

.briefing__issue {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.briefing__story {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.briefing__story:last-child {
  border-bottom: none;
}

.briefing__story h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-transform: none;
  margin-bottom: 8px;
  line-height: 1.3;
}

.briefing__story p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.briefing__story .dateline {
  display: inline-block;
  margin-bottom: 6px;
}

/* ============================================
   PARTNER NETWORK (about)
   ============================================ */
.network {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}

.network__item {
  padding: 36px 40px 36px 0;
  border-bottom: 1px solid var(--rule);
}

.network__item:nth-child(odd) {
  padding-right: 40px;
  border-right: 1px solid var(--rule);
}

.network__item:nth-child(even) {
  padding-left: 40px;
}

.network__item h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.network__item h3 a {
  color: var(--navy);
}

.network__item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

.network__tag {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  color: var(--text-inverse);
  padding: 72px 0 40px;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__col h4 {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 20px;
  font-weight: 600;
}

.site-footer__col ul {
  list-style: none;
}

.site-footer__col li {
  margin-bottom: 10px;
}

.site-footer__col a {
  font-size: 13.5px;
  color: var(--text-inverse);
  text-decoration: none;
}

.site-footer__col a:hover {
  color: var(--ochre);
  text-decoration: none;
}

.site-footer__wordmark {
  margin-bottom: 20px;
}

.site-footer__wordmark .wordmark__primary {
  color: var(--bg);
  font-size: 22px;
}

.site-footer__wordmark .wordmark__sub {
  color: var(--text-inverse-muted);
}

.site-footer__about {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-inverse-muted);
  max-width: 32ch;
}

.site-footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
  font-variant-numeric: tabular-nums;
}

.site-footer__disclaimer {
  margin-top: 40px;
  padding-top: 28px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-inverse-muted);
  max-width: 90ch;
}

.site-footer__disclaimer strong {
  color: var(--text-inverse);
  font-weight: 500;
}

/* ============================================
   ARTICLE LAYOUT (Briefings)
   ============================================ */
.article-body {
  max-width: 72ch;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
}

.article-body h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 20px;
  margin-bottom: 24px;
  color: var(--navy);
}

.article-body h1 em {
  font-style: italic;
  color: var(--ochre);
}

.article-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.2;
  margin-top: 56px;
  margin-bottom: 18px;
  color: var(--navy);
}

.article-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.3;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--navy);
}

.article-body p {
  margin-top: 0;
  margin-bottom: 22px;
}

.article-body ul,
.article-body ol {
  margin: 22px 0 22px 22px;
  padding: 0;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body a {
  color: var(--ochre);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body blockquote {
  margin: 32px 0;
  padding: 20px 28px;
  border-left: 3px solid var(--ochre);
  background: var(--bg-alt);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--navy);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 24px;
}

.article-takeaways {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--bg-alt);
  border-left: 3px solid var(--navy);
}

.article-takeaways h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 14px 0;
}

.article-takeaways ul {
  margin: 0 0 0 18px;
  padding: 0;
  font-size: 15.5px;
  line-height: 1.65;
}

.article-takeaways li {
  margin-bottom: 8px;
}

.article-faq {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}

.article-faq h2 {
  margin-top: 0;
}

.article-faq-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}

.article-faq-item:last-child {
  border-bottom: none;
}

.article-faq-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.article-crumbs {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.article-crumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.article-crumbs a:hover {
  color: var(--ochre);
}

/* ============================================
   BRIEFINGS INDEX (Home page)
   ============================================ */
.briefings-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
}

.briefings-card {
  padding: 28px 28px 32px 28px;
  border: 1px solid var(--rule);
  background: var(--bg);
  transition: border-color 0.15s ease;
}

.briefings-card:hover {
  border-color: var(--navy);
}

.briefings-card__dateline {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.briefings-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 14px 0;
}

.briefings-card h3 a {
  color: var(--navy);
  text-decoration: none;
}

.briefings-card h3 a:hover {
  color: var(--ochre);
}

.briefings-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 860px) {
  .briefings-index { grid-template-columns: 1fr; }
  .article-body h1 { font-size: 36px; }
  .article-body h2 { font-size: 25px; }
}

/* ============================================
   GENERIC GRIDS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.divider-vertical {
  border-left: 1px solid var(--rule);
  padding-left: 40px;
}

.split {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: start;
}

.split__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  padding-top: 8px;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   LIST STYLES
   ============================================ */
ul.checklist {
  list-style: none;
  padding: 0;
}

ul.checklist li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}

ul.checklist li::before {
  content: "§";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--ochre);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

ul.checklist li:last-child {
  border-bottom: none;
}

/* References */
.references {
  border-top: 1px solid var(--rule);
  padding-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.references h4 {
  margin-bottom: 18px;
}

.references ol {
  padding-left: 20px;
}

.references li {
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  :root {
    --gutter: 28px;
  }

  .section { padding: 64px 0; }

  .masthead__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav { gap: 22px; flex-wrap: wrap; }
  .nav__cta { display: none; }

  .utility-bar__inner { font-size: 10.5px; padding: 8px 28px; gap: 14px; }

  .hero { padding: 56px 0 68px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__side { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.18); padding-left: 0; padding-top: 32px; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--rule); padding: 32px 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 24px; }
  .stat:nth-child(even) { padding-left: 24px; }

  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .timeline__entry { grid-template-columns: 1fr; gap: 16px; }

  .registration { padding: 32px 24px; }
  .form__row { grid-template-columns: 1fr; gap: 20px; }

  .coverage-item { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
  .coverage-item__split { grid-template-columns: 1fr; gap: 20px; }

  .article { grid-template-columns: 1fr; gap: 48px; }
  .article__aside { position: static; border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 32px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 40px; }
  .divider-vertical { border-left: none; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 32px; }

  .split { grid-template-columns: 1fr; gap: 16px; }

  .network { grid-template-columns: 1fr; }
  .network__item, .network__item:nth-child(odd), .network__item:nth-child(even) {
    padding: 32px 0;
    border-right: none;
  }

  .briefing { padding: 32px 24px; }

  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer__wordmark { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(odd), .stat:nth-child(even) {
    border-right: none;
    padding: 28px 0;
  }
  .site-footer__top { grid-template-columns: 1fr; }
}
