:root {
  --ink: #17211f;
  --muted: #5d6965;
  --paper: #fbfcfb;
  --soft: #f1f7fc;
  --line: #d7e3ed;
  --orange: #ff7415;
  --orange-dark: #c95100;
  --blue: #1d6cad;
  --blue-dark: #174f82;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 251, 0.86);
  border-bottom: 1px solid rgba(219, 230, 226, 0.7);
  color: var(--ink);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, padding 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  background: rgba(251, 252, 251, 0.96);
  box-shadow: 0 10px 28px rgba(23, 33, 31, 0.08);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.brand-logo {
  width: clamp(210px, 22vw, 300px);
  height: auto;
  border-radius: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #34413d;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--blue);
}

.site-nav .nav-phone {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.site-nav .portal-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
}

.site-nav .portal-cta:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
  transform-origin: center;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  min-height: 88vh;
  margin: 0 auto;
  padding: 116px 0 64px;
}

#home .hero {
  min-height: 82vh;
  padding-bottom: 34px;
}

.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 152px 0 48px;
}

.page-hero h1 {
  max-width: 760px;
}

.page-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.split-page-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.split-page-hero h1 {
  max-width: 760px;
}

.split-page-hero p:last-child {
  max-width: none;
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-bottom: 30px;
}

.portal-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-page-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.service-page-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.contact-visual {
  display: grid;
  gap: 16px;
}

.contact-visual .directions-button {
  justify-self: center;
  margin-top: 0;
}

.contact-graphic {
  position: relative;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 116, 21, 0.12), rgba(29, 108, 173, 0.16)),
    var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.hero-address {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 24px;
  margin: 0;
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
}

.hero-location .directions-button {
  flex: 0 0 auto;
  margin-left: auto;
  margin-top: 0;
}

.hero-address strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.hero-address a {
  color: var(--blue);
  font-weight: 900;
}

.phone-fax {
  text-align: right;
  white-space: nowrap;
}

.email-lines {
  grid-column: 1 / -1;
}

.contact-graphic::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 140px;
  height: 140px;
  border: 18px solid rgba(29, 108, 173, 0.18);
  border-radius: 50%;
}

.contact-symbol {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(23, 33, 31, 0.08);
}

.contact-symbol-phone {
  left: 34px;
  top: 48px;
  width: 112px;
  height: 132px;
}

.contact-symbol-phone::before {
  content: "";
  width: 44px;
  height: 72px;
  border: 5px solid var(--blue);
  border-radius: 16px;
}

.contact-symbol-phone span {
  position: absolute;
  bottom: 34px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.contact-symbol-email {
  right: 34px;
  bottom: 44px;
  width: 154px;
  height: 104px;
}

.contact-symbol-email::before {
  content: "";
  width: 86px;
  height: 52px;
  border: 5px solid var(--orange);
  border-radius: 8px;
}

.contact-symbol-email::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-left: 5px solid var(--orange);
  border-bottom: 5px solid var(--orange);
  transform: translateY(-4px) rotate(-45deg);
}

.contact-symbol-email span {
  position: absolute;
  left: 24px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
}

.transmission-lines {
  position: absolute;
  left: 148px;
  top: 78px;
  display: grid;
  gap: 12px;
}

.transmission-lines span {
  display: block;
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.transmission-lines span:nth-child(2) {
  width: 88px;
  margin-left: 24px;
}

.transmission-lines span:nth-child(3) {
  width: 54px;
  margin-left: 52px;
}

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

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 82%;
  height: 82%;
  border-radius: 8px;
  background: #fff1e7;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.5vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy,
.section-heading p,
.about-copy,
.value-grid p,
.contact-copy p,
.service-card p {
  color: var(--muted);
}

.hero-copy {
  max-width: 600px;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
}

.button.primary {
  background: var(--orange);
  color: var(--white);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  border-color: #bfd3e4;
  background: var(--white);
  color: var(--blue-dark);
}

.button.secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(1180px, calc(100% - 36px));
  margin: -10px auto 0;
}

.feature-strip div {
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 33, 31, 0.06);
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip strong {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 20px;
}

.feature-strip span {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(74px, 10vw, 118px) 0;
}

#home .section {
  padding: clamp(48px, 7vw, 82px) 0;
}

#home .services {
  padding-top: clamp(10px, 2vw, 22px);
}

#home .values {
  padding-bottom: clamp(46px, 7vw, 76px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.services-offered-header {
  margin-bottom: 24px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  text-align: center;
}

.services-offered-title {
  margin-bottom: 0;
  font-size: clamp(30px, 3.8vw, 46px);
}

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

.service-card {
  display: flex;
  min-height: 246px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  padding: 8px;
  border-radius: 8px;
  background: var(--soft);
}

.text-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.text-link:hover {
  color: var(--blue-dark);
}

.about-band {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.first-section {
  margin-top: 132px;
}

.story-copy p {
  color: var(--muted);
  font-size: 18px;
}

.story-copy .eyebrow {
  color: var(--orange);
}

.story-heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.story-heading img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 33, 31, 0.08);
}

