:root {
  --ink: #090a08;
  --white: #fff;
  --ice: #eef0e9;
  --muted: #454a42;
  --on-ink: #d5d9d0;
  --on-ink-muted: #aeb4a9;
  --lime: #c7ff00;
  --rule: #b8bdb3;
  --gutter: clamp(1rem, 4vw, 4rem);
  --content: 92rem;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --z-floating: 30;
  --z-skip: 60;
  --body: "industry", ui-sans-serif, system-ui, sans-serif;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  text-wrap: pretty;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html.has-cinematic-motion body::before {
  position: fixed;
  z-index: var(--z-floating);
  top: 0;
  right: 0;
  left: 0;
  height: 0.28rem;
  background: var(--lime);
  content: "";
  pointer-events: none;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
}

body.dialog-active {
  overflow: hidden;
}

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

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

button,
select,
summary {
  cursor: pointer;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.22em;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

button:focus-visible,
a:focus-visible,
select:focus-visible,
textarea:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 0.12rem solid currentColor;
  outline-offset: 0.18rem;
  box-shadow: none;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  top: 0.75rem;
  left: 0.75rem;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-180%);
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-bottom: 1px solid #252a2a;
  padding: 0.65rem clamp(1rem, 3vw, 2rem);
  background: var(--ink);
  color: var(--white);
}

.site-header__brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: opacity 180ms ease, transform 150ms var(--ease-out);
}

.site-header__brand img {
  width: min(12.5rem, 52vw);
  height: auto;
}

.language-switch {
  position: relative;
  display: inline-flex;
  width: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0.12rem solid var(--white);
  border-radius: 0.4rem;
  background: var(--lime);
  box-shadow: 0.18rem 0.18rem 0 var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 150ms var(--ease-out), box-shadow 150ms var(--ease-out), color 150ms var(--ease-out), transform 150ms var(--ease-out);
}

.language-switch::before {
  position: absolute;
  inset: -0.4375rem -0.125rem;
  content: "";
}

.language-choice {
  width: min(calc(100% - 2rem), 34rem);
  padding: 0;
  border: 0.15rem solid var(--ink);
  border-top: 0.5rem solid var(--lime);
  border-radius: 0.8rem;
  background: var(--white);
  box-shadow: 0.5rem 0.5rem 0 var(--ink);
  color: var(--ink);
}

.language-choice::backdrop {
  background: rgba(9, 10, 8, 0.78);
  backdrop-filter: blur(4px);
}

.language-choice__inner {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 5vw, 2.5rem);
}

.language-choice h2 {
  display: grid;
  gap: 0.25rem;
  font-size: clamp(2rem, 7vw, 3.5rem);
}

.language-choice h2 span:last-child {
  color: var(--muted);
  font-size: 0.55em;
  letter-spacing: -0.02em;
}

.language-choice__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.language-choice__actions button {
  min-height: 3.25rem;
  border: 0.12rem solid var(--ink);
  border-radius: 0.5rem;
  background: var(--lime);
  box-shadow: 0.24rem 0.24rem 0 var(--ink);
  font-weight: 700;
}

.language-choice__actions button:last-child {
  background: var(--white);
}

.chat-launcher {
  position: fixed;
  z-index: var(--z-floating);
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  transition: opacity 150ms var(--ease-out), transform 150ms var(--ease-out);
  animation: chat-launcher-enter 620ms 1200ms var(--ease-out-expo) both;
}

@keyframes chat-launcher-enter {
  0% { opacity: 0; transform: translateY(1rem) scale(0.7); }
  70% { transform: translateY(0) scale(1.08); }
}

.chat-launcher svg {
  width: 3.5rem;
  height: 3.5rem;
  overflow: visible;
}

.chat-launcher__bubble {
  fill: var(--lime);
  stroke: var(--ink);
  stroke-width: 1;
}

.chat-launcher__dots {
  stroke: var(--ink);
  stroke-width: 2.5;
  stroke-linecap: round;
}

.button,
.service-select,
.dialog-close,
.chat-dialog__form button {
  --button-tilt: -0.55deg;
  transform: rotate(var(--button-tilt));
  transform-origin: center;
  transition: transform 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
}

.service-card[data-service-card="relace-break-in"] .service-select,
.intake-form__submit {
  --button-tilt: 0.55deg;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border: 0.12rem solid var(--ink);
  border-radius: 0.5rem;
  box-shadow: 0.24rem 0.24rem 0 var(--ink);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--lime);
  color: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  height: min(49rem, calc(100svh - 4.125rem));
  min-height: 0;
  max-height: calc(100svh - 4.125rem);
  margin-inline: auto;
  grid-template-areas:
    "copy visual"
    "cta visual";
  grid-template-columns: minmax(18rem, 0.78fr) minmax(24rem, 1.22fr);
  grid-template-rows: 1fr 1fr;
  column-gap: clamp(1.5rem, 3vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 7vh, 5rem) var(--gutter);
  overflow: clip;
  perspective: 56rem;
  perspective-origin: center;
}

.hero__background {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 50%;
  width: 100vw;
  background:
    linear-gradient(110deg, rgba(9, 10, 8, 0.9) 0%, rgba(9, 10, 8, 0.68) 30%, rgba(9, 10, 8, 0) 62%),
    url("assets/site/hero-canteen-1600.webp") center / cover no-repeat;
  background:
    linear-gradient(110deg, rgba(9, 10, 8, 0.9) 0%, rgba(9, 10, 8, 0.68) 30%, rgba(9, 10, 8, 0) 62%),
    image-set(
      url("assets/site/hero-canteen-1600.avif") type("image/avif"),
      url("assets/site/hero-canteen-1600.webp") type("image/webp")
    ) center / cover no-repeat;
  pointer-events: none;
  transform: translate3d(-50%, 0, 0) scale(1.04);
  transform-origin: center;
}

