@font-face {
  font-family: "Anton";
  src: url("fonts/anton-latin-ext.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Anton";
  src: url("fonts/anton-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;

  --bg: #0E0F12;
  --surface: #16181C;
  --surface-2: #1C1F24;
  --ink: #F3F3F1;
  --ink-soft: #A7AAB1;
  --ink-faint: #8C9098;
  --line: #2A2D33;
  --line-strong: #3C4048;
  --accent: #E5201E;
  --accent-deep: #A81412;
  --accent-on: #FFFFFF;

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-surface: 14px;
  --r-pill: 999px;

  --shell: 1280px;
  --header-h: 72px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --dur-tap: 120ms;
  --dur-state: 220ms;
  --dur-panel: 380ms;
  --dur-enter: 700ms;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1, h2, h3 {
  margin: 0;
}

p {
  margin: 0;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-pill);
  font-weight: 600;
}

.skip-link:focus-visible {
  left: 1rem;
  top: 1rem;
}

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

.icon {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex: none;
  transition: transform 0.28s var(--ease-out-quart);
}

.btn:hover .icon {
  transform: rotate(-14deg) scale(1.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.12s var(--ease), border-color 0.25s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-on);
}

.btn--primary:hover {
  background: var(--accent-deep);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

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

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

.btn--dark:hover {
  background: var(--ink-soft);
}

.btn--lg {
  padding: 1.05rem 1.9rem;
  font-size: 1.05rem;
}

.btn:active {
  transform: translateY(1px) scale(0.978);
  transition-duration: var(--dur-tap);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background-color var(--dur-state) var(--ease-out-quart),
    border-color var(--dur-state) var(--ease-out-quart),
    box-shadow var(--dur-state) var(--ease-out-quart);
}

.site-header.is-stuck {
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  border-bottom-color: var(--line-strong);
  box-shadow: 0 14px 34px -26px rgba(0, 0, 0, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  margin-right: auto;
}

.wordmark__logo {
  width: auto;
  height: 46px;
  transform-origin: left center;
  transition: transform 0.3s var(--ease-out-quart);
}

.site-header.is-stuck .wordmark__logo {
  transform: scale(0.86);
}

.wordmark__mark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  position: relative;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--dur-state) var(--ease-out-quart);
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45em;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s var(--ease-out-quart);
}

.site-nav__list a:hover,
.site-nav__list a.is-current {
  color: var(--ink);
}

.site-nav__list a:hover::after,
.site-nav__list a.is-current::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding-block: clamp(2rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4rem);
  overflow-x: clip;
}

.hero__title {
  container-type: inline-size;
  display: grid;
  justify-items: center;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.005em;
}

.hero__word {
  position: relative;
  z-index: 0;
  font-size: clamp(2.4rem, 16vw, 11.5rem);
  font-size: min(11.5rem, 18.2cqi);
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.hero__word--top {
  color: var(--accent);
}

.hero__word--bottom {
  color: var(--ink-soft);
}

.hero__city {
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 2.1cqi, 1rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.24em;
  color: var(--ink-faint);
  margin-top: clamp(0.8rem, 1.8vw, 1.3rem);
}

.hero__art {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: clamp(200px, 40vw, 480px);
  margin-block: clamp(-2.2rem, -2.6vw, -0.7rem);
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.6));
}

.hero__art img {
  width: 100%;
  height: auto;
}

.hero__aside {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quickprice {
  background: var(--accent-deep);
  color: #FFFFFF;
}

.quickprice__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-block: 0;
}

.quickprice__item {
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.16);
}

.quickprice__item:last-child {
  box-shadow: none;
}

.quickprice__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.quickprice__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1;
}

