@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/assets/fonts/AtkinsonHyperlegibleNext-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/assets/fonts/AtkinsonHyperlegibleNext-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Atkinson Hyperlegible Next";
  src: url("/assets/fonts/AtkinsonHyperlegibleNext-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #121a2b;
  --ink-muted: #4b5568;
  --paper: #ffffff;
  --paper-soft: #f3f6f9;
  --line: #d9e0e8;
  --brand: #243a7d;
  --brand-dark: #182b62;
  --brand-deep: #10244d;
  --brand-soft: #eef2fb;
  --accent: #ffd800;
  --accent-hover: #f4ca00;
  --success: #16704a;
  --error: #b42318;
  --content-width: min(72rem, calc(100% - 2rem));
  --content-narrow: min(52rem, calc(100% - 2rem));
  --shadow-header: 0 6px 18px rgb(10 25 62 / 18%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Atkinson Hyperlegible Next", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.2em;
}

a[href^="tel:"] {
  text-decoration: none;
}

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

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

.skip-link {
  position: fixed;
  top: -8rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--brand-deep);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.utility-bar__inner,
.masthead__inner,
.context-nav__inner,
.page-body,
.site-footer__inner {
  width: var(--content-width);
  margin-inline: auto;
}

.utility-bar {
  position: relative;
  z-index: 21;
  background: #1f1f20;
  color: var(--paper);
}

.utility-bar__inner,
.utility-bar__trust,
.utility-bar__actions {
  display: flex;
  align-items: center;
}

.utility-bar__inner {
  width: min(82rem, calc(100% - 2rem));
  min-height: 3.65rem;
  justify-content: space-between;
  gap: 1rem 2rem;
  font-size: 0.9rem;
}

.utility-bar__trust,
.utility-bar__actions {
  gap: 0.7rem 1.4rem;
}

.utility-bar__trust strong {
  color: var(--accent);
  letter-spacing: 0.02em;
}

.utility-bar a {
  font-weight: 700;
  text-decoration: none;
}

.utility-phone::before {
  content: "Call";
  margin-right: 0.4rem;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-phone--primary::before {
  content: "";
  margin: 0;
}

.utility-schedule {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  padding: 0.45rem 0.9rem;
  background: var(--accent);
  color: var(--brand-deep);
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.utility-email {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--paper);
}

.utility-email__label {
  color: var(--accent);
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--brand);
  color: var(--paper);
  border-bottom: 2px solid rgb(255 255 255 / 8%);
  box-shadow: var(--shadow-header);
}

.masthead__inner {
  display: flex;
  min-height: 6.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  padding: 0.35rem 0;
}

.brand-mark img {
  width: clamp(11.25rem, 24vw, 14rem);
  height: auto;
}

.nav-toggle {
  display: inline-flex;
  min-width: 3.25rem;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 2px solid rgb(255 255 255 / 48%);
  border-radius: 0;
  background: transparent;
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 2;
  width: min(25rem, 88vw);
  display: grid;
  align-content: start;
  gap: 0;
  padding: 7.5rem 1.5rem 6rem;
  overflow-y: auto;
  background: var(--brand-dark);
  color: var(--paper);
  box-shadow: -16px 0 36px rgb(2 13 41 / 25%);
  transform: translateX(105%);
  transition: transform 180ms ease-out;
  visibility: hidden;
  pointer-events: none;
}

.site-nav[data-open="true"] {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.site-nav > a,
.site-nav__mobile-links a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  color: var(--paper);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-nav__mobile-links {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}

.site-nav__mobile-links p {
  margin: 1.2rem 0 0.2rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: rgb(7 16 37 / 70%);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--brand-deep);
  color: var(--paper);
}

.page-hero__grid {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 63vw, 47rem);
  isolation: isolate;
}

.hero-media,
.page-hero__copy,
.hero-rail {
  grid-area: 1 / 1;
}

.hero-media {
  position: relative;
  z-index: -2;
  width: 100%;
  min-height: inherit;
  overflow: hidden;
  background: var(--brand-deep);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgb(12 30 69 / 70%) 0%, rgb(15 35 79 / 58%) 50%, rgb(9 24 56 / 84%) 100%),
    linear-gradient(90deg, rgb(7 25 62 / 34%), transparent 58%, rgb(7 25 62 / 24%));
}

