/* Community Auto Repair — brand tokens from Brand Guide v1 */
:root {
  --charcoal: #2B2D2F;
  --orange: #FF6A13;
  --white: #FFFFFF;
  --shop-gray: #EEEEEC;
  --steel: #6B6E72;
  --charcoal-2: #35383B;
  --line: #DCDCD8;
  --line-dark: #45484C;
  --text-on-dark: #C9CBCD;

  --font: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1120px;
  --gutter: clamp(16px, 4vw, 32px);
  --radius: 10px;
  color-scheme: light;
}

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

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

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }

.eyebrow {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}
.eyebrow--steel { color: var(--steel); }

.placeholder {
  background: #FFF1E7;
  color: #8A3A08;
  border-radius: 4px;
  padding: 0 0.3em;
  font-weight: 600;
  white-space: nowrap;
}
.on-dark .placeholder { background: #4A3A2F; color: #FFD2B5; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 0.7em 1.4em;
  border-radius: 8px;
  font: 600 0.95rem/1 var(--font);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn--primary { background: var(--orange); color: var(--charcoal); }
.btn--primary:hover { background: #FF7F33; }
.btn--ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn--ghost:hover { background: rgba(255,255,255,0.08); }

/* Header */
.site-header {
  position: sticky;
  top: env(safe-area-inset-top, 0px);
  z-index: 10;
  background: var(--charcoal);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.brand svg { width: 40px; height: 40px; flex: none; }
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__name strong { font-weight: 800; font-size: 1.35rem; letter-spacing: 0.01em; }
.brand__name span {
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--orange);
  margin-top: 5px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a:not(.btn) {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark);
}
.nav a:not(.btn):hover { color: var(--white); }
.nav .btn { min-height: 42px; padding-inline: 1.1em; font-size: 0.85rem; }
@media (max-width: 860px) {
  .nav a:not(.btn) { display: none; }
}

/* Hero */
.hero {
  background: var(--charcoal);
  color: var(--white);
  padding-block: clamp(56px, 8vw, 104px);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__copy { display: grid; gap: 24px; }
.hero__lede { font-size: 1.2rem; color: var(--text-on-dark); max-width: 34em; }
.tagline { display: flex; flex-wrap: wrap; gap: 0 0.45em; font-weight: 800; font-size: clamp(1.25rem, 2.3vw, 1.6rem); }
.tagline span:last-child { color: var(--orange); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__meta { color: var(--text-on-dark); font-size: 0.95rem; }

/* Inspection card: what a customer receives */
.inspect {
  background: var(--white);
  color: var(--charcoal);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  display: grid;
  gap: 16px;
  max-width: 460px;
  margin: 0;
  justify-self: end;
  width: 100%;
}
.inspect__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.inspect__head b { font-weight: 800; font-size: 1.05rem; }
.inspect__head small { color: var(--steel); font-size: 0.85rem; }
.inspect__photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  border-radius: 8px;
  background: var(--shop-gray);
  display: block;
  overflow: hidden;
}
.gauge { display: grid; gap: 8px; }
.gauge__row { display: flex; justify-content: space-between; font-size: 0.9rem; font-variant-numeric: tabular-nums; }
.gauge__row b { font-weight: 700; }
.gauge__bar { position: relative; height: 10px; border-radius: 5px; background: var(--shop-gray); }
.gauge__fill { position: absolute; inset: 0 auto 0 0; width: 25%; border-radius: 5px; background: var(--charcoal); }
.gauge__min { position: absolute; top: -4px; bottom: -4px; left: 16.7%; width: 2px; background: var(--orange); }
.gauge__scale { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--steel); font-variant-numeric: tabular-nums; }
.inspect__note { font-size: 0.95rem; }
.inspect__quote {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-variant-numeric: tabular-nums;
}
.inspect__quote strong { font-size: 1.5rem; font-weight: 800; }
.inspect__quote .btn { min-height: 40px; font-size: 0.8rem; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .inspect { justify-self: start; }
}

/* Sections */
.section { padding-block: clamp(64px, 9vw, 112px); }
.section--gray { background: var(--shop-gray); }
.section__head { display: grid; gap: 14px; max-width: 40em; margin-bottom: clamp(32px, 5vw, 56px); }
.section__head p { color: var(--steel); font-size: 1.1rem; }

/* Promise steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.step {
  background: var(--shop-gray);
  border-top: 4px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 26px 24px 28px;
  display: grid;
  gap: 10px;
  align-content: start;
  counter-increment: step;
}
.step::before {
  content: "Step " counter(step);
  font-weight: 600; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel);
}
.step h3 { font-size: 1.5rem; }
.step p { color: var(--charcoal); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.service {
  padding: 22px 20px 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 6px;
  align-content: start;
}
.service h3 { font-size: 1.15rem; display: flex; gap: 10px; align-items: center; }
.service h3 svg { width: 18px; height: 18px; flex: none; color: var(--orange); }
.service p { color: var(--steel); font-size: 0.98rem; }
.services-note { margin-top: 24px; color: var(--steel); }

/* Voice / plain-English examples */
.plain {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.plain__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 12px;
  align-content: start;
}
.plain__card .label { font-weight: 600; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel); }
.plain__card blockquote { margin: 0; font-size: 1.2rem; font-weight: 500; line-height: 1.45; }
@media (max-width: 760px) { .plain { grid-template-columns: 1fr; } }

/* Safety Day */
.safety { background: var(--charcoal); color: var(--white); }
.safety .wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.badge {
  width: clamp(200px, 26vw, 260px);
  aspect-ratio: 1;
  max-width: 100%;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 10px var(--charcoal), 0 0 0 16px var(--white);
  margin: 16px;
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--charcoal);
  line-height: 0.95;
}
.badge small { font-weight: 600; font-size: 0.7rem; letter-spacing: 0.3em; margin-bottom: 8px; display: block; }
.badge b { font-weight: 800; font-size: clamp(2rem, 3.6vw, 2.6rem); display: block; }
.badge small:last-child { margin: 10px 0 0; }
.safety__copy { display: grid; gap: 20px; }
.safety__copy h2 span { color: var(--orange); }
.checks { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; }
.checks li { display: flex; gap: 10px; align-items: baseline; }
.checks li::before { content: ""; flex: none; width: 12px; height: 7px; border-left: 3px solid var(--orange); border-bottom: 3px solid var(--orange); transform: rotate(-45deg) translateY(-3px); }
.safety__meta { color: var(--text-on-dark); }
@media (max-width: 760px) {
  .safety .wrap { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
}

/* Visit */
.visit { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.facts { display: grid; gap: 0; margin: 0; }
.facts div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding-block: 16px; border-bottom: 1px solid var(--line); }
.facts dt { font-weight: 600; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--steel); padding-top: 3px; }
.facts dd { margin: 0; font-weight: 500; }
.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours td { padding: 4px 0; }
.hours td:last-child { text-align: right; }
.cta-card {
  background: var(--shop-gray);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  display: grid;
  gap: 16px;
}
.cta-card .btn--ghost { color: var(--charcoal); }
.cta-card .btn--ghost:hover { background: rgba(43,45,47,0.06); }
.cta-card__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 760px) {
  .visit { grid-template-columns: 1fr; }
  .facts div { grid-template-columns: 1fr; gap: 4px; }
}