.services {
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.section-head {
  container-type: inline-size;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head .section-title {
  font-size: min(3.6rem, 9cqi);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.section-lead {
  max-width: 60ch;
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.switch {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.svc-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.35rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  color: var(--ink);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s var(--ease);
}

.svc-tab:nth-child(1) { grid-column: 1; grid-row: 1; }
.svc-tab:nth-child(3) { grid-column: 2; grid-row: 1; }
.svc-tab:nth-child(5) { grid-column: 3; grid-row: 1; }
.svc-tab:nth-child(7) { grid-column: 4; grid-row: 1; }

.svc-tab:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.svc-tab:active {
  transform: translateY(0) scale(0.985);
  transition-duration: var(--dur-tap);
}

.svc-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-on);
}

.svc-tab__index {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}

.svc-tab.is-active .svc-tab__index {
  color: color-mix(in srgb, var(--accent-on) 75%, transparent);
}

.svc-tab__name {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
}

.svc-tab__hint {
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.svc-tab.is-active .svc-tab__hint {
  color: color-mix(in srgb, var(--accent-on) 80%, transparent);
}

.svc-panel {
  grid-column: 1 / -1;
  grid-row: 2;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-surface);
  padding: clamp(1.5rem, 3vw, 2.75rem);
  margin-top: 0.5rem;
}

.svc-panel[hidden] {
  display: none;
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(1.75rem, 3vw, 3rem);
  align-items: start;
}

.panel-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

.panel-title--sub {
  margin-top: 2.25rem;
}

.table-wrap {
  overflow-x: auto;
}

.wash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.wash-table th,
.wash-table td {
  padding: 0.85rem 1rem;
  text-align: right;
}

.wash-table thead th {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
}

.wash-table th:first-child,
.wash-table td:first-child {
  text-align: left;
  padding-left: 0;
}

.wash-table td:last-child,
.wash-table th:last-child {
  padding-right: 0;
}

.wash-table tbody th {
  font-weight: 600;
  white-space: nowrap;
}

.wash-table tbody td {
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
}

.wash-table tbody tr:not(:last-child) th,
.wash-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--line);
}

.wash-table tbody td:last-child {
  color: var(--ink);
  font-weight: 600;
}

.wash-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.75rem, 4vw, 3.5rem);
  row-gap: 2.25rem;
}

.wash-includes__head {
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}

.wash-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: wash-step;
  display: grid;
  gap: 0.75rem;
}

.wash-steps__item {
  counter-increment: wash-step;
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr);
  gap: 0.8rem;
  max-width: 48ch;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.wash-steps__item::before {
  content: counter(wash-step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--ink-faint);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  row-gap: 0.85rem;
}

.price-item {
  display: flex;
  align-items: last baseline;
  gap: 0.5rem;
  font-size: 0.98rem;
}

.price-item__name {
  display: flex;
  align-items: last baseline;
  gap: 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--ink-soft);
}

.price-item__name::after {
  content: "";
  flex: 1 1 auto;
  min-width: 1.25rem;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-0.25em);
}

.price-item__value {
  flex: none;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.panel-lead {
  margin: -0.35rem 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 62ch;
}

.spec {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.spec__row {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 0.35rem 1.5rem;
  padding-block: 0.7rem;
  border-top: 1px solid var(--line);
}

.spec__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.spec__term {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.9;
}

.spec__desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 68ch;
}

.panel-note {
  border-left: 1px solid var(--line-strong);
  padding-left: clamp(1.5rem, 2.5vw, 2.5rem);
  display: grid;
  gap: 0.9rem;
  justify-items: start;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.panel-note__big {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent);
}

.panel-note__text {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.fineprint {
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
  max-width: 70ch;
}

.why {
  padding-block: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.why__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}

.why__main {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.why__text {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 52ch;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.75rem, 5vw, 3.5rem);
  margin: 0;
}

.stat {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.4rem;
}

.stat__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.proof {
  padding-block: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.proof__inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(1.5rem, 3vw, 3rem);
  row-gap: clamp(1.75rem, 3vw, 2.75rem);
}

.proof__head {
  grid-column: 1 / 5;
}

.proof__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
}

.proof__score {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1;
}

.proof__stars--avg {
  font-size: 1.05rem;
}

.proof__star-off {
  color: var(--ink-faint);
}

.proof__count {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.proof__link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--ink);
  font-weight: 600;
  text-underline-offset: 5px;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}

.proof__lead {
  grid-column: 5 / 13;
  margin: 0;
}

.proof__lead blockquote {
  margin: 0;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.proof__quote {
  margin: 0;
  padding-top: clamp(1.25rem, 2vw, 1.75rem);
  border-top: 1px solid var(--line);
}

.proof__quote:nth-of-type(2) {
  grid-column: 1 / 7;
}

.proof__quote:nth-of-type(3) {
  grid-column: 7 / 13;
}

.proof__quote blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}

.proof figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 1rem;
}

.proof__stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.proof__author {
  font-weight: 600;
}

.proof__ask {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-faint);
}

.proof__ask a {
  color: var(--ink-soft);
  text-underline-offset: 4px;
}

.proof__ask a:hover {
  color: var(--ink);
}

.gallery {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(150px, 19vw, 250px);
  gap: 0.75rem;
}

.gallery__cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-surface);
  background: var(--surface-2);
}

.gallery__cell figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0));
  pointer-events: none;
}

