:root {
  --ink: #101b2b;
  --ink-soft: #40506a;
  --blue: #12367a;
  --blue-bright: #1d52b7;
  --blue-deep: #0b244f;
  --lime: #d8f65a;
  --lime-soft: #edf9b8;
  --paper: #f4f1e9;
  --surface: #ffffff;
  --line: #ccd3df;
  --muted: #637086;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 36, 79, .14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  margin: 0;
  overflow-wrap: break-word;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body,
input,
textarea,
button {
  font-size: 17px;
}

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

a {
  color: inherit;
}

p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -.035em;
  line-height: 1.04;
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 7.1rem);
  margin-bottom: 28px;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.7rem);
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  margin-bottom: 14px;
}

.skip-link {
  background: var(--lime);
  color: var(--blue-deep);
  font-weight: 800;
  left: 18px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  background: rgba(255, 255, 255, .97);
  border-bottom: 4px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 26px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: 1480px;
  min-height: 88px;
  padding: 12px 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  text-decoration: none;
}

.brand strong {
  color: var(--blue-deep);
  font-size: 1.22rem;
}

.brand span {
  color: var(--blue-bright);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  margin-top: 7px;
  text-transform: uppercase;
}

.nav-list {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--ink);
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-list a:hover {
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-call {
  background: var(--blue);
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
  padding: 11px 18px;
  text-decoration: none;
  white-space: nowrap;
}

main > section {
  margin: 0 auto;
  max-width: 1480px;
  padding: 110px 32px;
  width: 100%;
}

.hero {
  align-items: center;
  background: var(--blue);
  color: var(--white);
  display: grid;
  gap: clamp(42px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  max-width: none;
  min-height: calc(100vh - 88px);
  padding-right: max(32px, calc((100vw - 1416px) / 2));
  padding-left: max(32px, calc((100vw - 1416px) / 2));
}

.hero-copy,
.hero-media {
  min-width: 0;
}

.hero-copy > p:not(.overline) {
  color: #e1e9f7;
  max-width: 720px;
}

.hero-lead {
  color: var(--white) !important;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.48;
}

.overline {
  color: var(--lime);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.overline-blue {
  color: var(--blue-bright);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font: inherit;
  font-weight: 850;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  text-align: center;
  text-decoration: none;
}

.button-lime {
  background: var(--lime);
  color: var(--blue-deep);
}

.button-lime:hover {
  background: var(--white);
}

.button-outline {
  border-color: rgba(255, 255, 255, .7);
  color: var(--white);
}

.button-outline:hover {
  background: var(--white);
  color: var(--blue-deep);
}

.hero-media {
  margin: 0;
  padding: 18px 0 42px;
  position: relative;
}

.hero-image-frame {
  background: var(--lime);
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  padding: 14px;
}

.hero-image-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.hero-media figcaption {
  background: var(--surface);
  bottom: 0;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  left: 8%;
  max-width: 82%;
  padding: 20px 22px 20px 66px;
  position: absolute;
}

.hero-media figcaption span {
  align-items: center;
  background: var(--lime);
  color: var(--blue-deep);
  display: flex;
  font-weight: 900;
  inset: 0 auto 0 0;
  justify-content: center;
  position: absolute;
  width: 50px;
}

.nap-band {
  align-items: stretch;
  background: var(--lime);
  color: var(--blue-deep);
  display: grid;
  grid-template-columns: 1.05fr 1.7fr .65fr;
  margin: 0;
  padding: 0 max(32px, calc((100vw - 1416px) / 2));
}

.nap-band > div {
  border-right: 1px solid rgba(11, 36, 79, .28);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 24px 30px;
}

.nap-band > div:first-child {
  border-left: 1px solid rgba(11, 36, 79, .28);
}

.nap-band strong,
.nap-band a {
  font-weight: 850;
  line-height: 1.3;
}

.nap-label {
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.section-heading {
  max-width: 930px;
}

.section-heading > p:not(.overline),
.decision-intro > p:not(.overline) {
  color: var(--ink-soft);
  font-size: 1.12rem;
  max-width: 740px;
}

.section-heading-wide {
  max-width: 1100px;
}

.system-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 58px;
}

.system-card {
  background: var(--surface);
  border: 1px solid var(--line);
  min-width: 0;
  padding: clamp(30px, 4vw, 54px);
}

.system-card + .system-card {
  border-left: 0;
}

.system-card p {
  color: var(--ink-soft);
}

.system-card ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.system-card li {
  border-top: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 750;
  padding-top: 10px;
}

.card-number {
  align-items: center;
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-weight: 900;
  height: 50px;
  justify-content: center;
  margin-bottom: 32px;
  width: 50px;
}

.system-card-blue {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.system-card-blue p {
  color: #dae5f7;
}

.system-card-blue li {
  border-color: rgba(255, 255, 255, .24);
}

.system-card-blue .card-number {
  background: var(--lime);
  color: var(--blue-deep);
}

.system-card-lime {
  background: var(--lime-soft);
}

.system-card-lime .card-number {
  background: var(--blue-deep);
}

.safety-note {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr;
  margin-top: 24px;
  padding: 24px 30px;
}

.safety-note strong {
  color: var(--lime);
  font-size: 1.08rem;
}

.safety-note p {
  margin: 0;
}

.access-section {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  max-width: none;
  padding: 0;
}

.access-image {
  background: var(--blue-deep);
  color: var(--white);
  min-width: 0;
  padding: max(32px, calc((100vw - 1416px) / 2)) clamp(28px, 5vw, 74px);
}

.access-image img {
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}

.access-image p {
  color: #dfe8f7;
  font-weight: 750;
  margin: 26px 0 0;
  max-width: 620px;
}

.access-copy {
  background: var(--surface);
  padding: 100px max(32px, calc((100vw - 1416px) / 2)) 100px clamp(36px, 7vw, 110px);
}

.access-list {
  display: grid;
  margin-top: 42px;
}

.access-list article {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 45px 1fr;
  padding: 24px 0;
}

.access-list article > span {
  color: var(--blue-bright);
  font-size: .82rem;
  font-weight: 900;
}

.access-list h3 {
  margin-bottom: 8px;
}

.access-list p {
  color: var(--ink-soft);
  margin: 0;
}

.garage-lab-section {
  display: grid;
  gap: clamp(36px, 7vw, 100px);
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  max-width: none;
  color: var(--white);
  background: var(--blue-deep);
  padding-right: max(32px, calc((100vw - 1416px) / 2));
  padding-left: max(32px, calc((100vw - 1416px) / 2));
}

.garage-lab-copy h2 {
  color: var(--white);
}

.garage-lab-copy > p:not(.overline) {
  color: #d6e0ef;
}

.garage-lab-copy strong {
  color: var(--lime);
}

.garage-lab-board {
  align-self: center;
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
  background: var(--surface);
  border-top: 10px solid var(--lime);
}

.lab-maker-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1px;
  background: var(--blue);
  border: 1px solid var(--blue);
}

.lab-maker-grid span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 10px 6px;
  background: #f7f9fd;
  font-size: clamp(.85rem, 1.5vw, 1.1rem);
  font-weight: 900;
  text-align: center;
}

.lab-maker-grid span:nth-child(3n + 2) {
  background: var(--lime-soft);
}

.lab-maker-note {
  margin: 24px 0 0;
  padding-left: 15px;
  color: var(--ink-soft);
  border-left: 5px solid var(--blue-bright);
  font-size: .8rem;
}

.lab-maker-note strong {
  color: var(--blue-deep);
}

.process-section {
  background: var(--blue-deep);
  color: var(--white);
  max-width: none;
  padding-right: max(32px, calc((100vw - 1416px) / 2));
  padding-left: max(32px, calc((100vw - 1416px) / 2));
}

.process-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  margin: 60px 0 0;
  padding: 0;
}

.process-list li {
  border-left: 1px solid rgba(255, 255, 255, .22);
  min-width: 0;
  padding: 0 clamp(18px, 2.5vw, 34px) 10px;
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li > span {
  color: var(--lime);
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 50px;
}

.process-list h3 {
  color: var(--white);
}

.process-list p {
  color: #cbd7ea;
  font-size: .92rem;
}

.decision-section {
  display: grid;
  gap: 22px;
  grid-template-columns: 1.1fr .95fr .95fr;
}

.decision-intro {
  padding-right: clamp(10px, 4vw, 55px);
}

.decision-card {
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 48px);
}

.decision-card ul {
  display: grid;
  gap: 17px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.decision-card li {
  padding-left: 27px;
  position: relative;
}

.decision-card li::before {
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.decision-repair {
  background: var(--blue);
  color: var(--white);
}

.decision-repair li::before {
  color: var(--lime);
}

.decision-renew {
  background: var(--lime);
  color: var(--blue-deep);
}

.location-section {
  align-items: center;
  background: var(--blue);
  color: var(--white);
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
  max-width: none;
  padding-right: max(32px, calc((100vw - 1416px) / 2));
  padding-left: max(32px, calc((100vw - 1416px) / 2));
}

.location-copy > p:not(.overline) {
  color: #dbe5f6;
  max-width: 680px;
}

.location-card {
  background: var(--surface);
  box-shadow: 18px 18px 0 var(--lime);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  font-style: normal;
  padding: clamp(32px, 5vw, 58px);
}

.location-kicker {
  color: var(--blue-bright);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.location-card strong {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.location-card a {
  color: var(--blue);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 900;
  margin-top: 26px;
  overflow-wrap: anywhere;
}

.local-opinions-section {
  display: grid;
  gap: clamp(42px, 8vw, 120px);
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
}

.local-opinions-copy > p:not(.overline) {
  max-width: 690px;
  color: var(--ink-soft);
}

.opinion-standard {
  border-top: 3px solid var(--blue);
}

.opinion-standard article {
  display: grid;
  gap: 22px;
  grid-template-columns: 46px minmax(0, 1fr);
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.opinion-standard article > span {
  color: var(--blue-bright);
  font-size: .8rem;
  font-weight: 900;
}

.opinion-standard h3 {
  margin-bottom: 7px;
}

.opinion-standard p {
  margin: 0;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 3px solid var(--blue);
  margin-top: 52px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 850;
  list-style: none;
  padding: 25px 54px 25px 0;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--blue-bright);
  content: "+";
  font-size: 2rem;
  font-weight: 500;
  position: absolute;
  right: 4px;
  top: 15px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  color: var(--ink-soft);
  max-width: 900px;
  padding: 0 52px 25px 0;
}

.contact-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: clamp(48px, 8vw, 120px);
  grid-template-columns: minmax(0, .78fr) minmax(440px, 1.22fr);
  max-width: none;
  padding-right: max(32px, calc((100vw - 1416px) / 2));
  padding-left: max(32px, calc((100vw - 1416px) / 2));
}

.contact-copy > p:not(.overline) {
  color: #cad3e0;
}

.contact-phone {
  color: var(--lime);
  display: inline-block;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin: 18px 0 28px;
}

.contact-copy address {
  color: #d9e0ea;
  font-style: normal;
}

.contact-form {
  background: var(--surface);
  border-top: 9px solid var(--lime);
  color: var(--ink);
  padding: clamp(28px, 5vw, 58px);
}

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

.form-field {
  display: grid;
  gap: 7px;
  margin-bottom: 18px;
  min-width: 0;
}

.form-field label {
  font-size: .9rem;
  font-weight: 850;
}

.form-field label span {
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  background: #f8f9fc;
  border: 1px solid #aeb9ca;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  max-width: 100%;
  padding: 13px 14px;
  width: 100%;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(29, 82, 183, .18);
  outline: none;
}

.honeypot {
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.legal-row {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 24px 1fr;
  margin-top: 8px;
}

.legal-row input {
  height: 22px;
  margin: 3px 0 0;
  width: 22px;
}

.legal-row label {
  color: var(--muted);
  font-size: .88rem;
}

.legal-row a {
  color: var(--blue);
}

.submit-button {
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  margin-top: 24px;
  width: 100%;
}

.submit-button:hover {
  background: var(--blue-deep);
}

.form-status {
  background: var(--lime-soft);
  border: 1px solid #a6bd3e;
  color: var(--blue-deep);
  margin: 18px 0 0;
  padding: 13px 15px;
}

.site-footer {
  align-items: center;
  background: #07162f;
  color: #d9e0ea;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding: 36px max(32px, calc((100vw - 1416px) / 2));
}

.site-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer a {
  font-weight: 800;
}

.mobile-call {
  display: none;
}

.not-found {
  align-items: center;
  background: var(--blue);
  display: grid;
  min-height: 100vh;
  padding: 36px 20px;
}

.not-found-card {
  background: var(--surface);
  box-shadow: 18px 18px 0 var(--lime);
  margin: 0 auto;
  max-width: 760px;
  padding: clamp(34px, 7vw, 76px);
  text-align: center;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  box-shadow: 0 0 0 6px var(--blue-deep);
  outline: 3px solid var(--lime);
  outline-offset: 2px;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 18px;
  }

  .nav-list {
    gap: 15px;
  }

  .nav-list a {
    font-size: .8rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  }

  .process-list {
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-list li {
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    padding-top: 28px;
  }

  .process-list li > span {
    margin-bottom: 25px;
  }

  .decision-section {
    grid-template-columns: 1fr 1fr;
  }

  .decision-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 136px;
  }

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

  .header-inner nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .nav-list {
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
  }

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

  .hero-media {
    max-width: 760px;
  }

  .nap-band {
    grid-template-columns: 1fr;
    padding: 0 32px;
  }

  .nap-band > div,
  .nap-band > div:first-child {
    border: 0;
    border-bottom: 1px solid rgba(11, 36, 79, .28);
    padding: 18px 0;
  }

  .nap-band > div:last-child {
    border-bottom: 0;
  }

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

  .garage-lab-section,
  .local-opinions-section {
    grid-template-columns: 1fr;
  }

  .garage-lab-board {
    max-width: 820px;
  }

  .system-card + .system-card {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .access-section,
  .location-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .access-image {
    padding: 80px 32px 50px;
  }

  .access-copy {
    padding: 80px 32px;
  }

  .location-card {
    max-width: 720px;
  }

  .contact-section {
    gap: 55px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  }

  body,
  input,
  textarea,
  button {
    font-size: 16px;
  }

  .header-inner {
    min-height: 78px;
    padding: 12px 18px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand span {
    font-size: .61rem;
  }

  .header-call {
    font-size: .8rem;
    padding: 9px 11px;
  }

  .nav-list {
    gap: 7px 15px;
  }

  .nav-list a {
    font-size: .73rem;
  }

  main > section {
    padding: 76px 18px;
  }

  h1 {
    font-size: clamp(2.6rem, 13.5vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

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

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

  .hero-image-frame {
    clip-path: none;
    padding: 8px;
  }

  .hero-media figcaption {
    left: 14px;
    max-width: calc(100% - 28px);
  }

  .nap-band {
    padding: 0 18px;
  }

  .system-grid {
    margin-top: 38px;
  }

  .system-card {
    padding: 32px 24px;
  }

  .safety-note {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 23px;
  }

  .access-image {
    padding: 72px 18px 42px;
  }

  .access-copy {
    padding: 72px 18px;
  }

  .garage-lab-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .garage-lab-board {
    padding: 28px 20px;
  }

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

  .lab-maker-grid span {
    min-height: 68px;
  }

  .lab-maker-grid span:nth-child(3n + 2) {
    background: #f7f9fd;
  }

  .lab-maker-grid span:nth-child(4n + 2),
  .lab-maker-grid span:nth-child(4n + 3) {
    background: var(--lime-soft);
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    border-left: 0;
    padding: 25px 0;
  }

  .process-list li > span {
    margin-bottom: 16px;
  }

  .decision-section {
    grid-template-columns: 1fr;
  }

  .decision-intro {
    grid-column: auto;
  }

  .location-card {
    box-shadow: 10px 10px 0 var(--lime);
    padding: 32px 24px;
  }

  .opinion-standard article {
    gap: 15px;
    grid-template-columns: 38px minmax(0, 1fr);
  }

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

  .contact-form {
    padding: 28px 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 18px;
  }

  .site-footer > div {
    flex-direction: column;
  }

  .mobile-call {
    align-items: center;
    background: var(--blue-bright);
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 12px 35px rgba(7, 22, 47, .36);
    color: var(--white);
    display: flex;
    font-weight: 900;
    justify-content: center;
    left: 10px;
    min-height: 54px;
    padding: 12px 18px;
    position: fixed;
    right: 10px;
    text-decoration: none;
    z-index: 40;
  }
}

@media (max-width: 390px) {
  .header-inner {
    gap: 11px;
  }

  .header-call {
    font-size: .72rem;
  }

  .nav-list {
    gap: 6px 12px;
  }

  .hero-media figcaption {
    padding: 16px 16px 16px 58px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