.story-heading h2 {
  margin-bottom: 0;
}

.locations-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(24px, 5vw, 56px);
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 0;
  padding: clamp(20px, 4vw, 30px) 0;
  border-block: 1px solid var(--line);
}

.locations-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

.location-grid article {
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 33, 31, 0.06);
}

.location-grid span {
  display: block;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.location-grid h3 {
  margin-bottom: 0;
  color: var(--blue-dark);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.about-copy p {
  font-size: 18px;
}

.values {
  padding-bottom: 52px;
}

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

.value-grid article {
  padding: 26px;
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 33, 31, 0.06);
}

.leadership-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) 0 clamp(74px, 10vw, 118px);
}

.leadership-heading {
  align-items: start;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.leadership-heading .eyebrow {
  color: var(--orange);
}

.leadership-heading > div p:last-child {
  color: var(--muted);
}

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

.leader-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 33, 31, 0.06);
}

.leader-card p {
  color: var(--muted);
}

.service-detail-list {
  display: grid;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(74px, 10vw, 118px);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 33, 31, 0.06);
  scroll-margin-top: 100px;
}

.service-detail-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  padding: 9px;
  border-radius: 8px;
  background: var(--soft);
}

.service-detail p,
.detail-list {
  color: var(--muted);
  font-size: 18px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding: 14px 14px 14px 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.service-cta {
  display: flex;
  width: min(1180px, calc(100% - 36px));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto clamp(74px, 10vw, 118px);
  padding: clamp(30px, 5vw, 46px);
  border-radius: 8px;
  background: var(--blue-dark);
  color: var(--white);
}

.service-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(28px, 3.5vw, 44px);
}

.portal-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 18px;
}

.portal-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portal-card-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  padding: 9px;
  border-radius: 8px;
  background: var(--soft);
}

.portal-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.portal-card p {
  color: var(--muted);
  font-size: 18px;
}

.portal-card .button {
  margin-top: auto;
}

.remote-support-frame {
  width: 100%;
  min-height: min(70vh, 640px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.support-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(23, 33, 31, 0.58);
}

.support-modal[hidden] {
  display: none;
}

.support-modal-panel {
  width: min(1040px, 100%);
  max-height: calc(100vh - 44px);
  padding: clamp(16px, 3vw, 24px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(23, 33, 31, 0.28);
}

.support-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.support-modal-header h2 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.modal-close {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 20px;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

body.modal-open {
  overflow: hidden;
}

.portal-card small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(74px, 10vw, 118px);
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-copy p {
  font-size: 18px;
}

.contact-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}

.contact-copy address {
  margin: 0 0 10px;
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
}

.directions-button {
  width: fit-content;
  margin-top: 22px;
}

.map-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(74px, 10vw, 118px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: clamp(340px, 48vw, 520px);
  border: 0;
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #34413d;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbdad6;
  border-radius: 8px;
  background: #fbfefd;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full-field {
  grid-column: 1 / -1;
}

.contact-form .button {
  width: fit-content;
  border: 0;
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer > a {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links a {
  color: var(--blue);
  font-weight: 900;
}

.policy-hero {
  padding-bottom: 30px;
}

.legal-page-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.legal-page-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-content {
  display: grid;
  gap: 18px;
  width: min(940px, calc(100% - 36px));
  margin: 0 auto clamp(74px, 10vw, 118px);
}

.policy-content article {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(23, 33, 31, 0.06);
}

.policy-content h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.policy-content p {
  color: var(--muted);
  font-size: 18px;
}

.policy-content a {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 252, 251, 0.98);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .site-nav .nav-phone {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .site-nav .portal-cta {
    margin-top: 10px;
    padding: 12px 14px;
  }

  .hero,
  .split-page-hero,
  .service-page-hero,
  .portal-hero,
  .legal-page-hero,
  .contact-hero,
  .section-heading,
  .about,
  .story-section,
  .locations-section,
  .service-detail,
  .portal-options {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 108px;
  }

  .page-hero {
    padding-top: 126px;
  }

  .hero-media img {
    max-height: 430px;
  }

  .feature-strip,
  .service-grid,
  .location-grid,
  .leader-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: min(210px, 58vw);
  }

  .hero {
    width: calc(100% - 32px);
    min-height: auto;
    padding-top: 104px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .portal-card {
    min-height: auto;
  }

  .feature-strip,
  .service-grid,
  .location-grid,
  .leader-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .contact-section {
    padding: 28px 18px;
  }

  .hero-location {
    align-items: stretch;
    flex-direction: column;
  }

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

  .phone-fax {
    text-align: left;
    white-space: normal;
  }

  .hero-location .directions-button {
    margin-left: 0;
  }

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

  .directions-button {
    width: 100%;
  }

  .contact-form .button {
    width: 100%;
  }
}
