@font-face {
  font-family: "InterVariable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/inter-variable-latin-tr-r114.woff2") format("woff2");
}

:root {
  --ink: #111214;
  --ink-soft: #1b1d20;
  --paper: #f4f4f1;
  --white: #ffffff;
  --muted: #65686d;
  --muted-light: #b8bbc0;
  --line: #d7d8d8;
  --line-dark: rgba(255, 255, 255, 0.2);
  --signal: #c83227;
  --signal-on-dark: #ef5a4e;
  --header-height: 72px;
  --gutter: 48px;
  --section-y: 128px;
  --content-max: 1440px;
  color-scheme: light;
  font-family: "InterVariable", Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "InterVariable", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

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

p,
h1,
h2,
h3,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

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

::selection {
  background: var(--signal);
  color: var(--white);
}

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

[data-programmatic-focus]:focus:not(:focus-visible) {
  outline: none;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
}

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

.shell {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark,
.section-ink {
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 14px 24px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: #e9e9e6;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover {
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #2a2d31;
}

.text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border: 0;
  padding: 6px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.text-action span {
  transition: transform 160ms ease;
}

.text-action:hover span {
  transform: translateX(4px);
}

.text-action-light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0 var(--gutter);
  color: var(--white);
  transition: background-color 120ms linear, color 120ms linear, border-color 120ms linear;
}

.site-header.is-solid,
.site-header.menu-active {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--ink);
  color: var(--white);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a,
.header-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="true"]::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-action {
  gap: 12px;
  justify-self: end;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: calc(100svh - 40px);
  min-height: 680px;
  max-height: 920px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.015);
}

.hero-scrim {
  background: rgba(0, 0, 0, 0.52);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  max-width: var(--content-max);
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: 126px;
}

.hero-content .eyebrow {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
}

.hero h1 {
  max-width: 820px;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.55;
}

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

.compact-label {
  display: none;
}

.hero-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 104px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.28);
}

.hero-rail-inner {
  display: grid;
  min-height: 104px;
  grid-template-columns: 1.25fr 1fr 1fr auto;
  align-items: stretch;
  padding-right: 0;
}

.hero-rail-inner > div,
.hero-rail-inner > a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 28px;
}

.hero-rail-inner > div:first-child {
  padding-left: 0;
}

.hero-rail-inner span,
.hero-rail-inner > div > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-rail-inner strong {
  margin-top: 7px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-rail-inner > a {
  min-width: 170px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-right: 0;
  font-size: 13px;
  font-weight: 700;
}

html[data-motion="pending"] .hero-content > *,
html[data-motion="pending"] .hero-rail {
  opacity: 0;
  transform: translateY(14px);
}

html[data-motion="ready"] .hero-content > * {
  animation: content-enter 560ms ease both;
}

html[data-motion="ready"] .hero-content > :nth-child(2) {
  animation-delay: 60ms;
}

html[data-motion="ready"] .hero-content > :nth-child(3) {
  animation-delay: 110ms;
}

html[data-motion="ready"] .hero-content > :nth-child(4) {
  animation-delay: 160ms;
}

html[data-motion="ready"] .hero-rail {
  animation: content-enter 520ms 190ms ease both;
}

html[data-motion="ready"] .hero-media img {
  animation: hero-media-enter 1400ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes content-enter {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-media-enter {
  from { transform: scale(1.04); }
  to { transform: scale(1.015); }
}

.chapter-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1.35fr) minmax(260px, 0.62fr);
  align-items: start;
  gap: 40px;
}

.chapter-heading h2,
.remote-heading h2,
.contact h2 {
  font-size: 54px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.chapter-heading > p:last-child,
.remote-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.chapter-heading.compact {
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1.15fr) minmax(260px, 0.68fr);
}

.frame-index,
.remote-grid article > p,
.contact-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.services {
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
}

.service-media {
  min-height: 820px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% 50%;
  filter: saturate(0.72) contrast(1.06);
}

.service-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px max(var(--gutter), 8%);
}

.service-panel header .eyebrow {
  color: var(--muted-light);
}

.service-panel h2 {
  max-width: 620px;
  margin-top: 24px;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.14;
}

.service-selector {
  margin-top: 56px;
  border-top: 1px solid var(--line-dark);
}

.service-selector button {
  display: grid;
  width: 100%;
  min-height: 56px;
  grid-template-columns: 44px 1fr 8px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-align: left;
  transition: color 160ms ease, padding-left 160ms ease;
}

.service-selector button:hover,
.service-selector button[aria-pressed="true"] {
  padding-left: 8px;
  color: var(--white);
}

.service-selector button[aria-pressed="true"]::after {
  width: 6px;
  height: 6px;
  justify-self: end;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.service-selector button span {
  color: var(--muted-light);
  font-size: 11px;
}

.service-detail {
  min-height: 250px;
  padding-top: 42px;
}

.service-kicker {
  color: var(--signal-on-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-detail h3 {
  max-width: 580px;
  margin-top: 14px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
}

.service-detail > p:not(.service-kicker) {
  max-width: 610px;
  margin-top: 18px;
  color: var(--muted-light);
}

.service-detail .text-action {
  margin-top: 24px;
}

.remote {
  padding: var(--section-y) 0;
}

.remote-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1.45fr) minmax(260px, 0.6fr);
  gap: 40px;
}

.remote-heading .eyebrow,
.remote-heading > p:last-child {
  color: var(--muted-light);
}

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

.remote-grid article {
  min-height: 340px;
  border-right: 1px solid var(--line-dark);
  padding: 32px 36px 44px 0;
}

.remote-grid article + article {
  padding-left: 36px;
}

.remote-grid article:last-child {
  border-right: 0;
}

.remote-grid article > p {
  color: var(--signal-on-dark);
}

.remote-grid h3 {
  max-width: 340px;
  margin-top: 32px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
}

.remote-grid ul {
  margin-top: 32px;
}

.remote-grid li {
  border-top: 1px solid var(--line-dark);
  padding: 12px 0;
  color: var(--muted-light);
  font-size: 14px;
}

.remote-requirements {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: stretch;
  border-bottom: 1px solid var(--line-dark);
}

.remote-requirements > div {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-dark);
  padding: 20px 28px;
}

