:root {
  --asphalt: #1a1a1a;
  --steel: #242424;
  --iron: #303030;
  --bone: #f4f1ec;
  --bone-2: #e6e1d8;
  --orange: #f15a22;
  --orange-deep: #c94412;
  --ink: #111111;
  --mute: #a39e96;
  --line: rgba(244, 241, 236, 0.12);
  --info-h: 2.35rem;
  --nav-h: 5rem;
  --header-h: calc(var(--info-h) + var(--nav-h));
  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --sans: "Barlow", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  background: var(--asphalt);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
figure,
address {
  margin: 0;
}

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--orange);
  color: var(--ink);
  padding: 0.6rem 1rem;
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Wordmark */

.wordmark {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 0.82;
  text-transform: uppercase;
  font-family: var(--display);
  font-weight: 800;
}

.wordmark-eq {
  color: var(--bone);
}

.wordmark-un {
  color: var(--orange);
}

.wordmark--header {
  font-size: 1.95rem;
  letter-spacing: 0.02em;
}

.wordmark--hero {
  font-size: clamp(4.2rem, 14vw, 9.5rem);
  letter-spacing: -0.02em;
}

.wordmark--footer {
  font-size: 1.6rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.55rem 1.15rem;
  border: 2px solid transparent;
  text-decoration: none;
  font-family: var(--cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--ink);
  border-color: var(--orange);
}

.btn-orange:hover {
  background: var(--bone);
  border-color: var(--bone);
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(244, 241, 236, 0.35);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-ink {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.btn-ink:hover {
  background: var(--asphalt);
  border-color: var(--asphalt);
}

.btn-lg {
  min-height: 3.15rem;
  padding-inline: 1.35rem;
  font-size: 1.15rem;
}

.btn:focus-visible,
.nav a:focus-visible,
.info-item:focus-visible,
.text-link:focus-visible,
.visit-contacts a:focus-visible,
.footer-phone a:focus-visible,
.wordmark:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.info-bar {
  background: #0d0d0d;
  border-bottom: 1px solid var(--line);
  font-family: var(--cond);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.info-bar-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--info-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.info-item {
  text-decoration: none;
  color: var(--bone-2);
  font-size: 0.95rem;
  white-space: nowrap;
}

.info-item:hover {
  color: var(--orange);
}

.info-phone {
  color: var(--orange);
  font-weight: 700;
  font-size: 1.05rem;
}

.info-city {
  display: none;
}

.info-hours {
  color: var(--mute);
  margin: 0;
}

.info-hours-short {
  display: none;
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--orange) 0 28%, transparent 28% 72%, var(--orange) 72%);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-left: auto;
}

.nav a,
.nav a:visited {
  text-decoration: none;
  font-family: var(--cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-2);
}

.nav a:hover {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--bone);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 0;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(241, 90, 34, 0.14), transparent 46%),
    var(--asphalt);
}