.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery__cell:hover img {
  transform: scale(1.04);
}

.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 100%;
  height: 100%;
  background: var(--accent);
}

.gallery__cell--pair figcaption {
  text-align: center;
}

.pair__half {
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}

.pair__label {
  position: absolute;
  z-index: 1;
  top: 0.65rem;
  left: 0.7rem;
  padding: 0.22rem 0.55rem;
  border-radius: var(--r-pill);
  background: rgba(14, 15, 18, 0.8);
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pair__label--after {
  background: var(--accent);
  color: var(--accent-on);
}

.gallery__cell:nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
.gallery__cell:nth-child(2) { grid-area: 1 / 3 / 2 / 4; }
.gallery__cell:nth-child(3) { grid-area: 2 / 1 / 3 / 3; }
.gallery__cell:nth-child(4) { grid-area: 1 / 4 / 3 / 5; }
.gallery__cell:nth-child(5) { grid-area: 2 / 3 / 3 / 4; }

.location {
  padding-block: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.location__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.location__address {
  margin-top: 0.75rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 1rem;
}

.hours th,
.hours td {
  padding: 0.75rem 0;
  text-align: left;
}

.hours th {
  font-weight: 500;
  color: var(--ink-soft);
}

.hours td {
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.hours tr:not(:last-child) th,
.hours tr:not(:last-child) td {
  border-bottom: 1px solid var(--line);
}

.location__actions {
  margin-top: 2rem;
}

.location__map {
  border-radius: var(--r-surface);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface-2);
}

.location__map iframe {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  border: 0;
}

.map-load {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.6rem;
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  padding: 1.5rem;
  border: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 46px, var(--line) 46px 47px),
    repeating-linear-gradient(0deg, transparent 0 46px, var(--line) 46px 47px),
    var(--surface-2);
  color: var(--ink);
  font-family: inherit;
  cursor: pointer;
  transition: background-color var(--dur-state) var(--ease);
}

.map-load:hover {
  background-color: var(--surface);
}

.map-load__pin {
  width: 2.75rem;
  height: 2.75rem;
  fill: var(--accent);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.55));
}

.map-load__hint {
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: border-color var(--dur-state) var(--ease), color var(--dur-state) var(--ease);
}

.map-load:hover .map-load__hint {
  border-color: var(--accent);
  color: var(--ink);
}

.clients {
  padding-block: clamp(3rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.clients__rule {
  display: block;
  width: 72px;
  height: 3px;
  margin-top: clamp(1rem, 2vw, 1.4rem);
  background: var(--accent);
}

.clients__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  column-gap: clamp(1.5rem, 3vw, 3rem);
}

.clients__item {
  display: grid;
  align-content: start;
  gap: 0.4rem;
  padding-block: clamp(1rem, 2vw, 1.35rem);
  border-top: 1px solid var(--line);
}

.clients__name {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-wrap: balance;
}

.clients__kind {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

.callout {
  background: var(--accent-deep);
  color: #FFFFFF;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.callout__inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.75rem;
}

.callout__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
}

.callout__phone {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 6rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.2s var(--ease);
}

.callout__phone:hover {
  opacity: 0.86;
}

.callout__text {
  color: rgba(255, 255, 255, 0.88);
}

.callout__mail {
  color: #FFFFFF;
  font-weight: 600;
  text-underline-offset: 4px;
}

.site-footer {
  background: var(--surface-2);
  padding-block: clamp(2.75rem, 5vw, 4rem);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  column-gap: clamp(2rem, 4.5vw, 4.5rem);
  row-gap: 2.5rem;
  align-items: start;
}

.site-footer__brand img {
  width: auto;
  height: clamp(64px, 8vw, 104px);
}

.site-footer__tagline {
  margin-top: 1.1rem;
  max-width: 32ch;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
  line-height: 1.3;
}

.site-footer__list a,
.site-footer__address a {
  display: inline-block;
  padding-block: 0.35rem;
}

.site-footer__address {
  font-style: normal;
  line-height: 1.9;
}

.site-footer__hours {
  margin: 0;
  display: grid;
  gap: 0.7rem;
  line-height: 1.3;
}

.site-footer__hours > div {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-footer__hours dt {
  color: var(--ink-faint);
  white-space: nowrap;
}

.site-footer__hours dd {
  margin: 0;
  white-space: nowrap;
}

.site-footer a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

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

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem 2rem;
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-strong);
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.site-footer__legal a {
  color: var(--ink-faint);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out-quart) var(--reveal-delay, 0ms),
    transform 0.7s var(--ease-out-quart) var(--reveal-delay, 0ms);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(var(--rise, 16px));
  }
}

