:root {
  color-scheme: dark;
  --page: #101112;
  --surface: #17191a;
  --surface-strong: #202224;
  --text: #f4f4f1;
  --muted: #a8aaac;
  --line: #343638;
  --accent: #d82333;
  --accent-strong: #f13a49;
  --on-accent: #fffafa;
  --focus: #f2c600;
  --header: rgb(16 17 18 / 0.9);
  /* Large editorial cards use 24px. Controls stay precise at 8px. */
  --radius: 24px;
  --radius-control: 8px;
  --shadow: 0 24px 72px rgb(0 0 0 / 0.28);
  --shell: min(1240px, calc(100% - 48px));
  --font-body: "Segoe UI Variable", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bahnschrift", "Arial Narrow", "Aptos Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  --font-meta: "Bahnschrift", "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-family: var(--font-body);
}

:root[data-theme="light"] {
  color-scheme: light;
  --page: #f3f3f0;
  --surface: #fafaf8;
  --surface-strong: #e6e6e2;
  --text: #151617;
  --muted: #5f6265;
  --line: #cfd0cd;
  --accent: #c9192a;
  --accent-strong: #af1020;
  --on-accent: #ffffff;
  --focus: #9a7600;
  --header: rgb(243 243 240 / 0.9);
  --shadow: 0 24px 72px rgb(25 25 20 / 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#services,
#approach,
#booking {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

.scroll-progress {
  position: fixed;
  top: 73px;
  right: 0;
  left: 0;
  z-index: 45;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  pointer-events: none;
}

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

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

button {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--surface);
  border-radius: var(--radius-control);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 74px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 28px;
  background: var(--header);
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

:root[data-theme="light"] .site-header {
  border-bottom-color: rgb(0 0 0 / 0.12);
}

.brand {
  width: 210px;
  height: 54px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: normal;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: var(--font-meta);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
}

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

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

.header-actions,
.hero-actions,
.form-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle,
.menu-button {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: transparent;
  font-family: var(--font-meta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-button,
.mobile-menu {
  display: none;
}

.button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  min-height: 50px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-family: var(--font-meta);
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), background-color 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 2px), 0);
}

.button:active {
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) + 1px), 0) scale(0.99);
}

.button-small {
  min-height: 42px;
  padding: 11px 14px;
  font-size: 13px;
}

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

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.hero {
  width: 100%;
  min-height: 100dvh;
  padding-top: 74px;
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: minmax(610px, 1fr) auto;
  background: var(--page);
}

