@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/instrument-serif-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --carbon: #0e1518;
  --charcoal: #182024;
  --ink: #1e2526;
  --paper: #f0ede7;
  --paper-light: #faf8f4;
  --paper-cool: #ddd9d2;
  --stone: #c8c0b5;
  --muted: #6f6b65;
  --metal: #a79e91;
  --oxblood: #6b222b;
  --oxblood-dark: #4f171e;
  --white: #fffdf8;
  --navy: var(--carbon);
  --blue: var(--oxblood);
  --blue-dark: var(--oxblood-dark);
  --orange: var(--oxblood);
  --orange-dark: var(--oxblood-dark);
  --line: rgba(29, 32, 30, 0.2);
  --line-light: rgba(255, 253, 248, 0.22);
  --error: #a02e34;
  --header-h: 84px;
  --gutter: clamp(1.25rem, 4vw, 5.5rem);
  --space: clamp(6.5rem, 10vw, 11rem);
  --display: "Instrument Serif", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --mono: var(--sans);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  background: var(--carbon);
}

body {
  color: var(--ink);
  background: var(--paper-light);
  font-family: var(--sans);
  font-size: clamp(0.95rem, 0.18vw + 0.91rem, 1.06rem);
  line-height: 1.62;
}

main {
  overflow: clip;
}

::selection {
  color: var(--white);
  background: var(--oxblood);
}

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px var(--oxblood);
}

.shell {
  width: min(100%, 1600px);
  padding-inline: var(--gutter);
}

.margin-label,
.eyebrow {
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.026em;
}

h2 {
  font-size: clamp(3rem, 5.1vw, 5.8rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.85rem);
  line-height: 1.04;
}

.skip-link {
  color: var(--carbon);
  background: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  min-height: var(--header-h);
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  padding-inline: var(--gutter);
  color: var(--white);
  background: rgba(13, 15, 14, 0.96);
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
  backdrop-filter: none;
  transition: min-height 220ms var(--ease), background-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  background: rgba(13, 15, 14, 0.985);
}

.brand {
  display: grid;
  min-width: 10rem;
  min-height: 2.75rem;
  align-content: center;
  padding: 0 1.8rem 0 0;
  border: 0;
  border-right: 1px solid rgba(255, 253, 248, 0.2);
  line-height: 0.92;
}

.brand-main {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.72rem;
  font-weight: 400;
  letter-spacing: 0.045em;
}

.brand-sub {
  margin-top: 0.32rem;
  color: rgba(255, 253, 248, 0.66);
  font-family: var(--sans);
  font-size: 0.51rem;
  font-weight: 600;
  letter-spacing: 0.32em;
}

.header-place {
  gap: 0;
  padding-inline: 1.8rem;
  color: rgba(255, 253, 248, 0.58);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 560;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-place span {
  display: none;
}

.site-nav {
  justify-self: end;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.5rem);
}

.site-nav > a {
  position: relative;
  min-height: auto;
  padding: 0.55rem 0;
  color: rgba(255, 253, 248, 0.72);
  border: 0;
  font-size: clamp(0.66rem, 0.67vw, 0.76rem);
  font-weight: 560;
  letter-spacing: 0.045em;
  line-height: 1.2;
  transition: color 180ms ease;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 0.18rem;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--white);
  background: transparent;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-contact {
  min-height: 2.65rem;
  padding: 0.78rem 1rem;
  color: var(--white);
  background: var(--oxblood);
  border: 1px solid var(--oxblood);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-nav .nav-contact::after {
  display: none;
}

.site-nav .nav-contact:hover {
  color: var(--carbon);
  background: var(--white);
  border-color: var(--white);
}

.desk-hero {
  position: relative;
  min-height: max(760px, 100svh);
  padding: 0;
  color: var(--white);
  background: var(--carbon);
  isolation: isolate;
}

.sheet-photo-main::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 13, 16, 0.7) 0%, rgba(8, 13, 16, 0.27) 52%, rgba(8, 13, 16, 0.08) 77%),
    linear-gradient(0deg, rgba(8, 13, 16, 0.82) 0%, transparent 50%);
  pointer-events: none;
}

.desk-grid,
.sheet-memo,
.sheet-photo-detail,
.sheet-photo-context {
  display: none;
}

.contact-sheet.shell {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.sheet-photo-main {
  position: absolute;
  z-index: auto;
  inset: 0;
  display: block;
  padding: 0;
  background: var(--carbon);
  border: 0;
  box-shadow: none;
}

.sheet-photo-main picture,
.sheet-photo-main img {
  width: 100%;
  height: 100%;
}

.sheet-photo-main img {
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.84) contrast(1.03) brightness(0.92);
}

.sheet-photo-main figcaption {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  gap: 1rem;
  padding: 0;
  color: rgba(255, 253, 248, 0.88);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desk-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: max(760px, 100svh);
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.62fr);
  grid-template-rows: 1fr auto;
  align-items: end;
  gap: 1.4rem clamp(3rem, 8vw, 9rem);
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: clamp(5rem, 9vh, 8rem);
}