.hero__copy {
  position: relative;
  z-index: 1;
  grid-area: copy;
  align-self: end;
  color: var(--white);
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 6.4vw, 4.5rem);
  animation: hero-copy-enter 500ms var(--ease-out-expo) both;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__summary {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  animation: hero-copy-enter 480ms 60ms var(--ease-out-expo) both;
}

.hero__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 1.15rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  animation: hero-copy-enter 480ms 120ms var(--ease-out-expo) both;
}

.hero__rating[hidden] {
  display: none;
}

.hero__rating:hover .hero__rating-text,
.hero__rating:focus-visible .hero__rating-text {
  text-decoration: underline;
}

.hero__rating-stars {
  color: var(--lime);
  letter-spacing: 0.14em;
}

.hero__visual {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 0;
  min-width: 0;
  grid-area: visual;
  place-items: center;
  transform-style: preserve-3d;
}

.hero__photo {
  width: auto;
  max-width: 100%;
  max-height: calc(
    min(49rem, calc(100svh - 4.125rem))
    - clamp(2.5rem, 7vh, 5rem)
    - clamp(2.5rem, 7vh, 5rem)
  );
  animation: hero-mark-enter 520ms var(--ease-out-expo) both;
}

.hero__cta {
  --button-tilt: -2deg;
  grid-area: cta;
  align-self: start;
  justify-self: start;
  min-height: 3.75rem;
  margin-top: 2rem;
  padding: 1rem 1.75rem;
  border-color: var(--white);
  box-shadow: 0.24rem 0.24rem 0 var(--white);
  font-size: 1.08rem;
  animation: hero-cta-enter 420ms 100ms var(--ease-out-quint) both;
}

@keyframes hero-copy-enter {
  from {
    clip-path: inset(0 0 100% 0);
    transform: translateY(1rem);
  }
}

@keyframes hero-mark-enter {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transform: translateX(2rem);
  }
}

@keyframes hero-cta-enter {
  from {
    opacity: 0.4;
    transform: translateY(0.75rem) rotate(var(--button-tilt));
  }
}

.services,
.chat-dialog {
  background-color: var(--ice);
  background-image:
    linear-gradient(135deg, rgba(238, 240, 233, 0.52), rgba(238, 240, 233, 0.08) 68%, transparent),
    radial-gradient(circle, rgba(9, 10, 8, 0.12) 0.08rem, transparent 0.09rem);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 1.35rem 1.35rem;
}

.services {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) var(--gutter) clamp(4.5rem, 8vw, 8rem);
  overflow: clip;
}

.service-tax-disclosure {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto 1rem;
  padding-inline: clamp(1rem, 4vw, 3rem);
  color: var(--charcoal, #171717);
  font-size: 0.875rem;
  font-weight: 650;
}

.services::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(0.55rem, 1vw, 0.9rem);
  background: var(--lime);
  clip-path: polygon(0 68%, 100% 0, 100% 100%, 0 100%);
  content: "";
  transform-origin: left center;
}

.service-list,
.intake-panel {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.repair-card-slot {
  --float-delay: -5.3s;
  width: min(100%, 48rem);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
}

html.has-cinematic-motion .repair-card-slot {
  animation: service-card-float 7s ease-in-out var(--float-delay) infinite;
}

.repair-callout {
  --card-tilt: 0.55deg;
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  gap: clamp(1.25rem, 4vw, 3rem);
  border: 0.12rem solid var(--ink);
  border-radius: 0.5rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--white);
  box-shadow: 0.3rem 0.3rem 0 var(--ink);
  transform: rotate(var(--card-tilt));
  transform-origin: center;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.repair-callout::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.35rem;
  background: var(--lime);
  content: "";
}

.repair-callout h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1;
}

.repair-callout p {
  max-width: 64ch;
  margin-bottom: 0;
  color: var(--muted);
}

.repair-callout .button {
  flex: 0 0 auto;
}

.repair-intake-details > label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
}

.repair-modal-policy {
  margin: 0;
  border-left: 0.35rem solid var(--lime);
  padding-left: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.repair-intake-form .intake-details {
  padding-top: 0;
  border-top: 0;
}

.repair-intake-form .intake-form__submit:disabled,
.intake-panel__close:disabled {
  cursor: wait;
  opacity: 0.62;
}

.service-card-slot {
  --float-delay: 0s;
  position: relative;
  display: flex;
  min-width: 0;
}

.service-card-slot:nth-child(2) {
  --float-delay: -2.1s;
}

.service-card-slot:nth-child(3) {
  --float-delay: -4.2s;
}

html.has-cinematic-motion .service-card-slot {
  animation: service-card-float 7s ease-in-out var(--float-delay) infinite;
}

@keyframes service-card-float {
  0%,
  100% { transform: translate3d(-0.2rem, 0.15rem, 0) rotate(-0.15deg); }
  34% { transform: translate3d(0.5rem, -0.65rem, 0) rotate(0.4deg); }
  68% { transform: translate3d(-0.4rem, -0.2rem, 0) rotate(-0.32deg); }
}

.service-card-slot .service-card {
  width: 100%;
}

.service-card__tag {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  min-width: max-content;
  padding: 0.48rem 0.85rem;
  border: 0.12rem solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0.18rem 0.18rem 0 var(--ink);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-1deg);
}

