:root {
  --ink: #08090d;
  --ink-2: #11131a;
  --panel: #171922;
  --paper: #f5f6f8;
  --white: #ffffff;
  --muted: #68707b;
  --line: #d9dde3;
  --line-dark: #30333d;
  --purple: #71328f;
  --purple-deep: #351642;
  --cyan: #1ba9c4;
  --cyan-bright: #4bd1e5;
  --silver: #c5c9cf;
  --gold: #f2b33d;
  --danger: #d7473f;
  --shell: 1280px;
  --radius: 6px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.request-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.98;
}

address {
  font-style: normal;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.eyebrow,
.division-number {
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-brand {
  background: var(--purple);
  color: var(--white);
}

.btn-brand:hover {
  background: #8740a4;
}

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

.btn-dark:hover {
  background: var(--purple-deep);
}

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

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(8, 9, 13, 0.28);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--cyan-bright);
  background: var(--ink);
}

.btn-outline-dark {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.btn-large {
  min-height: 56px;
  padding-inline: 24px;
  font-size: 15px;
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.icon-button:hover {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-bottom: 2px solid var(--cyan);
  padding: 0 0 5px;
  background: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.text-link:hover {
  border-bottom-color: var(--purple);
  color: var(--purple);
}

.dispatch-bar {
  min-height: 36px;
  background: var(--ink);
  color: var(--white);
}

.dispatch-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
}

.dispatch-live,
.dispatch-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dispatch-live {
  text-transform: uppercase;
}

.dispatch-inner a {
  color: var(--cyan-bright);
}

.dispatch-location {
  color: #aeb5c0;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-bright);
  box-shadow: 0 0 0 4px rgba(54, 210, 235, 0.15);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  min-width: 190px;
  align-items: center;
}

.brand img {
  width: 180px;
  height: 64px;
  object-fit: cover;
}

.brand span,
.footer-brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.desktop-nav a {
  position: relative;
  padding-block: 28px;
  font-size: 13px;
  font-weight: 800;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.menu-button {
  display: none;
}

.chevron {
  width: 15px;
  height: 15px;
}

.mobile-nav {
  border-top: 1px solid var(--line);
  padding: 10px 24px 18px;
  background: var(--white);
}

.mobile-nav a {
  display: block;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-weight: 800;
}

.request-backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(8, 9, 13, 0.72);
}

.request-menu {
  position: fixed;
  z-index: 80;
  top: 94px;
  right: max(24px, calc((100vw - var(--shell)) / 2));
  width: min(920px, calc(100vw - 48px));
  max-height: calc(100svh - 112px);
  overflow-y: auto;
  border: 1px solid var(--line-dark);
  border-top: 5px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.request-menu-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px 22px;
}

.request-menu-head h2 {
  margin-top: 10px;
  font-size: 42px;
  text-transform: uppercase;
}

.request-menu-head p:last-child {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.close-request {
  border-color: var(--ink);
}

.request-emergency {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  background: var(--ink);
  color: var(--white);
}

.request-emergency > svg {
  width: 24px;
  height: 24px;
  color: var(--cyan-bright);
}

.request-emergency div {
  display: grid;
  line-height: 1.3;
}

.request-emergency strong {
  font-size: 13px;
  text-transform: uppercase;
}

.request-emergency span {
  color: #b8bec7;
  font-size: 12px;
}

.request-emergency a {
  color: var(--cyan-bright);
  font-size: 13px;
  font-weight: 800;
}

.service-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 32px 30px;
}

.field {
  display: grid;
  grid-column: span 2;
  gap: 7px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field > span:first-child {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbd0d7;
  border-radius: 3px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  padding: 10px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(141, 57, 189, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9299a3;
}

.attachment-note {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d9c8e2;
  border-radius: 3px;
  padding: 12px 14px;
  background: #f8f4fa;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.attachment-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--purple);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--purple);
}

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

.form-submit p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  min-height: 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 700;
}

.request-confirmation {
  width: min(520px, calc(100vw - 32px));
  border: 1px solid var(--line-dark);
  border-top: 5px solid var(--cyan);
  border-radius: 6px;
  padding: 30px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.request-confirmation::backdrop {
  background: rgba(8, 9, 13, 0.72);
}

.request-confirmation-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
}

.request-confirmation-icon svg {
  width: 28px;
  height: 28px;
}

.request-confirmation h2 {
  font-size: 36px;
  text-transform: uppercase;
}

.request-confirmation p {
  margin: 12px auto 22px;
  color: var(--muted);
  line-height: 1.6;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
  background-image: url("assets/jj-tow-hero.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.video-toggle {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  background: rgba(8, 9, 13, 0.72);
  color: var(--white);
  cursor: pointer;
}

.video-toggle:hover {
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
}

.hero-shade {
  background: rgba(6, 7, 10, 0.58);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: end;
  gap: 80px;
  padding-block: 96px 64px;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--cyan-bright);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 34px;
  height: 4px;
  background: var(--purple);
  content: "";
}

.hero h1 {
  max-width: 720px;
  font-size: 98px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--cyan-bright);
  font-style: inherit;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
}

.hero-lede {
  max-width: 690px;
  margin-top: 24px;
  color: #e2e6eb;
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-proof {
  border-top: 5px solid var(--cyan);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.rating-number {
  display: block;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.85;
}

.stars {
  display: block;
  margin-top: 14px;
  color: var(--gold);
  font-size: 15px;
  line-height: 1;
}

.hero-proof strong {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.hero-proof p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hero-proof a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 800;
}

.division-rail {
  position: relative;
  z-index: 3;
  background: var(--ink-2);
  color: var(--white);
}

.division-rail-inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.division-rail a {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-left: 1px solid var(--line-dark);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.division-rail a:last-child {
  border-right: 1px solid var(--line-dark);
}

.division-rail a svg {
  color: var(--cyan-bright);
}

.division-rail a:hover {
  background: var(--purple);
}

.division-rail a:hover svg {
  color: var(--white);
}

.identity-band {
  padding: 112px 0;
  background: var(--white);
}

.identity-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 56px 100px;
}

.identity-copy h2,
.section-heading h2,
.reviews-summary h2,
.merch-intro h2,
.location-copy h2 {
  margin-top: 16px;
  font-size: 66px;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-lede {
  align-self: end;
  color: #454b54;
  font-size: 19px;
  line-height: 1.75;
}

.identity-stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.identity-stats div {
  display: grid;
  min-height: 118px;
  align-content: center;
  border-right: 1px solid var(--line);
  padding: 20px 34px;
}

.identity-stats div:last-child {
  border-right: 0;
}

.identity-stats strong {
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.identity-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.towing-feature {
  padding: 112px 0;
  background: #eceff2;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 80px;
}

.feature-media {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.feature-media::before {
  position: absolute;
  z-index: 1;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  content: "";
  pointer-events: none;
}

.feature-media img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}

.media-tag {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 26px;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border-radius: 3px;
  padding: 0 14px;
  background: var(--cyan);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-copy h2 {
  margin-top: 18px;
  font-size: 68px;
  text-transform: uppercase;
}

.feature-copy > p:nth-of-type(2) {
  margin-top: 22px;
  color: #4d545e;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.check-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  padding: 4px;
  background: var(--purple);
  color: var(--white);
}

.feature-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.shop-divisions {
  padding: 120px 0;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}

.section-heading > p {
  max-width: 440px;
  justify-self: end;
  color: var(--muted);
  font-size: 17px;
}

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

.service-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 1.15fr 0.85fr;
}

.service-image {
  min-height: 330px;
  overflow: hidden;
  background: #dfe3e7;
}

.service-card:not(.service-card-wide) .service-image {
  height: 330px;
}

.service-image img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.035);
}

.service-body {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px;
}

.service-body > svg {
  width: 30px;
  height: 30px;
  color: var(--purple);
}

.service-index {
  position: absolute;
  top: 32px;
  right: 34px;
  color: #a2a8b1;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}

.service-body h3 {
  margin-top: 54px;
  font-size: 39px;
  text-transform: uppercase;
}

.service-body p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.service-body .text-link {
  margin-top: auto;
  padding-top: 32px;
}

.service-card-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.service-card-dark .service-body > svg,
.service-card-dark .text-link {
  color: var(--cyan-bright);
}

.service-card-dark .service-body p {
  color: #b9c0ca;
}

.service-card-dark .service-index {
  color: #646975;
}

.division-feature-list {
  display: grid;
  gap: 22px;
}

.division-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.division-feature-flip .division-feature-media {
  order: 2;
}

.division-feature-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #dfe3e7;
}

.division-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.division-feature:hover .division-feature-media img {
  transform: scale(1.035);
}

.division-feature-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px;
}

.division-feature-copy h3 {
  margin-top: 18px;
  font-size: 57px;
  text-transform: uppercase;
}

.division-feature-copy > p:nth-of-type(2) {
  margin-top: 22px;
  color: #4d545e;
  font-size: 17px;
}

.division-feature-copy .text-link {
  margin-top: 30px;
}

.division-feature-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.division-feature-dark .division-number,
.division-feature-dark .text-link {
  color: var(--cyan-bright);
}

.division-feature-dark .division-feature-copy > p:nth-of-type(2) {
  color: #b9c0ca;
}

.work-section {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}

.section-heading-light .eyebrow {
  color: var(--cyan-bright);
}

.light-link {
  justify-self: end;
  border-bottom-color: var(--purple);
  color: var(--white);
}

.work-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 290px);
  gap: 14px;
}

.work-gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--panel);
}