.hero-media__image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.page-hero__copy {
  z-index: 1;
  width: var(--content-narrow);
  align-self: center;
  justify-self: center;
  margin-bottom: 5rem;
  padding-block: 4rem 5rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Atkinson Hyperlegible Next", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.85rem, 3.7vw, 3rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.22;
}

.page-hero__lede,
.section-heading p,
.service-card p,
.proof-card p,
.editorial-panel p,
.editorial-grid p,
.two-column-copy p,
.policy-copy p {
  max-width: 66ch;
}

.page-hero__lede {
  max-width: 48rem;
  margin: 1.25rem auto 0;
  color: rgb(255 255 255 / 92%);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions,
.form-actions,
.section-callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.page-hero .hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 140ms ease-out, color 140ms ease-out, border-color 140ms ease-out;
}

.button--primary {
  background: var(--accent);
  color: var(--brand-deep);
}

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

.button--secondary {
  border-color: var(--brand);
  background: transparent;
  color: var(--brand);
}

.page-hero .button--secondary,
.section-callout .button--secondary,
.section-services .button--secondary {
  border-color: rgb(255 255 255 / 72%);
  color: var(--paper);
}

.button--secondary:hover {
  border-color: currentColor;
  background: rgb(255 255 255 / 10%);
}

.hero-rail {
  z-index: 2;
  align-self: end;
}

.hero-rail__panel {
  width: var(--content-width);
  margin-inline: auto;
  border-top: 1px solid rgb(255 255 255 / 30%);
}

.hero-rail__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 1.25rem 0 1.35rem;
  list-style: none;
}

.hero-rail__facts li {
  min-width: 0;
  padding-inline: 1.25rem;
  text-align: center;
}

.hero-rail__facts li + li {
  border-left: 1px solid rgb(255 255 255 / 30%);
}

.hero-rail__facts strong,
.hero-rail__facts span {
  display: block;
}