.service-card {
  --card-tilt: -0.65deg;
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 0.12rem solid var(--ink);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: 0.3rem 0.3rem 0 var(--ink);
  cursor: pointer;
  overflow-wrap: anywhere;
  transform: rotate(var(--card-tilt));
  transform-origin: center;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.service-card[data-service-card="relace-break-in"] {
  --card-tilt: 0.65deg;
}

.service-card[data-service-card="glove-break-in"] {
  --card-tilt: -0.9deg;
}

.service-card::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  left: 0;
  height: 0.35rem;
  background: transparent;
  content: "";
}

.service-card[aria-current="true"]::before {
  background: var(--lime);
}

.service-card:hover::before,
.service-card:focus-within::before {
  background: var(--lime);
}

.service-card__image {
  width: 100%;
  border-bottom: 0.12rem solid var(--ink);
  background: var(--white);
  transform: scale(1.01);
  transition: filter 420ms var(--ease-out-expo), transform 420ms var(--ease-out-expo);
}

.service-card__body {
  display: flex;
  min-height: 22rem;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.15rem, 2vw, 2rem);
}

.service-card h3 {
  min-height: 2.1em;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  text-align: center;
}

.price-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.price-list > li {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.7rem minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
}

.price-list > li::before {
  display: grid;
  content: "✓";
  color: var(--lime);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  place-items: center;
  text-shadow: 0.07rem 0.07rem 0 var(--ink);
}

.price-list > li > span {
  min-width: 0;
}

.price-list > li > strong {
  flex: 0 0 auto;
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
  text-decoration: underline solid var(--lime) 0.32em;
  text-decoration-skip-ink: none;
  text-underline-offset: -0.18em;
}

.price-list--bundle strong {
  font-size: 1.75rem;
}

.service-inclusions {
  display: grid;
  grid-column: 2 / -1;
  gap: 0.3rem;
  margin: 0.15rem 0 0;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.service-select {
  width: 100%;
  min-height: 3.15rem;
  margin-top: auto;
  padding: 0.7rem 1rem;
  border: 0.12rem solid var(--ink);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: 0.24rem 0.24rem 0 var(--ink);
  color: var(--ink);
  font-weight: 700;
}

.service-select[aria-pressed="true"] {
  background: var(--lime);
  color: var(--ink);
}

.intake-panel {
  width: min(calc(100vw - 2rem), 64rem);
  max-width: 64rem;
  align-content: start;
  gap: 1.5rem;
  margin: auto;
  padding: clamp(1.25rem, 4vw, 3rem);
  overflow-y: auto;
  border: 0.12rem solid var(--ink);
  border-top: 0.35rem solid var(--lime);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: 0.3rem 0.3rem 0 var(--ink);
  color: var(--ink);
}

.intake-panel[open] {
  display: grid;
  animation: dialog-enter 360ms var(--ease-out-expo) both;
}

.intake-panel__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
}

.intake-panel__header h2,
.intake-panel__header p {
  grid-column: 1;
}

.intake-panel__close {
  --button-tilt: 0.7deg;
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: start;
  background: var(--white);
  box-shadow: 0.24rem 0.24rem 0 var(--lime);
  color: var(--ink);
}

.intake-panel h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.intake-panel h2:focus,
.intake-success h3:focus {
  outline: none;
}

.intake-form {
  display: grid;
  gap: 1.5rem;
}

.intake-order {
  display: grid;
  gap: 1.25rem;
}

.intake-order[hidden],
[data-middle-colour-field][hidden],
[data-finger-colour-field][hidden] {
  display: none;
}

.intake-progress {
  margin: 0;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intake-order h3 {
  font-size: 1.25rem;
}

[data-step-heading]:focus {
  outline: none;
}

.intake-choice-group,
.intake-finish {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.intake-choice-group > legend,
.intake-finish > legend {
  margin-bottom: 0.65rem;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.intake-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.intake-choice,
.intake-check {
  display: grid;
  min-height: 3.5rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem;
  border: 0.12rem solid var(--ink);
  border-radius: 0.25rem;
  cursor: pointer;
}

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

.intake-choice:has(input:checked),
.intake-check:has(input:checked) {
  border-color: var(--ink);
  background: var(--lime);
  color: var(--ink);
}

.intake-choice input,
.intake-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  accent-color: var(--ink);
}

.intake-choice strong,
.intake-check > strong {
  font-size: 0.82rem;
}

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

.intake-check span,
.intake-check small,
.intake-model span,
.intake-colours span,
.intake-choice span strong,
.intake-choice span small {
  display: block;
}

.intake-check small,
.intake-choice span small {
  margin-top: 0.2rem;
  color: inherit;
}

.intake-relace-details {
  display: grid;
  gap: 1rem;
}

.intake-colours {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.intake-colours span,
.intake-model span {
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.intake-colours input,
.intake-model input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.7rem 0.8rem;
  border: 0.12rem solid var(--ink);
  border-radius: 0.25rem;
  background: var(--white);
  color: var(--ink);
}

.intake-order__help {
  color: var(--muted);
}

.intake-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.2rem 1rem;
  align-items: baseline;
  padding: 1rem;
  border-top: 0.12rem solid var(--lime);
  border-bottom: 0.12rem solid var(--lime);
}

.intake-total > span {
  font-weight: 700;
}

.intake-total > strong {
  color: var(--ink);
  font-size: 1.5rem;
}

.intake-total > small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.intake-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.intake-actions:has(:only-child) {
  justify-content: flex-end;
}

.intake-actions .button {
  min-width: 7rem;
}

.intake-actions [data-intake-back] {
  border-color: var(--white);
  background: var(--ink);
  box-shadow: none;
  color: var(--white);
}

.intake-actions .intake-form__submit {
  width: auto;
  margin-top: 0;
}

.intake-review dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 0.12rem solid var(--lime);
}

.intake-review dl > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 0.06rem solid var(--rule);
}