.work-gallery .work-large {
  grid-row: 1 / 3;
}

.work-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.work-gallery figure:hover img {
  transform: scale(1.035);
}

.work-gallery figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border-left: 4px solid var(--cyan);
  padding: 10px 12px;
  background: rgba(8, 9, 13, 0.82);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-section {
  padding: 120px 0;
  background: var(--paper);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.reviews-summary {
  position: sticky;
  top: 112px;
  align-self: start;
}

.reviews-summary h2 {
  font-size: 62px;
}

.reviews-summary > p:nth-of-type(2) {
  max-width: 420px;
  margin-top: 24px;
  color: var(--muted);
}

.reviews-summary .btn {
  margin-top: 30px;
}

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

.review-list blockquote {
  display: grid;
  grid-template-columns: 130px 1fr 150px;
  align-items: center;
  gap: 28px;
  min-height: 180px;
  border-bottom: 1px solid var(--line);
  padding-block: 26px;
}

.review-list blockquote .stars {
  margin-top: 0;
}

.review-list blockquote p {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
}

.review-list footer {
  display: grid;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.review-list footer span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.merch-section {
  padding: 120px 0;
  background: var(--purple-deep);
  color: var(--white);
}

.merch-grid-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.merch-intro {
  align-self: center;
}

.merch-intro .division-number {
  color: var(--cyan-bright);
}

.merch-intro h2 {
  font-size: 67px;
}

.merch-intro > p:nth-of-type(2) {
  max-width: 420px;
  margin-top: 22px;
  color: #ddd1e5;
  font-size: 16px;
}

.shopify-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 24px;
  color: var(--cyan-bright);
  font-size: 12px;
  font-weight: 800;
}

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

.merch-card {
  overflow: hidden;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.merch-art {
  display: grid;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 22px;
}

.merch-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.merch-art-black {
  background: #17171b;
}

.merch-art-black img,
.merch-art-purple img {
  mix-blend-mode: normal;
}

.merch-art-purple {
  background: var(--purple);
}

.merch-art-white {
  background: var(--white);
}

.merch-card > div:last-child {
  min-height: 132px;
  padding: 18px;
}

.merch-card span {
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.merch-card h3 {
  margin-top: 8px;
  font-size: 25px;
  text-transform: uppercase;
}

.merch-card strong {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
}

.story-section,
.updates-section,
.careers-section {
  padding: 120px 0;
  background: var(--white);
}

.story-grid,
.updates-grid,
.community-grid,
.careers-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
}

.story-copy h2,
.updates-grid h2,
.community-copy h2,
.careers-copy h2 {
  font-size: 68px;
  text-transform: uppercase;
}

.story-copy > p:nth-of-type(2),
.community-copy > p,
.careers-copy > p {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
}

.story-copy .btn {
  margin-top: 32px;
}

.story-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 28px;
  border-top: 5px solid var(--cyan);
  border-radius: var(--radius);
  padding: 36px;
  background: var(--ink);
  color: var(--white);
}

.story-card img {
  width: 190px;
  height: 190px;
  object-fit: cover;
}

.story-card span,
.update-list span,
.application-card span,
.award-grid span,
.incident-card span {
  color: var(--cyan-bright);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.05;
  text-transform: uppercase;
}

.awards-section {
  padding: 120px 0;
  background: var(--paper);
}

.award-grid,
.incident-grid,
.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.award-grid article,
.incident-card,
.application-card,
.update-list article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
}