.hero-rail__facts strong {
  color: var(--accent);
  font-size: 0.86rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero-rail__facts span {
  margin-top: 0.15rem;
  color: rgb(255 255 255 / 86%);
  font-size: 0.88rem;
}

.context-nav {
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.context-nav__inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0;
  scrollbar-width: thin;
}

.context-nav a {
  flex: 0 0 auto;
  padding: 0.95rem 1rem;
  border-bottom: 3px solid transparent;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
}

.context-nav a:hover,
.context-nav a[aria-current="page"] {
  border-color: var(--accent);
  color: var(--brand);
}

.page-body {
  padding-bottom: 4rem;
}

.page-body--narrow {
  max-width: 52rem;
}

.section {
  position: relative;
  padding-block: clamp(3.75rem, 7vw, 6rem);
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading::before {
  display: block;
  width: 5.5rem;
  height: 0.28rem;
  margin: 0 auto 1.25rem;
  background: var(--accent);
  box-shadow: 0 0.48rem 0 -0.08rem var(--accent);
  content: "";
}

.section > .eyebrow:first-child,
.section > h2:first-of-type,
.section > p:first-of-type {
  text-align: center;
}

.section > h2:first-of-type,
.section > p:first-of-type {
  margin-inline: auto;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading::before {
  grid-row: 1;
}

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

.section-heading p {
  margin: 0 auto;
}

.proof-grid,
.service-card-grid,
.editorial-grid,
.contact-grid,
.site-footer__inner {
  display: grid;
  gap: 1.25rem;
}

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

.proof-card {
  padding: 1.75rem;
  border-top: 4px solid var(--accent);
  background: var(--paper-soft);
}

.proof-card .eyebrow,
.proof-card h2,
.proof-card p {
  text-align: left;
}

.proof-card h2 {
  color: var(--brand);
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
}

.proof-card p:last-child {
  margin-bottom: 0;
}

.editorial-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.editorial-grid h2 {
  color: var(--brand-dark);
}

.editorial-grid__stack {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-family,
.editorial-panel {
  padding: 1.75rem;
  background: var(--paper-soft);
}

.service-family h3 a,
.service-card h3 a {
  text-decoration: none;
}

.service-family h3 a:hover,
.service-card h3 a:hover {
  text-decoration: underline;
}

.section-services {
  color: var(--paper);
  background: var(--brand);
  box-shadow: 0 0 0 100vmax var(--brand);
  clip-path: inset(0 -100vmax);
}

.section-services + .section-services {
  border-color: rgb(255 255 255 / 15%);
}

.section-services .eyebrow,
.section-services .text-link,
.section-services h3 a {
  color: var(--accent);
}

.section-services .section-heading p,
.section-services .service-card p {
  color: rgb(255 255 255 / 85%);
}

.service-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  display: grid;
  min-height: 15rem;
  align-content: start;
  gap: 0.8rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 7%);
}

.service-card p {
  margin: 0;
}

.text-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 0.75rem;
  border-bottom: 2px solid currentColor;
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-decoration: none;
  text-transform: uppercase;
}

.section-slab {
  background: var(--brand-soft);
  box-shadow: 0 0 0 100vmax var(--brand-soft);
  clip-path: inset(0 -100vmax);
}

.proof-list,
.compact-list,
.link-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-list li {
  display: grid;
  gap: 0.4rem;
  padding: 1.5rem;
  background: var(--paper);
}

.proof-list strong {
  color: var(--brand);
  font-size: 1.08rem;
}

.compact-list li,
.link-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.link-list a {
  color: var(--brand);
  font-weight: 700;
}

.quote-block {
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}

.quote-block__rule {
  display: none;
}

blockquote {
  margin: 0;
  color: var(--brand-deep);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  line-height: 1.55;
}

blockquote footer {
  margin-top: 1.25rem;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.process-grid__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-step {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--paper);
}

.process-step p {
  margin: 0;
}

.process-step__index {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.section-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 2rem;
  color: var(--paper);
  background: var(--brand-deep);
  box-shadow: 0 0 0 100vmax var(--brand-deep);
  clip-path: inset(0 -100vmax);
}

.section-callout .eyebrow {
  color: var(--accent);
}

.section-callout p {
  max-width: 56rem;
  margin-bottom: 0;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(17rem, 0.75fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 4rem);
}

.request-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-top: 4px solid var(--accent);
  background: var(--paper-soft);
}

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

.form-field,
.form-fieldset {
  display: grid;
  gap: 0.45rem;
}