.intake-review dt {
  font-weight: 700;
}

.intake-review dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.intake-details {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.intake-details {
  padding-top: 1.5rem;
  border-top: 0.12rem solid var(--lime);
}

.intake-details:not([hidden]),
.intake-success:not([hidden]) {
  animation: form-stage-enter 360ms var(--ease-out-expo) both;
}

@keyframes form-stage-enter {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(1rem);
  }
}

.intake-details legend {
  margin-bottom: 1rem;
  padding: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.intake-details__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.intake-details__fields label,
.intake-details__fields label > span,
.intake-details__fields label > small {
  display: block;
}

.intake-details__fields label > span {
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.intake-details__fields input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.7rem 0.8rem;
  border: 0.12rem solid var(--ink);
  border-radius: 0.25rem;
  background: var(--white);
  color: var(--ink);
}

.intake-details__fields label > small {
  margin-top: 0.35rem;
  color: var(--muted);
}

.intake-form__consent,
.intake-form__status,
.intake-success p {
  max-width: 65ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.intake-form__submit {
  width: 100%;
  margin-top: 1rem;
  font-size: 1.05rem;
}

.intake-form__status {
  min-height: 1.25rem;
  margin-top: 0;
}

.intake-form__status:empty {
  display: none;
}

.intake-success h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.intake-success p {
  margin-top: 0.8rem;
}

.context-control__status,
.service-fineprint {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.intake-panel .context-control__status,
.intake-panel .service-fineprint {
  color: var(--muted);
}

.intake-form__submit {
  --button-tilt: -1deg;
  min-height: 3.75rem;
  box-shadow: 0.3rem 0.3rem 0 var(--white);
  font-size: 1.05rem;
}

.site-footer {
  border-radius: 1rem 1rem 0 0;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.site-footer__inner {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: clamp(3rem, 5vw, 4.75rem) var(--gutter) 1.25rem;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(20rem, 1.8fr) minmax(10rem, 0.65fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}

.site-footer__statement {
  max-width: 38rem;
}

.site-footer__eyes {
  width: 9rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.site-footer__area {
  margin-bottom: 0.75rem;
  color: var(--lime);
  font-size: 0.875rem;
  font-weight: 700;
}

.site-footer__statement h2 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
}

.site-footer__statement > p:not(.site-footer__area) {
  max-width: 50ch;
  margin: 1.25rem 0 0;
  color: var(--on-ink);
}

.site-footer .site-footer__cta {
  --button-tilt: -2deg;
  width: min(100%, 18rem);
  min-height: 3.75rem;
  margin-top: 2rem;
  border-color: var(--white);
  box-shadow: 0.3rem 0.3rem 0 var(--white);
  font-size: 1.05rem;
}

.site-footer__cta:focus-visible {
  outline-color: var(--white);
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 0.25rem;
}

.site-footer__column h2 {
  margin-bottom: 0.75rem;
  color: var(--on-ink-muted);
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.site-footer__column .site-footer__social-title {
  margin-top: 1.5rem;
}

.site-footer__review {
  display: grid;
  justify-items: start;
  gap: 0.75rem;
  margin-top: 1rem;
}

.site-footer__review-qr {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.site-footer__review-qr a {
  min-height: 0;
}

.site-footer__review-qr img {
  width: clamp(7.5rem, 12vw, 9rem);
  height: auto;
  border: 0.18rem solid var(--white);
  background: var(--white);
}

.site-footer__review-qr figcaption {
  max-width: 18rem;
  color: var(--on-ink-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.site-footer__column a,
.site-footer__sitemap a,
.site-footer__utility a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-self: start;
  font-weight: 700;
}

.site-footer__column a,
.site-footer__sitemap a,
.site-footer__utility a {
  text-decoration-color: var(--muted);
}

.site-footer__sitemap a,
.site-footer__utility a {
  min-width: 2.75rem;
}

.site-footer__sitemap,
.site-footer__utility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  color: var(--on-ink-muted);
  font-size: 0.875rem;
}

.site-footer__sitemap {
  margin-top: clamp(2.75rem, 5vw, 4.5rem);
  padding-top: 1rem;
  border-top: 0.08rem solid var(--muted);
}

.site-footer__utility {
  margin-top: 0.25rem;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  width: 2.75rem;
  height: 2.75rem;
  justify-content: center;
  border: 0;
}

.site-footer__social svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-footer__social circle,
.site-footer__social rect {
  fill: none;
}

.site-footer p,
.site-footer a {
  margin: 0;
}

.dialog-context label,
.chat-dialog__form > label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.context-select {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.65rem 2.2rem 0.65rem 0.75rem;
  border: 0.1rem solid var(--ink);
  border-radius: 0.2rem;
  background: var(--white);
}

dialog {
  width: min(43rem, calc(100vw - 2rem));
  max-width: none;
  max-height: min(53rem, calc(100dvh - 2rem));
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0.16rem solid var(--ink);
  border-radius: 0.25rem;
  background: var(--white);
  color: var(--ink);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.chat-dialog[open] {
  display: grid;
  animation: dialog-enter 360ms var(--ease-out-expo) both;
  grid-template-rows: auto minmax(16rem, 1fr) auto auto;
}

.chat-dialog {
  width: min(42rem, calc(100vw - 2rem));
  height: min(42rem, calc(100dvh - 3rem));
  max-height: calc(100dvh - 3rem);
  margin: auto;
  border-radius: 0.75rem;
  box-shadow: 0.45rem 0.45rem 0 var(--ink);
}

.chat-dialog::backdrop {
  background: rgba(9, 10, 8, 0.38);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

@keyframes dialog-enter {
  from {
    opacity: 0;
    clip-path: polygon(0 0, 82% 0, 100% 18%, 100% 100%, 18% 100%, 0 82%);
    transform: translateY(1.5rem) scale(0.94);
  }
}

.dialog-header {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-bottom: 0.12rem solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.dialog-header__brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
}

.dialog-header__brand img {
  width: 3.25rem;
  flex: 0 0 auto;
}

.dialog-header__brand .chat-dialog__eyes {
  width: 5.5rem;
}

.dialog-header h2 {
  overflow-wrap: anywhere;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.dialog-close {
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.55rem;
  border: 0.08rem solid var(--lime);
  background: var(--ink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.chat-dialog__close {
  --button-tilt: 0.8deg;
  min-width: 5.5rem;
  min-height: 3rem;
  padding: 0.65rem 1rem;
  background: var(--lime);
  box-shadow: 0.24rem 0.24rem 0 var(--white);
  color: var(--ink);
}

.chat-dialog__messages {
  min-height: 16rem;
  overflow-y: auto;
  padding: 1.25rem;
  background: transparent;
}

.chat-dialog__empty {
  margin-bottom: 0;
}

.chat-dialog__message {
  position: relative;
  width: fit-content;
  max-width: min(88%, 32rem);
  margin-bottom: 0.65rem;
  padding: 0.75rem 0.85rem;
  border: 0.08rem solid var(--ink);
  border-radius: 1rem;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  animation: message-enter 240ms var(--ease-out-expo) both;
}

@keyframes message-enter {
  from { opacity: 0; transform: translateY(0.65rem) scale(0.97); }
}

.chat-dialog__message--user {
  margin-left: auto;
  background: var(--lime);
  border-bottom-right-radius: 0.25rem;
}

.chat-dialog__message--assistant {
  margin-right: auto;
  background: var(--white);
  border-bottom-left-radius: 0.25rem;
}

.chat-dialog__message::before,
.chat-dialog__message::after {
  position: absolute;
  width: 0;
  height: 0;
  content: "";
}

.chat-dialog__message--assistant::before {
  bottom: 0.22rem;
  left: -0.68rem;
  border-top: 0.7rem solid transparent;
  border-right: 0.78rem solid var(--ink);
}

.chat-dialog__message--assistant::after {
  bottom: 0.3rem;
  left: -0.49rem;
  border-top: 0.54rem solid transparent;
  border-right: 0.62rem solid var(--white);
}

.chat-dialog__message--user::before {
  right: -0.68rem;
  bottom: 0.22rem;
  border-top: 0.7rem solid transparent;
  border-left: 0.78rem solid var(--ink);
}

.chat-dialog__message--user::after {
  right: -0.49rem;
  bottom: 0.3rem;
  border-top: 0.54rem solid transparent;
  border-left: 0.62rem solid var(--lime);
}

.chat-dialog__message[data-pending="true"] {
  border-style: dashed;
  opacity: 0.72;
}

.chat-dialog__status {
  min-height: 0;
  margin: 0;
  padding: 0 1rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.chat-dialog__status:not(:empty) {
  min-height: 2rem;
  padding-block: 0.45rem;
  border-top: 0.08rem solid var(--rule);
}

.chat-dialog__form {
  padding: 1rem;
  background: transparent;
}

.chat-dialog__form textarea {
  display: block;
  width: 100%;
  min-height: 4.5rem;
  resize: vertical;
  padding: 0.8rem;
  border: 0;
  border-radius: 0.5rem;
  background: var(--white);
  line-height: 1.45;
}

.chat-dialog__form textarea:focus-visible {
  outline: 0.12rem solid var(--ink);
  outline-offset: -0.2rem;
}

.chat-dialog__composer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border: 0.1rem solid var(--ink);
  border-radius: 0.75rem;
  background: var(--white);
}

.intake-form__privacy-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.privacy-page {
  min-height: calc(100dvh - 8rem);
  padding: clamp(2rem, 6vw, 5rem) var(--gutter);
  background-color: var(--ice);
  background-image:
    linear-gradient(135deg, rgba(238, 240, 233, 0.52), rgba(238, 240, 233, 0.08) 68%, transparent),
    radial-gradient(circle, rgba(9, 10, 8, 0.12) 0.08rem, transparent 0.09rem);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 1.35rem 1.35rem;
}

.privacy-page__intro,
.privacy-page__policy {
  width: min(100%, 52rem);
  margin-inline: auto;
}

.privacy-page__intro {
  margin-bottom: clamp(2rem, 6vw, 4rem);
}

.privacy-page__intro h1 {
  max-width: 14ch;
  margin-bottom: 0.45rem;
  font-size: clamp(2.6rem, 8vw, 6rem);
}

.page-breadcrumb {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
}

.page-breadcrumb a {
  color: var(--ink);
}

.page-breadcrumb [aria-current="page"] {
  color: var(--muted);
}

.privacy-page__intro p,
.privacy-page__policy p,
.privacy-page__policy li {
  max-width: 72ch;
}

.privacy-page__policy {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 0.12rem solid var(--ink);
  background: var(--white);
  box-shadow: 0.45rem 0.45rem 0 var(--ink);
}

.privacy-page__policy + .privacy-page__policy {
  margin-top: 2.5rem;
}

.privacy-page__policy h2 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
}

.privacy-page__policy h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.15;
}

.privacy-page__policy p:last-child,
.privacy-page__policy ul:last-child {
  margin-bottom: 0;
}

.repair-body {
  background-color: var(--ice);
  background-image:
    linear-gradient(135deg, rgba(238, 240, 233, 0.52), rgba(238, 240, 233, 0.08) 68%, transparent),
    radial-gradient(circle, rgba(9, 10, 8, 0.12) 0.08rem, transparent 0.09rem);
  background-repeat: no-repeat, repeat;
  background-size: 100% 100%, 1.35rem 1.35rem;
}

.repair-page {
  display: grid;
  width: min(100%, 74rem);
  min-height: calc(100dvh - 4rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  margin-inline: auto;
  padding: clamp(2.5rem, 7vw, 6rem) var(--gutter);
}

.repair-page__intro {
  position: sticky;
  top: 7rem;
}

.repair-form__privacy {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-weight: 700;
}

.repair-page__intro h1 {
  max-width: 12ch;
  margin: 0 0 0.45rem;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.repair-page__summary {
  max-width: 56ch;
  margin-bottom: 1rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.repair-page__policy {
  max-width: 54ch;
  border-left: 0.45rem solid var(--lime);
  padding-left: 0.85rem;
  font-weight: 700;
}

.repair-page__facts {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
}

.repair-page__facts > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) minmax(0, 0.65fr);
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 0.1rem solid var(--ink);
}

.repair-page__facts > div:last-child {
  border-bottom: 0.1rem solid var(--ink);
}

.repair-page__facts dt {
  font-weight: 700;
}

.repair-page__facts dd {
  margin: 0;
  color: var(--muted);
}

.repair-page__cta {
  margin-top: 1.5rem;
}

.repair-page__request {
  border: 0.12rem solid var(--ink);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--white);
  box-shadow: none;
}

.repair-page__request > h2,
.repair-success h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.repair-form,
.repair-form label,
.repair-form__contact {
  display: grid;
}

.repair-form {
  gap: 1.35rem;
}

.repair-form__step {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
  margin: 0;
  padding: 1.25rem 0 0;
  border: 0;
  border-top: 0.12rem solid var(--ink);
}

.repair-form__step legend {
  padding: 0 0.6rem 0 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.repair-form label {
  gap: 0.4rem;
  font-weight: 700;
}

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

.repair-form__contact label:first-child {
  grid-column: 1 / -1;
}

.repair-form input,
.repair-form select,
.repair-form textarea {
  width: 100%;
  min-height: 3rem;
  border: 0.12rem solid var(--ink);
  border-radius: 0.35rem;
  padding: 0.7rem 0.8rem;
  background: var(--white);
}

.repair-form input[type="file"] {
  padding: 0.55rem;
}

.repair-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.repair-form small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.repair-form__consent,
.repair-form__status {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.repair-form__status {
  min-height: 1.5rem;
  font-weight: 700;
}

.repair-success p {
  max-width: 52ch;
}

.repair-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem var(--gutter);
  background: var(--ink);
  color: var(--white);
}

.repair-footer p {
  margin-bottom: 0;
  font-weight: 700;
}

.repair-footer a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
}

.chat-dialog__privacy {
  max-width: 30rem;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.chat-dialog__form button[type="submit"] {
  min-width: 5.25rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.85rem;
  border: 0.1rem solid var(--ink);
  border-radius: 0.5rem;
  background: var(--lime);
  box-shadow: 0.24rem 0.24rem 0 var(--ink);
  font-weight: 700;
}

.chat-dialog__form button:disabled,
.chat-dialog__form textarea:disabled {
  cursor: wait;
  opacity: 0.62;
}

.button:active,
.service-select:active,
.dialog-close:active,
.chat-dialog__form button:active {
  transform: translate(0.12rem, 0.12rem) rotate(var(--button-tilt)) scale(0.98);
  box-shadow: 0.1rem 0.1rem 0 var(--ink);
}

.site-footer__cta:active,
.intake-form__submit:active,
.chat-dialog__close:active {
  box-shadow: 0.1rem 0.1rem 0 var(--white);
}

.language-switch:active,
.chat-launcher:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .hero__background,
  .hero__visual {
    will-change: transform;
  }

  .button:hover,
  .dialog-close:hover,
  .chat-dialog__form button:hover {
    transform: translate(-0.12rem, -0.12rem) rotate(var(--button-tilt));
    box-shadow: 0.36rem 0.36rem 0 var(--ink);
  }

  .dialog-close:hover {
    background: var(--lime);
    color: var(--ink);
  }

  .language-switch:hover {
    background: var(--ink);
    box-shadow: 0.24rem 0.24rem 0 var(--white);
    color: var(--white);
  }

  .language-choice__actions button:hover {
    transform: translate(-0.12rem, -0.12rem);
    box-shadow: 0.36rem 0.36rem 0 var(--ink);
  }

  .chat-launcher:hover {
    transform: scale(1.06);
  }

  .button--primary:hover,
  .chat-dialog__form button[type="submit"]:hover {
    background: var(--white);
  }

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

  .service-card:hover .service-select {
    background: var(--lime);
    color: var(--ink);
  }

  .repair-callout:hover {
    box-shadow: 0.42rem 0.42rem 0 var(--ink);
    transform: translate(-0.12rem, -0.12rem) rotate(var(--card-tilt));
  }

  .service-card:hover .service-card__image {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.075) rotate(-1deg);
  }

  .intake-panel .intake-panel__close:hover {
    box-shadow: 0.36rem 0.36rem 0 var(--lime);
  }

  .site-footer__cta:hover,
  .intake-form__submit:hover {
    background: var(--lime);
    box-shadow: 0.42rem 0.42rem 0 var(--white);
    color: var(--ink);
  }

  .chat-dialog__close:hover {
    box-shadow: 0.36rem 0.36rem 0 var(--white);
  }

  .site-footer a:not(.site-footer__cta):hover {
    color: var(--lime);
  }

}

html.has-cinematic-motion .services.cinematic-reveal::before {
  transform: scaleX(0.08);
  transition: transform 700ms var(--ease-out-expo);
}

html.has-cinematic-motion .services.cinematic-reveal.is-cinematic-visible::before {
  transform: scaleX(1);
}

html.has-cinematic-motion .service-card.cinematic-reveal {
  transition:
    clip-path 720ms var(--ease-out-expo),
    transform 720ms var(--ease-out-expo);
  transition-delay: calc(var(--cinematic-index, 0) * 90ms);
}

html.has-cinematic-motion .service-card.cinematic-reveal:not(.is-cinematic-visible) {
  clip-path: polygon(0 0, 74% 0, 100% 26%, 100% 100%, 26% 100%, 0 74%);
  transform: translateY(5rem) rotate(var(--card-tilt)) scale(0.92);
}

html.has-cinematic-motion .service-card.cinematic-reveal.is-cinematic-visible {
  clip-path: inset(-0.75rem);
  transform: rotate(var(--card-tilt));
}

@media (max-width: 64rem) {

  .repair-page {
    grid-template-columns: 1fr;
  }

  .repair-page__intro {
    position: static;
  }
  .hero__background {
    background-image:
      linear-gradient(110deg, rgba(9, 10, 8, 0.9) 0%, rgba(9, 10, 8, 0.68) 30%, rgba(9, 10, 8, 0) 62%),
      url("assets/site/hero-canteen-960.webp");
    background-image:
      linear-gradient(110deg, rgba(9, 10, 8, 0.9) 0%, rgba(9, 10, 8, 0.68) 30%, rgba(9, 10, 8, 0) 62%),
      image-set(
        url("assets/site/hero-canteen-960.avif") type("image/avif"),
        url("assets/site/hero-canteen-960.webp") type("image/webp")
      );
    transform: translate3d(-50%, 0, 0);
  }

  .hero {
    height: calc(100svh - 4.125rem);
    min-height: 0;
    max-height: calc(100svh - 4.125rem);
    grid-template-areas:
      "copy"
      "visual"
      "cta";
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    row-gap: 0;
    padding-block: clamp(1.75rem, 5vh, 3.5rem);
  }

  .hero__copy {
    max-width: 42rem;
  }

  .hero__visual {
    width: min(100%, 48rem);
    min-height: 0;
    margin-inline: auto;
  }

  /* The photo absorbs all vertical squeeze so the fixed-height hero never
     clips the tilted CTA below it. */
  .hero__photo {
    width: auto;
    height: 100%;
    max-height: max(10rem, calc(100svh - 24rem));
    object-fit: contain;
  }

  .service-card__body {
    min-height: 24rem;
  }

  .intake-details__fields {
    grid-template-columns: 1fr;
  }

  .intake-colours {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 46rem) {

  .repair-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .repair-callout .button {
    width: 100%;
  }
  .hero__cta {
    width: 100%;
    margin-top: 2rem;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service-card {
    border: 0.12rem solid var(--ink);
  }

  .service-card__body {
    min-height: 0;
  }

  .service-card h3 {
    min-height: 0;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-footer__statement {
    grid-column: auto;
  }
}

@media (max-width: 32rem) {

  .repair-page {
    padding: 2rem 1rem 3rem;
  }

  .repair-page__intro h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .repair-page__request {
    padding: 1rem;
    box-shadow: none;
  }

  .repair-form__contact {
    grid-template-columns: 1fr;
  }

  .repair-form__contact label:first-child {
    grid-column: auto;
  }

  .repair-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
  body.primary-action-visible .chat-launcher {
    animation: none;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85);
  }

  .site-header {
    padding: 0.65rem clamp(1rem, 3vw, 2rem);
  }

  .language-switch {
    justify-self: end;
  }

  .language-choice__actions {
    grid-template-columns: 1fr;
  }

  .hero {
    height: calc(100svh - 4.125rem);
    min-height: 0;
    max-height: calc(100svh - 4.125rem);
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 0;
    padding: 1rem 1rem 2rem;
  }

  .hero__rating {
    margin-top: 0.85rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.45rem, 13.5vw, 3.5rem);
  }

  .hero__summary {
    margin: 0.65rem 0 0;
  }

  .hero__visual {
    width: min(100%, 42svh);
  }

  .hero__cta {
    margin-top: 0.5rem;
  }

  .hero .button,
  .site-footer__cta {
    width: 100%;
  }

  .services {
    padding: 3.75rem 2rem 4rem;
  }

  .intake-choice-grid {
    grid-template-columns: 1fr;
  }

  .intake-panel {
    gap: 0.65rem;
    padding: 0.75rem;
  }

  .intake-panel__header {
    gap: 0.25rem 0.5rem;
  }

  .intake-panel h2 {
    font-size: 1.65rem;
    line-height: 0.98;
  }

  .intake-panel .context-control__status {
    max-width: 24ch;
    font-size: 0.75rem;
    line-height: 1.15;
  }

  .intake-panel__close,
  .intake-actions .button {
    min-height: 2.8rem;
    padding: 0.55rem 0.8rem;
  }

  .intake-form,
  .intake-order {
    gap: 0.7rem;
  }

  .intake-order h3 {
    font-size: 1.1rem;
  }

  .intake-choice-grid,
  .intake-relace-details,
  .intake-colours,
  .intake-details__fields {
    gap: 0.55rem;
  }

  .intake-choice,
  .intake-check {
    min-height: 2.8rem;
    gap: 0.5rem;
    padding: 0.6rem;
  }

  [data-intake-step="lace"] .intake-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-intake-step="lace"] .intake-choice {
    grid-template-columns: auto minmax(0, 1fr);
  }

  [data-intake-step="lace"] .intake-choice strong {
    grid-column: 2;
    font-size: 0.7rem;
  }

  .intake-check small,
  .intake-order__help,
  .intake-details__fields label > small,
  .intake-total > small {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .intake-colours input,
  .intake-model input,
  .intake-details__fields input {
    min-height: 2.8rem;
    padding: 0.55rem 0.65rem;
  }

  .intake-details {
    padding-top: 0;
    border-top: 0;
  }

  .intake-total {
    padding: 0.65rem;
  }

  .intake-total > strong {
    font-size: 1.25rem;
  }

  .intake-actions {
    gap: 0.5rem;
    padding-top: 0;
  }

  .intake-actions .button {
    min-width: 0;
  }

  .intake-review dl > div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 0.4rem 0;
    font-size: 0.8rem;
  }

  .intake-form__consent {
    margin-top: 0;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .service-card__body {
    padding: 1.1rem;
  }

  .price-list li {
    gap: 0.6rem;
  }

  .site-footer__inner {
    padding: 2.75rem 1rem 1rem;
  }

  .site-footer__main {
    gap: 2rem;
  }

  .site-footer__statement h2 {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .site-footer__utility {
    align-items: flex-start;
    flex-direction: column;
  }

  dialog {
    width: 100vw;
    max-height: 100dvh;
    margin: auto 0 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .intake-panel {
    width: calc(100vw - 1rem);
    height: fit-content;
    max-height: min(36rem, calc(100dvh - 1rem));
    margin: auto;
    border: 0.12rem solid var(--ink);
    border-top: 0.35rem solid var(--lime);
    border-radius: 0.5rem;
  }

  .chat-dialog[open] {
    min-height: min(38rem, calc(100dvh - 1rem));
  }

  .chat-dialog {
    width: calc(100vw - 1rem);
    height: min(42rem, calc(100dvh - 1rem));
    max-height: calc(100dvh - 1rem);
    margin: auto;
    border: 0.16rem solid var(--ink);
    border-radius: 0.75rem;
  }

  .dialog-header {
    gap: 0.5rem;
    padding-inline: 0.75rem;
  }

  .dialog-header__brand {
    gap: 0.5rem;
  }

  .dialog-header__brand img {
    width: 2.75rem;
  }

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

}

.text-request-dialog,
.text-request-dialog[open] {
  width: min(33rem, calc(100vw - 2rem));
  height: fit-content;
  min-height: 0;
  max-height: calc(100dvh - 2rem);
  align-content: start;
  grid-template-rows: auto auto;
  overflow-y: auto;
  border: 0.16rem solid var(--ink);
  border-top: 0.5rem solid var(--lime);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: 0.45rem 0.45rem 0 var(--ink);
}

.text-request-dialog[open] {
  display: grid;
  animation: dialog-enter 360ms var(--ease-out-expo) both;
}

.text-request-dialog__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border-bottom: 0.12rem solid var(--ink);
}

.text-request-dialog__header h2 {
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 0.95;
}

.text-request-dialog__header p {
  max-width: 35ch;
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.text-request-dialog__close {
  width: 3rem;
  min-width: 3rem;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 1.5rem;
}

.text-request-dialog__form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.text-request-dialog__form > label:not(.text-request-dialog__consent) {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
}

.text-request-dialog__form input[type="tel"],
.text-request-dialog__form textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem;
  border: 0.1rem solid var(--ink);
  border-radius: 0.35rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.text-request-dialog__form textarea {
  min-height: 7.5rem;
}

.text-request-dialog__form input:focus-visible,
.text-request-dialog__form textarea:focus-visible {
  outline: 0.18rem solid var(--lime);
  outline-offset: 0.12rem;
}

.text-request-dialog__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
  font-size: 0.84rem;
  line-height: 1.45;
}

.text-request-dialog__consent input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.05rem;
  accent-color: var(--lime);
}

.text-request-dialog__status {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.text-request-dialog__form > button[type="submit"] {
  width: 100%;
  min-height: 3.25rem;
}

.text-request-dialog__success {
  padding: 2.5rem 1.25rem 3rem;
  text-align: center;
}

.text-request-dialog__success h3 {
  font-size: clamp(2rem, 8vw, 3.25rem);
}

.text-request-dialog__success p {
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 48rem) {
  .text-request-dialog,
  .text-request-dialog[open] {
    width: calc(100vw - 1rem);
    height: fit-content;
    min-height: 0;
    max-height: calc(100dvh - 1rem);
    margin: auto;
    border: 0.16rem solid var(--ink);
    border-top: 0.5rem solid var(--lime);
    border-radius: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.has-cinematic-motion body::before {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

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

  .button:active,
  .service-select:active,
  .dialog-close:active,
  .chat-dialog__form button:active,
  .language-switch:active,
  .chat-launcher:active {
    transform: none;
  }

  .service-card:hover {
    transform: rotate(var(--card-tilt));
  }

  .repair-callout:hover {
    transform: rotate(var(--card-tilt));
  }

  .hero__copy,
  .hero__visual,
  .hero h1,
  .hero__summary,
  .hero__photo,
  .hero__cta,
  .service-card__image {
    animation: none !important;
    clip-path: none !important;
  }

  .hero__copy,
  .hero__visual,
  .hero h1,
  .hero__summary,
  .hero__photo,
  .service-card__image {
    transform: none !important;
  }

  .services::before {
    animation: none !important;
    transform: none !important;
  }

}