.case-index {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  flex-direction: row;
  gap: 1rem;
  padding: 0 0 1.2rem;
  color: rgba(255, 253, 248, 0.68);
  border: 0;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 620;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-index span + span::before {
  margin-right: 1rem;
  content: "—";
}

.desk-hero h1 {
  grid-column: 1;
  grid-row: 2;
  max-width: 10.2ch;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4.7rem, 7.4vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero-introduction {
  grid-column: 2;
  grid-row: 2;
  max-width: 30rem;
  align-self: end;
  gap: 2.2rem;
  padding: 0 0 0.35rem;
}

.hero-introduction > p {
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1rem, 1.1vw, 1.17rem);
  font-weight: 420;
  letter-spacing: -0.015em;
  line-height: 1.62;
}

.plain-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 3.25rem;
  justify-content: flex-start;
  gap: 2.4rem;
  padding: 0.92rem 1.08rem;
  color: var(--white);
  background: var(--oxblood);
  border: 1px solid var(--oxblood);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.plain-cta:hover {
  color: var(--carbon);
  background: var(--white);
  border-color: var(--white);
}

.situation-section {
  padding-block: var(--space);
  color: var(--ink);
  background: var(--paper-light);
}

.situation-layout {
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(4rem, 10vw, 11rem);
}

.situation-intro {
  top: calc(var(--header-h) + 2.25rem);
}

.situation-intro .margin-label {
  margin-bottom: 2.4rem;
  color: var(--oxblood);
}

.situation-intro h2 {
  max-width: 9ch;
  font-size: clamp(3.6rem, 5vw, 5.6rem);
}

.situation-intro > p:last-child {
  max-width: 27rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.situation-file details {
  border-bottom: 1px solid var(--line);
}

.situation-file summary {
  min-height: clamp(7rem, 10vw, 9.5rem);
  grid-template-columns: minmax(0, 1fr) 2rem;
  gap: 2rem;
  padding-block: 1.5rem;
}

.situation-file summary > span:first-child {
  max-width: 28ch;
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.8vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.04;
}

.summary-mark {
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.summary-mark::before,
.summary-mark::after {
  width: 0.72rem;
  height: 1px;
  background: var(--ink);
}

.situation-answer {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  padding-bottom: 2.25rem;
}

.situation-answer p {
  max-width: 39rem;
  color: var(--muted);
}

.situation-answer a {
  color: var(--oxblood);
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.operator-section {
  padding-block: var(--space);
  color: var(--ink);
  background: var(--paper);
}

.operator-layout {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.operator-id {
  grid-column: 1 / 6;
  grid-row: 1;
  color: var(--muted);
}

.operator-name {
  display: none;
}

.operator-copy {
  grid-column: 1 / 6;
  grid-row: 2;
  padding-top: clamp(4rem, 8vw, 8rem);
}

.operator-copy h2 {
  max-width: 9.5ch;
  color: var(--ink);
  font-size: clamp(3.5rem, 4.8vw, 5.4rem);
}

.operator-copy > p {
  max-width: 35rem;
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.05vw, 1.12rem);
  line-height: 1.68;
}

.operator-actions {
  gap: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.operator-actions a {
  min-width: 0;
  padding: 1.1rem 0;
  color: var(--ink);
  border-bottom: 0;
  font-family: var(--sans);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.operator-photo {
  grid-column: 7 / 13;
  grid-row: 1 / 3;
  align-self: stretch;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  transform: none;
}

.operator-photo picture {
  height: 100%;
  min-height: 620px;
  aspect-ratio: auto;
}

.operator-photo img {
  filter: saturate(0.78) contrast(1.02) brightness(0.92);
}

.operator-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.61rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.operator-note {
  grid-column: 7 / 13;
  grid-row: 3;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.5rem 0 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  box-shadow: none;
  transform: none;
}

.operator-note > span,
.operator-note a {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 620;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.operator-note > span,
.operator-note a {
  color: var(--oxblood);
}

.operator-note p {
  font-size: 0.76rem;
  line-height: 1.5;
}

.final-note {
  padding-block: clamp(7rem, 11vw, 11rem);
  color: var(--ink);
  background: var(--paper-light);
}

.final-note-layout {
  display: grid;
  grid-template-columns: 0.45fr minmax(0, 1fr) 0.68fr auto;
  align-items: end;
  gap: clamp(2rem, 4vw, 5rem);
}

.final-note .margin-label {
  align-self: start;
  color: var(--oxblood);
}

.final-note h2 {
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(3.4rem, 5vw, 5.8rem);
}

.final-note-layout > p:not(.margin-label) {
  max-width: 29rem;
  color: var(--muted);
}

.contact-stamp {
  display: inline-flex;
  width: auto;
  min-width: 12rem;
  height: auto;
  min-height: 3.5rem;
  aspect-ratio: auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 1.15rem;
  color: var(--white);
  background: var(--oxblood);
  border: 1px solid var(--oxblood);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-align: left;
  text-transform: uppercase;
  transform: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.contact-stamp:hover {
  color: var(--white);
  background: var(--carbon);
}

@media (max-width: 1180px) {
  .header-place {
    display: none;
  }

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

  .site-nav {
    gap: 1.2rem;
  }

  .desk-hero-copy {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.65fr);
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: var(--gutter);
  }

  .brand {
    min-width: 0;
    padding-right: 1.2rem;
    border: 0;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    gap: 0.38rem;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 253, 248, 0.25);
  }

  .nav-toggle > span[aria-hidden="true"] {
    width: 1rem;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: calc(var(--header-h) + 3rem) var(--gutter) 4rem;
    color: var(--white);
    background: var(--carbon);
    width: 100%;
    max-width: none;
    justify-self: stretch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms var(--ease), visibility 0s linear 180ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav > a {
    width: 100%;
    padding: 1.1rem 0;
    color: var(--white);
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: clamp(2rem, 7vw, 3.3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .site-nav .nav-contact {
    width: auto;
    margin-top: 2rem;
    padding: 0.9rem 1.1rem;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .desk-hero,
  .desk-hero-copy {
    min-height: max(740px, 100svh);
  }

  .desk-hero-copy {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto auto;
    gap: 1.5rem;
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 4rem;
  }

  .case-index {
    grid-column: 1;
    grid-row: 1;
    padding: 0;
  }

  .desk-hero h1 {
    grid-column: 1;
    grid-row: 2;
    max-width: 8.8ch;
    font-size: clamp(4.1rem, 14vw, 6.3rem);
  }

  .hero-introduction {
    grid-column: 1;
    grid-row: 3;
    max-width: 31rem;
  }

  .sheet-photo-main img {
    object-position: 58% center;
  }

  .sheet-photo-main figcaption {
    display: none;
  }

  .situation-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .situation-intro {
    position: static;
  }

  .situation-intro h2 {
    max-width: 10ch;
  }

  .situation-answer {
    grid-template-columns: 1fr;
  }

  .operator-id,
  .operator-copy,
  .operator-photo,
  .operator-note {
    grid-column: 1 / -1;
  }

  .operator-id {
    grid-row: 1;
  }

  .operator-copy {
    grid-row: 2;
    padding-top: 3rem;
  }

  .operator-photo {
    grid-row: 3;
    margin-top: 3rem;
  }

  .operator-photo picture {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .operator-note {
    grid-row: 4;
    grid-template-columns: 1fr 1fr;
  }

  .operator-note a {
    grid-column: 1 / -1;
  }

  .final-note-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-stamp {
    grid-column: 1;
    grid-row: auto;
    margin-top: 1rem;
  }

  .final-note-layout > * {
    grid-column: 1;
    grid-row: auto;
  }

  .no-js .site-header {
    position: relative;
    grid-template-columns: 1fr;
    padding-block: 1rem;
  }

  .no-js .nav-toggle {
    display: none;
  }

  .no-js .site-nav {
    position: static;
    display: flex;
    width: 100%;
    padding: 1.5rem 0 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 1.15rem;
    --space: 5.8rem;
  }

  .brand-main {
    font-size: 1.48rem;
  }

  .case-index {
    flex-direction: column;
    gap: 0.22rem;
  }

  .case-index span + span::before {
    display: none;
  }

  .desk-hero::after {
    background:
      linear-gradient(90deg, rgba(8, 10, 9, 0.71) 0%, rgba(8, 10, 9, 0.15) 100%),
      linear-gradient(0deg, rgba(8, 10, 9, 0.94) 0%, rgba(8, 10, 9, 0.12) 78%);
  }

  .desk-hero h1 {
    font-size: clamp(3.65rem, 16.8vw, 5.4rem);
  }

  .hero-introduction > p {
    font-size: 0.98rem;
  }

  .plain-cta {
    width: 100%;
    justify-content: space-between;
  }

  .situation-answer a,
  .operator-actions a,
  .service-margin a,
  .secondary-links a,
  .partner-brief a,
  .map-link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .situation-file summary {
    min-height: 7.2rem;
    gap: 1rem;
  }

  .situation-file summary > span:first-child {
    font-size: 1.85rem;
  }

  .operator-copy h2,
  .final-note h2 {
    font-size: clamp(3.25rem, 14vw, 4.7rem);
  }

  .operator-actions {
    flex-direction: column;
    gap: 0;
  }

  .operator-actions a + a {
    border-top: 1px solid var(--line-light);
  }

  .operator-note {
    grid-template-columns: 1fr;
  }

  .operator-note a {
    grid-column: auto;
  }
}

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

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

/* Shared inner pages */

.index-hero,
.fleet-board,
.partner-cover,
.chauffeur-cover,
.contact-cover,
.text-page,
.success-page {
  padding-top: calc(var(--header-h) + clamp(4rem, 7vw, 8rem));
}

.index-hero {
  padding-bottom: 0;
  color: var(--ink);
  background: var(--paper-light);
}

.index-hero-layout {
  display: grid;
  grid-template-columns: minmax(9rem, 0.32fr) minmax(0, 0.95fr) minmax(20rem, 0.8fr);
  align-items: start;
  gap: clamp(2.5rem, 5vw, 6rem);
}

.index-hero-layout > .case-index {
  grid-column: 1;
  grid-row: 1;
  padding-top: 0.35rem;
  color: var(--muted);
}

.index-hero-copy {
  grid-column: 2;
  grid-row: 1;
}

.index-hero-copy .margin-label,
.fleet-board-heading .margin-label,
.partner-copy .margin-label,
.chauffeur-copy .margin-label,
.contact-letter-heading .margin-label {
  margin-bottom: 2rem;
  color: var(--oxblood);
}

.index-hero h1 {
  max-width: 10ch;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(3.6rem, 5vw, 5.9rem);
  font-weight: 420;
  letter-spacing: -0.056em;
  line-height: 0.96;
}

.index-hero-copy > p:last-of-type {
  max-width: 36rem;
  margin-top: 2.2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.index-hero-photo {
  grid-column: 3;
  grid-row: 1;
  align-self: stretch;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.index-hero-photo picture {
  height: clamp(490px, 52vw, 720px);
}

.index-hero-photo img,
.service-evidence img,
.fleet-photo-primary img,
.partner-photo img,
.chauffeur-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02) brightness(0.96);
}

.index-hero-photo figcaption,
.service-evidence figcaption,
.fleet-photo-primary figcaption,
.partner-photo figcaption,
.chauffeur-images figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 560;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-transform: uppercase;
}

.request-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(4rem, 7vw, 7rem);
  padding-block: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.request-index a {
  display: flex;
  min-height: 9.5rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem clamp(1rem, 2vw, 2rem);
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.request-index a:first-child {
  border-left: 1px solid var(--line);
}

.request-index a:hover {
  color: var(--white);
  background: var(--carbon);
}

.request-index a > span {
  max-width: 25ch;
  font-family: var(--display);
  font-size: clamp(1.45rem, 1.8vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.request-index small {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-spread,
.service-spread-blue,
.service-spread-orange {
  padding-block: var(--space);
  color: var(--ink);
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.service-spread:nth-of-type(odd) {
  background: var(--paper);
}

.service-spread-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2vw, 2rem);
}

.service-margin {
  grid-column: 1 / 3;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.4rem 2rem 0 0;
  color: var(--muted);
  border: 0;
  font-family: var(--sans);
  font-size: 0.67rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: initial;
}

.service-margin a {
  color: var(--oxblood);
}

.service-body {
  grid-column: 3 / 8;
}

.service-body h2 {
  max-width: 10ch;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(2.65rem, 3.45vw, 4.1rem);
  font-weight: 420;
  letter-spacing: -0.048em;
  line-height: 1.02;
}

.service-body > p {
  max-width: 39rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.work-notes {
  margin-top: 2.75rem;
  border-top: 1px solid var(--line);
}

.work-notes li {
  display: grid;
  grid-template-columns: minmax(8rem, 0.38fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.work-notes span {
  color: var(--oxblood);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-notes p {
  color: var(--muted);
  font-size: 0.86rem;
}

.service-body .plain-cta,
.service-spread-blue .plain-cta {
  margin-top: 2.5rem;
  color: var(--white);
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.service-body .plain-cta:hover,
.service-spread-blue .plain-cta:hover {
  color: var(--white);
  background: var(--carbon);
  border-color: var(--carbon);
}

.service-evidence {
  grid-column: 9 / 13;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.service-evidence picture,
.service-evidence-portrait picture {
  height: clamp(440px, 42vw, 650px);
  aspect-ratio: auto;
}

.service-spread-reverse .service-margin {
  grid-column: 11 / 13;
  grid-row: 1;
  padding: 0.4rem 0 0 2rem;
}

.service-spread-reverse .service-body {
  grid-column: 6 / 11;
  grid-row: 1;
}

.service-spread-reverse .service-evidence {
  grid-column: 1 / 5;
  grid-row: 1;
}

.boundary-note {
  margin-top: 2.5rem;
  padding: 1.1rem 0 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
}

.secondary-service {
  padding-block: var(--space);
  color: var(--white);
  background: var(--charcoal);
}

.secondary-service-layout {
  display: grid;
  grid-template-columns: 0.34fr minmax(0, 1.15fr) minmax(18rem, 0.65fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
}

.secondary-service .margin-label {
  color: rgba(255, 253, 248, 0.58);
}

.secondary-service h2 {
  max-width: 10ch;
  color: var(--white);
  font-size: clamp(3.6rem, 5vw, 5.8rem);
}

.secondary-service-layout > p:nth-of-type(2) {
  max-width: 31rem;
  color: rgba(255, 253, 248, 0.65);
}

.secondary-links {
  grid-column: 3;
  display: grid;
  width: 100%;
  margin-top: 2.2rem;
  border-top: 1px solid var(--line-light);
}

.secondary-links a {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.75rem;
  text-decoration: none;
}

/* Fleet */

.fleet-board {
  padding-bottom: var(--space);
  color: var(--white);
  background: var(--carbon);
}

.fleet-board-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2vw, 2rem);
}

.fleet-board-heading {
  grid-column: 1 / 6;
  padding-top: 0;
}

.fleet-board-heading .case-index {
  margin-bottom: clamp(4rem, 8vw, 8rem);
  color: rgba(255, 253, 248, 0.58);
}

.fleet-board h1 {
  max-width: 9.5ch;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(3.6rem, 5vw, 5.9rem);
  font-weight: 380;
  letter-spacing: -0.056em;
  line-height: 0.96;
}

.fleet-board-lede {
  max-width: 34rem;
  margin-top: 2.1rem;
  color: rgba(255, 253, 248, 0.68);
  font-size: 1rem;
  line-height: 1.68;
}

.fleet-board .plain-cta {
  margin-top: 2.5rem;
}

.fleet-photo-board {
  grid-column: 7 / 13;
  position: relative;
  display: grid;
}

.fleet-photo-primary {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.fleet-photo-primary picture {
  height: clamp(540px, 52vw, 760px);
}

.fleet-photo-primary figcaption {
  color: rgba(255, 253, 248, 0.48);
}

.fleet-board-note {
  position: static;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
  padding: 1.25rem 0 0;
  color: rgba(255, 253, 248, 0.68);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-light);
  box-shadow: none;
  transform: none;
}

.fleet-board-note span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fleet-board-note p {
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.55vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.25;
}

.fleet-friction {
  padding-block: var(--space);
  color: var(--ink);
  background: var(--paper);
}

.fleet-friction-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 9rem);
  counter-reset: friction;
}

.fleet-friction header {
  grid-column: 1;
  grid-row: 1 / 5;
  padding-right: 1rem;
  border: 0;
}

.fleet-friction header h2 {
  max-width: 9ch;
  margin-top: 2rem;
  font-size: clamp(3.5rem, 5vw, 5.7rem);
}

.friction-list {
  grid-column: 2;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.friction-list li {
  position: relative;
  display: grid;
  min-height: 7rem;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.25vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.12;
  quotes: none;
  counter-increment: friction;
}

.friction-list li::before {
  content: "0" counter(friction);
  color: var(--oxblood);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.fleet-register {
  padding-block: var(--space);
  background: var(--paper-light);
}

.register-heading {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 1fr) 0.62fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.register-heading h2 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 4.7vw, 5.5rem);
}

.register-heading > p:last-child {
  max-width: 30rem;
  color: var(--muted);
}

.register-table {
  border-top: 1px solid var(--ink);
}

.register-row {
  display: grid;
  grid-template-columns: 0.45fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 5rem);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.register-row strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
}

.register-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.register-head {
  padding-block: 0.85rem;
  background: transparent;
}

.register-head span {
  color: var(--ink);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.fleet-boundary {
  padding-block: var(--space);
  color: var(--white);
  background: var(--charcoal);
}

.fleet-boundary-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.fleet-boundary h2 {
  max-width: 10ch;
  margin-top: 2rem;
  font-size: clamp(3.6rem, 5vw, 5.7rem);
}

.fleet-boundary dl {
  border-top: 1px solid var(--line-light);
}

.fleet-boundary dl > div {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line-light);
}

.fleet-boundary dt {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.65rem;
}

.fleet-boundary dd {
  color: rgba(255, 253, 248, 0.65);
}

.fleet-contact {
  padding-block: var(--space);
  color: var(--ink);
  background: var(--paper);
}

/* Professional services */

.partner-cover {
  padding-bottom: var(--space);
  background: var(--paper-light);
}

.partner-cover-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(1rem, 2vw, 2rem);
}

.partner-copy {
  grid-column: 1 / 6;
}

.partner-copy .case-index {
  margin-bottom: clamp(4rem, 7vw, 7rem);
  color: var(--muted);
}

.partner-copy h1 {
  max-width: 9ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4rem, 5.8vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.034em;
  line-height: 0.91;
}

.partner-copy > p:last-of-type {
  max-width: 34rem;
  margin-top: 2.1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.partner-copy .plain-cta {
  margin-top: 2.5rem;
}

.partner-photo {
  grid-column: 7 / 13;
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.partner-photo picture {
  height: clamp(570px, 55vw, 790px);
}

.partner-stamp {
  display: none;
}

.handoff-section {
  padding-block: var(--space);
  color: var(--white);
  background: var(--carbon);
}

.handoff-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(4rem, 8vw, 9rem);
}

.handoff-layout > header h2 {
  max-width: 8ch;
  margin-top: 2rem;
  color: var(--white);
  font-size: clamp(3.8rem, 5vw, 5.7rem);
}

.handoff-layout > header > p:last-child {
  max-width: 28rem;
  margin-top: 2rem;
  color: rgba(255, 253, 248, 0.62);
}

.handoff-sheet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.handoff-column,
.handoff-column-blue {
  min-height: 30rem;
  padding: 1.5rem clamp(1.25rem, 2vw, 2rem);
  color: var(--white);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-light);
  box-shadow: none;
  transform: none;
}

.handoff-column:first-child {
  padding-left: 0;
}

.handoff-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.handoff-label {
  color: rgba(255, 253, 248, 0.5);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.handoff-column h3 {
  margin-top: 4rem;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.1vw, 2.45rem);
  font-weight: 400;
  letter-spacing: -0.018em;
}

.handoff-column p {
  margin-top: 1.5rem;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.86rem;
}

.mission-desk {
  padding-block: var(--space);
  background: var(--paper-light);
}

.mission-desk-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.mission-desk header h2 {
  max-width: 10ch;
  margin-top: 2rem;
  font-size: clamp(3.5rem, 5vw, 5.7rem);
}

.mission-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.mission-list article {
  min-height: 20rem;
  padding: 1.6rem 2rem 1.6rem 0;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-list article:nth-child(even) {
  padding-right: 0;
  padding-left: 2rem;
  border-right: 0;
}

.mission-list h3 {
  max-width: 17ch;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.25vw, 2.55rem);
  font-weight: 400;
}

.mission-list p {
  max-width: 33rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.mission-list article > span {
  display: block;
  margin-top: 3rem;
  color: var(--oxblood);
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-test {
  padding-block: var(--space);
  color: var(--white);
  background: var(--charcoal);
}

.partner-test-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.65fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 12rem);
}

.partner-test-copy h2 {
  max-width: 10ch;
  margin-top: 2rem;
  color: var(--white);
  font-size: clamp(3.6rem, 5vw, 5.8rem);
}

.partner-test-copy > p:last-child {
  max-width: 38rem;
  margin-top: 2rem;
  color: rgba(255, 253, 248, 0.62);
}

.partner-brief {
  position: static;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-light);
  box-shadow: none;
  transform: none;
}

.brief-tab {
  display: block;
  width: auto;
  padding: 1.2rem 0;
  color: rgba(255, 253, 248, 0.5);
  background: transparent;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.partner-brief p {
  padding: 1rem 0;
  border-top: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: 1.45rem;
}

.partner-brief a {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 1rem;
  color: var(--white);
  background: var(--oxblood);
  font-size: 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
}

/* Chauffeur: deliberately secondary */

.chauffeur-cover {
  padding-bottom: var(--space);
  color: var(--white);
  background: var(--carbon);
}

.chauffeur-cover-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.chauffeur-cover-layout > .case-index {
  grid-column: 1 / 6;
  grid-row: 1;
  margin-bottom: clamp(4rem, 7vw, 7rem);
  color: rgba(255, 253, 248, 0.58);
}

.chauffeur-copy {
  grid-column: 1 / 7;
  grid-row: 2;
}

.chauffeur-copy h1 {
  max-width: 10ch;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(4rem, 5.5vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.034em;
  line-height: 0.91;
}

.chauffeur-copy > p:last-of-type {
  max-width: 37rem;
  margin-top: 2.2rem;
  color: rgba(255, 253, 248, 0.66);
  font-size: 1rem;
  line-height: 1.68;
}

.chauffeur-copy .plain-cta {
  margin-top: 2.5rem;
}

.chauffeur-images {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
  display: block;
  min-height: 0;
  padding: 0;
}

.chauffeur-images figure {
  position: static;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.chauffeur-images picture {
  height: clamp(620px, 65vw, 860px);
}

.chauffeur-images figcaption {
  color: rgba(255, 253, 248, 0.48);
}

.chauffeur-check {
  padding-block: var(--space);
  background: var(--paper-light);
}

.chauffeur-check-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.chauffeur-check header h2 {
  max-width: 10ch;
  margin-top: 2rem;
  font-size: clamp(3.4rem, 4.7vw, 5.5rem);
}

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

.check-list > div {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.check-list dt {
  font-family: var(--display);
  font-size: 1.8rem;
}

.check-list dd {
  color: var(--muted);
}

.chauffeur-answer {
  padding-block: var(--space);
  color: var(--white);
  background: var(--charcoal);
}

.chauffeur-answer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: clamp(4rem, 10vw, 12rem);
}

.chauffeur-answer h2 {
  max-width: 10ch;
  margin-top: 2rem;
  color: var(--white);
  font-size: clamp(3.6rem, 5vw, 5.8rem);
}

.chauffeur-answer-copy > p:last-child {
  max-width: 38rem;
  margin-top: 2rem;
  color: rgba(255, 253, 248, 0.64);
}

.availability-note {
  align-self: end;
  padding: 1.5rem 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.availability-note span {
  color: rgba(255, 253, 248, 0.5);
  font-family: var(--sans);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-note p {
  margin-top: 1.25rem;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.25;
}

/* Contact and forms */

.contact-cover {
  padding-bottom: var(--space);
  color: var(--ink);
  background: var(--paper);
}

.contact-cover-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.48fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 9rem);
}

.contact-person {
  position: sticky;
  top: calc(var(--header-h) + 3rem);
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.contact-person .case-index {
  margin-bottom: clamp(4rem, 7vw, 7rem);
  color: var(--muted);
}

.contact-person .margin-label {
  margin-bottom: 2rem;
  color: var(--oxblood);
}

.contact-person-links {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-person-links a {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-person-links span,
.contact-person address span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.61rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-person-links strong {
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.6vw, 1.75rem);
  font-weight: 400;
}

.contact-person address {
  display: grid;
  gap: 0.35rem;
  margin-top: 2.5rem;
  font-style: normal;
}

.map-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--oxblood);
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
}

.contact-letter {
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: none;
  transform: none;
}

.contact-letter-heading {
  padding-bottom: clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.contact-letter-heading h1 {
  max-width: 10ch;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.7rem, 5vw, 5.9rem);
  font-weight: 400;
  letter-spacing: -0.032em;
  line-height: 0.94;
}

.contact-letter-heading > p:last-child {
  max-width: 36rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1rem;
}

.contact-letter form {
  margin-top: clamp(3rem, 5vw, 5rem);
}

.letter-form-grid,
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}

.letter-form-grid > label:not(.consent),
.form-grid label:not(.consent) {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 620;
  letter-spacing: 0.04em;
}

.letter-form-grid .full,
.form-grid .full {
  grid-column: 1 / -1;
}

input:not([type="checkbox"]),
select,
textarea {
  width: 100%;
  min-height: 3.4rem;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(30, 37, 38, 0.52);
  border-radius: 0;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.message-label small,
.field-error {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 480;
  letter-spacing: 0;
  line-height: 1.5;
}

.field-error {
  color: var(--error);
}

textarea {
  min-height: 10rem;
  resize: vertical;
}

input:not([type="checkbox"]):focus,
select:focus,
textarea:focus {
  border-color: var(--oxblood);
  box-shadow: inset 3px 0 0 var(--oxblood);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--oxblood);
}

.consent .field-error {
  grid-column: 2;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.button,
.button-dark,
.button-light,
.button-ink {
  min-height: 3.5rem;
  padding: 0.95rem 1.2rem;
  color: var(--white);
  background: var(--oxblood);
  border: 1px solid var(--oxblood);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease;
}

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

.button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.form-panel {
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--paper-light);
  border: 1px solid var(--line);
  box-shadow: none;
}

.contact-intro h2 {
  max-width: 9ch;
  margin-top: 2rem;
  font-size: clamp(3.7rem, 5vw, 5.8rem);
}

.contact-intro > p:not(.margin-label) {
  max-width: 31rem;
  margin-top: 2rem;
  color: var(--muted);
}

.direct-list {
  display: grid;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.direct-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.direct-list small {
  color: var(--muted);
}

.form-note,
.contact-letter-note,
.form-status {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.72rem;
}

/* Footer and utility pages */

.site-footer {
  padding-block: clamp(5rem, 8vw, 8rem) 1.5rem;
  color: var(--white);
  background: var(--carbon);
  border-top: 1px solid var(--line-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(9rem, 0.5fr) minmax(12rem, 0.7fr) minmax(10rem, 0.55fr) minmax(14rem, 0.75fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.footer-brand {
  display: grid;
  width: auto;
  min-height: 0;
  align-content: start;
  padding: 0;
  background: transparent;
  border: 0;
  text-decoration: none;
}

.footer-brand span,
.footer-brand small {
  display: block;
}

.footer-brand span {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 0.95;
}

.footer-brand small {
  margin-top: 0.45rem;
  color: rgba(255, 253, 248, 0.56);
  font-family: var(--sans);
  font-size: 0.55rem;
  font-weight: 620;
  letter-spacing: 0.32em;
}

.footer-address {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.78rem;
  line-height: 1.7;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0;
}

.footer-nav a,
.footer-contact a {
  padding: 0.55rem 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.74rem;
  text-decoration: none;
}

.footer-contact a:first-child {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.55rem;
}

.footer-base {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin-top: clamp(4rem, 7vw, 7rem);
  padding-top: 1.25rem;
  color: rgba(255, 253, 248, 0.68);
  border-top: 1px solid var(--line-light);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-base span:last-child {
  text-align: right;
}

.mobile-actions {
  display: none;
}

.text-page {
  min-height: 75vh;
  padding-bottom: var(--space);
  color: var(--ink);
  background: var(--paper-light);
}

.text-page-header {
  max-width: 55rem;
  margin-bottom: 4rem;
}

.text-page-header h1,
.success-card h1 {
  margin-top: 1.5rem;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.034em;
  line-height: 0.92;
}

.prose {
  max-width: 52rem;
  color: var(--muted);
}

.success-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding-right: var(--gutter);
  padding-bottom: var(--space);
  padding-left: var(--gutter);
  color: var(--white);
  background: var(--carbon);
}

.success-card {
  width: min(100%, 56rem);
  padding: clamp(2rem, 6vw, 6rem);
  color: var(--white);
  background: var(--charcoal);
  border: 1px solid var(--line-light);
  box-shadow: none;
  text-align: center;
}

.success-card > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 2rem auto 0;
  color: rgba(255, 253, 248, 0.64);
}

.success-card .button-row {
  justify-content: center;
  margin-top: 2.5rem;
}

@media (max-width: 1100px) {
  .index-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.75fr);
  }

  .index-hero-layout > .case-index {
    grid-column: 1;
    margin-bottom: 4rem;
  }

  .index-hero-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .index-hero-photo {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .request-index {
    grid-template-columns: 1fr 1fr;
  }

  .request-index a:nth-child(2) {
    border-right: 0;
  }

  .request-index a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-body {
    grid-column: 3 / 9;
  }

  .service-evidence {
    grid-column: 9 / 13;
  }

  .service-spread-reverse .service-body {
    grid-column: 5 / 11;
  }

  .service-spread-reverse .service-evidence {
    grid-column: 1 / 5;
  }

  .handoff-layout,
  .mission-desk-layout {
    grid-template-columns: 1fr;
  }

  .handoff-layout > header,
  .mission-desk header {
    max-width: 44rem;
  }

  .footer-grid {
    grid-template-columns: 0.7fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 980px) {
  body {
    padding-bottom: 3.7rem;
  }

  .index-hero,
  .fleet-board,
  .partner-cover,
  .chauffeur-cover,
  .contact-cover,
  .text-page {
    padding-top: calc(var(--header-h) + 3.5rem);
  }

  .index-hero-layout,
  .secondary-service-layout,
  .fleet-friction-layout,
  .register-heading,
  .fleet-boundary-layout,
  .partner-test-layout,
  .chauffeur-check-layout,
  .chauffeur-answer-layout,
  .contact-cover-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .index-hero-layout > .case-index,
  .index-hero-copy,
  .index-hero-photo {
    grid-column: 1;
  }

  .index-hero-layout > .case-index {
    grid-row: 1;
    margin-bottom: 2rem;
  }

  .index-hero-copy {
    grid-row: 2;
  }

  .index-hero-photo {
    grid-row: 3;
    margin-top: 2rem;
  }

  .index-hero-photo picture {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .request-index {
    grid-template-columns: 1fr;
  }

  .request-index a,
  .request-index a:first-child,
  .request-index a:nth-child(2) {
    min-height: 7.5rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .service-margin,
  .service-body,
  .service-evidence,
  .service-spread-reverse .service-margin,
  .service-spread-reverse .service-body,
  .service-spread-reverse .service-evidence {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .service-margin,
  .service-spread-reverse .service-margin {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 0 2rem;
    border-bottom: 1px solid var(--line);
  }

  .service-evidence,
  .service-spread-reverse .service-evidence {
    margin-top: 3rem;
  }

  .service-evidence picture,
  .service-evidence-portrait picture {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .secondary-service h2,
  .secondary-service-layout > p:nth-of-type(2),
  .secondary-links {
    grid-column: 1;
  }

  .fleet-board-heading,
  .fleet-photo-board,
  .partner-copy,
  .partner-photo,
  .chauffeur-cover-layout > .case-index,
  .chauffeur-copy,
  .chauffeur-images {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .fleet-photo-board,
  .partner-photo,
  .chauffeur-images {
    margin-top: 4rem;
  }

  .fleet-photo-primary picture,
  .partner-photo picture,
  .chauffeur-images picture {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .fleet-friction header {
    grid-column: 1;
    grid-row: auto;
  }

  .friction-list {
    grid-column: 1;
  }

  .register-row {
    grid-template-columns: 0.45fr 1fr;
  }

  .register-heading > * {
    grid-column: 1;
    grid-row: auto;
  }

  .register-row > :last-child {
    grid-column: 2;
  }

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

  .handoff-sheet {
    grid-template-columns: 1fr;
  }

  .handoff-column,
  .handoff-column:first-child,
  .handoff-column:last-child {
    min-height: 0;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .handoff-column h3 {
    margin-top: 2rem;
  }

  .mission-list {
    grid-template-columns: 1fr;
  }

  .mission-list article,
  .mission-list article:nth-child(even) {
    min-height: 0;
    padding: 2rem 0;
    border-right: 0;
  }

  .chauffeur-cover-layout > .case-index {
    margin-bottom: 3rem;
  }

  .contact-person {
    position: static;
  }

  .contact-letter {
    padding: 2rem;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-base {
    grid-template-columns: 1fr auto;
  }

  .footer-base span:last-child {
    display: none;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 3.7rem;
    color: var(--white);
    background: var(--carbon);
    border-top: 1px solid var(--line-light);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--white);
    border-right: 1px solid var(--line-light);
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-actions a:nth-child(2) {
    display: none;
  }

  .mobile-actions a:last-child {
    color: var(--white);
    background: var(--oxblood);
    border-right: 0;
  }

  .site-footer {
    padding-bottom: 5.5rem;
  }
}

@media (max-width: 560px) {
  .index-hero h1,
  .fleet-board h1,
  .partner-copy h1,
  .chauffeur-copy h1,
  .contact-letter-heading h1 {
    font-size: clamp(3.5rem, 15.5vw, 5rem);
  }

  .service-body h2,
  .secondary-service h2,
  .fleet-friction header h2,
  .register-heading h2,
  .fleet-boundary h2,
  .handoff-layout > header h2,
  .mission-desk header h2,
  .partner-test-copy h2,
  .chauffeur-check header h2,
  .chauffeur-answer h2,
  .contact-intro h2 {
    font-size: clamp(3.05rem, 13vw, 4.25rem);
  }

  .register-row {
    display: block;
  }

  .register-row > * {
    display: block;
  }

  .register-row > span {
    margin-top: 0.8rem;
  }

  .fleet-boundary dl > div,
  .check-list > div,
  .fleet-board-note {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .letter-form-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .letter-form-grid .full,
  .form-grid .full {
    grid-column: 1;
  }

  .contact-letter,
  .form-panel {
    padding: 1.4rem;
  }

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

  .button {
    width: 100%;
  }

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

  .footer-contact {
    grid-column: 1;
  }

  .footer-base {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Location — one real vehicle, then a clear owner path */

.location-hero {
  position: relative;
  min-height: min(900px, 94svh);
  color: var(--white);
  background: var(--carbon);
}

.location-hero-media {
  position: absolute;
  inset: 0;
  display: block;
}

.location-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.91) contrast(1.04) brightness(0.66);
}

.location-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(900px, 94svh);
  align-items: end;
  justify-items: end;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: clamp(2rem, 5vw, 5.5rem);
}

.location-hero-panel {
  width: min(100%, 38rem);
  padding: clamp(1.8rem, 4vw, 4rem);
  background: var(--carbon);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.location-hero-panel .case-index {
  margin-bottom: clamp(3rem, 6vw, 6.5rem);
  color: rgba(255, 253, 248, 0.6);
}

.location-hero-panel .margin-label {
  color: rgba(255, 253, 248, 0.72);
}

.location-hero-panel h1 {
  max-width: 8.5ch;
  margin-top: 1.75rem;
  color: var(--white);
  font-size: clamp(3.7rem, 5.15vw, 6.1rem);
  line-height: 0.91;
}

.location-hero-panel > p:not(.margin-label) {
  max-width: 33rem;
  margin-top: 2rem;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1rem;
  line-height: 1.68;
}

.location-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 1.7rem;
  margin-top: 2.5rem;
}

.location-hero-panel > small {
  display: block;
  margin-top: 1.4rem;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.72rem;
  line-height: 1.5;
}

.text-link-light {
  color: rgba(255, 253, 248, 0.92);
  border-color: rgba(255, 253, 248, 0.42);
}

.text-link-light:hover {
  color: var(--white);
  border-color: var(--white);
}

.location-vehicle {
  padding-block: var(--space);
  background: var(--paper-light);
}

.location-vehicle-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.48fr) minmax(0, 0.8fr) minmax(17rem, 0.58fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: end;
}

.location-vehicle-heading .margin-label {
  align-self: start;
  color: var(--oxblood);
}

.location-vehicle-heading h2 {
  max-width: 8ch;
  color: var(--ink);
  font-size: clamp(3.5rem, 5.4vw, 6.35rem);
}

.location-vehicle-heading > p:not(.margin-label) {
  max-width: 29rem;
  color: var(--muted);
}

.location-vehicle-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.55fr);
  gap: clamp(2rem, 5vw, 6rem);
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.location-vehicle-wide {
  margin: 0;
}

.location-vehicle-wide img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.02) brightness(0.98);
}

.location-vehicle-wide figcaption,
.location-detail-pair > p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.location-vehicle-facts {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--line);
}

.location-vehicle-facts > div {
  padding: 1.25rem 0 1.45rem;
  border-bottom: 1px solid var(--line);
}

.location-vehicle-facts span {
  display: block;
  color: var(--oxblood);
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-vehicle-facts p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.location-detail-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.7rem);
  margin-top: clamp(3rem, 7vw, 7rem);
}

.location-detail-pair figure {
  margin: 0;
}

.location-detail-pair img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03) brightness(0.95);
}

.location-detail-pair > p {
  grid-column: 1 / -1;
  justify-content: flex-end;
  max-width: 38rem;
  margin-left: auto;
  padding-top: 0;
  color: var(--muted);
  font-size: 0.67rem;
  text-align: right;
}

.rental-request {
  padding-block: var(--space);
  color: var(--white);
  background: var(--carbon);
}

.rental-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(27rem, 1fr);
  gap: clamp(3rem, 9vw, 11rem);
  align-items: start;
}

.rental-request-copy .margin-label,
.owner-proposal .margin-label {
  color: rgba(255, 253, 248, 0.58);
}

.rental-request-copy h2,
.owner-proposal h2 {
  max-width: 8.5ch;
  margin-top: 2rem;
  color: var(--white);
  font-size: clamp(3.5rem, 5vw, 5.9rem);
}

.rental-request-copy > p:not(.margin-label),
.owner-proposal header > p:not(.margin-label) {
  max-width: 32rem;
  margin-top: 2rem;
  color: rgba(255, 253, 248, 0.7);
}

.rental-request-note {
  max-width: 29rem;
  margin-top: clamp(3.5rem, 6vw, 6rem);
  padding: 1.35rem 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.rental-request-note span {
  display: block;
  color: rgba(255, 253, 248, 0.56);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-request-note p {
  margin-top: 0.8rem;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.85rem;
  line-height: 1.58;
}

.location-form,
.owner-form {
  padding: clamp(1.5rem, 4vw, 3.75rem);
  background: var(--paper-light);
  border: 1px solid rgba(255, 253, 248, 0.16);
}

.location-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.45rem 1.8rem;
}

.location-form-grid > label:not(.consent) {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.location-form-grid .full {
  grid-column: 1 / -1;
}

.location-form-grid small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 480;
  letter-spacing: 0;
  line-height: 1.5;
}

.location-form .consent,
.owner-form .consent {
  color: var(--muted);
}

.location-form .form-status,
.owner-form .form-status {
  color: var(--muted);
}

.location-form-note {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.73rem;
  line-height: 1.52;
}

.future-selection {
  padding-block: clamp(6rem, 10vw, 10.5rem);
  background: var(--paper-cool);
}

.future-selection-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 0.95fr) minmax(16rem, 0.52fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: end;
}

.future-selection-heading .margin-label {
  align-self: start;
  color: var(--oxblood);
}

.future-selection-heading h2 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 4.8vw, 5.6rem);
}

.future-selection-heading > p:not(.margin-label) {
  max-width: 28rem;
  color: var(--muted);
}

.future-line {
  display: grid;
  grid-template-columns: minmax(4rem, 0.17fr) minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 6rem);
  padding-block: 1.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.future-line span {
  color: var(--oxblood);
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  line-height: 1;
}

.future-line p {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.3vw, 2.7rem);
  line-height: 1;
}

.future-line small {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.owner-intro {
  padding-top: var(--space);
  background: var(--paper-light);
}

.owner-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(17rem, 0.58fr);
  gap: clamp(3rem, 9vw, 11rem);
  align-items: end;
}

.owner-intro-copy .margin-label {
  color: var(--oxblood);
}

.owner-intro h2 {
  max-width: 11ch;
  margin-top: 2rem;
  color: var(--ink);
  font-size: clamp(3.65rem, 5.5vw, 6.5rem);
}

.owner-intro-text {
  max-width: 31rem;
  color: var(--muted);
}

.owner-intro-text p + p {
  margin-top: 1.2rem;
}

.owner-intro-text .owner-caution {
  margin-top: 2rem;
  padding-top: 1.25rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 650;
  line-height: 1.5;
}

.owner-method {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}

.owner-method > div {
  min-height: 18rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
}

.owner-method > div:first-child {
  padding-left: 0;
}

.owner-method > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.owner-method span {
  color: var(--oxblood);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.1em;
}

.owner-method h3 {
  max-width: 10ch;
  margin-top: clamp(2.7rem, 5vw, 5rem);
  color: var(--ink);
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.owner-method p {
  max-width: 22rem;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.owner-proposal {
  padding-block: var(--space);
  color: var(--white);
  background: var(--charcoal);
}

.owner-proposal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(29rem, 1fr);
  gap: clamp(3rem, 9vw, 11rem);
  align-items: start;
}

.owner-proposal header {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.owner-proposal .owner-form {
  border-color: rgba(255, 253, 248, 0.18);
}

@media (max-width: 1180px) {
  .location-hero-panel {
    width: min(100%, 34rem);
  }

  .location-vehicle-heading,
  .future-selection-heading {
    grid-template-columns: 0.35fr 0.9fr;
  }

  .location-vehicle-heading > p:not(.margin-label),
  .future-selection-heading > p:not(.margin-label) {
    grid-column: 2;
  }

  .rental-request-layout,
  .owner-proposal-layout {
    gap: clamp(2.5rem, 6vw, 6rem);
  }
}

@media (max-width: 980px) {
  .location-hero {
    display: block;
    min-height: 0;
    padding-top: var(--header-h);
    background: var(--carbon);
  }

  .location-hero-media {
    position: relative;
    inset: auto;
    aspect-ratio: 4 / 3;
  }

  .location-hero-media img {
    object-position: 40% 62%;
    filter: saturate(0.94) contrast(1.03) brightness(0.83);
  }

  .location-hero-shell {
    min-height: 0;
    padding: 0;
  }

  .location-hero-panel {
    width: 100%;
    padding: 2rem var(--gutter) 3.5rem;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .location-hero-panel .case-index {
    margin-bottom: 2.5rem;
  }

  .location-vehicle-heading,
  .future-selection-heading,
  .location-vehicle-spread,
  .rental-request-layout,
  .owner-intro-layout,
  .owner-proposal-layout {
    grid-template-columns: 1fr;
  }

  .location-vehicle-heading > p:not(.margin-label),
  .future-selection-heading > p:not(.margin-label) {
    grid-column: 1;
  }

  .location-vehicle-heading h2,
  .future-selection-heading h2 {
    margin-top: 1.7rem;
  }

  .location-vehicle-spread {
    margin-top: 3.5rem;
  }

  .location-vehicle-wide img {
    aspect-ratio: 4 / 3;
  }

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

  .location-vehicle-facts > div:nth-child(odd) {
    padding-right: 1rem;
    border-right: 1px solid var(--line);
  }

  .location-vehicle-facts > div:nth-child(even) {
    padding-left: 1rem;
  }

  .rental-request-copy h2,
  .owner-proposal h2 {
    max-width: 10ch;
  }

  .rental-request-note {
    margin-top: 3rem;
  }

  .owner-intro-text {
    max-width: 38rem;
  }

  .owner-method {
    grid-template-columns: 1fr;
  }

  .owner-method > div,
  .owner-method > div:first-child,
  .owner-method > div:last-child {
    min-height: 0;
    padding: 1.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .owner-method h3 {
    margin-top: 1.7rem;
  }

  .owner-proposal header {
    position: static;
  }

  .mobile-actions-location {
    transform: translateY(100%);
    transition: transform 180ms var(--ease);
  }

  body.location-actions-ready .mobile-actions-location,
  .no-js .mobile-actions-location {
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .location-hero-panel h1,
  .location-vehicle-heading h2,
  .rental-request-copy h2,
  .future-selection-heading h2,
  .owner-intro h2,
  .owner-proposal h2 {
    font-size: clamp(3.1rem, 13.8vw, 4.55rem);
  }

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

  .location-hero-actions .button,
  .location-hero-actions .text-link {
    width: 100%;
    min-height: 2.75rem;
    justify-content: center;
  }

  .footer-nav a,
  .footer-contact a,
  .footer-base a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .location-detail-pair {
    grid-template-columns: 1fr;
  }

  .location-detail-pair > p {
    text-align: left;
  }

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

  .location-vehicle-facts > div:nth-child(odd),
  .location-vehicle-facts > div:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .location-form-grid {
    grid-template-columns: 1fr;
  }

  .location-form-grid .full {
    grid-column: 1;
  }

  .location-form,
  .owner-form {
    padding: 1.3rem;
  }

  .future-line {
    grid-template-columns: 3.6rem 1fr;
  }

  .future-line small {
    grid-column: 2;
    text-align: left;
  }
}