@keyframes word-split-up {
  from {
    opacity: 0;
    transform: translateY(0.34em);
  }
}

@keyframes word-split-down {
  from {
    opacity: 0;
    transform: translateY(-0.34em);
  }
}

@keyframes car-settle {
  from {
    opacity: 0;
    transform: translateY(-16%) scale(0.93);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes row-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .site-header,
  .hero__word--top,
  .hero__word--bottom,
  .hero__art img,
  .hero__lead,
  .hero__actions,
  .quickprice__item {
    animation: rise-in var(--dur-enter) var(--ease-out-quart) both;
  }

  .site-header {
    --rise: 10px;
    animation-duration: 500ms;
  }

  .hero__word--top {
    animation-name: word-split-up;
    animation-delay: 60ms;
  }

  .hero__word--bottom {
    animation-name: word-split-down;
    animation-delay: 60ms;
  }

  .hero__art img {
    animation-name: car-settle;
    animation-duration: 760ms;
    animation-delay: 200ms;
  }

  .hero__lead {
    animation-delay: 320ms;
  }

  .hero__actions {
    animation-delay: 380ms;
  }

  .quickprice__item {
    --rise: 14px;
    animation-duration: 560ms;
    animation-delay: calc(440ms + var(--i, 0) * 70ms);
  }

  .svc-panel.is-entering {
    animation: panel-in var(--dur-panel) var(--ease-out-quart) both;
  }

  .svc-panel.is-entering .price-item,
  .svc-panel.is-entering .wash-table tbody tr,
  .svc-panel.is-entering .wash-steps__item,
  .svc-panel.is-entering .spec__row,
  .svc-panel.is-entering .panel-note {
    animation: row-in 360ms var(--ease-out-quart) both;
    animation-delay: calc(90ms + var(--row, 0) * 24ms);
  }

  .site-nav.is-open .site-nav__list li {
    animation: rise-in 320ms var(--ease-out-quart) both;
    animation-delay: calc(60ms + var(--i, 0) * 45ms);
  }

  .why__main.is-in .stat {
    animation: rise-in 560ms var(--ease-out-quart) both;
    animation-delay: calc(var(--i, 0) * 80ms);
  }

  .quickprice__item:nth-child(2),
  .site-nav__list li:nth-child(2),
  .stat:nth-child(2) { --i: 1; }

  .quickprice__item:nth-child(3),
  .site-nav__list li:nth-child(3) { --i: 2; }

  .quickprice__item:nth-child(4),
  .site-nav__list li:nth-child(4) { --i: 3; }

  .gallery__cell:nth-child(2) { --reveal-delay: 80ms; }
  .gallery__cell:nth-child(3) { --reveal-delay: 160ms; }
  .gallery__cell:nth-child(4) { --reveal-delay: 240ms; }
  .gallery__cell:nth-child(5) { --reveal-delay: 120ms; }
  .gallery__cell:nth-child(6) { --reveal-delay: 320ms; }

  .clients__item:nth-child(2) { --reveal-delay: 60ms; }
  .clients__item:nth-child(3) { --reveal-delay: 120ms; }
  .clients__item:nth-child(4) { --reveal-delay: 180ms; }
  .clients__item:nth-child(5) { --reveal-delay: 240ms; }
  .clients__item:nth-child(6) { --reveal-delay: 300ms; }
  .clients__item:nth-child(7) { --reveal-delay: 360ms; }
  .clients__item:nth-child(8) { --reveal-delay: 420ms; }
  .clients__item:nth-child(9) { --reveal-delay: 480ms; }

  .clients__rule {
    transform-origin: left center;
    transition: transform 0.6s var(--ease-out-quart) 120ms;
  }

  .section-head.reveal .clients__rule {
    transform: scaleX(0);
  }

  .section-head.reveal.is-in .clients__rule {
    transform: none;
  }
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

#vrh {
  scroll-margin-top: 0;
}

@media (max-width: 1080px) {
  .site-nav__list {
    gap: 1.25rem;
  }

  .panel-grid {
    grid-template-columns: minmax(0, 1fr) 260px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 62px;
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .site-header__inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px -24px rgba(0, 0, 0, 0.9);
    transition: grid-template-rows 0.34s var(--ease-out-quart),
      opacity 0.2s var(--ease-out-quart),
      visibility 0s linear 0.34s;
  }

  .site-nav.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    transition: grid-template-rows 0.34s var(--ease-out-quart),
      opacity 0.24s var(--ease-out-quart),
      visibility 0s;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
    overflow: hidden;
    padding-block: 0;
    padding-inline: clamp(1rem, 4vw, 2.5rem);
    box-shadow: inset 0 1px 0 var(--line);
  }

  .site-nav__list li:first-child a {
    padding-top: 1.3rem;
  }

  .site-nav__list li:last-child a {
    padding-bottom: 1.3rem;
  }

  .site-nav__list a::after {
    display: none;
  }

  .site-nav__list a {
    display: block;
    padding: 0.85rem 0.25rem;
    font-size: 1.05rem;
    color: var(--ink);
  }

  .wordmark__logo {
    height: 40px;
  }

  .wordmark__mark {
    font-size: 1.3rem;
  }

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

  .panel-note {
    position: static;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding-left: 0;
    padding-top: 1.5rem;
  }

  .proof__head,
  .proof__lead,
  .proof__ask {
    grid-column: 1 / -1;
  }

  .proof__quote:nth-of-type(2) {
    grid-column: 1 / 7;
  }

  .proof__quote:nth-of-type(3) {
    grid-column: 7 / 13;
  }

  .why__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

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

@media (max-width: 880px) {
  .switch {
    display: block;
  }

  .svc-tab {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 1.25rem;
    margin-top: 0.65rem;
  }

  .svc-tab__name {
    flex: 1 1 auto;
    font-size: 1.05rem;
  }

  .svc-panel {
    margin-top: 0.65rem;
    padding: 1.25rem;
  }

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

  .wash-includes {
    grid-template-columns: minmax(0, 1fr);
  }

  .spec__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.15rem;
  }

  .spec__term {
    line-height: 1.5;
  }
}