.hero-copy {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-location {
  font-family: var(--cond);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 0.75rem;
}

.eyebrow {
  font-family: var(--cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.85rem;
}

.orange-bar {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.35rem 1.15rem 0.28rem;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--cond);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-services {
  margin-top: 0.85rem;
  font-family: var(--cond);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}

.hero-services i {
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin: 0 0.55rem 0.12rem;
  background: var(--orange);
  vertical-align: middle;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.logo-rail {
  list-style: none;
  padding: 0.7rem 1rem;
  margin: 2.1rem auto 0;
  width: min(1180px, calc(100% - 2.5rem));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.2rem;
  background: var(--bone);
}

.logo-rail li {
  flex: 1 1 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.4rem;
  padding: 0 0.55rem;
}

.logo-rail img {
  max-height: 2.85rem;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.lot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 3rem auto 0;
  padding: 0.7rem;
  background: var(--bone);
}

.lot-item {
  background: #efebe3;
}

.lot-item img {
  width: 100%;
  height: clamp(9rem, 22vw, 16rem);
  object-fit: contain;
  object-position: center;
}

.lot-item figcaption {
  padding: 0.35rem 0.6rem 0.55rem;
  font-family: var(--cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

/* Slash marks from the print ad */

.slash {
  position: absolute;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 36%, var(--ink) 36% 42%, transparent 42% 46%, var(--orange) 46% 52%, transparent 52% 56%, var(--ink) 56% 62%, transparent 62%);
}

.slash--tl {
  top: 0;
  left: 0;
  width: min(28vw, 280px);
  height: 92px;
}

.slash--tr {
  top: 0;
  right: 0;
  width: min(28vw, 280px);
  height: 92px;
  transform: scaleX(-1);
}

.slash--used {
  top: 0;
  left: 0;
  width: min(34vw, 320px);
  height: 100%;
  opacity: 0.55;
}

.mini-slash {
  display: inline-block;
  width: 1.7rem;
  height: 0.7rem;
  margin-right: 0.45rem;
  vertical-align: middle;
  background:
    linear-gradient(115deg, var(--ink) 0 28%, transparent 28% 36%, var(--orange) 36% 64%, transparent 64% 72%, var(--ink) 72%);
}

/* Sections */

.section {
  padding: 5rem 0 5.25rem;
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

.section--asphalt {
  background: var(--asphalt);
}

.section--steel {
  background: var(--steel);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-head h2,
.used h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0.35rem 0 0.85rem;
}

.lede {
  color: var(--mute);
  max-width: 38rem;
}

/* Brands */

.brand-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.brand-card {
  background: var(--bone);
  color: var(--ink);
  display: flex;
  flex-direction: column;
}

.brand-card > img {
  width: 100%;
  height: 11.5rem;
  object-fit: contain;
  background: #efebe3;
}

.brand-card--wide {
  grid-column: span 2;
}

.brand-card--wide > img {
  height: 13.5rem;
}

.brand-meta {
  position: relative;
  padding: 0.9rem 1rem 1.1rem;
  border-top: 3px solid var(--orange);
}

.card-logo {
  display: block;
  height: 3.15rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0.45rem;
}

.card-logo--wide {
  height: 2.15rem;
  max-width: 11rem;
}

.brand-meta:has(.card-logo) h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.brand-card h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand-card p {
  margin-top: 0.4rem;
  color: #4d4944;
  font-size: 0.95rem;
}

/* Work */

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.work-card {
  background: var(--bone);
  color: var(--ink);
  padding: 1.35rem 1.2rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.work-icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--orange-deep);
}

.work-icon svg {
  width: 100%;
  height: 100%;
}

.work-card h3 {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
}

.work-card p {
  color: #4d4944;
  flex: 1;
}

.text-link {
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--orange-deep);
  text-decoration: none;
  width: fit-content;
}

.text-link:hover {
  color: var(--ink);
}

/* Used band */

.used {
  position: relative;
  overflow: hidden;
  background: var(--orange);
  color: var(--ink);
  padding: 4.25rem 0;
}

.used-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.eyebrow--on-orange {
  color: var(--ink);
}

.used h2 {
  max-width: 16ch;
}

.used p {
  font-size: 1.12rem;
  max-width: 40rem;
  margin-bottom: 1.4rem;
}

/* Visit */

.visit-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.85rem;
  align-items: stretch;
}

.visit-panel {
  background: var(--bone);
  color: var(--ink);
  padding: 1.6rem 1.5rem 1.7rem;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem 0.9rem;
  margin-bottom: 1.15rem;
}

.status-pill {
  display: inline-block;
  padding: 0.2rem 0.55rem 0.15rem;
  font-family: var(--cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bone);
}

.status-pill.is-open {
  background: var(--orange);
  color: var(--ink);
}

.status-note {
  font-size: 0.92rem;
  color: #4d4944;
}

.shop-address {
  font-style: normal;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.visit-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 1rem 0 1.25rem;
  font-family: var(--cond);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.visit-contacts a {
  text-decoration: none;
}

.visit-contacts a:hover {
  color: var(--orange-deep);
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--cond);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hours th,
.hours td {
  padding: 0.55rem 0;
  border-top: 1px solid #d8d2c8;
  text-align: left;
  font-weight: 600;
}

.hours td {
  text-align: right;
}

.hours tr.is-today th,
.hours tr.is-today td {
  color: var(--orange-deep);
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.visit-actions .btn-ghost {
  color: var(--ink);
  border-color: #c8c2b8;
}

.visit-actions .btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

.map-frame {
  min-height: 26rem;
  background: var(--iron);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  border: 0;
}

.service-area {
  margin-top: 2rem;
  max-width: 46rem;
}

.service-area h3 {
  font-family: var(--cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.45rem;
}

.service-area p {
  color: var(--mute);
}

/* Footer */

.site-footer {
  background: #0d0d0d;
  border-top: 4px solid var(--orange);
  padding: 2rem 0 2.2rem;
}

.footer-inner {
  display: grid;
  gap: 0.65rem;
}

.footer-phone {
  font-family: var(--cond);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-phone a {
  color: var(--orange);
  text-decoration: none;
}

.footer-phone a:hover {
  color: var(--bone);
}

.footer-meta {
  color: var(--mute);
  font-family: var(--cond);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.98rem;
}

.footer-area {
  color: var(--mute);
  font-family: var(--cond);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.footer-legal {
  max-width: 52rem;
  color: #6e6a64;
  font-size: 0.78rem;
  line-height: 1.45;
}

/* Mobile */

@media (max-width: 920px) {
  .brand-grid,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .info-street {
    display: none;
  }

  .info-city {
    display: inline;
  }

  .info-hours-full {
    display: none;
  }

  .info-hours-short {
    display: inline;
  }

  .wordmark--header {
    font-size: 1.7rem;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  :root {
    --nav-h: 4.6rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: calc(var(--info-h) + var(--nav-h) + 3px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 0.75rem 1rem 1rem;
    background: #121212;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
  }

  .lot {
    grid-template-columns: 1fr;
  }

  .lot-item:nth-child(n + 2) {
    display: none;
  }

  .lot-item img {
    height: 14rem;
  }

  .slash--tl,
  .slash--tr {
    height: 58px;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 560px) {
  :root {
    --info-h: 4.15rem;
  }

  .info-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 0.4rem 0;
    gap: 0.2rem 0.85rem;
  }

  .info-hours {
    order: 3;
    width: 100%;
    font-size: 0.88rem;
  }

  .logo-rail li {
    flex-basis: 30%;
    height: 2.8rem;
  }

  .logo-rail img {
    max-height: 2.2rem;
  }

  .brand-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .orange-bar {
    letter-spacing: 0.1em;
    font-size: 1.05rem;
  }

  .hero-services {
    letter-spacing: 0.12em;
  }

  .brand-card--wide {
    grid-column: span 1;
  }

  .brand-card--wide img {
    height: 11.5rem;
  }

  .hero-actions,
  .visit-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .visit-actions .btn {
    width: 100%;
  }

  .wrap {
    width: min(1180px, calc(100% - 1.5rem));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
