.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb,var(--bg) 94%,transparent);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  min-height: var(--header);
  max-width: var(--wide);
  margin: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}

.site-brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.site-brand b {
  display: block;
  letter-spacing: .18em;
}

.site-brand small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: .64rem;
  letter-spacing: .08em;
}

.global-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px,2vw,32px);
  font-size: .76rem;
  letter-spacing: .08em;
}

.global-nav a {
  text-decoration: none;
}

.global-nav__divisions {
  display: flex;
  border-left: 1px solid var(--line);
  padding-left: 24px;
  gap: 14px;
}

.global-nav__divisions a {
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.division-nav {
  max-width: var(--wide);
  margin: auto;
  padding: 10px var(--gutter);
  display: flex;
  gap: 24px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  font-size: .72rem;
  white-space: nowrap;
}

.division-nav a {
  text-decoration: none;
  color: var(--muted);
}

.division-nav a:hover {
  color: var(--text);
}

.breadcrumb {
  max-width: var(--wide);
  margin: auto;
  padding: 18px var(--gutter);
  font-size: .7rem;
  color: var(--muted);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumb li+li::before {
  content: "/";
  margin-right: 8px;
  color: var(--line-strong);
}

.breadcrumb a {
  text-decoration: none;
}


.local-index {
  max-width: var(--wide);
  margin: auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(170px,1fr));
  border-bottom: 1px solid var(--line);
}

.local-index a {
  min-height: 82px;
  padding: 20px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-right: 1px solid var(--line);
  text-decoration: none;
  font-size: .8rem;
}

.local-index a:first-child {
  border-left: 1px solid var(--line);
}

.local-index span {
  color: var(--muted);
  font-size: .65rem;
}

.section {
  padding: var(--section) var(--gutter);
}

.section--tight {
  padding-block: clamp(52px,6vw,84px);
}

.section--surface {
  background: var(--surface);
}

.section--sub {
  background: var(--surface-sub);
}

.section__inner {
  max-width: var(--container);
  margin: auto;
}

.section__inner--wide {
  max-width: var(--wide);
  margin: auto;
}

.section__inner--reading {
  max-width: var(--reading);
  margin: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 70px minmax(0,1fr);
  gap: 24px;
  margin-bottom: clamp(42px,6vw,80px);
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.section-heading>span {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .15em;
}

.section-heading h2 {
  font-size: var(--step-3);
  max-width: 16em;
}

.section-heading p {
  margin-top: 15px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,.8fr);
  gap: clamp(40px,8vw,120px);
}

.split--reverse {
  grid-template-columns: minmax(300px,.8fr) minmax(0,1fr);
}

.split--reverse>*:first-child {
  order: 2;
}

.reading-flow>*+* {
  margin-top: 1.3em;
}

.reading-flow h3 {
  margin-top: 2.5em;
  font-size: var(--step-1);
}

.reading-flow h2 {
  margin-top: 2.8em;
  font-size: var(--step-2);
}

.site-footer {
  padding: clamp(70px,8vw,120px) var(--gutter) 26px;
  border-top: 1px solid var(--line);
}

.site-footer__statement,.site-footer__links,.site-footer__bottom {
  max-width: var(--wide);
  margin: auto;
}

.site-footer__statement {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  padding-bottom: 56px;
}

.site-footer__statement p {
  font: 500 var(--step-2)/1.55 var(--font-serif);
}

.site-footer__statement span {
  color: var(--muted);
  font-size: .72rem;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer__links>div {
  padding: 30px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer__links>div:first-child {
  border-left: 1px solid var(--line);
}

.site-footer__links strong {
  margin-bottom: 10px;
  font-size: .68rem;
  letter-spacing: .15em;
}

.site-footer__links a {
  font-size: .78rem;
  text-decoration: none;
  color: var(--muted);
}

.site-footer__bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .68rem;
}


/* ========================================
   FULL-WIDTH HERO COVER
   Replace the prepared WebP files to complete each hero.
======================================== */
.hero-cover {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(560px, 70svh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #1a211e;
}

.hero-cover--home {
  min-height: clamp(660px, calc(100svh - var(--header)), 920px);
}

.hero-cover__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #1a211e;
}

.hero-cover__picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-cover__picture img,
.hero-cover__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-cover__video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-cover__media[data-focus="left"] img,
.hero-cover__media[data-focus="left"] video {
  object-position: left center;
}

.hero-cover__media[data-focus="right"] img,
.hero-cover__media[data-focus="right"] video {
  object-position: right center;
}

.hero-cover__media[data-focus="top"] img,
.hero-cover__media[data-focus="top"] video {
  object-position: center top;
}

.hero-cover__media[data-focus="bottom"] img,
.hero-cover__media[data-focus="bottom"] video {
  object-position: center bottom;
}

.hero-cover__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 18, 16, .9) 0%, rgba(13, 18, 16, .74) 42%, rgba(13, 18, 16, .34) 73%, rgba(13, 18, 16, .16) 100%),
    linear-gradient(180deg, rgba(10, 14, 12, .14) 0%, rgba(10, 14, 12, .1) 50%, rgba(10, 14, 12, .62) 100%);
}