.remote-requirements > div:first-child {
  padding-left: 0;
}

.remote-requirements span {
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.remote-requirements strong {
  margin-top: 9px;
  font-size: 14px;
}

.remote-requirements .button {
  min-width: 230px;
  align-self: center;
  margin-left: 30px;
}

.diagnostic {
  padding: var(--section-y) 0;
}

.diagnostic-shell {
  max-width: 1240px;
}

.mode-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 72px;
  border: 1px solid var(--ink);
}

.mode-switch button {
  min-width: 190px;
  min-height: 48px;
  border: 0;
  padding: 10px 22px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.mode-switch button + button {
  border-left: 1px solid var(--ink);
}

.mode-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.diagnostic-form {
  margin-top: 42px;
  border-top: 1px solid var(--ink);
}

.form-context {
  display: grid;
  min-height: 58px;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 12px 22px;
  background: var(--white);
}

.form-context[hidden] {
  display: none;
}

.form-context > span {
  color: var(--signal);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-context > strong {
  min-width: 0;
  font-size: 14px;
  font-weight: 650;
}

.form-context + .form-progress {
  border-top: 0;
}

.remote-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.remote-fields[hidden] {
  display: none;
}

.remote-fields > label:not(.authorization-check) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 0;
}

.remote-fields > label:first-child {
  border-right: 1px solid var(--line);
  padding-right: 36px;
}

.remote-fields > label:nth-child(2) {
  padding-left: 36px;
}

.authorization-check {
  display: flex;
  min-height: 64px;
  grid-column: 1 / -1;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.authorization-check[hidden] {
  display: none;
}

.authorization-check input {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 0;
  accent-color: var(--ink);
}

.authorization-check > span {
  display: inline;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.field-grid label,
.wide-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.field-grid label:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 36px;
}

.field-grid label:nth-child(even) {
  padding-left: 36px;
}

label > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

label > span small {
  color: var(--signal);
  font-size: 10px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-bottom: 1px solid #999c9f;
  border-radius: 0;
  margin-top: 14px;
  padding: 10px 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

select {
  cursor: pointer;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 2px 0 var(--ink);
}

[aria-invalid="true"] {
  border-color: var(--signal);
  box-shadow: 0 2px 0 var(--signal);
}

.form-error {
  margin-top: 20px;
  color: #a5231b;
  font-weight: 700;
}

.diagnostic-form > .form-error {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 32px;
}

.form-actions p {
  max-width: 520px;
  color: var(--muted);
  font-size: 13px;
}

.message-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.32fr);
  align-items: start;
  gap: 40px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-top: 42px;
  padding: 42px 0;
}

.message-result[hidden] {
  display: none;
}

.message-result h3 {
  margin-top: 14px;
  font-size: 30px;
  font-weight: 600;
}

.message-result [data-message-summary] {
  max-width: 720px;
  margin-top: 14px;
  color: var(--muted);
}

.message-destination {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
}

.message-preview {
  max-height: 280px;
  overflow: auto;
  border: 1px solid var(--line);
  margin: 22px 0 0;
  padding: 18px;
  background: var(--white);
  color: var(--ink);
  font: 13px/1.65 Arial, Helvetica, sans-serif;
  white-space: pre-wrap;
}

.message-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 10px;
}

.message-actions .text-action {
  justify-content: flex-start;
}

.copy-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 12px;
}

