@font-face {
  font-family: "Manrope";
  src: url("assets/manrope-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --navy: #243865;
  --navy-dark: #1b2a4c;
  --blue: #7fc4e8;
  --blue-soft: #def1fb;
  --mint: #82b991;
  --mint-soft: #ddf1e4;
  --coral: #e96856;
  --ink: #273245;
  --muted: #697386;
  --line: #dfe6ed;
  --cream: #fbfaf7;
  --white: #fff;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: #fff;
  background: var(--navy-dark);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(36, 56, 101, 0.06);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(100%, 1240px);
  height: 92px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  margin-right: auto;
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand img {
  object-fit: contain;
}

.brand .brand-pzp-mark {
  width: 34px;
  height: 44px;
}

.brand .brand-county-mark {
  width: 39px;
  height: 48px;
}

.brand .brand-wordmark {
  width: 154px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  color: #465168;
  font-size: 13px;
  font-weight: 700;
}

.main-nav > a:not(.button) {
  position: relative;
  white-space: nowrap;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transition: right 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a.is-current:not(.button)::after {
  right: 0;
}

.header-access {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 2px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 3px;
}

.language-option,
.contrast-toggle {
  border: 0;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.language-option {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 3px;
  opacity: 0.52;
}

.language-option.is-active {
  opacity: 1;
}

.flag {
  width: 17px;
  height: 11px;
  border: 1px solid rgba(36, 56, 101, 0.15);
}

.flag--pl {
  background: linear-gradient(#fff 0 50%, #dc143c 50%);
}

.flag--ua {
  background: linear-gradient(#1676d2 0 50%, #ffd700 50%);
}

.contrast-toggle {
  padding: 5px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle i::before { top: -6px; }
.menu-toggle i::after { top: 6px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 13px 30px rgba(36, 56, 101, 0.14);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.button--small {
  min-height: 43px;
  padding: 0 19px;
  box-shadow: none;
  font-size: 12px;
}

.button--coral {
  background: var(--coral);
  box-shadow: none;
}

.button--coral:hover {
  background: #d85d4d;
}

.button--outline {
  min-height: 46px;
  border: 1px solid rgba(36, 56, 101, 0.24);
  color: var(--navy);
  background: transparent;
  box-shadow: none;
}

.button--outline:hover {
  color: #fff;
  background: var(--navy);
}

.text-link,
.help-card a,
.audience-card a,
.news-grid a,
.section-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.text-link span,
.help-card a span,
.audience-card a span,
.news-grid a span,
.section-more span,
.branch-more a span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.help-card a:hover span,
.audience-card a:hover span,
.news-grid a:hover span,
.section-more:hover span,
.branch-more a:hover span {
  transform: translateX(4px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--coral);
}

.section-label {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: center;
  min-height: 660px;
  padding: 90px max(6vw, calc(50vw - 590px)) 70px;
  overflow: hidden;
  background: var(--cream);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(36, 56, 101, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 56, 101, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.hero-orb--blue {
  top: -170px;
  right: -130px;
  width: 440px;
  height: 440px;
  background: rgba(127, 196, 232, 0.32);
}

.hero-orb--mint {
  right: 120px;
  bottom: -140px;
  width: 260px;
  height: 260px;
  background: rgba(130, 185, 145, 0.23);
}

.hero-content {
  max-width: 930px;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--navy);
  font-style: normal;
  font-weight: 400;
}

.hero h1 em::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 12px;
  border-radius: 50%;
  background: var(--coral);
  vertical-align: 0.15em;
}

.hero-lead {
  max-width: 670px;
  margin: 32px 0 0;
  color: #5e6878;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}

.hero-note {
  align-self: stretch;
  padding: 140px 0 0 36px;
  border-left: 1px solid rgba(36, 56, 101, 0.16);
}

.hero-note .note-kicker {
  margin: 0 0 17px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note h2 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.short-line {
  display: block;
  width: 42px;
  height: 2px;
  margin: 24px 0;
  background: var(--coral);
}

.hero-note ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-note li {
  position: relative;
  padding-left: 14px;
  color: #737e8f;
  font-size: 12px;
  line-height: 1.45;
}

.hero-note li::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.section {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 92px 24px;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.team h2,
.registration-callout h2,
.news-heading h2,
.service-info h2,
.page-hero h1,
.staff-intro h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(36px, 4.3vw, 54px);
  font-weight: 450;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-heading > p:last-child,
.team-intro > p,
.section-lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-heading--horizontal {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  gap: 80px;
  max-width: none;
}

.section-heading--horizontal > p {
  margin: 0;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 260px;
  gap: 18px;
  margin-top: 55px;
}

.help-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 282px;
  padding: 32px 34px;
  overflow: hidden;
  border-radius: 24px;
}

.help-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.help-card--blue { background: var(--blue-soft); }
.help-card--mint { background: var(--mint-soft); }

.help-card h3 {
  margin: 28px 0 13px;
  color: var(--navy);
  font-size: 27px;
  font-weight: 450;
  letter-spacing: -0.03em;
}

.help-card p {
  margin: 0 0 24px;
  color: #5c6877;
  font-size: 13px;
  line-height: 1.65;
}

.help-card a {
  z-index: 1;
  margin-top: auto;
}

.help-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 25px 0 25px 28px;
}

.help-list p {
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: start;
  gap: 12px;
  margin: 0;
  color: #465168;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.help-list p > span {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 2px solid var(--coral);
  border-radius: 50%;
  color: var(--coral);
  font-size: 10px;
}

.branches {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc(50vw - 590px));
  padding-left: max(24px, calc(50vw - 590px));
  background: #f7f8fa;
}

.branches--page {
  padding-top: 100px;
  padding-bottom: 100px;
}

.branch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 52px;
}

.branch-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 230px;
  grid-template-rows: auto 1fr auto;
  gap: 20px 26px;
  min-height: 370px;
  padding: 38px;
  overflow: hidden;
  border-radius: 28px;
}

.branch-card--blue { border: 1px solid #acd8eb; background: var(--blue-soft); }
.branch-card--mint { border: 1px solid #afd3ba; background: var(--mint-soft); }
.branch-card--coral { border: 1px solid #efa99c; background: #ffe3da; }

.branch-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.branch-grid--three .branch-card {
  grid-template-columns: 1fr;
  grid-template-rows: auto 155px auto auto;
  gap: 18px;
  min-height: 500px;
  padding: 32px;
}

.branch-grid--three .branch-title h3 {
  font-size: 32px;
}

.branch-grid--three .branch-illustration {
  grid-area: 2 / 1;
  padding: 0 0 0 24px;
  border-top: 0;
  border-left: 4px solid;
}

.branch-grid--three .branch-card--coral .branch-illustration { border-color: var(--coral); }
.branch-grid--three .branch-card--blue .branch-illustration { border-color: var(--blue); }
.branch-grid--three .branch-card--mint .branch-illustration { border-color: var(--mint); }

.branch-grid--three .branch-illustration img {
  height: 132px;
}

.branch-grid--three .branch-card--mint .branch-illustration img {
  object-fit: cover;
  clip-path: inset(0 0 0 3px);
}

.branch-grid--three .branch-illustration--identity img {
  width: auto;
  height: 112px;
  object-fit: contain;
  opacity: .9;
  mix-blend-mode: normal;
}

.branch-grid--three .branch-contact { grid-area: 3 / 1; }
.branch-grid--three .branch-more { grid-area: 4 / 1; }
.branch-grid--three .branch-more > span { max-width: 175px; }

.branch-title span,
.news-type {
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.branch-title h3 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: 37px;
  font-weight: 450;
  letter-spacing: -0.045em;
}

.branch-illustration {
  grid-area: 1 / 2 / 3;
  display: grid;
  place-items: center;
  align-self: stretch;
  padding-left: 24px;
  overflow: hidden;
}

.branch-card--blue .branch-illustration { border-left: 4px solid var(--blue); }
.branch-card--mint .branch-illustration { border-left: 4px solid var(--mint); }

.branch-illustration img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.branch-contact {
  display: grid;
  grid-column: 1;
  align-content: center;
  gap: 13px;
  padding: 20px 0;
  border-top: 1px solid rgba(36, 56, 101, 0.12);
  border-bottom: 1px solid rgba(36, 56, 101, 0.12);
}

.branch-contact p,
.branch-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: #4d596a;
  font-size: 12px;
  font-weight: 650;
}

.branch-contact p { font-size: 13px; }

.branch-contact p span,
.branch-contact a span {
  color: var(--navy);
  font-size: 16px;
}

.branch-more {
  display: flex;
  grid-column: 1 / 3;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 17px;
  border-top: 1px solid rgba(36, 56, 101, 0.16);
}

.branch-more > span {
  color: #7a8594;
  font-size: 11px;
}

.branch-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.section-more {
  margin-top: 34px;
}

.registration-callout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  gap: 50px;
  width: min(calc(100% - 48px), var(--content));
  margin: 100px auto 0;
  padding: 54px 58px;
  overflow: hidden;
  border-radius: 30px;
  background: #e2f1fb;
}

.registration-callout::after {
  content: "";
  position: absolute;
  top: -95px;
  right: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(127, 196, 232, 0.3);
}

.registration-callout h2 {
  font-size: 39px;
}

.registration-callout ol {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.registration-callout li {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 13px;
}

.registration-callout li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.registration-callout li p {
  display: grid;
  margin: 0;
}

.registration-callout li strong {
  color: var(--navy);
  font-size: 13px;
}

.registration-callout li small {
  margin-top: 3px;
  color: #6d7887;
  font-size: 11px;
}

.registration-callout .button {
  grid-column: 2;
  justify-self: start;
}

.team {
  display: grid;
  grid-template-columns: 390px 1fr;
  align-items: start;
  gap: 90px;
}

.team-intro > p {
  margin: 24px 0;
}

.people-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.person {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 150px;
  padding: 28px 20px;
  border-bottom: 1px solid var(--line);
}

.person:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.person > span {
  display: grid;
  flex: none;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  color: var(--navy);
  background: #f1f5f7;
  font-size: 13px;
  font-weight: 800;
}

.person h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 15px;
}

.person p {
  margin: 0;
  color: #84909e;
  font-size: 11px;
}

.audiences {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc(50vw - 590px));
  padding-left: max(24px, calc(50vw - 590px));
  background: var(--cream);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.audience-card {
  position: relative;
  min-height: 350px;
  padding: 36px;
  border: 1px solid #eaedef;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(36, 56, 101, 0.04);
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 0;
  width: 3px;
  height: 50px;
  border-radius: 0 4px 4px 0;
  background: var(--coral);
}

.audience-mark {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 21px;
  color: var(--navy);
  background: #f1f5f7;
  font-size: 18px;
  font-weight: 800;
}

.audience-card h3 {
  margin: 36px 0 12px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 450;
  letter-spacing: -0.025em;
}

.audience-card p {
  min-height: 75px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.news {
  padding-bottom: 105px;
}

.news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  min-height: 408px;
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #f7f9fc;
}

.news-feature__media {
  min-height: 408px;
  margin: 0;
  overflow: hidden;
  background: #e8f3fb;
}

.news-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
}

.news-feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px clamp(28px, 4vw, 58px);
}

.news-feature__date {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.news-feature__copy h2 {
  max-width: 700px;
  margin: 24px 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.news-feature__copy > p:not(.news-type):not(.news-feature__date) {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.news-feature__copy > a { margin-top: 4px; }
.news-feature__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  margin-top: 4px;
}
.news-feature__actions .text-link { margin: 0; }
.news-feature__download {
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 4px;
}

.news-article-poster { margin: 48px 0 0; }
.news-article-poster img { display: block; width: 100%; height: auto; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.news-article-poster figcaption { margin-top: 12px; color: var(--muted); font-size: 13px; text-align: center; }

@media (max-width: 900px) {
  .news-feature { grid-template-columns: 1fr; }
  .news-feature__media { min-height: 360px; max-height: 500px; }
  .news-feature__copy { padding: 38px 28px 44px; }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.news-grid article {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px 30px 0 0;
  border-bottom: 1px solid var(--line);
}

.news-grid article:not(:last-child) {
  margin-right: 28px;
  border-right: 1px solid var(--line);
}

.news-type {
  margin: 0;
}

.news-grid h2,
.news-grid h3 {
  margin: 25px 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.news-grid a {
  margin-top: auto;
  margin-bottom: 27px;
}

.news-grid__status {
  margin: auto 0 27px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.branch-detail-page .service-info {
  display: none;
}

.service-info {
  width: 100%;
  padding: 72px max(24px, calc(50vw - 590px));
  background: #f7f8fa;
}

.service-info > header {
  max-width: 720px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.service-grid article {
  min-height: 220px;
  padding: 24px 30px 8px 0;
  border-bottom: 1px solid var(--line);
}

.service-grid article:not(:last-child) {
  margin-right: 28px;
  border-right: 1px solid var(--line);
}

.service-grid article > span {
  display: none;
}

.service-grid h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.service-grid p,
.service-grid a {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.service-grid a {
  display: block;
  margin: 0 0 11px;
  color: var(--navy);
  font-weight: 700;
}

.site-footer {
  color: #fff;
  background: #344766;
}

.footer-bar {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  align-items: center;
  gap: 24px;
  width: min(100%, 1240px);
  min-height: 154px;
  margin: 0 auto;
  padding: 25px 30px;
}

.footer-identities {
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 60px;
  background: transparent;
}

.footer-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-wordmark {
  margin: 0;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.footer-wordmark span {
  display: block;
  white-space: nowrap;
}

.footer-wordmark__place {
  margin-top: 2px;
  font-weight: 600;
  letter-spacing: .14em;
}

.footer-county {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-county span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.footer-county img {
  width: 29px;
  height: 34px;
  object-fit: contain;
}

.footer-place {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
  padding-left: 20px;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
}

.footer-place--blue { border-color: var(--blue); }
.footer-place--mint { border-color: var(--mint); }

.footer-place span,
.footer-links > p {
  color: #b7c2d2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-place strong {
  margin: 3px 0 6px;
  color: #fff;
  font-size: 14px;
}

.footer-place p {
  margin: 0;
  color: #cbd4e0;
  font-size: 10.5px;
  line-height: 1.5;
}

.footer-place a {
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 28px max(30px, calc(50vw - 590px));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links > p {
  margin: 3px 0 0;
}

.footer-links > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 24px;
}

.footer-links a {
  color: #d9e0e9;
  font-size: 10.5px;
  line-height: 1.5;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 42px;
  padding: 10px max(30px, calc(50vw - 590px));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #b7c2d2;
  font-size: 10px;
}

.footer-bottom > span {
  margin-right: auto;
}

.footer-registration-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--coral);
  font-size: 10.5px;
  font-weight: 800;
}

.footer-registration-link:hover { background: #d85d4d; }

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  padding: 78px max(24px, calc(50vw - 590px)) 64px;
  overflow: hidden;
  background: var(--cream);
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -150px;
  right: -90px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(127, 196, 232, 0.3);
}

.page-hero--compact {
  min-height: 310px;
}

.page-hero .kicker,
.blank-page .kicker {
  margin: 0 0 20px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 6vw, 78px);
}

.page-hero > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.registration.registration--page,
.offices.offices--page,
.content-section,
.staff-page {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 84px 24px;
}

.registration--page .section-heading {
  margin-bottom: 46px;
}

.registration-form {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 58px;
  padding: 48px;
  border-radius: 28px;
  background: var(--blue-soft);
}

.form-intro h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 26px;
  font-weight: 500;
}

.form-intro p,
.jurisdiction-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}

.field {
  display: grid;
  gap: 9px;
  min-width: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.field--full,
.jurisdiction-note,
.consent,
.form-finish {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cbd9e2;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.radio-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid #d3e1e8;
  border-bottom: 1px solid #d3e1e8;
}

.radio-field legend {
  width: 100%;
  padding: 0 0 10px;
}

.radio-field label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
}

.radio-field input,
.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--navy);
}

.form-finish {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-finish button {
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  font-weight: 800;
  cursor: pointer;
}

.form-status {
  margin: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.offices--page {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 60px;
}

.offices--page.offices--therapeutic {
  display: block;
  padding-top: 24px;
}

.offices-side {
  display: grid;
  align-content: start;
  gap: 36px;
}

.offices-side h2,
.section-heading--compact h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 38px;
  font-weight: 450;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.offices-side > div > p:last-child {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.county-map {
  margin: 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--blue-soft);
}

.county-map img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.county-map figcaption {
  margin-top: 14px;
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.county-map--wide {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  align-items: center;
  gap: 40px;
  margin: 44px 0 0;
  padding: 28px 42px;
}

.county-map--wide img {
  height: 240px;
}

.county-map--wide figcaption {
  max-width: 360px;
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-align: left;
}

.location-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.office-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.office {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 0 28px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.office img {
  width: calc(100% + 108px);
  max-width: none;
  height: 250px;
  margin: -15px -54px 20px;
  object-fit: cover;
  transform-origin: center bottom;
  transition: transform 260ms ease;
}

.office:hover img {
  transform: scale(1.055);
}

.office p {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.office h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.office--empty img {
  object-fit: contain;
  background: var(--blue-soft);
}

.location-group .office:nth-child(2) img {
  background: var(--mint-soft);
}

.blank-page {
  position: relative;
  min-height: 480px;
  padding: 130px max(24px, calc(50vw - 590px));
  overflow: hidden;
  background: var(--cream);
}

.blank-page::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(130, 185, 145, 0.23);
}

.blank-page h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(58px, 8vw, 102px);
  font-weight: 450;
  letter-spacing: -0.06em;
}

.parent-resources {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 82px 24px 96px;
}

.parent-resources__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: 50px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.parent-resources__header .section-label {
  grid-column: 1 / -1;
  margin-bottom: -28px;
}

.parent-resources__header h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 450;
  line-height: .95;
  letter-spacing: -.06em;
}

.parent-resources__header > p:last-child {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.document-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.resource-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 24px;
  margin-top: 52px;
}

.parent-articles { margin-top: 78px; }
.parent-documents {
  margin-top: 94px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.parent-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.parent-section-heading .section-label { margin: 0 0 9px; }
.parent-section-heading h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 450;
  line-height: 1;
  letter-spacing: -.05em;
}

.news-grid--parents {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  border-top: 0;
}

.news-grid--parents article,
.news-grid.news-grid--parents article:not(:last-child) {
  position: relative;
  min-height: 300px;
  margin-right: 0;
  padding: 32px 30px 28px;
  overflow: hidden;
  border: 1px solid #c8e2ef;
  border-radius: 22px;
  background: #eef8fd;
  box-shadow: 0 8px 24px rgba(36, 56, 101, .055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-grid--parents article:nth-child(3n + 2),
.news-grid--parents article:nth-child(3n + 2):not(:last-child) {
  border-color: #bfdac7;
  background: #f0f9f3;
}

.news-grid--parents article:nth-child(3n),
.news-grid--parents article:nth-child(3n):not(:last-child) {
  border-color: #efc2b8;
  background: #fff3ef;
}

.news-grid--parents article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--blue);
}

.news-grid--parents article:nth-child(3n + 2)::before { background: var(--mint); }
.news-grid--parents article:nth-child(3n)::before { background: var(--coral); }

.news-grid--parents article:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 56, 101, .3);
  box-shadow: 0 16px 34px rgba(36, 56, 101, .11);
}

.news-grid--parents .news-type {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(36, 56, 101, .14);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, .72);
}

.news-grid--parents h3 { max-width: 430px; margin: 22px 0 16px; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.2; }
.news-grid--parents .parent-article-excerpt {
  max-width: 470px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.news-grid--parents a { margin-bottom: 0; font-size: 13px; }

body.high-contrast .news-grid--parents article {
  border: 2px solid #000;
  background: #fff;
  box-shadow: none;
}

@media (max-width: 1050px) {
  .news-grid--parents { grid-template-columns: 1fr 1fr; }
}

.resource-category {
  min-width: 0;
}

.resource-category--wide {
  grid-column: 1 / -1;
}

.resource-category h2,
.resource-category h3 {
  margin: 0;
  padding-left: 15px;
  border-left: 3px solid var(--coral);
  color: var(--navy-dark);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.025em;
}

.resource-category .document-downloads {
  grid-template-columns: 1fr;
  margin-top: 20px;
}

.resource-category--wide .document-downloads {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-category--standards {
  padding: 30px;
  border-radius: 24px;
  background: var(--cream);
}

.document-download {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 18px;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: border-color 170ms ease, background-color 170ms ease, transform 170ms ease;
}

.document-download:hover {
  border-color: rgba(36, 56, 101, .26);
  background: var(--blue-soft);
  transform: translateY(-3px);
}

.document-download__mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 68px;
  border-left: 3px solid var(--coral);
  color: var(--navy);
  background: var(--cream);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.document-download__copy {
  display: grid;
  gap: 8px;
}

.document-download__copy strong {
  color: var(--navy-dark);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
}

.document-download__copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.document-download__arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 56, 101, .2);
  border-radius: 50%;
  color: var(--navy);
  font-size: 18px;
  transition: color 170ms ease, background-color 170ms ease;
}

.document-download:hover .document-download__arrow {
  color: #fff;
  background: var(--navy);
}

@media (max-width: 760px) {
  .parent-resources { padding: 74px 18px 82px; }
  .parent-resources__header { grid-template-columns: 1fr; gap: 20px; padding-bottom: 34px; }
  .parent-resources__header .section-label { grid-column: 1; margin-bottom: 0; }
  .parent-resources__header h1 { font-size: clamp(52px, 17vw, 74px); }
  .document-downloads { grid-template-columns: 1fr; margin-top: 34px; }
  .resource-categories { grid-template-columns: 1fr; gap: 38px; margin-top: 40px; }
  .resource-category--wide { grid-column: 1; }
  .resource-category .document-downloads,
  .resource-category--wide .document-downloads { grid-template-columns: 1fr; margin-top: 18px; }
  .resource-category--standards { padding: 22px 18px; }
  .document-download { grid-template-columns: 52px minmax(0, 1fr) 38px; gap: 14px; min-height: 116px; padding: 18px; }
  .document-download__mark { width: 52px; height: 62px; }
  .document-download__arrow { width: 38px; height: 38px; }
  .parent-articles { margin-top: 58px; }
  .parent-documents { margin-top: 68px; padding-top: 50px; }
  .parent-section-heading { display: block; }
  .parent-section-heading .section-label { margin-bottom: 15px; }
  .news-grid--parents { grid-template-columns: 1fr; margin-top: 34px; }
  .news-grid--parents article { min-height: 255px; padding: 28px 0 0; }
  .news-grid--parents article:not(:last-child) { margin-right: 0; border-right: 0; }
  .news-grid--parents h3 { font-size: 27px; }
}

.document-download--article {
  border-color: rgba(36, 56, 101, .2);
  background: #fbfdff;
}

.document-download--article .document-download__mark {
  border-left-color: var(--navy);
  background: var(--blue-soft);
}

.reading-article {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 58px 24px 120px;
}

.article-dialog {
  width: min(calc(100% - 44px), 1180px);
  max-width: none;
  max-height: calc(100dvh - 44px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(13, 29, 56, .28);
}
.article-dialog::backdrop { background: rgba(14, 27, 49, .68); backdrop-filter: blur(3px); }
.article-dialog__toolbar { position: absolute; z-index: 4; top: 18px; right: 18px; display: flex; align-items: center; gap: 12px; }
.article-dialog__toolbar .language-switch { padding: 7px 9px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.95); }
.article-dialog__toolbar .language-switch[hidden] { display: none; }
.article-dialog__toolbar .article-dialog__close {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0 0 4px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--navy-dark);
  box-shadow: 0 8px 24px rgba(13, 29, 56, .2);
  font: inherit;
  font-size: 29px;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.article-dialog__toolbar .article-dialog__close:hover { color: #fff; background: var(--coral); transform: rotate(4deg); }
.article-dialog__content { max-height: calc(100dvh - 44px); overflow-y: auto; overscroll-behavior: contain; }
.reading-article--dialog { width: 100%; padding: 76px 64px 80px; }
.reading-article--dialog .article-hero { padding-right: 52px; }
.reading-article--dialog .article-download-panel { margin-bottom: 0; }
body.high-contrast .article-dialog { border: 3px solid #000; }
body.high-contrast .article-dialog__toolbar .article-dialog__close { color: #ff0; background: #000; }

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 62px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
}

.article-back::before {
  content: "←";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 160ms ease, background-color 160ms ease;
}

.article-back:hover::before { color: #fff; background: var(--navy); }

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 300px);
  align-items: end;
  gap: 70px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.article-hero__copy { max-width: 820px; }
.article-hero .section-label { margin-bottom: 24px; }
.article-hero h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(48px, 6.2vw, 82px);
  font-weight: 450;
  line-height: .99;
  letter-spacing: -.055em;
}

.article-hero__lead {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.article-hero__aside {
  padding: 26px 0 5px 24px;
  border-left: 4px solid var(--coral);
}

.article-hero__aside strong,
.article-hero__aside span { display: block; }
.article-hero__aside strong { color: var(--navy-dark); font-size: 17px; line-height: 1.4; }
.article-hero__aside span { margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.55; }

.article-body {
  width: min(100%, 860px);
  margin: 0 auto;
  padding-top: 72px;
  color: #39465a;
  font-size: 17px;
  line-height: 1.8;
}

.article-body > *:first-child { margin-top: 0; }
.article-body h2 {
  margin: 72px 0 22px;
  color: var(--navy-dark);
  font-size: clamp(30px, 3.5vw, 43px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.article-body h3 { margin: 34px 0 12px; color: var(--navy-dark); font-size: 21px; line-height: 1.35; }
.article-body p { margin: 0 0 22px; }
.article-body ul,
.article-body ol { margin: 0 0 28px; padding-left: 25px; }
.article-body li { padding-left: 6px; }
.article-body li + li { margin-top: 10px; }

.article-callout {
  margin: 42px 0;
  padding: 30px 34px;
  border-left: 5px solid var(--coral);
  border-radius: 0 20px 20px 0;
  color: var(--navy-dark);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.65;
}
.article-callout strong { display: block; margin-bottom: 7px; }
.article-callout p:last-child { margin-bottom: 0; }

.article-steps,
.article-standards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 40px;
  padding: 0;
  list-style: none;
}

.article-steps li,
.article-standards li {
  min-height: 150px;
  margin: 0;
  padding: 25px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.article-steps strong,
.article-standards strong { display: block; margin-bottom: 8px; color: var(--navy-dark); font-size: 17px; line-height: 1.35; }
.article-steps span,
.article-standards span { color: var(--muted); font-size: 14px; line-height: 1.6; }

.article-help {
  margin: 42px 0;
  padding: 34px;
  border-radius: 22px;
  color: #fff;
  background: var(--navy);
}
.article-help h2 { margin: 0 0 16px; color: #fff; font-size: 30px; }
.article-help p { color: rgba(255,255,255,.78); }
.article-help a { color: #fff; font-weight: 750; text-decoration: underline; text-underline-offset: 4px; }

.article-download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  width: min(100%, 980px);
  margin: 86px auto 0;
  padding: 38px 42px;
  border-radius: 24px;
  color: #fff;
  background: var(--navy-dark);
}
.article-download-panel p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.article-download-panel h2 { margin: 8px 0 0; color: #fff; font-size: 25px; font-weight: 550; line-height: 1.25; }
.article-download-panel .button { border-color: #fff; color: var(--navy-dark); background: #fff; white-space: nowrap; }
.article-download-panel .button:hover { color: #fff; background: var(--coral); }
.article-download-actions { display: flex; flex-wrap: wrap; align-items: stretch; justify-content: flex-end; gap: 12px; }
.article-download-panel .button--outline-light { color: #fff; background: transparent; }
.article-download-panel .button--outline-light:hover { border-color: var(--coral); color: #fff; background: var(--coral); }
.school-resources-page .article-download-panel .button--outline-light { border-color: var(--coral); color: #fff; background: var(--coral); }
.school-resources-page .article-download-panel .button--outline-light:hover { border-color: #d75d4d; background: #d75d4d; }

body.high-contrast .article-callout,
body.high-contrast .article-steps li,
body.high-contrast .article-standards li { border: 2px solid #000; background: #fff; }
body.high-contrast .article-download-panel,
body.high-contrast .article-help { color: #ff0; background: #000; }

@media (max-width: 760px) {
  .reading-article { padding: 38px 18px 82px; }
  .article-back { margin-bottom: 44px; }
  .article-hero { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .article-hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .article-hero__lead { margin-top: 22px; font-size: 17px; }
  .article-hero__aside { padding: 18px 0 2px 18px; }
  .article-body { padding-top: 48px; font-size: 16px; line-height: 1.75; }
  .article-body h2 { margin-top: 54px; }
  .article-callout { margin: 32px 0; padding: 24px 22px; }
  .article-steps,
  .article-standards { grid-template-columns: 1fr; }
  .article-steps li,
  .article-standards li { min-height: 0; padding: 22px; }
  .article-help { padding: 27px 23px; }
  .article-download-panel { grid-template-columns: 1fr; margin-top: 58px; padding: 30px 24px; }
  .article-download-panel .button { justify-content: space-between; width: 100%; }
  .article-download-actions { flex-direction: column; }
  .article-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 20px; }
  .article-dialog__content { max-height: calc(100dvh - 16px); }
  .article-dialog__toolbar { top: 11px; right: 11px; }
  .article-dialog__toolbar .article-dialog__close { width: 42px; height: 42px; }
  .reading-article--dialog { padding: 66px 18px 50px; }
  .reading-article--dialog .article-hero { padding-right: 34px; }
}

.staff-page {
  padding-top: 72px;
}

.staff-intro {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.staff-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.staff-group {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.staff-group h3 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.staff-names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.staff-names p {
  min-height: 66px;
  margin: 0;
  padding: 22px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.staff-names p:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.staff-management {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.45fr);
  gap: 22px;
}

.staff-column {
  padding: 28px;
  border-radius: 22px;
  background: var(--blue-soft);
}

.staff-column + .staff-column {
  background: var(--mint-soft);
}

.staff-column h4 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 750;
}

.staff-names--single {
  grid-template-columns: 1fr;
}

.staff-names--single p,
.staff-names--single p:nth-child(odd) {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-right: 0;
}

.staff-names--single p strong {
  color: var(--ink);
  font-weight: 700;
}

.staff-names--single p span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 550;
  text-align: right;
}

.branch-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: center;
  gap: 80px;
  min-height: 430px;
  padding: 86px max(24px, calc(50vw - 590px));
}

.branch-page-hero--blue { background: var(--blue-soft); }
.branch-page-hero--mint { background: var(--mint-soft); }

.branch-page-hero .kicker {
  margin: 0 0 20px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.branch-page-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(56px, 7vw, 92px);
  font-weight: 450;
  letter-spacing: -.06em;
  line-height: .98;
}

.branch-municipality {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 0;
}

.branch-municipality img {
  width: auto;
  height: 104px;
  object-fit: contain;
}

.branch-municipality p {
  margin: 0;
  color: var(--navy);
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.branch-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  width: min(calc(100% - 48px), var(--content));
  margin: 70px auto;
}

.branch-address,
.secretariat-hours {
  padding: 42px;
  border-radius: 26px;
  background: var(--blue-soft);
}

.secretariat-hours { background: var(--mint-soft); }

.branch-overview--blue .branch-address {
  border: 1px solid #acd8eb;
  background: #fff;
}

.branch-overview--blue .secretariat-hours {
  border: 1px solid #acd8eb;
  background: var(--blue-soft);
}

.branch-overview--mint .branch-address {
  border: 1px solid #afd3ba;
  background: #fff;
}

.branch-overview--mint .secretariat-hours {
  border: 1px solid #afd3ba;
  background: var(--mint-soft);
}

.branch-overview h2 {
  margin: 12px 0 28px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -.04em;
}

.branch-address address {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.branch-address address strong {
  margin-bottom: 6px;
  color: var(--ink);
}

.branch-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(36, 56, 101, .15);
}

.branch-contact-links a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 4px;
}

.secretariat-hours dl { margin: 0; }

.secretariat-hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(36, 56, 101, .12);
}

.secretariat-hours dt,
.secretariat-hours dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.secretariat-hours dd {
  color: var(--navy);
  font-weight: 750;
}

.branch-staff {
  width: min(calc(100% - 48px), var(--content));
  margin: 0 auto;
  padding: 12px 0 90px;
}

.branch-staff > header {
  margin-bottom: 36px;
}

.branch-staff > header h2 {
  margin: 10px 0 0;
  color: var(--navy-dark);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -.05em;
}

.branch-lead {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 30px;
  margin-bottom: 18px;
  padding: 28px 32px;
  border-left: 5px solid var(--coral);
  background: var(--cream);
}

.branch-lead p,
.branch-lead span {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.branch-lead h3 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 650;
}

.branch-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.branch-person {
  min-height: 112px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.branch-person h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.branch-person p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.branch-detail-page--mint .branch-person,
.branch-detail-page--mint .branch-lead {
  transition: background-color 180ms ease;
}

.branch-detail-page--mint .branch-person:hover,
.branch-detail-page--mint .branch-person:focus-visible,
.branch-detail-page--mint .branch-lead:hover,
.branch-detail-page--mint .branch-lead:focus-visible {
  background: var(--mint-soft);
}

.has-biography {
  cursor: pointer;
}

.has-biography:hover,
.has-biography:focus-visible {
  color: var(--navy);
  background: var(--blue-soft);
  outline: 2px solid transparent;
}

.bio-dialog {
  width: min(calc(100% - 32px), 560px);
  max-height: min(86vh, 760px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(27, 42, 76, .25);
  overflow: auto;
}

.bio-dialog::backdrop { background: rgba(27, 42, 76, .58); }

.bio-dialog__inner { padding: 38px; }

.bio-dialog__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue-soft);
  cursor: pointer;
}

.bio-dialog h2 {
  margin: 4px 45px 12px 0;
  color: var(--navy);
  font-size: 26px;
}

.bio-dialog__text {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-line;
}

.bio-dialog__label {
  margin: 0;
  color: var(--coral);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.bio-dialog__email-caption {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bio-dialog__email {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--blue-soft);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.bio-dialog__email:hover,
.bio-dialog__email:focus-visible {
  color: #fff;
  background: var(--navy);
}

.bio-dialog [hidden] {
  display: none;
}

.staff-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.staff-contact article {
  padding: 36px;
  border-radius: 24px;
  background: var(--blue-soft);
}

.staff-contact .staff-contact__branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
}

.staff-contact__branch {
  padding: 36px;
  border: 1px solid;
  border-radius: 0;
}

.staff-contact__branch--blue {
  border-color: #acd8eb;
  background: var(--blue-soft);
}

.staff-contact__branch--mint {
  border-left: 0;
  border-color: #afd3ba;
  background: var(--mint-soft);
}

.staff-contact .staff-contact__branch-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, .42);
  font-size: 12px;
  font-weight: 750;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.staff-contact__branch-link span {
  transition: transform 180ms ease;
}

.staff-contact .staff-contact__branch-link:hover {
  border-color: var(--navy);
  background: #fff;
}

.staff-contact__branch-link:hover span {
  transform: translateX(4px);
}

.staff-contact .staff-contact__headquarters {
  border: 1px solid var(--navy);
  background: #fff;
}

.staff-contact h2,
.staff-contact h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 500;
}

.staff-contact p,
.staff-contact a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.staff-contact .staff-contact__action-link {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.staff-contact .staff-contact__action-link:hover,
.staff-contact .staff-contact__action-link:focus-visible {
  color: var(--navy);
  text-decoration-color: currentColor;
}

.content-section {
  min-height: 460px;
}

.legal-page {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.legal-intro {
  margin: 0 0 58px;
  padding: 32px 36px;
  border-left: 4px solid var(--blue);
  color: var(--muted);
  background: var(--blue-soft);
  font-size: 15px;
  line-height: 1.8;
}

.legal-section {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 21px;
}

.legal-section a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 4px;
}

@media (max-width: 1120px) {
  .header-inner { gap: 18px; }
  .brand { font-size: 11px; }
  .main-nav { gap: 15px; font-size: 12px; }
  .contrast-toggle { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) 190px; }
  .team { grid-template-columns: 330px 1fr; gap: 55px; }
  .branch-card { grid-template-columns: 1fr 190px; padding: 32px; }
  .branch-grid--three { grid-template-columns: 1fr 1fr; }
  .branch-grid--three .branch-card { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 78px; }

  .header-inner {
    position: relative;
    height: 78px;
    padding: 0 18px;
  }

  .brand {
    gap: 9px;
    margin-right: auto;
  }

  .brand .brand-pzp-mark { width: 29px; height: 38px; }
  .brand .brand-county-mark { width: 34px; height: 42px; }
  .brand .brand-wordmark { width: 138px; }
  .menu-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 18px 40px rgba(36, 56, 101, 0.12);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.button)::after { display: none; }

  .header-access {
    justify-content: flex-start;
    padding: 14px 4px;
  }

  .contrast-toggle { display: inline-block; }
  .button--small { justify-self: start; margin-top: 12px; }

  .hero {
    display: block;
    min-height: auto;
    padding: 80px 22px 70px;
  }

  .hero h1 { font-size: clamp(51px, 11vw, 72px); }
  .hero-lead { font-size: 16px; }
  .hero-note { display: none; }
  .hero-orb--blue { width: 330px; height: 330px; }
  .hero-orb--mint { right: -80px; }

  .section { padding: 68px 20px; }
  .section-heading--horizontal { display: block; }
  .section-heading--horizontal > p { margin-top: 22px; }

  .help-grid { grid-template-columns: 1fr 1fr; }
  .help-list { grid-column: 1 / 3; flex-direction: row; padding-left: 0; }

  .branch-grid { grid-template-columns: 1fr; }

  .registration-callout {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 70px;
    padding: 43px 38px;
  }

  .registration-callout .button { grid-column: auto; }
  .team { grid-template-columns: 1fr; gap: 50px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 280px; }
  .audience-card p { min-height: auto; }
  .news-grid { grid-template-columns: 1fr; }
  .news-grid article:not(:last-child) { margin-right: 0; border-right: 0; }

  .service-grid { grid-template-columns: 1fr; }
  .service-grid article:not(:last-child) { margin-right: 0; border-right: 0; }
  .service-grid article { min-height: 0; padding-bottom: 30px; }

  .footer-bar { grid-template-columns: 1fr 1fr; }
  .footer-identities { grid-column: 1 / -1; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-links > div { grid-template-columns: 1fr 1fr; }

  .registration-form { grid-template-columns: 1fr; gap: 35px; }
  .offices--page { grid-template-columns: 1fr; }
  .offices-side { grid-template-columns: 1fr 1fr; }
  .county-map--wide { grid-template-columns: 280px 1fr; }
  .office-list { grid-template-columns: 1fr 1fr; }

  .staff-intro { grid-template-columns: 1fr; gap: 24px; }
  .staff-group { grid-template-columns: 1fr; gap: 28px; }
  .staff-management { grid-template-columns: 1fr; }
  .branch-page-hero { grid-template-columns: 1fr 150px; gap: 36px; }
  .branch-overview { grid-template-columns: 1fr; }
  .branch-staff-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .brand { font-size: 9px; letter-spacing: .06em; }
  .brand .brand-pzp-mark { width: 24px; height: 32px; }
  .brand .brand-county-mark { width: 28px; height: 35px; }
  .brand .brand-wordmark { width: 118px; }
  .hero { padding-top: 68px; }
  .hero h1 { font-size: clamp(48px, 14vw, 62px); }
  .hero h1 br { display: none; }
  .hero h1 em { display: block; margin-top: 5px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .section-heading h2,
  .team h2,
  .news-heading h2,
  .service-info h2,
  .staff-intro h2 { font-size: 38px; }

  .help-grid { grid-template-columns: 1fr; }
  .help-list { grid-column: auto; flex-direction: column; }
  .help-card { min-height: 250px; }

  .branch-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 190px auto auto;
    min-height: 520px;
    padding: 30px;
  }

  .branch-illustration {
    grid-area: 2 / 1;
    padding: 15px 0 0;
    border-top: 4px solid;
    border-left: 0 !important;
  }

  .branch-grid--three .branch-illustration {
    padding: 0 0 0 24px;
    border-top: 0;
    border-left: 4px solid !important;
  }

  .branch-card--blue .branch-illustration { border-color: var(--blue); }
  .branch-card--mint .branch-illustration { border-color: var(--mint); }
  .branch-contact { grid-area: 3 / 1; }
  .branch-more { grid-area: 4 / 1; flex-direction: column; align-items: flex-start; }

  .registration-callout {
    width: calc(100% - 28px);
    margin-right: 14px;
    margin-left: 14px;
    padding: 43px 27px;
  }

  .registration-callout h2 { font-size: 37px; }
  .people-grid { grid-template-columns: 1fr; }
  .person:nth-child(odd) { border-right: 0; }
  .news-heading { align-items: flex-start; flex-direction: column; }

  .service-info { padding-top: 54px; padding-bottom: 54px; }
  .footer-bar { grid-template-columns: 1fr; gap: 18px; padding: 28px 22px; }
  .footer-identities { grid-column: auto; margin-bottom: 8px; }
  .footer-place { min-height: 58px; }
  .footer-links { padding: 24px 22px; }
  .footer-links > div { grid-template-columns: 1fr; }
  .footer-bottom { flex-wrap: wrap; gap: 12px 20px; padding: 15px 22px; }
  .footer-bottom > span { width: 100%; }

  .page-hero { min-height: 330px; padding-top: 66px; }
  .page-hero h1 { font-size: 50px; }
  .registration.registration--page,
  .offices.offices--page,
  .content-section,
  .staff-page { padding: 62px 18px; }

  .registration-form { padding: 28px 20px; border-radius: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full,
  .jurisdiction-note,
  .consent,
  .form-finish { grid-column: auto; }
  .form-finish { align-items: flex-start; flex-direction: column; }

  .offices-side { grid-template-columns: 1fr; }
  .location-group,
  .office-list { grid-template-columns: 1fr; }
  .county-map--wide { grid-template-columns: 1fr; padding: 24px; }
  .county-map--wide figcaption { text-align: center; }
  .office { min-height: 330px; }
  .staff-names { grid-template-columns: 1fr; }
  .staff-names p:nth-child(odd) { border-right: 0; }
  .staff-names--single p { align-items: flex-start; flex-direction: column; gap: 4px; }
  .staff-names--single p span { text-align: left; }
  .staff-contact { grid-template-columns: 1fr; }
  .staff-contact .staff-contact__branches { grid-template-columns: 1fr; }
  .staff-contact__branch--mint { border-top: 0; border-left: 1px solid #afd3ba; }
  .branch-page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 62px 20px 48px;
  }
  .branch-page-hero h1 { font-size: 50px; }
  .branch-municipality { justify-items: start; grid-template-columns: 62px 1fr; }
  .branch-municipality img { height: 72px; }
  .branch-municipality p { align-self: center; text-align: left; }
  .branch-overview { width: calc(100% - 28px); margin: 48px auto; }
  .branch-address,
  .secretariat-hours { padding: 30px 24px; }
  .branch-overview h2 { font-size: 29px; }
  .branch-staff { width: calc(100% - 36px); padding-bottom: 66px; }
  .branch-staff > header h2 { font-size: 40px; }
  .branch-lead { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .branch-staff-grid { grid-template-columns: 1fr; }
  .legal-page { padding: 58px 18px 74px; }
  .legal-intro { padding: 26px 24px; }
  .legal-section h2 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body.high-contrast {
  --navy: #000;
  --navy-dark: #000;
  --ink: #000;
  --muted: #111;
  --line: #000;
  --cream: #fff;
  --blue-soft: #fff;
  --mint-soft: #fff;
  --coral: #b90000;
}

body.high-contrast .site-header,
body.high-contrast .help-card,
body.high-contrast .branch-card,
body.high-contrast .audience-card,
body.high-contrast .registration-callout,
body.high-contrast .service-info,
body.high-contrast .registration-form,
body.high-contrast .county-map,
body.high-contrast .staff-contact article,
body.high-contrast .staff-column,
body.high-contrast .branch-address,
body.high-contrast .secretariat-hours,
body.high-contrast .branch-lead {
  border: 2px solid #000;
  background: #fff;
}

body.high-contrast .button,
body.high-contrast .form-finish button {
  color: #ff0;
  background: #000;
}

html { scroll-padding-top: 126px; }

.header-shell {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0 24px;
}

.identity-row {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 72px;
  border-bottom: 1px solid rgba(36, 56, 101, .1);
}

.identity-pzppp,
.identity-county {
  display: flex;
  align-items: center;
}

.identity-pzppp {
  gap: 12px;
  margin-right: auto;
  color: var(--navy-dark);
}

.identity-pzppp img {
  width: 28px;
  height: 36px;
  object-fit: contain;
}

.identity-pzppp span { display: grid; gap: 3px; }
.identity-pzppp strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1.15;
  text-transform: uppercase;
}
.identity-pzppp small {
  color: #667186;
  font-size: 10.5px;
  font-weight: 650;
}

.identity-county { gap: 10px; }
.identity-county__crest {
  width: 27px;
  height: 33px;
  object-fit: contain;
}
.identity-county__wordmark { width: 132px; height: auto; }

.navigation-row {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 52px;
}
.navigation-row .main-nav {
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}
.navigation-row .main-nav > a:not(.button) {
  flex: 1 1 0;
  text-align: center;
}
.navigation-row .main-nav > .button { flex: 0 0 auto; margin-left: 18px; }

.home-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, .65fr);
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
  padding: 48px max(24px, calc(50vw - 590px)) 58px;
  overflow: hidden;
  background: var(--cream);
}

.home-hero__content { min-width: 0; }
.home-hero h1 {
  position: relative;
  z-index: 2;
  max-width: none;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(48px, 4.45vw, 64px);
  font-weight: 750;
  line-height: .99;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.home-hero h1 em {
  color: var(--navy);
  font-size: .91em;
  font-style: normal;
  font-weight: 400;
}
.home-hero h1 em::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-left: 12px;
  border-radius: 50%;
  background: var(--coral);
  vertical-align: .16em;
}
.home-hero__lead {
  max-width: 690px;
  margin: 25px 0 0;
  color: #5e6878;
  font-size: 17px;
  line-height: 1.65;
}
.home-hero .hero-actions { margin-top: 28px; }

.home-hero__map {
  position: relative;
  z-index: 1;
  margin: 92px 0 0;
  text-align: center;
}
.home-hero__map-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: clamp(22px, 3vw, 42px);
  border-radius: 50%;
  background: var(--blue-soft);
}
.home-hero__map img {
  width: min(100%, 335px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(36, 56, 101, .12));
}
.home-hero__map figcaption {
  margin-top: 16px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-registration {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 17px 28px;
  max-width: 790px;
  margin-top: 34px;
  padding: 26px 28px;
  border: 1px solid rgba(36, 56, 101, .08);
  border-radius: 24px;
  background: #e0f2fb;
}
.hero-registration__title .section-label { margin-bottom: 10px; }
.hero-registration__title h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.03em;
}
.hero-registration ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-registration li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 11px;
  align-content: start;
}
.hero-registration li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(36, 56, 101, .24);
  border-radius: 50%;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.hero-registration li p { margin: 0; }
.hero-registration li strong,
.hero-registration li small { display: block; }
.hero-registration li strong { color: var(--navy); font-size: 13px; line-height: 1.35; }
.hero-registration li small { margin-top: 5px; color: #616d7f; font-size: 10.5px; line-height: 1.45; }
.hero-registration > .text-link {
  grid-column: 2;
  justify-self: start;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.home-branches { padding-top: 78px; padding-bottom: 84px; }
.home-branches .branch-grid--three .branch-card {
  min-height: 525px;
}
.home-branches .branch-card--coral {
  border: 1px solid var(--navy);
  background: #fff;
}

.home-navigation { padding-top: 84px; padding-bottom: 92px; }
.home-navigation__primary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.home-feature {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: 1fr auto;
  gap: 30px;
  min-height: 315px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(36, 56, 101, .07);
  border-radius: 28px;
  transition: transform 180ms ease, border-color 180ms ease;
}
.home-feature:hover { transform: translateY(-4px); border-color: rgba(36, 56, 101, .2); }
.home-feature--specialists { border: 1px solid rgba(36, 56, 101, .2); background: #fff; }
.home-feature--specialists:hover { border-color: rgba(36, 56, 101, .2); }
.home-feature--news { border-color: #e7aca1; background: #f9e5df; }
.home-feature__index {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(36, 56, 101, .18);
  border-radius: 50%;
  color: var(--navy);
  font-size: 25px;
  font-weight: 450;
}
.home-feature .section-label { margin-bottom: 17px; }
.home-feature h3 {
  margin: 0 0 14px;
  color: var(--navy-dark);
  font-size: 41px;
  font-weight: 450;
  letter-spacing: -.045em;
}
.home-feature p:not(.section-label) { max-width: 430px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.home-feature > strong { grid-column: 2; color: var(--navy); font-size: 12px; }

.home-navigation__secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}
.home-topic {
  display: flex;
  flex-direction: column;
  min-height: 225px;
  padding: 30px 34px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease;
}
.home-topic:nth-child(3),
.home-topic:last-child { border-right: 1px solid var(--line); }
.home-topic:hover { background: var(--cream); }
.home-topic__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(36, 56, 101, .2);
  border-radius: 50%;
  color: var(--navy);
}
.home-topic__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-topic__icon--letter { font-size: 14px; font-weight: 800; letter-spacing: .04em; }
.home-topic h3 { margin: 0 0 15px; color: var(--navy); font-size: 25px; font-weight: 500; letter-spacing: -.03em; }
.home-topic p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.home-topic strong { margin-top: auto; padding-top: 22px; color: var(--navy); font-size: 11px; }

.home-topic--wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 6px 24px;
  min-height: 142px;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 0;
}
.home-topic--wide .home-topic__icon { grid-row: 1 / 3; margin-bottom: 0; }
.home-topic--wide h3 { grid-column: 2; align-self: end; margin-bottom: 2px; }
.home-topic--wide p { grid-column: 2; align-self: start; }
.home-topic--wide strong { grid-column: 3; grid-row: 1 / 3; padding-top: 0; white-space: nowrap; }

.landing-overview { margin-top: 64px; }
.landing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.landing-card {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.landing-card--blue { border-color: #acd8eb; background: var(--blue-soft); }
.landing-card--coral { border-color: #efa99c; background: #ffe3da; }
.landing-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(36, 56, 101, .2);
  border-radius: 50%;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}
.landing-card h3 { margin: 38px 0 12px; color: var(--navy-dark); font-size: 28px; font-weight: 500; letter-spacing: -.035em; }
.landing-card p { max-width: 500px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.home-therapy {
  padding: 48px max(24px, calc(50vw - 590px)) 52px;
  background: #fff;
}
.home-therapy > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 48px;
  margin-bottom: 27px;
}
.home-therapy .section-label { margin-bottom: 13px; color: var(--coral); }
.home-therapy h2 { margin: 0; color: var(--navy-dark); font-size: clamp(32px, 3.5vw, 45px); font-weight: 450; line-height: 1.08; letter-spacing: -.05em; }
.home-therapy > header > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.therapy-location-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.therapy-location {
  display: grid;
  grid-template-rows: 54px auto;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  padding: 14px 10px 13px;
  border-left: 1px solid var(--line);
  color: var(--navy);
  text-align: center;
  transition: background 180ms ease;
}
.therapy-location:last-child { border-right: 1px solid var(--line); }
.therapy-location:hover { background: var(--blue-soft); }
.therapy-location img { width: 52px; height: 54px; object-fit: contain; }
.therapy-location span { font-size: 11px; font-weight: 750; line-height: 1.3; }

.home-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 28px 24px;
}
.home-values p {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 5px 20px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}
.home-values p + p { border-left: 1px solid var(--line); }
.home-values p span { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); }

.office-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  width: min(calc(100% - 48px), 1180px);
  margin: 52px auto 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--blue-soft);
}
.office-detail-copy { padding: 48px 52px; }
.office-detail-copy .kicker { margin-bottom: 22px; }
.office-detail-copy h1 { margin: 0; color: var(--navy-dark); font-size: clamp(44px, 5vw, 66px); font-weight: 450; line-height: 1; letter-spacing: -.055em; }
.office-detail-copy address { display: grid; gap: 8px; margin-top: 48px; color: #596679; font-size: 14px; font-style: normal; line-height: 1.55; }
.office-detail-copy address strong { margin-bottom: 3px; color: var(--coral); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; }
.office-detail-copy address a { color: var(--navy); font-weight: 750; }
.office-building { min-height: 480px; margin: 0; overflow: hidden; }
.office-building img { width: 100%; height: 100%; object-fit: cover; }

.office-notice {
  width: min(calc(100% - 48px), 1180px);
  margin: 34px auto 0;
  padding: 28px 32px;
  border: 1px solid rgba(233, 104, 86, .28);
  border-left: 5px solid var(--coral);
  border-radius: 0 20px 20px 0;
  color: #455268;
  background: var(--cream);
  font-size: 14px;
  line-height: 1.75;
}
.office-notice p { margin: 0; }
.office-notice p + p { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.office-notice strong { color: var(--navy-dark); }
.office-notice a { color: var(--navy); font-weight: 750; text-decoration: underline; text-decoration-color: var(--coral); text-underline-offset: 3px; overflow-wrap: anywhere; }

.office-current-schedule {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: 80px 0 92px;
}
.office-current-schedule > header { max-width: 700px; }
.office-current-schedule > [data-office-schedule] { min-width: 0; }
.office-current-schedule header h2 { margin: 0; color: var(--navy-dark); font-size: clamp(34px, 4vw, 50px); font-weight: 450; line-height: 1.08; letter-spacing: -.05em; }
.office-schedule-card {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}
.office-schedule-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  color: #fff;
  background: var(--navy);
}
.office-schedule-meta strong { font-size: 14px; font-weight: 750; }
.office-schedule-meta span { color: rgba(255, 255, 255, .72); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.office-schedule-scroll { width: 100%; max-width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; }
.office-schedule-scroll:focus-visible { outline-offset: -4px; }
.office-schedule-table {
  width: 100%;
  min-width: 1040px;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
  color: var(--ink);
}
.office-schedule-table th,
.office-schedule-table td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.office-schedule-table tr > :last-child { border-right: 0; }
.office-schedule-table tbody tr:last-child > * { border-bottom: 0; }
.office-schedule-table thead th {
  padding: 16px 14px;
  color: var(--navy);
  background: #f7f9fb;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}
.office-schedule-table thead th:first-child,
.office-schedule-table tbody th { width: 215px; }
.office-schedule-table tbody th {
  padding: 22px 18px;
  background: #fff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}
.office-schedule-table tbody td {
  height: 96px;
  padding: 9px;
  background: #fff;
}
.schedule-person {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.schedule-offer-hint {
  display: block;
  margin-top: 7px;
  padding: 5px 8px;
  border-radius: 7px;
  color: #fff;
  background: var(--navy-dark);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
  visibility: hidden;
}
.schedule-person-row.has-biography:hover .schedule-offer-hint,
.schedule-person-row.has-biography:focus-visible .schedule-offer-hint {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.schedule-person-row > th,
.schedule-person-row > td { transition: background-color 160ms ease; }
.schedule-person-row.has-biography:hover > th,
.schedule-person-row.has-biography:focus-visible > th { background: var(--blue-soft); }
.schedule-person-row.has-biography:hover > td,
.schedule-person-row.has-biography:focus-visible > td { background: #f8fbfd; }
.schedule-person-row.has-biography:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; }

@media (hover: none) {
  .schedule-offer-hint { display: none; }
}
.schedule-slot {
  padding: 10px 11px;
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  background: var(--blue-soft);
}
.schedule-slot--psychologiczna { border-color: #e49a2f; background: #ffefd5; }
.schedule-slot--pedagogiczna { border-color: #4fb66d; background: #e2f6e8; }
.schedule-slot--logopedyczna { border-color: var(--blue); background: var(--blue-soft); }
.schedule-slot--pedagogiczno-logopedyczna { border-color: #4fb66d; background: linear-gradient(135deg, #e2f6e8 0 50%, var(--blue-soft) 50% 100%); }
.schedule-slot + .schedule-slot { margin-top: 7px; }
.schedule-slot strong { display: block; color: var(--navy-dark); font-size: 12px; line-height: 1.2; }
.schedule-slot small { display: block; margin-top: 5px; color: #566477; font-size: 10.5px; font-weight: 650; line-height: 1.3; }

body.high-contrast .hero-registration,
body.high-contrast .home-feature,
body.high-contrast .home-topic,
body.high-contrast .office-detail-hero,
body.high-contrast .office-schedule-card { border: 2px solid #000; background: #fff; }
body.high-contrast .office-schedule-meta { color: #ff0; background: #000; }
body.high-contrast .schedule-slot { border-color: #000; background: #fff; }

@media (max-width: 1120px) {
  .identity-row { gap: 16px; }
  .identity-pzppp small { display: none; }
  .navigation-row .main-nav { gap: 5px; font-size: 12px; }
  .home-hero { grid-template-columns: minmax(0, 1.3fr) minmax(250px, .7fr); gap: 38px; }
  .hero-registration { grid-template-columns: 1fr; }
  .hero-registration > .text-link { grid-column: 1; }
  .therapy-location-list { overflow-x: auto; grid-template-columns: repeat(7, 132px); }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 111px; }
  .header-shell { padding: 0 18px; }
  .identity-row { min-height: 62px; }
  .identity-pzppp strong { font-size: 10px; }
  .identity-county__wordmark { width: 112px; }
  .navigation-row { min-height: 48px; justify-content: flex-end; }
  .navigation-row .menu-toggle { display: flex; }
  .navigation-row .main-nav { top: 100%; right: -18px; left: -18px; }
  .navigation-row .main-nav { width: auto; }
  .navigation-row .main-nav > a:not(.button) { flex: none; text-align: left; }
  .navigation-row .main-nav > .button { margin-left: 0; }
  .navigation-row .main-nav .header-access { display: none; }
  .home-hero { grid-template-columns: 1fr; padding-top: 50px; }
  .home-hero h1 { white-space: normal; }
  .home-hero__map { margin-top: 0; }
  .home-hero__map { width: min(100%, 410px); justify-self: center; }
  .home-hero__map-frame { aspect-ratio: auto; min-height: 340px; border-radius: 28px; }
  .home-navigation__primary { grid-template-columns: 1fr; }
  .home-navigation__secondary { grid-template-columns: 1fr; }
  .home-topic:nth-child(3) { border-right: 1px solid var(--line); }
  .home-topic, .home-topic:last-child { min-height: 190px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .home-therapy > header { grid-template-columns: 1fr; gap: 20px; }
  .home-values { grid-template-columns: 1fr 1fr; }
  .home-values p:nth-child(3) { border-left: 0; }
  .home-values p:nth-child(n+3) { margin-top: 16px; }
  .office-detail-hero { grid-template-columns: 1fr; }
  .office-building { min-height: 420px; }
  .office-current-schedule { gap: 32px; }
}

@media (max-width: 620px) {
  .identity-row { gap: 10px; }
  .identity-pzppp { gap: 8px; }
  .identity-pzppp span { display: none; }
  .identity-pzppp img { width: 24px; height: 31px; }
  .identity-county { gap: 7px; }
  .identity-county__crest { width: 24px; height: 29px; }
  .identity-county__wordmark { width: 102px; }
  .header-access { gap: 2px; }
  .contrast-toggle { font-size: 9.5px; }
  .home-hero { gap: 42px; padding: 38px 18px 50px; }
  .home-hero h1 { font-size: clamp(46px, 14vw, 60px); }
  .home-hero h1 br { display: none; }
  .home-hero h1 em { display: block; margin-top: 4px; }
  .home-hero__lead { font-size: 15px; }
  .home-hero .hero-actions { align-items: stretch; }
  .home-hero .hero-actions .button { justify-content: space-between; width: 100%; }
  .hero-registration { margin-top: 28px; padding: 24px 20px; border-radius: 20px; }
  .hero-registration ol { grid-template-columns: 1fr; gap: 14px; }
  .home-hero__map { width: 100%; }
  .home-hero__map-frame { min-height: 300px; padding: 35px; }
  .home-branches { padding-top: 60px; }
  .home-navigation { padding: 62px 18px 68px; }
  .home-feature { grid-template-columns: 50px 1fr; min-height: 300px; padding: 28px 24px; gap: 20px; }
  .home-feature__index { width: 48px; height: 48px; font-size: 20px; }
  .home-feature h3 { font-size: 35px; }
  .home-navigation__secondary { margin-top: 34px; }
  .home-topic { min-height: 205px; padding: 26px 24px; }
  .home-topic--wide { display: flex; min-height: 205px; }
  .home-topic--wide h3 { align-self: center; width: 100%; text-align: center; }
  .landing-grid { grid-template-columns: 1fr; }
  .landing-card { min-height: 230px; padding: 28px 24px; }
  .home-therapy { padding: 42px 18px 48px; }
  .therapy-location-list { margin-right: -18px; }
  .home-values { grid-template-columns: 1fr; padding: 26px 18px; }
  .home-values p { justify-content: flex-start; padding: 12px 7px; }
  .home-values p + p { border-top: 1px solid var(--line); border-left: 0; }
  .home-values p:nth-child(n+3) { margin-top: 0; }
  .office-detail-hero { width: calc(100% - 28px); margin-top: 36px; border-radius: 23px; }
  .office-detail-copy { padding: 38px 26px; }
  .office-detail-copy address { margin-top: 32px; }
  .office-building { min-height: 300px; }
  .office-notice { width: calc(100% - 28px); padding: 24px 22px; border-radius: 0 18px 18px 0; }
  .office-current-schedule { width: calc(100% - 36px); padding: 60px 0 70px; }
  .office-schedule-card { border-radius: 20px; }
  .office-schedule-meta { align-items: flex-start; flex-direction: column; gap: 5px; padding: 17px 18px; }
  .office-schedule-table { min-width: 960px; }
  .office-schedule-table thead th:first-child,
  .office-schedule-table tbody th { width: 190px; }
}

.identity-pzppp small,
.contrast-toggle { font-size: 11.5px; }

.section-label,
.kicker,
.news-type,
.office p,
.home-hero__map figcaption,
.home-topic strong,
.therapy-location span,
.office-detail-copy address strong,
.office-schedule-meta span,
.office-schedule-table thead th,
.bio-dialog__label,
.bio-dialog__email-caption { font-size: 12px; }

.hero-registration li small,
.schedule-slot small,
.footer-wordmark,
.footer-county,
.footer-place p,
.footer-links a,
.footer-registration-link { font-size: 11.5px; }

.home-topic p { font-size: 13px; }
.schedule-offer-hint { font-size: 10.5px; }
.staff-names--single p span,
.branch-person p { font-size: 12px; }

.footer-place span,
.footer-links > p,
.footer-bottom { font-size: 11px; }

@media (max-width: 900px) {
  .identity-pzppp strong { font-size: 11px; }
}

@media (max-width: 620px) {
  .contrast-toggle { font-size: 10.5px; }
}

.news-page .page-hero {
  min-height: 300px;
  padding: 60px max(24px, calc(50vw - 530px)) 50px;
}

.news--archive {
  width: min(100%, 1060px);
  padding-top: 64px;
}

.news--archive .news-feature {
  grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
  min-height: 330px;
  margin-top: 28px;
  border-color: rgba(233, 104, 86, .3);
  border-radius: 24px;
  background: #fff;
}

.news--archive .news-feature__media {
  position: relative;
  min-height: 330px;
  max-height: 390px;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--coral);
  background: #fbfaf7;
  cursor: zoom-in;
}

.news--archive .news-feature__media img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transition: transform 180ms ease;
}

.news--archive .news-feature__media:hover img,
.news--archive .news-feature__media:focus-visible img { transform: scale(1.018); }

.news-feature__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(233, 104, 86, .35);
  border-radius: 999px;
  color: var(--coral);
  background: rgba(255, 255, 255, .94);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.news--archive .news-feature__copy { padding: 30px clamp(26px, 3.4vw, 44px); }
.news--archive .news-feature__copy h2 { margin: 18px 0 14px; font-size: clamp(28px, 3.3vw, 41px); }
.news--archive .news-feature__copy > p:not(.news-type):not(.news-feature__date) { margin-bottom: 22px; font-size: 14px; line-height: 1.68; }
.news--archive .news-type {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(233, 104, 86, .42);
  border-radius: 999px;
  color: var(--coral);
  background: #fff;
}

.news--archive .news-feature__download { color: var(--coral); text-decoration-color: rgba(233, 104, 86, .5); }
.news--archive .news-grid { margin-top: 44px; }

.news-article-poster {
  width: min(100%, 620px);
  margin: 42px auto 0;
}

.news-article-poster button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  cursor: zoom-in;
}

.news-article-poster button img { transition: transform 180ms ease, box-shadow 180ms ease; }
.news-article-poster button:hover img,
.news-article-poster button:focus-visible img { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(36, 56, 101, .12); }

.news-article-posters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: 42px;
}

.news-article-posters .news-article-poster { width: 100%; margin: 0; }

.poster-dialog {
  width: min(calc(100% - 28px), 1180px);
  max-width: none;
  max-height: 94vh;
  padding: 18px;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 30px 90px rgba(27, 42, 76, .28);
}

.poster-dialog::backdrop { background: rgba(27, 42, 76, .72); }
.poster-dialog img { width: 100%; max-height: calc(94vh - 36px); object-fit: contain; }
.poster-dialog__close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(36, 56, 101, .18);
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(27, 42, 76, .16);
}

.school-resources-page .parent-resources {
  width: min(100%, 1080px);
  padding-top: 64px;
  padding-bottom: 82px;
}

.school-resources-page .parent-resources__header {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  gap: 40px;
  padding-bottom: 40px;
}

.school-resources-page .parent-resources__header h1 { font-size: clamp(52px, 6vw, 76px); }
.school-resources-page .parent-resources__header > p:last-child { font-size: 15px; }
.school-resources-page .parent-articles { margin-top: 58px; }
.school-resources-page .parent-section-heading h2 { font-size: clamp(34px, 4vw, 48px); }
.school-resources-page .news-grid--parents { margin-top: 36px; }
.school-resources-page .news-grid--parents article,
.school-resources-page .news-grid.news-grid--parents article:not(:last-child) { min-height: 270px; padding: 28px 26px 25px; }
.school-resources-page .news-grid--parents h3 { font-size: clamp(23px, 2.4vw, 30px); }

.bio-dialog__email-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 9px;
  margin-top: 2px;
}

.bio-dialog__email-row .bio-dialog__email-caption {
  margin: 0;
  font-size: 10px;
  letter-spacing: .06em;
}

.bio-dialog__email-row .bio-dialog__email {
  display: inline;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(233, 104, 86, .55);
  text-underline-offset: 3px;
}

.bio-dialog__email-row .bio-dialog__email:hover,
.bio-dialog__email-row .bio-dialog__email:focus-visible { color: var(--coral); background: transparent; }

@media (max-width: 900px) {
  .news--archive .news-feature { grid-template-columns: 1fr; }
  .news--archive .news-feature__media { min-height: 300px; max-height: 430px; border-right: 0; border-bottom: 1px solid var(--line); }
  .news-article-posters { grid-template-columns: 1fr; }
}