.award-grid article svg,
.incident-card > svg,
.application-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--purple);
}

.award-grid strong,
.incident-card strong,
.application-card strong,
.update-list strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.06;
  text-transform: uppercase;
}

.incident-section {
  padding: 120px 0;
  background: var(--ink);
  color: var(--white);
}

.incident-card {
  border-color: var(--line-dark);
  background: var(--panel);
}

.incident-card strong {
  min-height: 96px;
}

.incident-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--cyan-bright);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.updates-section {
  background: var(--white);
}

.update-list {
  display: grid;
  gap: 12px;
}

.update-list article {
  padding: 24px 28px;
}

.community-section {
  padding: 120px 0;
  background: var(--paper);
}

.community-photo {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.community-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.community-tags span {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 10px;
  background: var(--white);
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.careers-section {
  background: var(--paper);
}

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

.application-card {
  color: var(--ink);
  transition: transform 160ms ease, border-color 160ms ease;
}

.application-card:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.application-card strong {
  color: var(--purple);
}

.location-section {
  padding: 120px 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: stretch;
  gap: 80px;
}

.location-copy h2 {
  font-size: 70px;
}

.location-copy address {
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.location-panel {
  display: grid;
  align-content: center;
  justify-items: start;
  border-top: 5px solid var(--cyan);
  border-radius: var(--radius);
  padding: 42px;
  background: var(--ink);
  color: var(--white);
}

.location-panel img {
  width: 170px;
  height: 170px;
  object-fit: cover;
}

.location-panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.location-panel > div span {
  border: 1px solid var(--line-dark);
  border-radius: 3px;
  padding: 7px 9px;
  color: #c5cad2;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.location-panel .btn {
  margin-top: 28px;
}

.site-footer {
  padding: 64px 0 26px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 70px;
  padding-bottom: 44px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-brand img {
  width: 190px;
  height: 80px;
  object-fit: cover;
}

.footer-brand small {
  margin-top: 6px;
  color: #8f96a1;
  font-family: var(--font-body);
  font-size: 9px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
}

.footer-contact {
  text-align: right;
}

.footer-contact a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--cyan-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  color: #7f8691;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-action-bar {
  display: none;
}

[hidden] {
  display: none !important;
}

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

  .desktop-nav a {
    font-size: 12px;
  }

  .brand {
    min-width: 150px;
  }

  .brand span {
    display: none;
  }

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

  .identity-copy h2,
  .section-heading h2,
  .reviews-summary h2,
  .merch-intro h2,
  .location-copy h2,
  .feature-copy h2,
  .division-feature-copy h3,
  .story-copy h2,
  .updates-grid h2,
  .community-copy h2,
  .careers-copy h2 {
    font-size: 57px;
  }

  .feature-grid,
  .location-grid {
    gap: 48px;
  }

  .review-list blockquote {
    grid-template-columns: 100px 1fr;
  }

  .review-list footer {
    grid-column: 2;
  }

  .merch-grid-layout {
    grid-template-columns: 1fr;
  }
}

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

  .dispatch-location {
    display: none;
  }

  .desktop-nav,
  .header-actions > .request-trigger {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .brand span {
    display: grid;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 34px;
    padding-block: 90px 54px;
  }

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

  .hero-proof {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px 18px;
    max-width: 480px;
  }

  .hero-proof .rating-number {
    grid-row: 1 / 4;
  }

  .hero-proof .stars,
  .hero-proof strong,
  .hero-proof p {
    margin-top: 0;
  }

  .hero-proof a {
    display: none;
  }

  .division-rail-inner {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .division-rail a {
    min-height: 74px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 15px;
  }

  .identity-grid,
  .feature-grid,
  .section-heading,
  .reviews-grid,
  .location-grid,
  .division-feature,
  .story-grid,
  .updates-grid,
  .community-grid,
  .careers-grid {
    grid-template-columns: 1fr;
  }

  .division-feature-flip .division-feature-media {
    order: 0;
  }

  .division-feature-media,
  .division-feature-media img {
    min-height: 420px;
    height: 420px;
  }

  .identity-grid {
    gap: 28px;
  }

  .identity-stats {
    margin-top: 20px;
  }

  .feature-media {
    min-height: 480px;
  }

  .feature-media img {
    height: 480px;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading > p,
  .light-link {
    justify-self: start;
  }

  .service-card-wide {
    grid-template-columns: 1fr;
  }

  .work-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 260px;
  }

  .work-gallery .work-large {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .reviews-grid {
    gap: 50px;
  }

  .reviews-summary {
    position: static;
  }

  .review-list blockquote {
    grid-template-columns: 100px 1fr 140px;
  }

  .review-list footer {
    grid-column: auto;
  }

  .location-panel {
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 28px;
  }

  .location-panel > div,
  .location-panel .btn {
    margin-top: 0;
  }

  .location-panel .btn {
    grid-column: 2;
    margin-top: 20px;
  }

  .award-grid,
  .incident-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .dispatch-inner {
    gap: 10px;
  }

  .dispatch-live {
    font-size: 10px;
  }

  .dispatch-inner a {
    font-size: 11px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 142px;
    height: 52px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    margin-top: 4px;
    font-size: 8px;
  }

  .call-button {
    display: none;
  }

  .icon-button {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .request-menu {
    top: 0;
    right: 0;
    width: 100%;
    max-height: 100svh;
    border: 0;
    border-top: 5px solid var(--cyan);
    border-radius: 0;
  }

  .request-menu-head {
    padding: 22px 18px 18px;
  }

  .request-menu-head h2 {
    font-size: 34px;
  }

  .request-emergency {
    grid-template-columns: auto 1fr;
    padding: 14px 18px;
  }

  .request-emergency a {
    grid-column: 2;
  }

  .service-form {
    grid-template-columns: 1fr;
    padding: 20px 18px 30px;
  }

  .field,
  .field-wide {
    grid-column: 1;
  }

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

  .form-submit .btn {
    width: 100%;
  }

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

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

  .video-toggle {
    right: 14px;
    bottom: 14px;
  }

  .hero-inner {
    gap: 26px;
    padding-block: 72px 34px;
  }

  .hero-kicker {
    font-size: 14px;
  }

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

  .hero-lede {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

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

  .hero-proof {
    grid-template-columns: 82px 1fr;
    padding: 17px;
  }

  .rating-number {
    font-size: 56px;
  }

  .hero-proof p {
    display: none;
  }

  .division-rail a {
    min-height: 66px;
    flex-direction: column;
    gap: 5px;
    font-size: 12px;
  }

  .division-rail a svg {
    width: 18px;
    height: 18px;
  }

  .identity-band,
  .towing-feature,
  .shop-divisions,
  .work-section,
  .reviews-section,
  .merch-section,
  .location-section {
    padding: 78px 0;
  }

  .identity-copy h2,
  .section-heading h2,
  .reviews-summary h2,
  .merch-intro h2,
  .location-copy h2,
  .feature-copy h2,
  .division-feature-copy h3,
  .story-copy h2,
  .updates-grid h2,
  .community-copy h2,
  .careers-copy h2 {
    font-size: 45px;
  }

  .identity-lede {
    font-size: 16px;
  }

  .identity-stats {
    grid-template-columns: 1fr;
  }

  .identity-stats div {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-inline: 20px;
  }

  .identity-stats div:last-child {
    border-bottom: 0;
  }

  .feature-grid {
    gap: 38px;
  }

  .feature-media,
  .feature-media img {
    min-height: 340px;
    height: 340px;
  }

  .division-feature-media,
  .division-feature-media img {
    min-height: 300px;
    height: 300px;
  }

  .division-feature-copy {
    padding: 32px 24px;
  }

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

  .feature-actions .text-link {
    align-self: flex-start;
  }

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

  .service-card,
  .service-card-wide {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .service-card:not(.service-card-wide) .service-image,
  .service-image,
  .service-image img {
    min-height: 270px;
    height: 270px;
  }

  .service-body {
    min-height: 320px;
    padding: 28px 24px;
  }

  .service-body h3 {
    margin-top: 45px;
    font-size: 34px;
  }

  .work-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 330px 240px 240px;
  }

  .work-gallery .work-large {
    grid-column: 1;
  }

  .review-list blockquote {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 28px 0;
  }

  .review-list blockquote p {
    font-size: 24px;
  }

  .review-list footer {
    grid-column: 1;
  }

  .shopify-mount {
    grid-template-columns: 1fr;
  }

  .story-section,
  .awards-section,
  .incident-section,
  .updates-section,
  .community-section,
  .careers-section {
    padding: 78px 0;
  }

  .story-grid,
  .updates-grid,
  .community-grid,
  .careers-grid {
    gap: 36px;
  }

  .story-card,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .story-card img {
    width: 150px;
    height: 150px;
  }

  .community-photo img {
    height: 330px;
  }

  .merch-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
  }

  .merch-art {
    aspect-ratio: 1;
  }

  .merch-card > div:last-child {
    display: grid;
    align-content: center;
    min-height: 0;
  }

  .location-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .location-panel img {
    width: 140px;
    height: 140px;
  }

  .location-panel > div,
  .location-panel .btn {
    grid-column: 1;
    margin-top: 22px;
  }

  .location-actions {
    display: grid;
  }

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

  .footer-contact {
    text-align: left;
  }

  .footer-contact a:last-child {
    justify-content: flex-start;
  }

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

  .mobile-action-bar {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 68px;
    border-top: 1px solid #30333d;
    background: var(--ink);
    color: var(--white);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
  }

  .mobile-action-bar button {
    background: var(--purple);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .hero-media {
    display: none;
  }

  .video-toggle {
    display: none;
  }
}