.contact {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact-media,
.contact-scrim {
  position: absolute;
  inset: 0;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-scrim {
  background: rgba(0, 0, 0, 0.68);
}

.contact-content {
  position: relative;
  z-index: 2;
  padding-top: 116px;
  padding-bottom: 104px;
}

.contact header {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1.65fr);
  gap: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 82px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.contact-grid > div {
  min-height: 190px;
  border-right: 1px solid var(--line-dark);
  padding: 28px 26px 34px 0;
}

.contact-grid > div + div {
  padding-left: 26px;
}

.contact-grid > div:last-child {
  border-right: 0;
}

.contact-grid span {
  color: rgba(255, 255, 255, 0.62);
}

.contact-grid a,
.contact-grid p {
  display: block;
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

.whatsapp-fab {
  position: fixed;
  z-index: 89;
  right: 0;
  bottom: 24px;
  display: inline-grid;
  width: 48px;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-right: 0;
  border-radius: 4px 0 0 4px;
  padding: 12px;
  background: #197b50;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(17, 18, 20, 0.24);
  font-size: 13px;
  font-weight: 750;
  transition: background-color 160ms ease, transform 160ms ease;
}

.whatsapp-fab-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip-path: inset(50%);
  white-space: nowrap;
}

.whatsapp-fab:hover {
  background: #146842;
  transform: translateY(-2px);
}

.whatsapp-fab-mark {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  filter: brightness(0) invert(1);
}

@media (forced-colors: active){.whatsapp-fab-mark{filter:none}}

body.cookie-notice-visible .whatsapp-fab {
  visibility: hidden;
  pointer-events: none;
}

html:not([data-cookie-preference="recorded"]) .whatsapp-fab {
  visibility: hidden;
  pointer-events: none;
}

.cookie-notice {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  width: min(calc(100% - 32px), 1160px);
  min-height: 112px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  border: 1px solid #c9cacc;
  border-radius: 4px;
  padding: 24px 26px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(17, 18, 20, 0.22);
}

html[data-motion="static"] .cookie-notice,
html[data-cookie-preference="recorded"] .cookie-notice {
  display: none;
}

.cookie-notice-copy {
  max-width: 780px;
}

.cookie-notice-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.cookie-notice-copy p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.cookie-notice-copy a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-notice-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-notice-actions .button {
  min-height: 46px;
  padding: 11px 20px;
}

body.menu-open .whatsapp-fab,
body.menu-open .cookie-notice {
  visibility: hidden;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 20px;
  }

  .whatsapp-fab {
    position: static;
    z-index: auto;
    width: 44px;
    min-height: 44px;
    justify-self: end;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    padding: 6px;
    box-shadow: none;
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  min-height: 220px;
  grid-template-columns: auto 1fr minmax(260px, 0.55fr) auto;
  align-items: start;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.footer-grid nav a,
.footer-grid p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.footer-grid nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.footer-grid nav a.footer-email {
  color: var(--white);
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.34);
  text-underline-offset: 4px;
}

.footer-grid nav a.footer-email:hover,
.footer-grid nav a.footer-email:focus-visible {
  text-decoration-color: currentColor;
}

@media (max-width: 900px) {
  .site-header > .brand {
    justify-self: start;
  }

  .whatsapp-fab {
    z-index: 102;
    top: 10px;
    right: 68px;
    bottom: auto;
    width: 44px;
    min-height: 44px;
    border-radius: 50%;
    padding: 6px;
  }

  .cookie-notice {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 20px);
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    margin: calc(var(--header-height) + 10px) 10px 10px;
    padding: 14px;
  }

  .cookie-notice-copy strong {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .cookie-notice-copy p {
    font-size: 13px;
    line-height: 1.45;
  }

  .cookie-notice-actions {
    align-items: center;
  }

  .cookie-notice-actions .button {
    width: auto;
    min-width: 76px;
    padding-right: 14px;
    padding-left: 14px;
  }

  body.cookie-notice-visible main [id] {
    scroll-margin-top: calc(var(--cookie-notice-height, 0px) + 12px);
  }
}

@media (max-width: 360px) {
  .cookie-notice-actions .button {
    min-width: 76px;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
  }

  body.cookie-notice-visible .brand-hero .eyebrow {
    visibility: hidden;
  }
}

.brand-dark .brand-mark {
  background: var(--white);
  color: var(--ink);
}

.noscript-note {
  margin: var(--header-height) 0 0;
  border-bottom: 1px solid var(--line);
  padding: 14px var(--gutter);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  text-align: center;
}

.subpage {
  background: var(--paper);
}

.page-hero {
  position: relative;
  min-height: min(78svh, 760px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero-media,
.page-hero-scrim {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.page-hero-remote .page-hero-media img {
  object-position: center 48%;
}

.page-hero-about .page-hero-media img {
  object-position: center 52%;
}

.page-hero-contact .page-hero-media img {
  object-position: center 45%;
}

.page-hero-scrim {
  background: rgba(0, 0, 0, 0.62);
}

html[data-motion="ready"] .page-hero-media img {
  animation: hero-media-enter 1400ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(78svh, 760px);
  max-width: var(--content-max);
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 76px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.page-hero-content > .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero h1 {
  max-width: 940px;
  margin-top: 22px;
  font-size: 68px;
  font-weight: 500;
  line-height: 1.03;
}

.page-hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.6;
}

.page-hero-content > .button {
  align-self: flex-start;
  margin-top: 34px;
}

.service-jump {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 32px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  scrollbar-width: thin;
}

.service-jump a {
  display: inline-flex;
  min-height: 44px;
  flex: 0 0 auto;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.service-catalog {
  background: var(--paper);
}

.service-chapter {
  display: grid;
  grid-template-columns: 70px minmax(320px, 0.82fr) minmax(360px, 1fr);
  gap: 44px;
  border-bottom: 1px solid var(--line);
  padding-top: 88px;
  padding-bottom: 88px;
  scroll-margin-top: var(--header-height);
}

.chapter-number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.service-chapter h2,
.page-intro h2,
.page-section-heading h2,
.page-cta h2,
.approach-media h2,
.location-band h2 {
  margin-top: 20px;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.12;
}

.service-chapter-copy > p,
.page-intro-grid > p:last-child,
.approach-media-grid > div > p,
.location-grid > div > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-chapter-copy ul {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.service-chapter-copy li {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--muted);
}

.service-chapter-copy .text-action {
  margin-top: 28px;
}

.page-intro {
  padding: 120px 0;
}

.page-intro-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.25fr) minmax(300px, 0.65fr);
  gap: 44px;
}

.principles {
  padding-bottom: 120px;
}

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

.principle-grid article {
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding: 28px 28px 34px 0;
}

.principle-grid article + article {
  padding-left: 28px;
}

.principle-grid article:last-child {
  border-right: 0;
}

.principle-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.principle-grid h2 {
  margin-top: 50px;
  font-size: 26px;
}

.principle-grid p {
  margin-top: 14px;
  color: var(--muted);
}

.approach-media {
  padding: 0;
}

.approach-media-grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(380px, 0.85fr) minmax(0, 1.15fr);
  padding-inline: 0;
}

.approach-media figure {
  min-height: 720px;
  overflow: hidden;
}

.approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
  filter: grayscale(1) contrast(1.04);
}

.approach-media-grid > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 10%;
}

.approach-media-grid > div > p {
  margin-top: 28px;
  color: var(--muted-light);
}

.approach-media-grid .text-action {
  align-self: flex-start;
  margin-top: 36px;
}

.remote-programs {
  padding: 0;
}

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

.remote-program-grid article {
  min-height: 470px;
  border-right: 1px solid var(--line-dark);
  padding: 72px 42px 64px 0;
}

.remote-program-grid article + article {
  padding-left: 42px;
}

.remote-program-grid article:last-child {
  border-right: 0;
}

.remote-program-grid .eyebrow {
  color: var(--signal-on-dark);
}

.remote-program-grid h2 {
  min-height: 104px;
  margin-top: 32px;
  font-size: 30px;
  font-weight: 500;
}

.remote-program-grid ul {
  margin-top: 34px;
}

.remote-program-grid li {
  border-top: 1px solid var(--line-dark);
  padding: 13px 0;
  color: var(--muted-light);
}

.remote-program-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  font-weight: 700;
}