.form-field > span,
.form-fieldset legend {
  color: var(--brand-deep);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid #aeb8c7;
  border-radius: 0;
  background: var(--paper);
  padding: 0.75rem 0.85rem;
  color: var(--ink);
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-fieldset {
  border: 1px solid #aeb8c7;
  padding: 1rem;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.consent-check {
  display: flex;
  align-items: start;
  gap: 0.65rem;
}

.field-error {
  min-height: 1.25rem;
  color: var(--error);
}

.form-summary,
.form-status {
  padding: 0.8rem 1rem;
  border-left: 4px solid currentColor;
}

.form-summary {
  background: #fff0ef;
  color: var(--error);
}

.form-status[data-state="success"] {
  background: #ebf8f1;
  color: var(--success);
}

.form-status[data-state="error"],
.form-status[data-state="unavailable"] {
  background: #fff8d9;
  color: var(--brand-deep);
}

.contact-sidebar__panel {
  position: sticky;
  top: 8rem;
  padding: 1.5rem;
  border-top: 4px solid var(--accent);
  background: var(--brand);
  color: var(--paper);
}

.contact-sidebar__panel .eyebrow,
.contact-sidebar__panel a {
  color: var(--accent);
}

#request-service {
  scroll-margin-top: 7.5rem;
}

.policy-copy {
  display: grid;
  gap: 2rem;
}

.policy-copy section {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.policy-copy h2 {
  margin-bottom: 0.65rem;
  color: var(--brand-dark);
}

.site-footer {
  background: #1f1f20;
  color: rgb(255 255 255 / 82%);
  border-top: 5px solid var(--accent);
}

.site-footer__inner {
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 2.5rem;
  padding-block: 3.5rem 5rem;
}

.site-footer h2,
.site-footer .eyebrow {
  color: var(--accent);
}

.site-footer h2 {
  font-size: 1.5rem;
}

.site-footer p {
  margin-block: 0.65rem;
}

.site-footer a {
  color: var(--paper);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.5rem;
}

.mobile-dock {
  position: fixed;
  inset: auto 0 0;
  z-index: 17;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  border-top: 2px solid var(--accent);
  box-shadow: 0 -8px 22px rgb(7 23 58 / 16%);
}

.mobile-dock a {
  min-width: 0;
  padding: 0.85rem 0.35rem max(0.85rem, env(safe-area-inset-bottom));
  font-size: clamp(0.78rem, 3.7vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-dock__call {
  background: var(--accent);
  color: var(--brand-deep);
}

.mobile-dock__request {
  background: var(--brand);
  color: var(--paper);
}

@media (max-width: 67.99rem) {
  .utility-bar__inner {
    min-height: 3.2rem;
  }

  .utility-bar__trust .utility-hours,
  .utility-phone--secondary,
  .utility-email {
    display: none;
  }

  .masthead__inner {
    min-height: 5.5rem;
  }

  .brand-mark img {
    width: 11.5rem;
  }

  .nav-overlay[hidden] {
    display: none;
  }
}

@media (max-width: 48rem) {
  :root {
    --content-width: min(100% - 1.5rem, 72rem);
    --content-narrow: min(100% - 1.5rem, 52rem);
  }

  .utility-bar__inner {
    gap: 0.75rem;
    font-size: 0.78rem;
  }

  .utility-bar__trust strong {
    font-size: 0.75rem;
  }

  .utility-schedule {
    min-height: 2.25rem;
    padding-inline: 0.65rem;
    font-size: 0.72rem;
  }

  .utility-phone--primary {
    display: none;
  }

  .page-hero__grid {
    min-height: 38rem;
  }

  .page-hero__copy {
    margin-bottom: 8rem;
    padding-block: 3rem 4rem;
  }

  .hero-media__image {
    object-position: 56% center;
  }

  .hero-rail__facts {
    grid-template-columns: 1fr;
    padding-block: 0.85rem 1rem;
  }

  .hero-rail__facts li {
    display: none;
    padding: 0;
  }

  .hero-rail__facts li:first-child {
    display: block;
  }

  .hero-rail__facts li + li {
    border-left: 0;
  }

  .proof-grid,
  .service-card-grid,
  .editorial-grid,
  .proof-list,
  .process-grid__list,
  .two-column-copy,
  .section-callout,
  .contact-grid,
  .form-row,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 3.5rem;
  }

  .proof-grid {
    gap: 0.85rem;
  }

  .proof-card {
    padding: 1.35rem;
  }

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

  .section-callout {
    gap: 0.5rem;
  }

  .section-callout__actions {
    margin-top: 1rem;
  }

  .contact-sidebar__panel {
    position: static;
  }

  .site-footer__inner {
    padding-bottom: 7rem;
  }
}

@media (max-width: 25rem) {
  .utility-bar__trust {
    display: none;
  }

  .utility-bar__inner {
    justify-content: flex-end;
  }

  .masthead__inner {
    min-height: 5rem;
  }

  .brand-mark img {
    width: 10rem;
  }

  .page-hero__grid {
    min-height: 40rem;
  }

  .page-hero__copy {
    margin-bottom: 7rem;
  }

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

@media (min-width: 68rem) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    display: flex;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav > a {
    position: relative;
    display: inline-flex;
    min-height: 6.5rem;
    align-items: center;
    padding: 0 0.8rem;
    border: 0;
    font-size: 0.82rem;
  }

  .site-nav > a::after {
    position: absolute;
    inset: auto 0.8rem 1.25rem;
    height: 2px;
    background: transparent;
    content: "";
  }

  .site-nav > a:hover::after,
  .site-nav > a:focus-visible::after,
  .site-nav > a[aria-current="page"]::after {
    background: var(--accent);
  }

  .site-nav__mobile-links,
  .nav-overlay,
  .mobile-dock {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