.theme-creative .hero-cover__shade {
  background:
    linear-gradient(90deg, rgba(10, 19, 23, .91) 0%, rgba(10, 19, 23, .72) 43%, rgba(10, 19, 23, .3) 74%, rgba(10, 19, 23, .12) 100%),
    linear-gradient(180deg, rgba(10, 19, 23, .1) 0%, rgba(10, 19, 23, .08) 52%, rgba(10, 19, 23, .62) 100%);
}

.theme-support .hero-cover__shade {
  background:
    linear-gradient(90deg, rgba(12, 16, 14, .94) 0%, rgba(12, 16, 14, .82) 46%, rgba(12, 16, 14, .5) 76%, rgba(12, 16, 14, .28) 100%),
    linear-gradient(180deg, rgba(7, 10, 9, .22) 0%, rgba(7, 10, 9, .16) 48%, rgba(7, 10, 9, .76) 100%);
}

.theme-policy .hero-cover__shade {
  background:
    linear-gradient(90deg, rgba(18, 23, 20, .92) 0%, rgba(18, 23, 20, .73) 44%, rgba(18, 23, 20, .32) 75%, rgba(18, 23, 20, .14) 100%),
    linear-gradient(180deg, rgba(18, 23, 20, .1) 0%, rgba(18, 23, 20, .08) 52%, rgba(18, 23, 20, .64) 100%);
}

.hero-cover__inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--wide));
  margin: 0 auto;
  padding: clamp(108px, 14vh, 170px) var(--gutter) clamp(64px, 10vh, 112px);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}

.hero-cover__index {
  align-self: start;
  padding-top: 12px;
  color: rgba(255, 255, 255, .74);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .18em;
}

.hero-cover__content {
  min-width: 0;
  max-width: 1180px;
}

.hero-cover__eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .2em;
}

.hero-cover h1 {
  max-width: none;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: .015em;
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
  text-shadow: 0 3px 30px rgba(0, 0, 0, .32);
}

.hero-cover--home h1 {
  max-width: none;
  font-size: clamp(3.2rem, 5.6vw, 6.3rem);
}

.hero-cover__lead-label {
  margin-top: clamp(32px, 5vh, 56px);
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: .67rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .18em;
}

.hero-cover__lead {
  max-width: 54ch;
  margin-top: 28px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, .92rem + .4vw, 1.24rem);
  line-height: 1.9;
  letter-spacing: .045em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .36);
}

.hero-cover__lead-label + .hero-cover__lead {
  margin-top: 0;
}



.hero-cover__title-line {
  display: block;
  white-space: nowrap;
}