.remote-process,
.contact-directory {
  padding: 120px 0;
}

.page-section-heading {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 40px;
}

.page-section-heading h2 {
  max-width: 760px;
  margin-top: 0;
}

.process-list {
  margin-top: 78px;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  min-height: 128px;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.process-list > li > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.process-list h3 {
  font-size: 24px;
}

.process-list p {
  max-width: 680px;
  margin-top: 8px;
  color: var(--muted);
}

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

.directory-grid article {
  min-height: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 42px 40px 0;
}

.directory-grid article:nth-child(even) {
  border-right: 0;
  padding-left: 42px;
}

.directory-label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.directory-grid article > a:not(.text-action),
.directory-grid .directory-value,
.directory-grid h3:not(.directory-label) {
  display: block;
  margin-top: 34px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
}

.directory-grid article > p:not(.directory-value) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.directory-grid article > span {
  display: block;
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
}

.directory-email {
  display: grid;
  min-height: 128px;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.directory-email > div {
  display: grid;
  gap: 12px;
  padding-right: 42px;
}

.directory-email > div > p,
.directory-email > div > span {
  margin: 0;
}

.directory-email > div > span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.directory-email-link {
  display: flex;
  min-width: 0;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-left: 1px solid var(--line);
  padding-left: 42px;
  color: var(--ink);
}

.directory-email-address {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 28px;
  font-weight: 520;
}

.directory-email-command {
  flex: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.directory-email-link:hover .directory-email-command,
.directory-email-link:focus-visible .directory-email-command {
  color: var(--ink);
}

.location-band {
  padding: 110px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 72px;
}

.location-grid > div > p {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted-light);
}

.location-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
}

.page-cta {
  padding: 110px 0;
}

.page-cta .shell {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: end;
  gap: 44px;
}

.page-cta h2 {
  max-width: 760px;
  margin-top: 0;
}

.page-cta .shell > div {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
}

.page-cta-note {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  :root {
    --gutter: 32px;
    --section-y: 104px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero h1 {
    max-width: 730px;
    font-size: 60px;
  }

  .page-hero h1 {
    font-size: 58px;
  }

  .service-chapter {
    grid-template-columns: 54px minmax(280px, 0.8fr) minmax(340px, 1fr);
    gap: 32px;
  }

  .page-cta .shell {
    grid-template-columns: 130px minmax(0, 1fr) auto;
    gap: 32px;
  }

  .hero-rail-inner {
    grid-template-columns: 1.15fr 1fr 1fr auto;
  }

  .hero-rail-inner > div,
  .hero-rail-inner > a {
    padding: 16px 18px;
  }

  .chapter-heading,
  .chapter-heading.compact,
  .remote-heading {
    grid-template-columns: 130px minmax(0, 1.2fr) minmax(240px, 0.65fr);
    gap: 30px;
  }

  .chapter-heading h2,
  .remote-heading h2,
  .contact h2 {
    font-size: 46px;
  }

  .services {
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  }

  .service-panel {
    padding: 72px 48px;
  }

  .remote-requirements {
    grid-template-columns: repeat(3, 1fr);
  }

  .remote-requirements .button {
    grid-column: 1 / -1;
    justify-self: start;
    margin: 28px 0 0;
  }

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

  .contact-grid > div:nth-child(2) {
    border-right: 0;
  }

  .contact-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .footer-grid {
    grid-template-columns: auto 1fr 1fr;
  }

  .footer-grid > p:last-child {
    grid-column: 3;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
    --gutter: 24px;
    --section-y: 88px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: var(--header-height);
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .menu-toggle[inert] {
    visibility: hidden;
  }

  .menu-close {
    position: fixed;
    z-index: 103;
    top: 10px;
    right: var(--gutter);
    color: var(--white);
  }

  .menu-close span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-close span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    justify-content: space-between;
    overscroll-behavior: contain;
    padding: 104px var(--gutter) 34px;
    background: var(--ink);
    color: var(--white);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    display: flex;
    min-height: 60px;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    font-size: 24px;
    font-weight: 600;
  }

  .hero {
    height: calc(100svh - 32px);
    min-height: 640px;
    max-height: 820px;
  }

  .page-hero,
  .page-hero-content {
    min-height: 720px;
  }

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

  .service-chapter {
    grid-template-columns: 46px minmax(0, 1fr);
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .service-chapter-copy {
    grid-column: 2;
  }

  .page-intro-grid {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .page-intro-grid > p:last-child {
    grid-column: 2;
  }

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

  .principle-grid article:nth-child(2) {
    border-right: 0;
  }

  .principle-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .principle-grid article:nth-child(3) {
    padding-left: 0;
  }

  .approach-media-grid {
    min-height: 0;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .approach-media figure {
    min-height: 620px;
  }

  .remote-program-grid {
    grid-template-columns: 1fr;
  }

  .remote-program-grid article,
  .remote-program-grid article + article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 52px 0;
  }

  .remote-program-grid article:last-child {
    border-bottom: 0;
  }

  .remote-program-grid h2 {
    min-height: 0;
  }

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

  .page-cta .shell > div {
    align-items: flex-start;
    margin-top: 18px;
  }

  .hero-content {
    padding-bottom: 124px;
  }

  .hero h1 {
    max-width: 660px;
    font-size: 52px;
  }

  .hero-lead {
    max-width: 620px;
    font-size: 18px;
  }

  .hero-rail-inner {
    grid-template-columns: 1fr 1fr auto;
  }

  .hero-rail-inner > div:nth-child(3) {
    display: none;
  }

  .chapter-heading,
  .chapter-heading.compact,
  .remote-heading,
  .contact header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .chapter-heading h2,
  .remote-heading h2,
  .contact h2 {
    font-size: 44px;
  }

  .chapter-heading > p:last-child,
  .remote-heading > p:last-child {
    max-width: 650px;
  }

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

  .service-media {
    min-height: 460px;
  }

  .service-panel {
    padding: 72px var(--gutter) 80px;
  }

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

  .remote-grid article,
  .remote-grid article + article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 32px 0 38px;
  }

  .remote-grid article:last-child {
    border-bottom: 0;
  }

  .contact {
    min-height: 820px;
  }

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

  .footer-grid nav {
    justify-content: flex-end;
  }

  .footer-grid > p {
    grid-column: 1 / -1;
  }

  .footer-grid > p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
    --section-y: 72px;
  }

  .site-header {
    padding-inline: var(--gutter);
  }

  .brand-name {
    font-size: 13px;
  }

  .hero {
    height: calc(100svh - 32px);
    min-height: 620px;
    max-height: 760px;
  }

  .page-hero,
  .page-hero-content {
    min-height: calc(100svh - 32px);
  }

  .page-hero-content {
    justify-content: flex-end;
    padding-top: 104px;
    padding-bottom: 72px;
  }

  .breadcrumb {
    margin-bottom: 34px;
  }

  .page-hero h1 {
    margin-top: 18px;
    font-size: 40px;
    line-height: 1.06;
  }

  .page-hero-content > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 16px;
  }

  .page-hero-content > .button {
    width: 100%;
    margin-top: 26px;
  }

  .service-jump {
    gap: 24px;
    margin: 0;
    padding-inline: var(--gutter);
  }

  .service-chapter {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .service-chapter-copy {
    grid-column: 1;
  }

  .service-chapter h2,
  .page-intro h2,
  .page-section-heading h2,
  .page-cta h2,
  .approach-media h2,
  .location-band h2 {
    font-size: 34px;
  }

  .page-intro,
  .remote-process,
  .contact-directory {
    padding: 78px 0;
  }

  .page-intro-grid,
  .page-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-intro-grid > p:last-child {
    grid-column: 1;
  }

  .principles {
    padding-bottom: 78px;
  }

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

  .principle-grid article,
  .principle-grid article + article,
  .principle-grid article:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0 34px;
  }

  .principle-grid h2 {
    margin-top: 28px;
  }

  .approach-media-grid {
    grid-template-columns: 1fr;
  }

  .approach-media figure {
    min-height: 420px;
    max-height: 520px;
  }

  .approach-media-grid > div {
    padding: 64px var(--gutter) 72px;
  }

  .remote-program-grid article,
  .remote-program-grid article + article {
    padding: 44px 0;
  }

  .process-list {
    margin-top: 48px;
  }

  .process-list li {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .directory-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .directory-grid article,
  .directory-grid article:nth-child(even) {
    min-height: 0;
    border-right: 0;
    padding: 30px 0 38px;
  }

  .directory-grid article > a:not(.text-action),
  .directory-grid .directory-value,
  .directory-grid h3:not(.directory-label) {
    font-size: 24px;
  }

  .directory-email {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .directory-email > div {
    padding-right: 0;
  }

  .directory-email-link {
    min-height: 82px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .directory-email-address {
    max-width: 100%;
    overflow-wrap: normal;
    white-space: nowrap;
    font-size: 18px;
  }

  .directory-email-command {
    align-self: flex-start;
  }

  .location-band,
  .page-cta {
    padding: 78px 0;
  }

  .location-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }

  .location-actions,
  .page-cta .shell > div {
    align-items: stretch;
  }

  .remote-fields {
    grid-template-columns: 1fr;
  }

  .remote-fields > label:first-child,
  .remote-fields > label:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
  }

  .authorization-check {
    grid-column: 1;
    padding: 18px 0;
  }

  .hero-media img {
    object-position: center 48%;
  }

  .hero-content {
    justify-content: flex-end;
    padding-top: 104px;
    padding-bottom: 164px;
  }

  .hero-content .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.05;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
  }

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

  .hero-rail {
    min-height: 118px;
  }

  .hero-rail-inner {
    min-height: 118px;
    grid-template-columns: 1fr auto;
  }

  .hero-rail-inner > div,
  .hero-rail-inner > a {
    padding: 16px;
  }

  .hero-rail-inner > div:first-child {
    padding-left: 0;
  }

  .hero-rail-inner > div:nth-child(2),
  .hero-rail-inner > div:nth-child(3) {
    display: none;
  }

  .hero-rail-inner strong {
    max-width: 230px;
    line-height: 1.45;
    text-overflow: clip;
    white-space: normal;
  }

  .hero-rail-inner > a {
    min-width: 104px;
  }

  .chapter-heading h2,
  .remote-heading h2,
  .contact h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .chapter-heading > p:last-child,
  .remote-heading > p:last-child {
    font-size: 16px;
  }

  .service-media {
    min-height: 330px;
  }

  .service-panel h2 {
    font-size: 34px;
  }

  .service-selector {
    margin-top: 42px;
  }

  .service-detail {
    min-height: 300px;
  }

  .remote-grid {
    margin-top: 54px;
  }

  .remote-grid h3 {
    margin-top: 20px;
    font-size: 24px;
  }

  .remote-requirements {
    grid-template-columns: 1fr;
  }

  .remote-requirements > div,
  .remote-requirements > div:first-child {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 16px 0;
  }

  .remote-requirements .button {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }

  .mode-switch {
    display: grid;
    margin-top: 50px;
  }

  .mode-switch button {
    min-width: 0;
    padding: 10px 16px;
  }

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

  .field-grid label,
  .field-grid label:nth-child(odd),
  .field-grid label:nth-child(even) {
    border-right: 0;
    padding: 24px 0;
  }

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

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

  .message-result {
    grid-template-columns: 1fr;
  }

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

  .contact {
    min-height: 900px;
  }

  .contact-content {
    padding-top: 82px;
    padding-bottom: 72px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .contact-grid > div,
  .contact-grid > div + div,
  .contact-grid > div:nth-child(-n + 2) {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 20px 0;
  }

  .contact-grid > div:last-child {
    border-bottom: 0;
  }

  .contact-grid a,
  .contact-grid p {
    margin-top: 18px;
    font-size: 17px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid nav {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .chapter-heading h2,
  .remote-heading h2,
  .contact h2 {
    font-size: 32px;
  }

  .service-panel h2 {
    font-size: 30px;
  }
}

@media (max-width: 360px) and (max-height: 700px) {
  .hero {
    height: 536px;
    min-height: 536px;
  }

  .hero-content {
    padding-top: 78px;
    padding-bottom: 118px;
  }

  .hero-content .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    margin-top: 16px;
  }

  .hero-actions .text-action {
    display: inline-flex;
    min-width: 46px;
    justify-content: center;
    font-size: 13px;
  }

  .hero-actions .button {
    width: auto;
    min-height: 48px;
    flex: 1;
    padding: 12px 14px;
    font-size: 13px;
  }

  .hero-phone .full-label {
    display: none;
  }

  .hero-phone .compact-label {
    display: inline;
  }

  .page-hero,
  .page-hero-content {
    min-height: 536px;
  }

  .page-hero-content {
    padding-top: 80px;
    padding-bottom: 32px;
  }

  .page-hero .breadcrumb {
    display: none;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .page-hero-content > p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 14px;
  }

  .page-hero-content > .button {
    min-height: 48px;
    margin-top: 18px;
    padding: 12px 14px;
  }

  .hero-rail,
  .hero-rail-inner {
    min-height: 94px;
  }

  .hero-rail-inner strong {
    font-size: 12px;
  }
}
html[data-motion="static"] [data-diagnostic-form],
html[data-motion="static"] [data-mode-switch] {
  display: none;
}

.noscript-fallback {
  margin-top: 36px;
  border-top: 1px solid var(--ink);
  padding: 40px 0 44px;
}

.noscript-fallback h3 {
  margin-top: 16px;
  font-size: 32px;
  font-weight: 500;
}

.noscript-fallback > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.noscript-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
}

@media (max-width: 720px) {
  .noscript-fallback {
    margin-top: 28px;
    padding: 32px 0 36px;
  }

  .noscript-fallback h3 {
    font-size: 26px;
  }

  .noscript-fallback-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 24px;
  }

  .noscript-fallback-actions .button {
    width: 100%;
  }
}

.page-hero-services,
.page-hero-services .page-hero-content {
  min-height: min(72svh, 700px);
}

.service-jump a[aria-current] {
  color: var(--signal);
}

.service-catalog {
  padding: 116px 0 132px;
}

.service-catalog-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 44px;
}