.hero-copy {
  padding: clamp(54px, 7vw, 112px) clamp(28px, 5.7vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--accent-strong);
  font-family: var(--font-meta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.7vw, 70px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-line {
  display: block;
}

.hero-title-accent {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  right: -0.02em;
  bottom: 0.03em;
  left: -0.02em;
  z-index: -1;
  height: 0.12em;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  opacity: 0.72;
}

.hero-summary {
  max-width: 540px;
  margin: 28px 0;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #202224;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--page);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 32%;
  z-index: 1;
  background: linear-gradient(90deg, var(--page), transparent);
  pointer-events: none;
}

.media-drift,
.motion-media img {
  width: 100%;
  height: 100%;
}

.media-drift {
  position: relative;
}

.motion-media {
  --media-x: 0px;
  --media-y: 0px;
}

.motion-media img {
  transform: translate3d(var(--media-x), var(--media-y), 0) scale(1.04);
  transition: transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.motion-media.is-tracking img {
  transition-duration: 120ms;
  transition-timing-function: linear;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.82) contrast(1.05);
}

.hero-rail {
  grid-column: 1 / -1;
  min-height: 108px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-rail p {
  min-height: 108px;
  margin: 0;
  padding: 22px 30px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line);
}

.hero-rail p:first-child {
  border-left: 1px solid var(--line);
}

.hero-rail strong {
  font-size: 18px;
}

.hero-rail span {
  color: var(--muted);
  font-size: 14px;
}

.statement {
  padding: 150px 0;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 72px;
  border-bottom: 1px solid var(--line);
}

.statement p {
  margin: 9px 0 0;
  max-width: 280px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.statement h2,
.section-heading h2,
.approach h2,
.booking h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 70px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

.services,
.approach,
.booking {
  padding: 130px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading p,
.approach-copy > p,
.booking-copy > p,
.booking-panel-heading > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 66%;
  background: linear-gradient(180deg, transparent, rgb(8 9 10 / 0.94));
  pointer-events: none;
}

.service-card-media,
.service-card-media .media-drift,
.service-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card-media img {
  object-fit: cover;
  filter: saturate(0.8) contrast(1.07);
}

.service-card-copy {
  position: relative;
  z-index: 2;
  padding: 38px;
}

.service-card-copy > p {
  margin: 0 0 14px;
  font-family: var(--font-meta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-card-copy h3 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 62px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.service-card-copy > span {
  display: block;
  max-width: 500px;
  margin-top: 18px;
  color: rgb(244 244 241 / 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.service-card-photo {
  color: #f4f4f1;
}

.service-card-accent {
  justify-content: space-between;
  background: var(--accent);
  color: var(--on-accent);
}

.service-card-accent::after,
.service-card-document::after {
  display: none;
}

.service-card-accent .service-card-copy {
  padding-bottom: 24px;
}

.service-card-accent .service-card-copy > span {
  color: var(--on-accent);
}

.fitment-sequence {
  position: relative;
  z-index: 2;
  margin: 0 38px 38px;
  border-top: 1px solid rgb(255 250 250 / 0.48);
}

.fitment-sequence span {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgb(255 250 250 / 0.48);
  font-family: var(--font-meta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card-document {
  justify-content: space-between;
  background:
    linear-gradient(145deg, transparent 0 64%, rgb(216 35 51 / 0.12) 64% 100%),
    var(--surface);
}

.service-card-document .service-card-copy {
  padding-bottom: 24px;
}

.service-card-document .service-card-copy > span {
  color: var(--muted);
}

.recommendation-record {
  position: relative;
  z-index: 2;
  margin: 0 38px 38px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.recommendation-record div {
  min-height: 92px;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.recommendation-record dt {
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommendation-record dd {
  margin: 0;
  font-weight: 800;
}

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

.approach-copy {
  max-width: 760px;
  margin-bottom: 70px;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-flow article {
  position: relative;
  min-height: 240px;
  padding: 26px 28px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.process-flow article::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
}

.process-flow article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.process-flow strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.process-flow p {
  margin: 0;
  color: var(--muted);
}

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

.booking-stage {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-story {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(310px, 0.95fr) auto;
  background: var(--page);
  border-right: 1px solid var(--line);
}

.booking-copy {
  padding: clamp(38px, 5vw, 64px);
}

.booking-copy > p {
  max-width: 470px;
}

.booking-copy > a {
  display: inline-block;
  margin-top: 28px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 6px;
}

.booking-visual {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  background: var(--surface-strong);
}

.booking-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgb(16 17 18 / 0.45));
  pointer-events: none;
}

.booking-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.88) contrast(1.06);
}

.booking-stage:hover .booking-visual img {
  transform: translate3d(var(--media-x), var(--media-y), 0) scale(1.075);
}

.booking-handoff {
  display: grid;
}

.booking-handoff article {
  padding: 20px clamp(38px, 5vw, 64px);
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: baseline;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.booking-handoff span {
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.booking-handoff strong {
  font-size: 15px;
  line-height: 1.4;
}

.booking-panel {
  min-width: 0;
  padding: clamp(38px, 5vw, 64px);
  display: grid;
  align-items: center;
  background: var(--surface);
}

.booking-panel-heading {
  margin-bottom: 36px;
}

.booking-panel-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.booking-panel-heading > p {
  max-width: 520px;
  font-size: 16px;
}

.request-preview > div > p {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 900;
}

.request-preview {
  min-height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.request-preview[hidden],
.booking-form[hidden] {
  display: none;
}

.request-preview:not([hidden]) {
  animation: preview-arrive 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.form-section {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-section + .form-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.form-section legend {
  margin-bottom: 16px;
  padding: 0;
  font-family: var(--font-meta);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  font-family: var(--font-meta);
  font-size: 13px;
  font-weight: 900;
}

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

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--page);
  color: var(--text);
  transition: border-color 150ms ease, background-color 150ms ease;
}

input,
select {
  min-height: 48px;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 13px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 38px;
}

textarea {
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: color-mix(in srgb, var(--line), var(--text) 24%);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-strong);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: 0.82;
}

label.has-error input,
label.has-error select,
label.has-error textarea {
  border-color: var(--accent-strong);
}

.form-grid small {
  display: none;
  color: #ff7f89;
  font-weight: 700;
}

:root[data-theme="light"] .form-grid small {
  color: #a50d1d;
}

label.has-error small {
  display: block;
}

.form-footer {
  margin-top: 24px;
  justify-content: space-between;
}

.form-footer p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-notice {
  display: grid;
  gap: 5px;
}

.form-notice > a {
  width: fit-content;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.form-footer.is-loading .button {
  opacity: 0.72;
  pointer-events: none;
}

.request-preview h3 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.request-preview dl {
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.request-preview dl div {
  display: grid;
  gap: 5px;
}

.request-preview dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.request-preview dd {
  margin: 0;
  font-weight: 800;
}

.site-footer {
  width: var(--shell);
  min-height: 220px;
  margin: 0 auto;
  padding: 48px 0;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 0.8fr 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  width: 190px;
}

.footer-identity {
  display: grid;
  gap: 18px;
}

.site-footer p,
.site-footer span {
  color: var(--muted);
}

.site-footer p {
  max-width: 420px;
  margin: 0;
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.site-footer a {
  font-weight: 900;
}

.footer-links a {
  font-family: var(--font-meta);
  font-size: 13px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.legal-main {
  width: var(--shell);
  margin: 0 auto;
  padding: 154px 0 110px;
}

.legal-hero {
  max-width: 980px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.legal-hero .eyebrow {
  margin-bottom: 20px;
}

.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 7vw, 96px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-transform: uppercase;
}

.legal-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.legal-status {
  max-width: 980px;
  margin: 34px 0 0;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
}

.legal-status strong {
  font-family: var(--font-meta);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-status p {
  margin: 0;
  color: var(--muted);
}

.legal-layout {
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(54px, 8vw, 110px);
}

.legal-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 12px;
}

.legal-nav a {
  width: fit-content;
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--text);
}

.legal-content {
  max-width: 780px;
}

.legal-content section {
  padding: 0 0 54px;
}

.legal-content section + section {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.legal-content h3 {
  margin: 32px 0 12px;
  font-size: 19px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 10px;
}

.legal-content a {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

.legal-facts {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.legal-facts div {
  min-height: 118px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-facts dt {
  color: var(--muted);
  font-family: var(--font-meta);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-facts dd {
  margin: 7px 0 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.production-hold {
  margin-top: 28px;
  padding: 24px;
  background: color-mix(in srgb, var(--accent), transparent 88%);
  border-left: 4px solid var(--accent);
}

.production-hold strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-meta);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.production-hold p:last-child {
  margin-bottom: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

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

.js .reveal.is-visible {
  animation: content-rise 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.js .reveal[data-delay="1"].is-visible {
  animation-delay: 100ms;
}

.js .reveal[data-delay="2"].is-visible {
  animation-delay: 180ms;
}

.js .reveal[data-delay="3"].is-visible {
  animation-delay: 260ms;
}

@keyframes content-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-arrive {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-curtain {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@keyframes rail-arrive {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tile-arrive {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes line-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes title-trace {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes preview-arrive {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-progress-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes media-parallax {
  from {
    transform: translateY(-4%);
  }

  to {
    transform: translateY(4%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    opacity: 0;
    animation: hero-copy-arrive 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-copy > :nth-child(1) {
    animation-delay: 120ms;
  }

  .hero-copy > :nth-child(2) {
    animation-delay: 210ms;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: 320ms;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: 430ms;
  }

  .hero-visual::before {
    animation: hero-curtain 1100ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-title-accent::after {
    animation: title-trace 900ms 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-rail p {
    opacity: 0;
    animation: rail-arrive 650ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-rail p:nth-child(1) {
    animation-delay: 620ms;
  }

  .hero-rail p:nth-child(2) {
    animation-delay: 720ms;
  }

  .hero-rail p:nth-child(3) {
    animation-delay: 820ms;
  }

  .process-flow article.is-visible::before {
    animation: line-grow 720ms 180ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .scroll-progress {
      animation: scroll-progress-grow linear both;
      animation-timeline: scroll(root block);
    }

    .service-card-photo .media-drift,
    .booking-visual .media-drift {
      height: 110%;
      margin-top: -5%;
      animation: media-parallax linear both;
      animation-timeline: view(block);
      animation-range: entry 0% exit 100%;
    }
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 200px 1fr auto;
  }

  .desktop-nav {
    gap: 18px;
  }

  .button-small {
    display: none;
  }

  .hero {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero-copy {
    padding-inline: 34px;
  }

  .service-card {
    min-height: 500px;
  }

}

@media (max-width: 960px) {
  .booking-stage {
    grid-template-columns: 1fr;
  }

  .booking-story {
    grid-template-rows: auto minmax(380px, 50vw) auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-copy > p {
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    height: 66px;
    padding: 0 16px;
    grid-template-columns: 1fr auto;
  }

  .scroll-progress {
    top: 65px;
  }

  .brand {
    width: 168px;
    height: 46px;
  }

  .desktop-nav,
  .theme-toggle {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: absolute;
    top: 65px;
    right: 0;
    left: 0;
    padding: 16px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
  }

  .hero {
    min-height: 100dvh;
    padding-top: 66px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(350px, 48dvh) auto;
  }

  .hero-copy {
    padding: 54px 16px 40px;
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.8vw, 56px);
  }

  .hero-summary {
    margin: 22px 0;
  }

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

  .hero-visual::after {
    inset: 0 0 auto;
    width: 100%;
    height: 28%;
    background: linear-gradient(180deg, var(--page), transparent);
  }

  .hero-visual::before {
    animation: none;
    transform: scaleX(0);
  }

  .hero-visual img {
    object-position: 66% center;
  }

  .hero-rail {
    padding: 0 16px;
    grid-template-columns: 1fr;
  }

  .hero-rail p,
  .hero-rail p:first-child {
    min-height: 76px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .statement {
    padding: 88px 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .statement h2,
  .section-heading h2,
  .approach h2,
  .booking h2 {
    font-size: 42px;
  }

  .services,
  .approach,
  .booking {
    padding: 84px 0;
  }

  .booking-copy,
  .booking-panel {
    padding: 34px 24px;
  }

  .booking-story {
    grid-template-rows: auto minmax(250px, 70vw) auto;
  }

  .booking-handoff article {
    padding: 20px 24px;
    grid-template-columns: 74px 1fr;
  }

  .service-cards,
  .form-grid,
  .request-preview dl {
    grid-template-columns: 1fr;
  }

  .service-cards {
    gap: 18px;
  }

  .service-card {
    min-height: 470px;
  }

  .service-card-copy {
    padding: 26px;
  }

  .service-card-copy h3 {
    font-size: 42px;
  }

  .fitment-sequence,
  .recommendation-record {
    margin-right: 26px;
    margin-bottom: 26px;
    margin-left: 26px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow article,
  .process-flow article + article {
    min-height: 170px;
    padding: 24px 0;
    border-left: 0;
  }

  .form-footer,
  .site-footer {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
  }

  .site-footer {
    padding: 42px 0;
  }

  .site-footer > div {
    justify-items: start;
    text-align: left;
  }

  .legal-main {
    padding: 122px 0 78px;
  }

  .legal-hero {
    padding-bottom: 48px;
  }

  .legal-hero h1 {
    font-size: 54px;
  }

  .legal-hero > p:not(.eyebrow) {
    font-size: 18px;
  }

  .legal-status {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-layout {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .legal-content section {
    padding-bottom: 42px;
  }

  .legal-content section + section {
    padding-top: 42px;
  }

  .legal-facts {
    grid-template-columns: 1fr;
  }
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    color-scheme: light;
    --page: #f3f3f0;
    --surface: #fafaf8;
    --surface-strong: #e6e6e2;
    --text: #151617;
    --muted: #5f6265;
    --line: #cfd0cd;
    --accent: #c9192a;
    --accent-strong: #af1020;
    --on-accent: #ffffff;
    --focus: #9a7600;
    --header: rgb(243 243 240 / 0.9);
    --shadow: 0 24px 72px rgb(25 25 20 / 0.12);
  }
}

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

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

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .scroll-progress {
    display: none;
  }

  .motion-media img,
  .booking-visual img,
  .booking-stage:hover .booking-visual img {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
