:root {
  --ink: #20272b;
  --muted: #5f696e;
  --line: #d7dadb;
  --paper: #f3f4f2;
  --white: #ffffff;
  --accent: #b93027;
  --accent-dark: #92241d;
  --notice: #fff3d2;
  --notice-line: #d49a17;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
}

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

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}

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

.topbar {
  color: var(--white);
  background: var(--ink);
  font-size: 0.88rem;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.brand-name {
  display: grid;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.brand-name small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 26px;
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  min-height: 450px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 72px;
  padding-block: 70px;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-subtitle {
  margin: 14px 0 0;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-text {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.button {
  min-height: 48px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--ink);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

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

.button-primary {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

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

.location-block {
  padding: 30px 0 30px 28px;
  border-left: 6px solid var(--accent);
}

.location-block span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location-block strong {
  display: block;
  margin-top: 8px;
  font-size: 1.6rem;
}

.location-block p {
  margin: 0;
  color: var(--muted);
}

.notice-section {
  padding: 30px 0 0;
  background: var(--paper);
}

.notice {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-left: 6px solid var(--notice-line);
  background: var(--notice);
}

.notice-label,
.notice p {
  padding: 24px 28px;
}

.notice-label {
  display: flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.notice p {
  margin: 0;
  border-left: 1px solid rgba(32, 39, 43, 0.16);
  font-weight: 700;
}

.section {
  padding: 76px 0;
}

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

.two-column,
.contact-layout,
.legal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 88px;
}

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

.section-heading.compact {
  margin-bottom: 38px;
}

h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.section-heading p,
.contact-layout > div:first-child p,
.legal-layout > div:first-child p {
  margin: 18px 0 0;
  color: var(--muted);
}

.hours {
  margin: 0;
  border-top: 2px solid var(--ink);
}

.hours div {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  font-weight: 800;
}

.hours dd {
  margin: 0;
  text-align: right;
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.service-list li {
  min-height: 68px;
  padding: 20px 20px 20px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.service-list li:nth-child(even) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.two-wheel-section {
  color: var(--white);
  background: var(--ink);
}

.two-wheel-section h2 {
  color: var(--white);
}

.large-copy {
  margin: 0;
  color: #d8dddf;
  font-size: 1.08rem;
}

.contact-section {
  border-bottom: 1px solid var(--line);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 48px;
}

.contact-details div {
  min-width: 0;
}

.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-details address {
  font-style: normal;
}

.contact-details p {
  margin: 0;
}

.contact-details a {
  overflow-wrap: anywhere;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-section {
  padding: 62px 0;
  background: var(--paper);
  font-size: 0.94rem;
}

.legal-section h2 {
  font-size: 1.8rem;
}

.legal-copy p {
  margin: 0 0 20px;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-copy a {
  text-underline-offset: 3px;
}

.site-footer {
  padding: 28px 0;
  color: #d7dcde;
  background: var(--ink);
  font-size: 0.82rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  margin: 0;
}

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

.privacy-main {
  min-height: 60vh;
  padding: 70px 0 90px;
}

.privacy-copy {
  max-width: 820px;
}

.privacy-copy h1 {
  margin-bottom: 42px;
  font-size: 3.2rem;
}

.privacy-copy h2 {
  margin: 42px 0 12px;
  font-size: 1.4rem;
}

.privacy-copy p,
.privacy-copy ul {
  margin: 0 0 18px;
}

.privacy-copy a {
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

@media (max-width: 820px) {
  .header-inner {
    padding-block: 14px;
  }

  .header-inner > nav {
    display: none;
  }

  .hero-inner,
  .two-column,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 58px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .location-block {
    padding-block: 16px;
  }

  .section {
    padding: 60px 0;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

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

  .topbar-inner {
    justify-content: flex-end;
  }

  .topbar-inner span {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .actions,
  .button {
    width: 100%;
  }

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

  .notice-label,
  .notice p {
    padding: 18px 20px;
  }

  .notice p {
    border-top: 1px solid rgba(32, 39, 43, 0.16);
    border-left: 0;
  }

  .hours div,
  .service-list,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .hours div {
    gap: 4px;
  }

  .hours dd {
    text-align: left;
  }

  .service-list li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-copy h1 {
    font-size: 2.35rem;
  }
}