.service-catalog-heading h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.12;
}

.service-catalog-heading > p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.service-accordion {
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.service-chapter,
.service-chapter[open] {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 0;
  scroll-margin-top: calc(var(--header-height) + 70px);
}

.service-chapter summary {
  display: grid;
  min-height: 152px;
  grid-template-columns: 70px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 44px;
  cursor: pointer;
  list-style: none;
}

.service-chapter summary::-webkit-details-marker {
  display: none;
}

.service-chapter summary:hover,
.service-chapter summary:focus-visible {
  background: #eeeeeb;
}

.service-summary-copy > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-summary-title {
  display: block;
  max-width: 920px;
  margin-top: 12px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.18;
}

.service-toggle-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  justify-self: end;
}

.service-toggle-icon::before,
.service-toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.service-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-chapter[open] .service-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-chapter-copy {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 72px;
  margin-left: 114px;
  padding: 0 56px 56px 0;
}

.service-chapter-copy > div {
  min-width: 0;
}

.service-chapter-copy ul {
  margin-top: 0;
}

.service-chapter-copy .text-action {
  margin-top: 24px;
}

.page-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.page-hero-actions .button {
  margin: 0;
}

.page-hero-actions .text-action {
  color: var(--white);
}

.directory-grid article > .text-action {
  margin-top: 24px;
  font-size: 14px;
}