/* Footer */
.site-footer { background: var(--charcoal); color: var(--text-on-dark); padding-block: 40px; font-size: 0.92rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; }
.site-footer .brand__name strong { font-size: 1.1rem; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); }

/* Small screens */
.nav .btn, .btn { white-space: nowrap; }
@media (max-width: 480px) {
  .placeholder { white-space: normal; }
  .brand__name strong { font-size: 1.15rem; }
  .brand svg { width: 34px; height: 34px; }
  .nav .btn { padding-inline: 0.8em; font-size: 0.75rem; letter-spacing: 0.08em; }
  .badge { width: 200px; }
  .hours td:last-child { padding-left: 12px; }
}

@font-face {
  font-family: Barlow;
  src: url("/assets/fonts/Barlow-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Barlow;
  src: url("/assets/fonts/Barlow-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
body {
  font-family: Arial, Helvetica, sans-serif;
}
h1,
h2,
h3,
.brand,
.btn,
.tagline,
.eyebrow {
  font-family: Barlow, Arial, sans-serif;
}
[hidden] {
  display: none !important;
}
.mobile-nav {
  display: none;
}
.page-intro {
  background: var(--gray);
  padding-bottom: 40px;
}
.page-intro .section__head {
  margin-bottom: 0;
}
.section--compact {
  padding-top: 40px;
}
.prose {
  max-width: 850px;
}
.prose > p,
.prose > h2,
.prose > h3,
.prose > form,
.prose > .btn {
  margin-bottom: 24px;
}
.prose p {
  line-height: 1.7;
}
.prose a:not(.btn) {
  color: #a63e00;
}
.faq {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.faq h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-photo {
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.example-label {
  font-size: 0.85rem;
  color: var(--steel);
}
form {
  max-width: 760px;
}
label,
legend {
  font-weight: 600;
}
label {
  display: block;
  margin: 18px 0 7px;
}
input,
select,
textarea,
button {
  font: inherit;
}
input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  border: 1px solid #73777b;
  border-radius: 6px;
  padding: 12px;
  background: white;
  color: #222;
  min-height: 48px;
}
textarea {
  resize: vertical;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid.three {
  grid-template-columns: 0.7fr 1fr 1fr;
}
fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 28px 0;
  padding: 0 20px 22px;
}
legend {
  padding: 0 8px;
}
.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 0 8px;
}
.checkbox input {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 3px;
}
form p {
  margin: 10px 0 18px;
}
form > .btn {
  margin-top: 12px;
}
.field-error {
  display: block;
  color: #aa2020;
  font-size: 0.94rem;
}
.field-error:not(:empty) {
  margin-top: 5px;
}
[aria-invalid="true"] {
  border: 2px solid #aa2020 !important;
}
.notice {
  background: #fff1e7;
  border-left: 4px solid #cb4b00;
  padding: 20px;
  margin: 0 0 24px;
  overflow-wrap: anywhere;
}
.notice h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
:focus-visible {
  outline: 3px solid #007da3;
  outline-offset: 4px;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.65;
  cursor: default;
}
button:not(.btn) {
  padding: 10px 18px;
  border: 1px solid #777;
  border-radius: 6px;
  background: #f2f2f2;
  color: #222;
  margin: 12px 0;
}
#result:empty {
  display: none;
}
#metrics {
  font-size: 0.85rem;
  color: var(--steel);
  margin: 16px 0;
}
.inbox-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  margin: 14px 0;
  overflow-wrap: anywhere;
}
.inbox-card a {
  font-weight: bold;
  font-size: 1.1rem;
}
#detail {
  border-top: 3px solid var(--orange);
  margin-top: 36px;
  padding-top: 24px;
  overflow-wrap: anywhere;
}
#detail:empty {
  display: none;
}
#detail h2,
#detail h3 {
  margin: 20px 0 12px;
}
#detail dt {
  font-weight: bold;
  margin-top: 12px;
}
#detail dd {
  margin: 4px 0;
}
#detail form {
  padding: 20px;
  background: #f5f5f5;
  margin-top: 24px;
}
.customer-message,
.history-entry {
  white-space: pre-wrap;
}
.history-entry {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
code {
  overflow-wrap: anywhere;
}
@media (max-width: 760px) {
  .mobile-nav {
    display: flex;
    gap: 24px;
    padding: 12px 24px;
    background: #202224;
    color: #fff;
    font-size: 0.9rem;
    flex-wrap: wrap;
  }
  .mobile-nav a {
    text-decoration: none;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .form-grid,
  .form-grid.three {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero .wrap {
    min-width: 0;
  }
  .inspect__quote {
    gap: 12px;
  }
  .prose {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
.skip-link {
  position: absolute;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px 20px;
  background: #fff;
  color: #222;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}
.diagnostics-lede {
  font-size: 1.35rem;
  line-height: 1.6;
}
.diagnostic-steps {
  display: grid;
  gap: 18px;
  margin: 28px 0 40px;
}
.diagnostic-steps article {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}
.diagnostic-steps h3 {
  margin: 12px 0;
}
.diagnostic-steps .eyebrow {
  color: #914000;
}
.diagnostic-checklist {
  padding-left: 24px;
  margin: 16px 0 24px;
}
.diagnostic-checklist li {
  margin-bottom: 10px;
}
.prose .notice .btn {
  margin-top: 18px;
}

/* Customer experience: clear hierarchy, quiet surfaces, and the existing shop palette. */
:root {
  --gray: #f5f5f2;
  --steel: #606469;
  --line: #dedfda;
}
html {
  scroll-padding-top: 100px;
}
body {
  background: #fafaf7;
}
main:focus {
  outline: none;
}
.btn {
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0.015em;
  font-size: 1rem;
  min-height: 50px;
  transition:
    background 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  box-shadow: 0 3px 0 #c74e0630;
}
.btn--secondary {
  background: #fff;
  border: 1px solid #c9cbc6;
  color: var(--charcoal);
}
.btn--secondary:hover {
  background: #f1f2ed;
}
.site-header {
  background: #26292b;
  border-color: #ffffff12;
}
.site-header .wrap {
  min-height: 80px;
}
.nav a:not(.btn) {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.94rem;
}
.nav a[aria-current="page"]:not(.btn) {
  color: white;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 9px;
}
.nav .btn {
  font-size: 0.94rem;
  min-height: 44px;
}
.hero {
  background:
    radial-gradient(ellipse at 88% 90%, #4d3a2b55, transparent 52%), #26292b;
  padding-block: clamp(52px, 7vw, 92px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("/assets/images/virginia-outline.svg") no-repeat center;
  background-size: min(1500px, 110vw) auto;
  opacity: 0.2;
  pointer-events: none;
}
.hero__copy {
  gap: 24px;
}
.hero h1 {
  font-size: clamp(3.1rem, 5.5vw, 4.8rem);
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero__lede {
  font-size: 1.075rem;
  line-height: 1.75;
  max-width: 31em;
}
.hero .eyebrow {
  color: #f6a574;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
}
.tagline {
  font-size: 1.2rem;
}
.hero__meta {
  position: relative;
  padding-left: 20px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #b8bdbe;
}
.status-dot {
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px #ff6a1315;
}
.inspect {
  border: 1px solid #ffffff26;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 70px #0003;
}
.inspect__head small {
  padding: 4px 9px;
  border-radius: 6px;
  background: #f1f2ee;
  font-size: 0.73rem;
  white-space: nowrap;
}
.inspect__photo {
  border-radius: 11px;
}
.gauge__fill {
  background: #d45b16;
}
.gauge__bar {
  height: 7px;
}
.inspect__note {
  color: #50555a;
  font-size: 0.9rem;
}
.inspect__quote strong {
  font-family: Barlow, Arial, sans-serif;
  font-size: 1.8rem;
}
.section {
  padding-block: clamp(56px, 7vw, 88px);
}
.section__head .eyebrow,
.section-heading-row .eyebrow {
  color: #a34a16;
  font-size: 0.75rem;
  letter-spacing: 0.17em;
}
.section__head h2 {
  letter-spacing: -0.025em;
}
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 32px;
}
.section-heading-row .section__head {
  margin: 0;
}
.section-heading-row > p {
  font-size: 0.98rem;
  color: var(--steel);
}
.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.concern-card {
  position: relative;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  transition:
    border-color 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
}
.concern-card:hover {
  border-color: #d46c2d;
  box-shadow: 0 9px 25px #2b2d2f0c;
  transform: translateY(-3px);
}
.concern-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #fff1e7;
  color: #a8460e;
  margin-bottom: 27px;
}
.concern-icon svg {
  width: 24px;
  height: 24px;
}
.concern-card h3 {
  font-size: 1.22rem;
  margin-bottom: 9px;
}
.concern-card p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--steel);
}
.card-arrow {
  position: absolute;
  right: 20px;
  top: 24px;
  color: #767b7d;
  font-size: 1.1rem;
}
.concern-footnote {
  font-size: 0.8rem;
  color: var(--steel);
  margin-top: 18px;
}
.process-section {
  padding-top: 0;
}
.process-section .section__head {
  margin-bottom: 28px;
}
.steps {
  gap: 24px;
}
.step {
  border: 0;
  border-top: 1px solid #cfd1cb;
  background: transparent;
  padding: 24px 8px 0 0;
  gap: 12px;
}
.step::before {
  color: #a34a16;
}
.step h3 {
  font-size: 1.3rem;
}
.step p {
  color: var(--steel);
  font-size: 0.95rem;
}
.section--gray {
  background: #eeeeea;
}
.services {
  gap: 12px;
  border: 0;
  grid-template-columns: 1fr;
}
.service {
  padding: 20px 0;
  gap: 10px;
}
.service h3,
.service h2 {
  font-size: 1.3rem;
}
.service a,
.services-note a,
.text-link {
  font-weight: 600;
  text-decoration: none;
  color: #9b410b;
  font-size: 0.93rem;
}
.service a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.feature-photo {
  border-radius: 20px;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.people-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}
.people-grid .section__head {
  margin-bottom: 0;
}
.person-card {
  position: relative;
  display: grid;
  gap: 45px;
  padding: 36px;
  min-height: 320px;
  border-radius: 20px;
  color: white;
  background: #303436;
  overflow: hidden;
}
.person-monogram {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff35;
  border-radius: 50%;
  color: #ffad7b;
  font:
    600 2rem Barlow,
    Arial,
    sans-serif;
}
.person-card h3 {
  margin: 8px 0;
  font-size: 2rem;
}
.person-card p:not(.eyebrow) {
  color: #d1d3d3;
}
.person-card .eyebrow {
  color: #f5a476;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}
.person-mark {
  position: absolute;
  width: 180px;
  right: -34px;
  top: 30px;
  opacity: 0.065;
}
.visit {
  border-top: 1px solid var(--line);
  padding-top: 50px;
}
.people-section + .section {
  padding-top: 0;
}
.cta-card {
  background: #f0f0eb;
  border: 1px solid #e0e1db;
  border-radius: 18px;
}
.cta-card .btn {
  justify-self: start;
}
.site-footer {
  background: #26292b;
  padding-block: 42px;
}
.site-footer nav {
  gap: 12px 20px;
  font-size: 0.83rem;
}
.site-footer .wrap > p {
  width: 100%;
  padding-top: 22px;
  border-top: 1px solid #ffffff18;
  font-size: 0.75rem;
  color: #9fa4a5;
}
.page-intro {
  background: #f2f3ee;
  padding-block: 60px 42px;
}
.section--compact {
  padding-top: 36px;
}
.prose {
  max-width: 850px;
}
.content-page .prose {
  font-size: 1rem;
}
.faq {
  padding: 28px 0;
}

/* One-page inquiry: visible steps without a multi-screen wizard. */
.request-shell {
  padding-block: 48px 80px;
}
.request-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 64px;
}
.request-aside {
  position: sticky;
  top: 116px;
  padding-top: 10px;
}
.back-link {
  display: inline-block;
  color: var(--steel);
  font-size: 0.84rem;
  text-decoration: none;
  margin-bottom: 38px;
}
.request-aside .eyebrow {
  color: #a34a16;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.request-aside h1 {
  font-size: clamp(2.3rem, 4vw, 3.25rem);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.request-aside > p:not(.eyebrow) {
  color: var(--steel);
  font-size: 0.99rem;
}
.request-expect {
  margin-block: 34px;
  border-block: 1px solid var(--line);
  padding-block: 26px;
}
.request-expect h2 {
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.request-expect ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  font-size: 0.9rem;
}
.request-expect li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.request-expect span {
  font:
    600 0.75rem Barlow,
    Arial,
    sans-serif;
  color: #a34a16;
}
.request-aside .opening-note {
  font-size: 0.8rem !important;
  line-height: 1.7;
}
.request-panel {
  background: white;
  border: 1px solid #dedfd9;
  border-radius: 20px;
  box-shadow: 0 8px 32px #2b2d2f06;
  padding: 32px;
  min-width: 0;
}
.request-panel form {
  max-width: none;
}
.form-section {
  padding: 0 0 26px;
  margin: 0 0 26px;
  border: 0;
  border-bottom: 1px solid #e9eae5;
  border-radius: 0;
  min-width: 0;
}
.form-section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.form-section-heading h2 {
  font-size: 1.25rem;
}
.form-section-heading > span,
.section-number {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: #f2f3ee;
  border-radius: 8px;
  font:
    600 0.75rem Barlow,
    Arial,
    sans-serif;
  color: #64696b;
}
.vehicle-fields legend {
  padding: 0;
  font-family: Barlow, Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.section-number {
  margin-right: 9px;
  vertical-align: middle;
}
.optional-word {
  font:
    400 0.75rem Arial,
    sans-serif;
  color: var(--steel);
  margin-left: 10px;
}
.request-panel label {
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 18px;
}
.required-word {
  font-weight: 400;
  font-size: 0.74rem;
  color: #666c6f;
}
.request-panel input:not([type="checkbox"]),
.request-panel textarea,
.request-panel select {
  border: 1px solid #cbd0cd;
  background: #fff;
  border-radius: 9px;
  font-size: 1rem;
  padding: 12px 13px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.request-panel input:focus,
.request-panel textarea:focus,
.request-panel select:focus {
  border-color: #a9470c;
  box-shadow: 0 0 0 3px #ff6a1315;
}
.request-panel .form-grid {
  gap: 12px;
}
.request-panel .field-hint {
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--steel);
  margin: 9px 0 0;
}
.request-panel .concern-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
button.concern-chip {
  margin: 0;
  padding: 8px 12px;
  font-size: 0.77rem;
  font-weight: 500;
  min-height: 44px;
  border-color: #dce0da;
  border-radius: 999px;
  background: #fff;
}
button.concern-chip:hover {
  border-color: #b8612c;
  background: #fff9f3;
}
button.concern-chip[aria-pressed="true"] {
  background: #fff1e7;
  border-color: #c76020;
  color: #8f3707;
}
button.text-button {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.79rem;
  color: #9b410b;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.request-panel .checkbox {
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0;
}
.checkbox input {
  accent-color: #a74812;
}
.request-panel .privacy-note,
.availability-note {
  font-size: 0.74rem;
  color: var(--steel);
  line-height: 1.6;
}
.request-panel .privacy-note a {
  color: #93400f;
}
.request-panel .availability-note {
  padding: 12px 14px;
  background: #f4f5f1;
  border-radius: 8px;
  margin-block: 20px 16px;
}
.submit-button {
  width: 100%;
  justify-content: space-between;
}
button.submit-button:disabled {
  transform: none;
  box-shadow: none;
}
#result.notice {
  border-radius: 10px;
  font-size: 0.92rem;
}
#result.receipt {
  outline: none;
}
.receipt-wrap {
  max-width: 660px;
}
.receipt-card {
  text-align: center;
  padding: 20px 0;
}
.receipt-check {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f1e7;
  color: #356742;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}
.receipt-card .eyebrow {
  color: #356742;
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.receipt-card h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.receipt-card > p:not(.eyebrow) {
  font-size: 0.94rem;
  color: var(--steel);
}
.reference-box {
  text-align: left;
  padding: 18px;
  background: #f3f4ef;
  border-radius: 12px;
  margin-block: 28px;
}
.reference-box label {
  margin: 0 0 8px;
  font-size: 0.8rem;
}
.reference-box textarea {
  font:
    0.8rem ui-monospace,
    monospace !important;
  width: 100%;
}
.reference-box .btn {
  margin-top: 12px;
  min-height: 42px;
  font-size: 0.9rem;
}
#copy-status {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #45644a;
}
.receipt-note {
  padding-bottom: 24px;
  line-height: 1.7;
}
@media (max-width: 1000px) {
  .request-layout {
    gap: 30px;
  }
  .request-panel {
    padding: 26px;
  }
  .people-grid {
    gap: 36px;
  }
}
@media (max-width: 860px) {
  .mobile-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 11px 16px;
    background: #26292b;
    color: #ced1d0;
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
  .mobile-nav a {
    text-decoration: none;
  }
  .mobile-nav a[aria-current] {
    color: #ffb487;
  }
  .hero .wrap {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: start;
  }
  .inspect {
    padding: 16px;
  }
  .concern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .request-layout {
    grid-template-columns: 1fr;
    max-width: 740px;
    gap: 28px;
  }
  .request-aside {
    position: static;
    padding: 0;
  }
  .request-aside h1 br {
    display: none;
  }
  .request-expect {
    display: none;
  }
  .request-aside .opening-note {
    margin-top: 18px;
  }
  .back-link {
    margin-bottom: 22px;
  }
}
@media (max-width: 600px) {
  .site-header .wrap {
    min-height: 70px;
    gap: 12px;
  }
  .brand {
    gap: 9px;
  }
  .brand__name strong {
    font-size: 1.1rem;
  }
  .brand__name span {
    font-size: 0.55rem;
  }
  .nav .btn {
    min-height: 42px;
    font-size: 0.8rem;
    padding-inline: 12px;
    letter-spacing: 0;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero {
    padding-block: 38px 44px;
  }
  .hero::before {
    background-position: center 135px;
    background-size: 130% auto;
    opacity: 0.15;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 3.65rem);
  }
  .hero__copy {
    gap: 20px;
  }
  .hero__lede {
    font-size: 1rem;
  }
  .hero__actions {
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
  }
  .hero__actions .btn {
    font-size: 0.9rem;
    padding-inline: 14px;
  }
  .inspect {
    max-width: none;
    padding: 18px;
  }
  .section-heading-row {
    display: block;
  }
  .section-heading-row > p {
    margin-top: 18px;
    font-size: 0.9rem;
  }
  .concern-grid {
    gap: 10px;
  }
  .concern-card {
    padding: 18px 14px;
    border-radius: 13px;
  }
  .concern-card h3 {
    font-size: 1.12rem;
  }
  .concern-card p {
    font-size: 0.77rem;
  }
  .concern-icon {
    margin-bottom: 22px;
  }
  .card-arrow {
    right: 14px;
    top: 18px;
  }
  .steps {
    gap: 24px;
  }
  .step {
    padding-top: 18px;
  }
  .people-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .person-card {
    min-height: 260px;
    padding: 28px;
    gap: 28px;
  }
  .feature-photo {
    aspect-ratio: 4/3;
  }
  .visit {
    padding-top: 36px;
  }
  .request-shell {
    padding-block: 26px 48px;
  }
  .request-aside h1 {
    font-size: 2.35rem;
  }
  .request-panel {
    padding: 22px 18px;
    border-radius: 16px;
  }
  .request-panel .form-grid.three {
    grid-template-columns: 0.7fr 1fr 1fr;
    gap: 9px;
  }
  .request-panel .form-grid input {
    padding-inline: 9px;
  }
  .form-section {
    margin-bottom: 22px;
    padding-bottom: 22px;
  }
  .receipt-card h1 {
    font-size: 1.8rem;
  }
  .reference-box {
    padding: 12px;
  }
}
@media (max-width: 360px) {
  .brand__name strong {
    font-size: 0.96rem;
  }
  .brand svg {
    width: 29px;
  }
  .nav .btn {
    padding-inline: 9px;
    font-size: 0.76rem;
  }
  .request-panel .form-grid.three {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .concern-card:hover {
    transform: none;
  }
}
#contact-fields {
  display: flex;
  flex-direction: column;
}
[data-contact-requirement] {
  font-size: 0.74rem;
  color: var(--steel);
  font-weight: 400;
}
.error-links {
  padding-left: 20px;
  margin: 10px 0 0;
  font-size: 0.85rem;
}
.error-links li {
  margin-top: 6px;
}
.error-links a {
  color: #8d3509;
  text-underline-offset: 3px;
}
input,
textarea,
select,
#result {
  scroll-margin-top: 105px;
}

.reference-box textarea {
  resize: none;
  overflow-wrap: anywhere;
  line-height: 1.5;
}
.request-shell.is-complete .request-aside {
  display: none;
}
.request-shell.is-complete .request-layout {
  display: block;
  max-width: 660px;
}
@media (max-width: 360px) {
  .hero__actions .btn {
    width: 100%;
  }
}

/* Service and information pages share the same customer-facing visual system. */
body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}
.breadcrumbs {
  width: 100%;
  padding-top: 22px;
  padding-bottom: 14px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  color: var(--steel);
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumbs li + li::before {
  content: "/";
  color: #979d9d;
}
.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #9b410b;
  text-decoration: underline;
}
.breadcrumbs [aria-current] {
  color: #3e4447;
}
.service-hero {
  padding-block: 24px 70px;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 60px;
}
.service-hero .eyebrow {
  color: #a34a16;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  margin-bottom: 24px;
}
.service-hero h1 {
  font-size: clamp(2.7rem, 4.6vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.07;
}
.service-hero h1 span {
  color: #696d6b;
}
.service-hero-lede {
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 24px 0 28px;
  max-width: 35em;
}
.service-status {
  position: relative;
  margin-top: 22px;
  padding-left: 18px;
  font-size: 0.78rem;
  color: var(--steel);
  max-width: 32em;
}
.service-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #2d3133;
  box-shadow: 0 18px 40px #25292812;
}
.service-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.16;
  object-fit: cover;
}
.service-visual figcaption {
  padding: 21px 24px;
  display: grid;
  gap: 5px;
  color: white;
}
.service-visual figcaption span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8bebc;
}
.service-visual figcaption strong {
  font:
    600 1.1rem Barlow,
    Arial,
    sans-serif;
}
.service-options {
  background: #eeefe9;
}
.service-options .section__head {
  max-width: 27em;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.service-detail {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: white;
  border: 1px solid #dfe2da;
  border-radius: 20px;
}
.service-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.service-detail-top svg {
  width: 31px;
  height: 31px;
  color: #a54c18;
}
.service-number {
  font:
    600 0.82rem Barlow,
    Arial,
    sans-serif;
  color: #737a78;
  letter-spacing: 0.08em;
}
.service-detail h3 {
  font-size: 1.85rem;
  max-width: 15em;
  margin-bottom: 18px;
}
.service-detail > p {
  color: #606868;
  font-size: 0.98rem;
  line-height: 1.75;
}
.service-detail-note {
  padding-block: 24px;
  margin: 24px 0;
  border-block: 1px solid #e2e4df;
}
.service-detail-note .eyebrow {
  font-size: 0.7rem;
  color: #965023;
  letter-spacing: 0.12em;
}
.service-detail-note p {
  margin-top: 10px;
  font-size: 0.91rem;
  line-height: 1.7;
  color: #606868;
}
.service-detail > .text-link {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  gap: 18px;
}
.service-detail--dark {
  background: #2d3133;
  border-color: #2d3133;
  color: white;
}
.service-detail--dark > p,
.service-detail--dark .service-detail-note p {
  color: #c3c9c8;
}
.service-detail--dark .service-number {
  color: #b8c1be;
}
.service-detail--dark .service-detail-top svg,
.service-detail--dark .eyebrow,
.service-detail--dark .text-link {
  color: #ffb385;
}
.service-detail--dark .service-detail-note {
  border-color: #ffffff24;
}
.service-coverage {
  max-width: 60em;
  margin-top: 22px;
  font-size: 0.8rem;
  color: #5c6463;
}
.inquiry-bridge .section__head {
  max-width: 33em;
}
.compact-concerns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.compact-concerns a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  text-decoration: none;
  font:
    600 0.96rem Barlow,
    Arial,
    sans-serif;
  border: 1px solid #d8ddd5;
  border-radius: 12px;
  background: #fff;
  transition:
    border-color 0.18s,
    background 0.18s;
}
.compact-concerns a:hover {
  background: #fff5ed;
  border-color: #c77948;
}
.compact-concerns svg {
  width: 24px;
  height: 24px;
  flex: none;
  color: #a34a16;
}
.compact-concerns a > span:last-child {
  margin-left: auto;
  color: #7b8481;
}
.help-layout-section {
  padding-top: 28px;
}
.help-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 72px;
}
.help-intro {
  position: sticky;
  top: 120px;
}
.help-intro .eyebrow {
  color: #a34a16;
  font-size: 0.75rem;
  margin-bottom: 20px;
}
.help-intro h1 {
  font-size: clamp(2.7rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
}
.help-intro > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--steel);
  line-height: 1.75;
}
.help-callout {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f0f2eb;
}
.help-callout h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.help-callout p {
  font-size: 0.88rem;
  color: var(--steel);
  margin-bottom: 12px;
}
.question-list {
  border-top: 1px solid #d5dbd2;
}
.question {
  border-bottom: 1px solid #d5dbd2;
}
.question summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 2px;
  cursor: pointer;
  list-style: none;
}
.question summary::-webkit-details-marker {
  display: none;
}
.question h2 {
  font-size: 1.18rem;
  line-height: 1.4;
  text-wrap: initial;
}
.question-toggle {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ecefe7;
  flex: none;
}
.question-toggle::before,
.question-toggle::after {
  content: "";
  position: absolute;
  background: #555e58;
  width: 10px;
  height: 1.5px;
  left: 8px;
  top: 12px;
}
.question-toggle::after {
  transform: rotate(90deg);
  transition: transform 0.15s;
}
.question[open] .question-toggle {
  background: #ffe8d8;
}
.question[open] .question-toggle::after {
  transform: rotate(0);
}
.question-answer {
  padding: 0 36px 24px 2px;
  color: #596362;
  font-size: 0.96rem;
  line-height: 1.8;
}
.question summary:hover h2 {
  color: #965023;
}
.opening-section {
  padding-top: 24px;
}
.opening-heading {
  max-width: 720px;
  margin-bottom: 44px;
}
.opening-heading .eyebrow {
  color: #a34a16;
  font-size: 0.75rem;
  margin-bottom: 20px;
}
.opening-heading h1 {
  font-size: clamp(2.7rem, 4.6vw, 4rem);
  letter-spacing: -0.025em;
}
.opening-heading > p:not(.eyebrow) {
  margin-top: 24px;
  max-width: 36em;
  color: var(--steel);
  line-height: 1.75;
}
.opening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.location-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #2d3133;
  color: white;
  padding: 36px;
  border-radius: 20px;
  overflow: hidden;
}
.location-symbol {
  font-size: 3.5rem;
  color: #ffa46b;
  line-height: 1;
  margin-bottom: 55px;
}
.location-card .eyebrow {
  color: #c4cac6;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.location-card h2 {
  max-width: 10em;
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.location-card > p:not(.eyebrow) {
  font-size: 0.95rem;
  color: #c4cac6;
  max-width: 28em;
}
.location-card-bottom {
  margin-top: auto;
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #e0e2df;
}
.location-card-bottom span {
  color: #ffad79;
}
.opening-facts article {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #d9ded5;
}
.opening-facts article:first-child {
  padding-top: 0;
}
.opening-facts h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.opening-facts p {
  color: #5d6563;
  font-size: 0.96rem;
  line-height: 1.75;
}
.fact-number {
  font:
    600 0.8rem Barlow,
    Arial,
    sans-serif;
  color: #995325;
}
.opening-facts > .btn {
  margin-top: 28px;
}
@media (max-width: 950px) {
  .service-hero-grid {
    gap: 32px;
  }
  .service-hero h1 {
    font-size: 3rem;
  }
  .help-layout,
  .opening-grid {
    gap: 36px;
  }
  .compact-concerns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .service-hero-grid,
  .help-layout,
  .opening-grid {
    grid-template-columns: 1fr;
  }
  .service-hero {
    padding-block: 14px 44px;
  }
  .service-hero h1 {
    font-size: clamp(2.5rem, 8.5vw, 3.5rem);
  }
  .service-hero .eyebrow {
    margin-bottom: 18px;
  }
  .service-hero-grid {
    gap: 32px;
  }
  .service-visual img {
    aspect-ratio: 16/10;
  }
  .service-visual figcaption {
    padding: 16px 20px;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-detail {
    padding: 26px;
  }
  .service-detail h3 {
    font-size: 1.65rem;
  }
  .service-detail-top {
    margin-bottom: 25px;
  }
  .help-intro {
    position: static;
  }
  .help-layout {
    gap: 32px;
  }
  .help-callout {
    margin-top: 24px;
    padding: 20px;
  }
  .help-layout-section {
    padding-top: 18px;
  }
  .help-intro h1 {
    font-size: 2.7rem;
  }
  .opening-section {
    padding-top: 18px;
  }
  .opening-heading {
    margin-bottom: 32px;
  }
  .opening-heading h1 {
    font-size: 2.7rem;
  }
  .location-card {
    padding: 28px;
  }
  .location-symbol {
    margin-bottom: 32px;
  }
  .location-card h2 {
    font-size: 2.3rem;
  }
  .location-card-bottom {
    padding-top: 30px;
  }
  .opening-facts article {
    gap: 18px;
  }
}
@media (max-width: 400px) {
  .compact-concerns {
    grid-template-columns: 1fr;
  }
  .service-detail {
    padding: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .question-toggle::after,
  .compact-concerns a {
    transition: none;
  }
}
@media (forced-colors: active) {
  .question-toggle {
    border: 1px solid ButtonText;
  }
  .question-toggle::before,
  .question-toggle::after {
    background: ButtonText;
  }
  :focus-visible {
    outline-color: Highlight;
  }
}
.help-layout {
  grid-template-rows: auto 1fr;
  column-gap: 72px;
  row-gap: 28px;
}
.help-layout .help-intro {
  grid-column: 1;
  grid-row: 1;
  position: static;
}
.help-layout .question-list {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.help-layout .help-callout {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
  align-self: start;
}
@media (max-width: 950px) {
  .help-layout {
    column-gap: 36px;
  }
}
@media (max-width: 760px) {
  .help-layout {
    grid-template-rows: auto;
    gap: 28px;
  }
  .help-layout .help-intro,
  .help-layout .question-list,
  .help-layout .help-callout {
    grid-column: auto;
    grid-row: auto;
  }
}