@media (max-width: 760px) {
  .quickprice__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .quickprice__item {
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.16), 0 1px 0 rgba(255, 255, 255, 0.16);
    padding: 1.1rem 1rem;
  }

  .quickprice__item:nth-child(2n) {
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .quickprice__item:nth-child(n + 3) {
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.16);
  }

  .quickprice__item:last-child {
    box-shadow: none;
  }

  .proof__quote:nth-of-type(2),
  .proof__quote:nth-of-type(3) {
    grid-column: 1 / -1;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 42vw;
  }

  .gallery__cell figcaption {
    padding: 1.6rem 0.7rem 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .gallery__cell:nth-child(n) {
    grid-area: auto;
  }

  .gallery__cell:nth-child(1),
  .gallery__cell:nth-child(3) {
    grid-column: span 2;
  }

  .gallery__cell:nth-child(4) {
    grid-row: span 2;
  }

  .gallery__cell:nth-child(1) { order: 1; }
  .gallery__cell:nth-child(3) { order: 2; }
  .gallery__cell:nth-child(4) { order: 3; }
  .gallery__cell:nth-child(2) { order: 4; }
  .gallery__cell:nth-child(5) { order: 5; }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .site-footer__brand,
  .site-footer__col--hours {
    grid-column: 1 / -1;
  }

  .site-footer__hours {
    max-width: 22rem;
  }
}

@media (max-width: 560px) {
  .hero__word {
    font-size: clamp(1.9rem, 16vw, 4.5rem);
    font-size: min(4.5rem, 18.2cqi);
  }

  .site-header__cta span {
    display: none;
  }

  .site-header__cta {
    padding: 0.8rem 1rem;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .table-wrap {
    overflow-x: visible;
  }

  .wash-table,
  .wash-table tbody,
  .wash-table tbody tr,
  .wash-table tbody th,
  .wash-table tbody td {
    display: block;
  }

  .wash-table thead {
    display: none;
  }

  .wash-table tbody tr {
    padding-block: 0.9rem;
  }

  .wash-table tbody tr:first-child {
    padding-top: 0;
  }

  .wash-table tbody tr:last-child {
    padding-bottom: 0;
  }

  .wash-table tbody tr:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .wash-table tbody th,
  .wash-table tbody td {
    padding: 0;
    text-align: left;
  }

  .wash-table tbody th {
    margin-bottom: 0.55rem;
    font-size: 1.05rem;
  }

  .wash-table tbody td {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.98rem;
    padding-block: 0.2rem;
  }

  .wash-table tbody td::before {
    content: attr(data-label);
    color: var(--ink-soft);
  }

  .wash-table tbody td:last-child {
    font-weight: 600;
  }

  .wash-table tbody tr:not(:last-child) th,
  .wash-table tbody tr:not(:last-child) td {
    border-bottom: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