.directory-grid article > a.directory-phone-link {
  display:flex;
  min-height: 48px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  font-variant-numeric:tabular-nums;
}

.directory-phone-link > span:first-child {
  white-space: nowrap;
}

.directory-phone-command {
  flex:none;margin-left:auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.remote-trust-band {
  border-bottom: 1px solid var(--line);
}

.remote-trust-band .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.remote-trust-band article {
  display: grid;
  min-height: 142px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: center;
  gap: 10px 20px;
  border-right: 1px solid var(--line);
  padding: 24px 30px 24px 0;
}

.remote-trust-band article + article {
  padding-left: 30px;
}

.remote-trust-band article:last-child {
  border-right: 0;
}

.remote-trust-band span {
  grid-row: 1 / span 2;
  color: var(--signal);
  font-size: 11px;
  font-weight: 700;
}

.remote-trust-band strong {
  font-size: 17px;
}

.remote-trust-band p {
  color: var(--muted);
  font-size: 13px;
}

.remote-program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}

.service-detail-cta-copy > p {
  max-width: 760px;
  color: var(--muted-light);
  line-height: 1.65;
}

.map-band {
  border-top: 1px solid var(--line);
  padding: 108px 0;
}

.map-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: start;
  gap: 44px;
}

.map-heading h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.12;
}

.map-heading > p:last-child {
  color: var(--muted);
  line-height: 1.72;
}

.map-stage {
  position: relative;
  min-height: 380px;
  margin-top: 58px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: #ecece8;
}

.map-placeholder {
  display: grid;
  min-height: 380px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: 48px 56px;
}

.map-placeholder span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-placeholder strong {
  display: block;
  margin-top: 18px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.map-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.map-stage iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.map-handoff {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 32px;
  background: #111214;
  color: #fff;
}

.map-handoff span {
  color: #a9aaac;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-handoff strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 500;
}

.map-handoff a {
  flex: 0 0 auto;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.map-stage iframe[hidden],
.map-placeholder[hidden],
.map-handoff[hidden] {
  display: none;
}

.map-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.remote-intake {
  scroll-margin-top: var(--header-height);
  border-top: 1px solid var(--line);
  padding: 112px 0 124px;
}

.remote-intake-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: start;
  gap: 44px;
}

.remote-intake-heading h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.12;
}

