:root {
  --ink: #111217;
  --muted: #5c6470;
  --accent: #336699;
  --accent-dark: #254c73;
  --paper: #f6f3ee;
  --card: #ffffff;
  --line: #e3dfd7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Spectral", "Georgia", serif;
  color: var(--ink);
  background: linear-gradient(160deg, #f6f3ee 0%, #efe9df 55%, #f8f5f0 100%);
}

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

a:hover {
  color: var(--accent-dark);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
}

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

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-title {
  font-size: 20px;
  font-weight: 600;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 14px;
}

.brand-meta {
  text-align: right;
}

.brand-phone {
  font-weight: 600;
}

.brand-link {
  font-size: 14px;
}

.brand-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.site-nav {
  border-top: 1px solid var(--line);
  background: #fff;
  position: relative;
  z-index: 20;
  isolation: isolate;
}

.nav-toggle {
  display: none;
  width: 100%;
  margin: 0 0 10px;
  padding: 12px 16px;
  border: 1px solid rgba(34, 39, 56, 0.1);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-bars::after {
  position: absolute;
  top: 6px;
}

.nav-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  padding: 0;
  align-items: stretch;
  overflow: visible;
  scrollbar-width: none;
}

.nav-row::-webkit-scrollbar {
  display: none;
}

.nav-row-primary {
  border-bottom: 1px solid rgba(34, 39, 56, 0.08);
  position: relative;
  z-index: 20;
}

.nav-row-utility {
  justify-content: flex-start;
  position: relative;
  z-index: 10;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-link-shell {
  display: flex;
  align-items: stretch;
}

.nav-row-primary .nav-link-shell {
  border-right: 1px solid rgba(34, 39, 56, 0.08);
}

.nav-item.has-children {
  z-index: 25;
}

.nav-item.has-children:hover,
.nav-item.has-children:focus-within {
  z-index: 40;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  border-right: 1px solid rgba(34, 39, 56, 0.08);
  white-space: nowrap;
}

.nav-row-primary .nav-link {
  border-right: 0;
}

.nav-subtoggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 0 10px 0 0;
  border: 0;
  background: #fff;
  cursor: pointer;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-item:first-child .nav-link {
  border-left: 0;
}

.nav-row-primary .nav-item:first-child .nav-link-shell,
.nav-row-utility .nav-item:first-child .nav-link {
  border-left: 1px solid rgba(34, 39, 56, 0.08);
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(34, 39, 56, 0.45);
  transition: transform 160ms ease, border-top-color 160ms ease;
}

.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret,
.nav-item.is-open .nav-caret,
.nav-subtoggle[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg);
  border-top-color: var(--accent);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 260px;
  padding: 12px;
  display: grid;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(34, 39, 56, 0.12);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 18px 36px rgba(34, 39, 56, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 140ms ease, transform 140ms ease;
  z-index: 60;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  color: var(--accent);
  background: rgba(51, 102, 153, 0.08);
}

.nav-dropdown-overview {
  font-weight: 700;
  border-bottom: 1px solid rgba(34, 39, 56, 0.08);
  border-radius: 12px 12px 0 0;
  margin-bottom: 2px;
  padding-bottom: 12px;
}

.hero {
  padding: 64px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.hero-copy h1 {
  font-size: clamp(30px, 3vw, 44px);
  margin: 12px 0 16px;
}

.hero-lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background: var(--accent-dark);
  color: #fff;
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 45px rgba(25, 21, 14, 0.08);
}

.hero-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.hero-links {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.content {
  padding: 24px 0 80px;
}

.page-hero {
  padding: 64px 0 40px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.page-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-panel,
.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 28px rgba(25, 21, 14, 0.06);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 12px;
}

.feature-grid,
.contact-grid,
.form-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.contact-section + .contact-section {
  margin-top: 24px;
}

.history-page {
  padding-top: 28px;
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.history-letter {
  background: rgba(255, 255, 255, 0.72);
  padding: 8px 0;
}

.history-letter h1 {
  margin: 0 0 24px;
  font-size: clamp(34px, 3vw, 48px);
}

.history-letter p {
  margin: 0 0 22px;
  max-width: 860px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.history-signoff {
  margin-top: 32px;
}

.history-signoff-name,
.history-signoff-title {
  margin-bottom: 6px !important;
  color: var(--ink) !important;
}

.history-signoff-title {
  margin-bottom: 14px !important;
}

.history-signature {
  display: block;
  width: 276px;
  max-width: 100%;
  height: auto;
}

.history-affiliations h2 {
  margin: 0 0 18px;
}

.history-affiliation-list {
  display: grid;
  gap: 14px;
}

.history-affiliation-list a {
  display: block;
}

.history-affiliation-list img {
  display: block;
  max-width: 100%;
  height: auto;
}

.history-badge-link {
  justify-self: center;
}

.services-letter {
  padding-right: 8px;
}

.services-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.services-list {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.services-list li + li {
  margin-top: 10px;
}

.services-note {
  margin-top: 28px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(51, 102, 153, 0.14), rgba(51, 102, 153, 0.08));
  border: 1px solid rgba(51, 102, 153, 0.18);
}

.services-note strong {
  color: var(--ink);
}

.services-note span {
  color: var(--muted);
  line-height: 1.65;
}

.legacy-detail-page {
  background: transparent;
  padding: 0;
}

.legacy-page-title {
  margin: 0 0 18px;
  font-size: clamp(26px, 2.1vw, 32px);
  line-height: 1.15;
}

.legacy-rich-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.legacy-rich-copy::after {
  content: "";
  display: block;
  clear: both;
}

.legacy-rich-copy p {
  margin: 0 0 18px;
}

.legacy-inline-image-floated {
  float: left;
  margin: 2px 18px 12px 0;
  max-width: min(380px, 52%);
  height: auto;
}

.legacy-figure {
  margin: 0 0 24px;
}

.legacy-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.legacy-media-banner,
.legacy-media-illustration {
  display: block;
  max-width: 100%;
  height: auto;
}

.legacy-list-grid {
  margin-top: 6px;
}

.legacy-list-grid .services-list {
  font-size: 14px;
  line-height: 1.55;
}

.legacy-affiliations-panel {
  border: 0;
  border-left: 1px solid rgba(34, 39, 56, 0.08);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 8px 0 0 24px;
}

.legacy-affiliations-panel .history-affiliation-list {
  gap: 12px;
}

.legacy-single-list {
  margin-top: 12px;
}

.legacy-subheading,
.legacy-step-title {
  margin: 18px 0 10px;
  color: var(--ink);
  line-height: 1.3;
}

.legacy-divider {
  margin: 26px 0;
  border: 0;
  border-top: 1px solid rgba(34, 39, 56, 0.12);
}

.legacy-callout {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(34, 39, 56, 0.1);
}

.legacy-callout-copy {
  color: var(--muted);
  line-height: 1.6;
}

.real-estate-affiliation-list img {
  background: #fff;
}

.legacy-step-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(0, 2fr);
  gap: 18px;
  align-items: start;
  margin: 10px 0 20px;
}

.legacy-step-image {
  display: block;
  width: 100%;
  height: auto;
}

.legacy-simple-page {
  max-width: 960px;
}

.contact-legacy-page {
  max-width: 1100px;
}

.contact-legacy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-legacy-form {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(34, 39, 56, 0.08);
}

.utility-education-graphic {
  margin-top: 14px;
  max-width: 600px;
}

.utility-page {
  max-width: 980px;
}

.utility-link-panel {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(34, 39, 56, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.utility-link-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.legal-page .legacy-rich-copy > * + * {
  margin-top: 18px;
}

.legal-number-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.legal-number-list > li > p:last-child {
  margin-bottom: 0;
}

.legal-mini-heading {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.legal-contact-card {
  display: inline-block;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(34, 39, 56, 0.1);
  background: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

.education-toolkit-page {
  max-width: 1160px;
}

.education-toolkit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.education-toolkit-images,
.education-toolkit-copy {
  display: grid;
  gap: 18px;
}

.education-toolkit-images img,
.education-toolkit-copy img {
  display: block;
  width: 100%;
  height: auto;
}

.disaster-story-list {
  display: grid;
  gap: 20px;
}

.disaster-story-card {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(34, 39, 56, 0.08);
}

.disaster-story-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.25;
}

.disaster-story-card h2 a {
  color: var(--ink);
}

.disaster-story-meta {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.disaster-story-card p {
  margin: 0 0 12px;
}

.disaster-story-link {
  font-weight: 600;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.link-card {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
}

.link-card span,
.feature-card p,
.feature-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.mini-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.stat-band {
  padding: 0 0 72px;
}

.home-hero {
  padding: 40px 0 24px;
}

.home-content {
  padding: 12px 0 48px;
}

.home-content .section-heading {
  margin-bottom: 20px;
}

.home-stat-band {
  padding: 0 0 56px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.stat-grid > div {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.stat-grid strong {
  display: block;
  margin-bottom: 8px;
}

.stat-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.notice-card {
  background: linear-gradient(180deg, #fbfaf6 0%, #f3eee5 100%);
}

.request-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(25, 21, 14, 0.06);
}

.request-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfc7bb;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(13, 107, 77, 0.16);
  border-color: var(--accent);
}

.request-form small {
  color: var(--muted);
  line-height: 1.5;
}

.request-form-wide {
  grid-column: 1 / -1;
}

.request-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.form-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.form-alert-success {
  background: #ecf7f1;
  border-color: #bfdcca;
}

.form-alert-error {
  background: #fbf0ec;
  border-color: #ebc5b8;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.wp-content h1 {
  margin-top: 0;
}

.wp-content img {
  max-width: 100%;
  height: auto;
}

.wp-content p {
  line-height: 1.7;
  color: var(--muted);
}

.wp-content a {
  color: var(--accent);
}

.wp-meta {
  margin-top: -8px;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-archive {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.article-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
}

.article-link {
  display: block;
  font-weight: 600;
  line-height: 1.4;
}

.article-date {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.content-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-card p {
  color: var(--muted);
  margin: 0;
}

.native-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.native-list li + li {
  margin-top: 8px;
}

.native-detail-grid {
  margin-top: 20px;
}

.portal-hero .feature-panel p {
  margin-bottom: 8px;
}

.portal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.portal-nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font-size: 14px;
}

.portal-nav-link.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.portal-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.portal-stat-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(25, 21, 14, 0.06);
}

.portal-stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.portal-stat-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portal-panels {
  align-items: start;
}

.portal-account-shell {
  margin-top: 24px;
}

.portal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}

.portal-table th,
.portal-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.portal-table th {
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}

.portal-details {
  display: grid;
  gap: 16px;
  margin: 0;
}

.portal-details div {
  display: grid;
  gap: 6px;
}

.portal-details dt {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portal-details dd {
  margin: 0;
  line-height: 1.6;
}

.portal-memo {
  max-width: 360px;
  line-height: 1.5;
  white-space: normal;
}

.portal-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.portal-detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 20px;
}

.portal-amount {
  text-align: right !important;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.portal-amount.is-credit {
  color: #2f6b4f;
}

.portal-amount.is-debit {
  color: #7a2d2d;
}

.portal-checkbox {
  display: flex !important;
  align-items: center;
  gap: 10px;
  min-height: 48px;
}

.portal-checkbox input {
  width: auto;
  margin: 0;
}

.portal-doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}

.portal-doc-meta {
  color: var(--muted);
  font-size: 14px;
}

.portal-fieldset {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  margin: 0;
  background: rgba(255, 255, 255, 0.65);
}

.portal-fieldset legend {
  padding: 0 8px;
  font-weight: 600;
  color: var(--ink);
}

.btn-small {
  padding: 10px 14px;
  min-height: auto;
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 28px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-title {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

@media (max-width: 720px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0 14px;
  }

  .brand-meta {
    text-align: left;
  }

  .brand-links {
    justify-content: flex-start;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 15px;
  }

  .brand-title {
    font-size: 16px;
    line-height: 1.15;
  }

  .brand-subtitle,
  .brand-link,
  .brand-phone {
    font-size: 13px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    border-top: 0;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-row {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: visible;
  }

  .nav-row-primary {
    border-bottom: 0;
  }

  .nav-row-utility {
    border-top: 1px solid rgba(34, 39, 56, 0.08);
  }

  .nav-item {
    width: 100%;
    display: block;
    border-bottom: 1px solid rgba(34, 39, 56, 0.08);
  }

  .nav-item:first-child .nav-link {
    border-left: 0;
  }

  .nav-link-shell {
    display: flex;
    align-items: stretch;
  }

  .nav-link {
    flex: 1 1 auto;
    width: auto;
    min-height: 52px;
    padding: 0 4px;
    border-right: 0;
  }

  .nav-subtoggle {
    display: inline-flex;
    border-right: 0;
    min-width: 44px;
    padding: 0 4px;
  }

  .nav-dropdown {
    position: static;
    top: auto;
    min-width: 0;
    padding: 0 0 10px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown-link {
    padding: 10px 0 10px 18px;
  }

  .nav-dropdown-overview {
    display: none;
  }

  .nav-item.is-open .nav-dropdown {
    display: grid;
  }

  .hero,
  .page-hero,
  .content,
  .history-page {
    padding-top: 20px;
  }

  .hero {
    padding-bottom: 24px;
  }

  .history-layout {
    grid-template-columns: 1fr;
  }

  .services-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .legacy-inline-image-floated {
    float: none;
    margin: 0 0 18px;
    max-width: 100%;
  }

  .legacy-affiliations-panel {
    border-left: 0;
    padding-left: 0;
  }

  .legacy-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .legacy-step-grid {
    grid-template-columns: 1fr;
  }

  .education-toolkit-grid {
    grid-template-columns: 1fr;
  }

  .contact-legacy-columns {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .page-hero-grid,
  .form-shell,
  .feature-grid,
  .contact-grid,
  .content-grid,
  .portal-stat-grid {
    gap: 16px;
  }

  .section-heading h1,
  .section-heading h2,
  .history-letter h1,
  .page-hero h1 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.08;
  }

  .page-lede,
  .hero-lede,
  .history-letter p,
  .legacy-rich-copy,
  .wp-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .request-form,
  .content-card,
  .portal-stat-card,
  .feature-panel,
  .legal-contact-card,
  .utility-link-panel,
  .portal-fieldset {
    padding: 18px;
    border-radius: 14px;
  }

  .request-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .request-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .request-form-actions .btn,
  .request-form-actions a.btn,
  .btn,
  .portal-doc-actions .btn,
  .utility-link-stack .btn {
    width: 100%;
    justify-content: center;
  }

  .portal-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .portal-nav::-webkit-scrollbar {
    display: none;
  }

  .portal-nav-link {
    flex: 0 0 auto;
  }

  .portal-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .portal-table th,
  .portal-table td {
    padding: 10px 8px;
    font-size: 13px;
  }

  .portal-table th {
    font-size: 11px;
  }

  .portal-detail-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-doc-actions,
  .utility-link-stack {
    flex-direction: column;
    align-items: stretch;
  }
}
