.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: 60px;
  height: 60px;
}

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

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

.global-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  font-size: 0.76rem;
  letter-spacing: 0.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: 0.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 0 0 22px;
  font-size: 0.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: 0.8rem;
}

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

.local-index span {
  color: var(--muted);
  font-size: 0.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: 0.72rem;
  letter-spacing: 0.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, 0.8fr);
  gap: clamp(40px, 8vw, 120px);
}

.split--reverse {
  grid-template-columns: minmax(300px, 0.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;
  background: #ffff;
}

.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: 0.72rem;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.site-footer__links > div {
  padding: 30px;
  display: grid;
  align-content: start;
  gap: 8px;
}

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

.site-footer__links a {
  font-size: 0.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: 0.68rem;
}

/* ========================================
   FULL-WIDTH HERO COVER
   Replace the prepared WebP files to complete each hero.
======================================== */
.hero-cover {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: clamp(560px, 62.5vw, 860px);
  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, 0.9) 0%,
      rgba(13, 18, 16, 0.74) 42%,
      rgba(13, 18, 16, 0.34) 73%,
      rgba(13, 18, 16, 0.16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 14, 12, 0.14) 0%,
      rgba(10, 14, 12, 0.1) 50%,
      rgba(10, 14, 12, 0.62) 100%
    );
}

.theme-creative .hero-cover__shade {
  background:
    linear-gradient(
      90deg,
      rgba(10, 19, 23, 0.91) 0%,
      rgba(10, 19, 23, 0.72) 43%,
      rgba(10, 19, 23, 0.3) 74%,
      rgba(10, 19, 23, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 19, 23, 0.1) 0%,
      rgba(10, 19, 23, 0.08) 52%,
      rgba(10, 19, 23, 0.62) 100%
    );
}

.theme-support .hero-cover__shade {
  background:
    linear-gradient(
      90deg,
      rgba(12, 16, 14, 0.94) 0%,
      rgba(12, 16, 14, 0.82) 46%,
      rgba(12, 16, 14, 0.5) 76%,
      rgba(12, 16, 14, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 10, 9, 0.22) 0%,
      rgba(7, 10, 9, 0.16) 48%,
      rgba(7, 10, 9, 0.76) 100%
    );
}

.theme-policy .hero-cover__shade {
  background:
    linear-gradient(
      90deg,
      rgba(18, 23, 20, 0.92) 0%,
      rgba(18, 23, 20, 0.73) 44%,
      rgba(18, 23, 20, 0.32) 75%,
      rgba(18, 23, 20, 0.14) 100%
    ),
    linear-gradient(
      180deg,
      rgba(18, 23, 20, 0.1) 0%,
      rgba(18, 23, 20, 0.08) 52%,
      rgba(18, 23, 20, 0.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, 0.74);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
}

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

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

.hero-cover h1 {
  max-width: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.015em;
  overflow-wrap: normal;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
  text-shadow: 0 3px 30px rgba(0, 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, 0.7);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

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

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

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