.remote-intake-heading > p:last-child {
  color: var(--muted);
  line-height: 1.72;
}

.remote-intake-heading a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.remote-intake-form {
  margin-top: 64px;
  border-top: 0;
}

.remote-intake .form-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.remote-intake .form-progress button {
  display: grid;
  min-width: 0;
  min-height: 72px;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 14px 22px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.remote-intake .form-progress button:last-child {
  border-right: 0;
}

.remote-intake .form-progress button[aria-current="step"] {
  background: var(--ink);
  color: var(--white);
}

.remote-intake .form-progress button:disabled {
  color: var(--muted);
  cursor: default;
}

.remote-intake .form-progress button span {
  font-size: 11px;
  font-weight: 700;
}

.remote-intake .form-progress button strong {
  font-size: 14px;
}

.remote-intake .form-step[hidden] {
  display: none;
}

.remote-intake .form-step-heading {
  display: grid;
  grid-template-columns: 90px minmax(0, 1.1fr) minmax(240px, 0.7fr);
  align-items: start;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 38px 0 30px;
}

.remote-intake .form-step-heading > span {
  padding-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.remote-intake .form-step-heading h3 {
  font-size: 30px;
  font-weight: 600;
}

.remote-intake .form-step-heading p,
.remote-intake .form-step-actions p {
  color: var(--muted);
  font-size: 13px;
}

.remote-intake-vehicle-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(180px, 0.58fr);
}

.remote-intake-vehicle-grid label,
.remote-intake-vehicle-grid label:nth-child(odd),
.remote-intake-vehicle-grid label:nth-child(even) {
  border-right: 1px solid var(--line);
  padding: 26px 28px;
}

.remote-intake-vehicle-grid label:first-child {
  padding-left: 0;
}

.remote-intake-vehicle-grid label:last-child {
  border-right: 0;
  padding-right: 0;
}

.remote-intake-topic {
  padding: 26px 0;
}

.remote-intake .form-step-actions {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.remote-intake .form-actions {
  display: grid;
  grid-template-columns: auto auto minmax(240px, 1fr);
  align-items: center;
}

.remote-intake .form-actions > p {
  justify-self: end;
  text-align: right;
}

.remote-intake .message-result {
  margin-top: 64px;
}

.operational-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.operational-facts > div {
  display: flex;
  min-width: 0;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 22px 28px;
}

.operational-facts > div:first-child {
  padding-left: 0;
}

.operational-facts > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.operational-facts dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.operational-facts dd {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .operational-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .operational-facts > div,
  .operational-facts > div:first-child,
  .operational-facts > div:last-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 22px 24px;
  }

  .operational-facts > div:nth-child(even) {
    border-right: 0;
    padding-right: 0;
  }

  .operational-facts > div:nth-child(odd) {
    padding-left: 0;
  }

  .operational-facts > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-catalog-heading {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .service-catalog-heading > p:last-child {
    grid-column: 2;
  }

  .service-chapter,
  .service-chapter[open] {
    padding: 0;
  }

  .service-chapter summary {
    min-height: 138px;
    grid-template-columns: 54px minmax(0, 1fr) 40px;
    gap: 24px;
  }

  .service-chapter-copy {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-left: 78px;
    padding-right: 40px;
  }

  .map-heading {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .map-heading > p:last-child {
    grid-column: 2;
  }

  .remote-intake-heading {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .remote-intake-heading > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .page-hero-services,
  .page-hero-services .page-hero-content {
    min-height: min(72svh, 620px);
  }

  .page-hero-services .breadcrumb {
    margin-bottom: 24px;
  }

  .service-jump {
    display: grid;
    min-height: 108px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    overflow: visible;
    padding-inline: 0;
  }

  .service-jump a {
    min-height: 54px;
    justify-content: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 8px;
    font-size: 12px;
    text-align: center;
  }

  .service-jump a:nth-child(3n) {
    border-right: 0;
  }

  .service-catalog {
    padding: 76px 0 84px;
  }

  .service-catalog-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-catalog-heading h2 {
    font-size: 34px;
  }

  .service-catalog-heading > p:last-child {
    grid-column: auto;
  }

  .remote-intake {
    padding: 76px 0 84px;
  }

  .remote-intake-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .remote-intake-heading h2 {
    font-size: 34px;
  }

  .remote-intake-heading > p:last-child {
    grid-column: auto;
  }

  .remote-intake-form {
    margin-top: 44px;
  }

  .remote-intake .form-context {
    min-height: 66px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 4px;
    padding: 11px 14px;
  }

  .remote-intake .form-progress button {
    min-height: 68px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 5px;
    padding: 12px 14px;
  }

  .remote-intake .form-step-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0 24px;
  }

  .remote-intake .form-step-heading > span {
    padding-top: 0;
  }

  .remote-intake .form-step-heading h3 {
    font-size: 25px;
  }

  .remote-intake-vehicle-grid {
    grid-template-columns: 1fr;
  }

  .remote-intake-vehicle-grid label,
  .remote-intake-vehicle-grid label:nth-child(odd),
  .remote-intake-vehicle-grid label:nth-child(even) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
  }

  .remote-intake .form-step-actions,
  .remote-intake .form-actions {
    display: flex;
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding-top: 24px;
  }

  .remote-intake .form-step-actions .button,
  .remote-intake .form-actions .button {
    width: 100%;
  }

  .remote-intake .form-step-actions .text-action,
  .remote-intake .form-actions .text-action {
    min-height: 46px;
    order: 2;
  }

  .remote-intake .form-actions > p {
    order: 3;
    text-align: left;
  }

  .remote-intake .message-result {
    margin-top: 44px;
  }

  .service-accordion {
    margin-top: 48px;
  }

  .service-chapter summary {
    min-height: 130px;
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    gap: 14px;
  }

  .service-summary-copy > span {
    font-size: 10px;
  }

  .service-summary-title {
    margin-top: 9px;
    font-size: 22px;
  }

  .service-toggle-icon {
    width: 22px;
    height: 22px;
  }

  .service-chapter-copy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 0;
    padding: 0 0 42px;
  }

  .page-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

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

  .page-hero-actions .text-action {
    align-self: flex-start;
  }

  .remote-trust-band .shell {
    grid-template-columns: 1fr;
  }

  .remote-trust-band article,
  .remote-trust-band article + article {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }

  .remote-trust-band article:last-child {
    border-bottom: 0;
  }

  .remote-program-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-band {
    padding: 64px 0 72px;
  }

  .map-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .map-heading h2 {
    font-size: 34px;
  }

  .map-heading > p:last-child {
    grid-column: auto;
  }

  .map-stage {
    min-height: 0;
    margin-top: 36px;
  }

  .map-placeholder {
    min-height: 0;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 24px;
    padding: 28px 24px;
  }

  .map-placeholder strong {
    font-size: 24px;
  }

  .map-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .map-actions .button {
    width: 100%;
  }

  .map-stage iframe {
    height: 400px;
  }

  .map-handoff {
    min-height: 132px;
    gap: 16px;
    padding: 18px 20px;
  }

  .map-handoff strong {
    font-size: 15px;
  }

  .map-handoff a {
    flex-basis: 88px;
    font-size: 12px;
    text-align: center;
  }
}

.policy-page .page-hero,
.policy-page .page-hero-content {
  min-height: min(64svh, 620px);
}

.policy-page .page-hero-content {
  max-width: 1040px;
  padding-bottom: 84px;
}

.policy-page .page-hero-content > p:not(.eyebrow) {
  max-width: 780px;
}

.policy-document {
  padding: 104px 0 120px;
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: 72px;
}

.policy-toc {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}

.policy-toc > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.policy-toc nav {
  display: grid;
  margin-top: 14px;
}

.policy-toc a {
  min-height: 44px;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  font-size: 13px;
  font-weight: 650;
}

.policy-copy {
  min-width: 0;
  max-width: 900px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  color: var(--muted);
  font-size: 12px;
}

.policy-copy section {
  scroll-margin-top: calc(var(--header-height) + 28px);
  border-bottom: 1px solid var(--line);
  padding: 46px 0;
}

.policy-copy section:first-of-type {
  padding-top: 54px;
}

.policy-copy section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-copy h2 {
  max-width: 780px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.15;
}

.policy-copy h3 {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
}

.policy-copy p,
.policy-copy li {
  max-width: 820px;
  color: #4f5257;
  font-size: 16px;
  line-height: 1.72;
}

.policy-copy h2 + p,
.policy-copy h3 + p,
.policy-copy p + p,
.policy-copy p + ul,
.policy-copy h2 + ul,
.policy-copy h3 + ul {
  margin-top: 18px;
}

.policy-copy ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 22px;
  list-style: disc;
}

.policy-copy a:not(.button) {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.policy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  text-align: left;
}

.policy-table th,
.policy-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px 16px 0;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.5;
}

.policy-table th {
  color: var(--ink);
  font-weight: 750;
}

.policy-table td {
  color: var(--muted);
}

.policy-callout {
  border-left: 3px solid var(--signal);
  margin-top: 26px;
  padding: 4px 0 4px 20px;
}

.policy-callout strong {
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .policy-toc {
    position: static;
  }

  .policy-toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }
}

@media (max-width: 720px) {
  .directory-grid article > a.directory-phone-link {
    gap: 16px;
    font-size: 20px;
  }

  .policy-page .page-hero,
  .policy-page .page-hero-content {
    min-height: clamp(480px, 70svh, 590px);
  }

  .policy-page .page-hero-content {
    padding-bottom: 48px;
  }

  .policy-document {
    padding: 48px 0 76px;
  }

  .policy-grid {
    gap: 38px;
  }

  .policy-toc nav {
    grid-template-columns: 1fr;
  }

  .policy-copy section {
    padding: 38px 0;
  }

  .policy-copy section:first-of-type {
    padding-top: 44px;
  }

  .policy-copy h2 {
    font-size: 30px;
  }

  .policy-copy p,
  .policy-copy li {
    font-size: 15px;
  }
}

@media (min-width: 361px) and (max-width: 720px) {
  .remote-intake-vehicle-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .remote-intake-vehicle-grid label:first-child {
    border-right: 1px solid var(--line);
    padding-right: 14px;
  }

  .remote-intake-vehicle-grid label:nth-child(2) {
    padding-left: 14px;
  }

  .remote-intake-vehicle-grid label:last-child {
    grid-column: 1 / -1;
    padding: 22px 0;
  }
}

@media (max-width: 360px) {
  .operational-facts {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .operational-facts > div,
  .operational-facts > div:first-child,
  .operational-facts > div:last-child,
  .operational-facts > div:nth-child(even),
  .operational-facts > div:nth-child(odd),
  .operational-facts > div:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }

  .operational-facts > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 360px) and (max-height: 700px) {
  .page-hero-services,
  .page-hero-services .page-hero-content {
    min-height: 536px;
  }

  .service-jump a {
    font-size: 12px;
  }

  .service-summary-title {
    font-size: 20px;
  }

  .page-hero-contact .page-hero-content {
    padding-bottom: 20px;
  }

  .page-hero-contact .page-hero-actions {
    margin-top: 14px;
  }

  .page-hero-contact .page-hero-actions .button {
    min-height: 46px;
  }
}

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

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

  html[data-motion="pending"] .hero-content > *,
  html[data-motion="pending"] .hero-rail {
    opacity: 1;
    transform: none;
  }
}
