:root {
  --red: #d71920;
  --red-dark: #a90f15;
  --ink: #1f2328;
  --charcoal: #252a31;
  --graphite: #3a414a;
  --steel: #6f7a86;
  --mist: #eef1f3;
  --soft: #f7f5f1;
  --cream: #fbfaf7;
  --white: #ffffff;
  --line: rgba(31, 35, 40, 0.14);
  --green: #4c6b5d;
  --amber: #b8863b;
  --focus: #f6c344;
  --max: 1180px;
  --header-height: 82px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
}

main,
.site-header,
.legal-topbar,
.site-footer {
  min-width: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(37, 42, 49, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.brand {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 50px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 12px;
  transform: perspective(500px) rotateX(var(--brand-rx, 0deg)) rotateY(var(--brand-ry, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.brand img {
  position: relative;
  z-index: 1;
  width: min(218px, 46vw);
  transition: transform 240ms ease;
}

.brand::after {
  position: absolute;
  inset: -70% -35%;
  z-index: 2;
  content: "";
  pointer-events: none;
  background: linear-gradient(105deg, transparent 36%, rgba(255, 255, 255, 0.9) 49%, transparent 62%);
  transform: translateX(-75%) rotate(8deg);
  transition: transform 620ms ease;
}

.brand:hover,
.brand:focus-visible {
  box-shadow: 0 13px 32px rgba(0, 0, 0, 0.2);
}

.brand:hover::after,
.brand:focus-visible::after {
  transform: translateX(72%) rotate(8deg);
}

.brand:hover img {
  transform: scale(1.025);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.91rem;
  font-weight: 800;
}

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

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-phone {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  padding: 12px 15px;
  font-weight: 900;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.header-phone:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.route-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.1);
}

.route-progress span {
  display: block;
  width: var(--route-progress, 0%);
  height: 100%;
  background: linear-gradient(90deg, var(--amber), #d8b36b, var(--green));
  transition: width 80ms linear;
}

.route-progress i {
  position: absolute;
  left: clamp(0px, calc(var(--route-progress, 0%) - 14px), calc(100% - 28px));
  bottom: 3px;
  width: 28px;
  height: 10px;
  border-radius: 2px 4px 2px 2px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: left 80ms linear;
}

.route-progress i::before,
.route-progress i::after {
  position: absolute;
  bottom: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--charcoal);
}

.route-progress i::before {
  left: 4px;
}

.route-progress i::after {
  right: 4px;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--white);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-stage,
.hero-slide,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background: var(--bg) center / cover no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 900ms ease,
    transform 7000ms linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(23, 26, 31, 0.88) 0%, rgba(23, 26, 31, 0.68) 35%, rgba(23, 26, 31, 0.2) 70%),
    linear-gradient(180deg, rgba(23, 26, 31, 0.15), rgba(23, 26, 31, 0.48));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(260px, 360px);
  align-items: end;
  gap: clamp(28px, 7vw, 92px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-height) + 76px) 0 44px;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

.eyebrow,
.section-label,
.card-kicker,
.panel-label {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.3rem, 5.4vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  width: min(680px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-slogan {
  display: inline-flex;
  margin: 22px 0 0;
  border-left: 4px solid var(--amber);
  padding: 8px 0 8px 16px;
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.button-dark {
  background: var(--charcoal);
  color: var(--white);
}

.button-dark:hover {
  background: var(--green);
}

.hero-control-panel {
  display: grid;
  gap: 18px;
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 20px;
  background: rgba(37, 42, 49, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
}

.hero-control-panel strong,
.hero-control-panel p {
  display: block;
  margin: 0;
}

.hero-control-panel strong {
  font-size: 1.15rem;
}

.hero-control-panel p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 42px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--amber);
}

.pause-button {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 9px 12px;
  font-weight: 800;
  cursor: pointer;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 40px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 58px rgba(37, 42, 49, 0.13);
}

.trust-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--charcoal);
  font-size: 1.25rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--steel);
}

.section,
.fleet-section,
.method,
.slogan-band,
.coverage {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.intro-grid,
.section-heading,
.founder,
.method,
.slogan-band,
.coverage,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.method h2,
.slogan-band h2,
.founder h2,
.coverage h2,
.contact h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.rich-copy p,
.section-heading p,
.method-copy p,
.founder-copy p,
.slogan-band p,
.contact-info p {
  margin: 0;
  color: #555d65;
  font-size: 1.04rem;
  line-height: 1.74;
}

.rich-copy p + p,
.founder-copy p + p {
  margin-top: 20px;
}

.road-story {
  position: relative;
  min-height: min(760px, 86svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.road-story-media,
.road-story-media img,
.road-story-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.road-story-media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 1400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.road-story.is-revealed .road-story-media img {
  transform: scale(1);
}

.road-story-scrim {
  background: linear-gradient(90deg, rgba(24, 28, 33, 0.94) 0%, rgba(24, 28, 33, 0.78) 42%, rgba(24, 28, 33, 0.12) 76%);
}

.road-story-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.road-story-inner > * {
  max-width: 640px;
}

.road-story h2 {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.road-story p:not(.section-label) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.72;
}

.road-story-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.road-story-points span {
  display: flex;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.road-story-points b {
  color: var(--amber);
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  color: var(--white);
  font-weight: 900;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.fleet-section {
  padding: 28px 0 clamp(72px, 9vw, 118px);
}

.section-heading {
  align-items: end;
  margin-bottom: 28px;
}

.fleet-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.fleet-tabs button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  padding: 11px 14px;
  font-weight: 900;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.fleet-tabs button:hover {
  transform: translateY(-2px);
}

.fleet-tabs button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.fleet-display {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.fleet-display img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 58px rgba(37, 42, 49, 0.13);
}

.fleet-card,
.service-card,
.identity-panel {
  border-radius: 8px;
}

.fleet-card {
  display: grid;
  align-content: center;
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  box-shadow: 0 24px 58px rgba(37, 42, 49, 0.1);
}

.fleet-card h3 {
  margin: 0 0 18px;
  color: var(--charcoal);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.fleet-card p,
.fleet-card li {
  color: #56606a;
  line-height: 1.66;
}

.fleet-card p {
  margin: 0;
}

.fleet-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 20px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--white);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(37, 42, 49, 0.11);
}

.service-card span {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 46px 0 16px;
  color: var(--charcoal);
  font-size: 1.38rem;
  line-height: 1.16;
}

.service-card p {
  flex: 1;
  margin: 0;
  color: #59616a;
  line-height: 1.65;
}

.service-link {
  margin-top: 22px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(76, 107, 93, 0.35);
  text-underline-offset: 4px;
}

.mission-lab {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 7vw, 92px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(72px, 9vw, 118px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: 8px;
  background: #e8edef;
}

.mission-intro h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.mission-intro > p:not(.section-label) {
  margin: 20px 0 0;
  color: #555d65;
  line-height: 1.7;
}

.mission-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 28px;
}

.mission-tabs button {
  min-height: 48px;
  border: 1px solid rgba(31, 35, 40, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--graphite);
  padding: 11px 14px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.mission-tabs button:hover {
  transform: translateY(-2px);
}

.mission-tabs button.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.mission-result {
  align-self: stretch;
  border-radius: 8px;
  background: var(--white);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 22px 52px rgba(37, 42, 49, 0.12);
}

.mission-result h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.13;
}

.mission-result > p:not(.card-kicker) {
  margin: 18px 0 0;
  color: #59616a;
  line-height: 1.65;
}

.mission-result dl {
  display: grid;
  gap: 1px;
  margin: 26px 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.mission-result dl div {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: var(--soft);
}

.mission-result dt,
.mission-result dd {
  margin: 0;
}

.mission-result dt {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-result dd {
  color: var(--charcoal);
  font-weight: 850;
}

.road-gallery {
  padding-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 290px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--charcoal);
  cursor: zoom-in;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(20, 24, 29, 0.82));
  pointer-events: none;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
}

.gallery-item > span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.gallery-item > span b {
  color: var(--white);
}

.lightbox {
  width: min(1180px, calc(100% - 30px));
  max-width: none;
  max-height: calc(100svh - 30px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #15181c;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.48);
}

.lightbox::backdrop {
  background: rgba(15, 17, 20, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox figure {
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  height: min(76svh, 760px);
  object-fit: contain;
  background: #0e1013;
}

.lightbox figcaption {
  padding: 16px 62px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(21, 24, 28, 0.72);
  color: var(--white);
  cursor: pointer;
}

.lightbox-close {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
}

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 58px;
  font-size: 2rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.method {
  padding: clamp(70px, 9vw, 112px) clamp(20px, 4vw, 48px);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.method h2 {
  color: var(--white);
}

.method-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 18px;
  text-align: left;
  cursor: pointer;
}

.accordion-item span {
  color: var(--amber);
  font-weight: 900;
}

.accordion-item strong {
  display: block;
  font-size: 1.12rem;
}

.accordion-item p {
  grid-column: 2;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.62;
  transition: max-height 220ms ease;
}

.accordion-item.is-open {
  border-color: rgba(184, 134, 59, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.accordion-item.is-open p {
  max-height: 140px;
  margin-top: 8px;
}

.slogan-band {
  align-items: center;
  margin-top: clamp(54px, 7vw, 92px);
  padding: clamp(30px, 5vw, 56px);
  border-left: 6px solid var(--amber);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(37, 42, 49, 0.1);
}

.slogan-band h2 {
  color: var(--green);
}

.founder {
  align-items: center;
}

.founder-quote {
  margin: 28px 0 0;
  border-left: 4px solid var(--amber);
  padding: 4px 0 4px 20px;
  color: var(--charcoal);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.55;
}

.founder-portrait {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 5;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 28px 64px rgba(37, 42, 49, 0.18);
}

.founder-portrait::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(20, 23, 27, 0.86));
}

.founder-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 36%;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.founder-portrait:hover img {
  transform: scale(1.025);
}

.founder-portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  overflow-wrap: anywhere;
}

.founder-portrait figcaption span {
  color: #f2c875;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-portrait figcaption strong {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.05;
}

.founder-portrait figcaption small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.identity-panel {
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: linear-gradient(135deg, var(--graphite), var(--charcoal));
  box-shadow: 0 26px 60px rgba(37, 42, 49, 0.2);
}

.logo-stage {
  position: relative;
  max-width: 390px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.logo-stage::after {
  position: absolute;
  top: -90%;
  left: -45%;
  width: 34%;
  height: 280%;
  content: "";
  pointer-events: none;
  background: rgba(255, 255, 255, 0.86);
  filter: blur(5px);
  transform: rotate(18deg);
  animation: logo-scan 5.5s ease-in-out infinite;
}

.logo-stage img {
  position: relative;
  z-index: 1;
  max-width: 330px;
  transform: translateY(var(--logo-shift, 0px));
  transition: transform 200ms ease;
}

.logo-stage span {
  position: absolute;
  right: 14px;
  bottom: 9px;
  z-index: 2;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

@keyframes logo-scan {
  0%,
  24% {
    left: -45%;
    opacity: 0;
  }
  38% {
    opacity: 0.72;
  }
  58%,
  100% {
    left: 125%;
    opacity: 0;
  }
}

.identity-panel dl {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.identity-panel dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.07);
}

.identity-panel dt,
.identity-panel dd {
  margin: 0;
}

.identity-panel dt {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.identity-panel dd {
  color: var(--white);
  font-weight: 800;
}

.coverage {
  align-items: center;
  padding: 0 0 clamp(64px, 9vw, 104px);
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--graphite);
  background: var(--white);
  font-weight: 800;
}

.coverage-copy > p:not(.section-label) {
  margin: 20px 0 0;
  color: #555d65;
  line-height: 1.7;
}

.coverage-copy .text-link {
  margin-top: 20px;
}

.contact {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(46px, 7vw, 88px);
  align-items: stretch;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: 0 26px 68px rgba(37, 42, 49, 0.12);
}

.contact-info p {
  margin-top: 20px;
}

address {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  font-style: normal;
}

address strong {
  color: var(--charcoal);
}

address span,
address a {
  color: #58616a;
}

address a {
  text-decoration: underline;
  text-decoration-color: rgba(37, 42, 49, 0.28);
  text-underline-offset: 4px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

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

.form-wide {
  grid-column: 1 / -1;
}

label {
  color: var(--graphite);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--steel);
  font-size: 0.92rem;
}

.form-privacy {
  margin: -6px 0 0;
  color: var(--steel);
  font-size: 0.82rem;
}

.form-privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 28px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: #59616a;
}

.site-footer:has(> div:nth-child(4)) {
  grid-template-columns: minmax(220px, 1.15fr) repeat(3, minmax(150px, 0.75fr));
}

.site-footer img {
  width: min(250px, 100%);
  margin-bottom: 12px;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer strong {
  color: var(--charcoal);
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer a,
.site-footer span {
  overflow-wrap: anywhere;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.legal-body {
  background: var(--soft);
}

.legal-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(37, 42, 49, 0.97);
}

.legal-topbar .brand {
  width: min(260px, 100%);
}

.legal-back {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 11px 14px;
  font-weight: 900;
}

.legal-back:hover {
  background: rgba(255, 255, 255, 0.1);
}

.legal-main {
  width: min(1020px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 8vw, 94px) 0;
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.42fr);
  gap: clamp(30px, 7vw, 80px);
  align-items: end;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

.legal-hero p:not(.section-label) {
  margin: 18px 0 0;
  color: #59616a;
  line-height: 1.65;
}

.legal-meta {
  border-left: 4px solid var(--amber);
  padding: 10px 0 10px 18px;
  color: var(--steel);
  line-height: 1.6;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(34px, 7vw, 82px);
  padding-top: 42px;
}

.legal-index {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  align-self: start;
}

.legal-index strong {
  margin-bottom: 5px;
  color: var(--charcoal);
}

.legal-index a {
  border-left: 2px solid var(--line);
  padding: 6px 0 6px 12px;
  color: var(--steel);
  font-size: 0.9rem;
}

.legal-index a:hover {
  border-color: var(--amber);
  color: var(--charcoal);
}

.legal-content {
  min-width: 0;
}

.legal-section {
  scroll-margin-top: 110px;
  padding: 0 0 34px;
}

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

.legal-section h2 {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.18;
}

.legal-section h3 {
  margin: 22px 0 10px;
  color: var(--graphite);
  font-size: 1.05rem;
}

.legal-section p,
.legal-section li {
  color: #59616a;
  line-height: 1.72;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-facts {
  display: grid;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.legal-facts div {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) 1fr;
  gap: 18px;
  padding: 14px 16px;
  background: var(--white);
}

.legal-facts dt,
.legal-facts dd {
  margin: 0;
}

.legal-facts dt {
  color: var(--steel);
  font-weight: 850;
}

.legal-facts dd {
  color: var(--charcoal);
}

.legal-alert {
  margin: 0 0 32px;
  border-left: 5px solid var(--amber);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  color: #555d65;
  background: #fff8e8;
  line-height: 1.62;
}

.legal-footer {
  width: min(1020px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto clamp(48px, 8vw, 96px);
  border-radius: 8px;
  padding: clamp(32px, 6vw, 66px);
  color: var(--white);
  background: var(--charcoal);
}

.contact-cta-band h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.contact-cta-band > div > p:not(.section-label) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.contact-cta-actions {
  display: grid;
  gap: 11px;
}

.contact-cta-actions span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  text-align: center;
}

.subpage-body {
  background: var(--cream);
}

.subpage-topbar {
  position: relative;
}

.subpage-nav {
  justify-self: end;
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 850;
}

.subpage-nav a:hover {
  color: var(--white);
}

.subpage-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.subpage-hero-media,
.subpage-hero-media img,
.subpage-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.subpage-hero-media img {
  object-fit: cover;
  object-position: center;
  animation: subpage-hero-in 1200ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.subpage-hero-scrim {
  background:
    linear-gradient(90deg, rgba(21, 24, 28, 0.92), rgba(21, 24, 28, 0.55) 52%, rgba(21, 24, 28, 0.08)),
    linear-gradient(180deg, rgba(21, 24, 28, 0.04), rgba(21, 24, 28, 0.62));
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 64px;
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.subpage-hero-inner > p:not(.section-label) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

@keyframes subpage-hero-in {
  from {
    opacity: 0.72;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.quote-page-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
  align-items: start;
}

.quote-guidance {
  position: sticky;
  top: 28px;
}

.quote-guidance h2,
.contact-page-copy h2,
.address-band h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.09;
  letter-spacing: 0;
}

.quote-guidance > p:not(.section-label),
.contact-page-copy > p:not(.section-label) {
  margin: 20px 0 0;
  color: #59616a;
  line-height: 1.7;
}

.quote-guidance ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.quote-guidance li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 0 0 11px 24px;
  color: var(--graphite);
  font-weight: 750;
}

.quote-guidance li::before {
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.quote-help {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  border-left: 4px solid var(--amber);
  padding: 10px 0 10px 16px;
}

.quote-help span {
  color: var(--steel);
  font-size: 0.85rem;
}

.quote-help a {
  color: var(--charcoal);
  font-size: 1.25rem;
  font-weight: 900;
}

.quote-wizard {
  min-width: 0;
  border-radius: 8px;
  padding: clamp(24px, 5vw, 48px);
  background: var(--white);
  box-shadow: 0 28px 70px rgba(37, 42, 49, 0.12);
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.wizard-progress li {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
  border-bottom: 3px solid var(--line);
  padding: 0 0 12px;
  color: var(--steel);
  font-size: 0.84rem;
  font-weight: 850;
}

.wizard-progress li span {
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--graphite);
  font-size: 0.75rem;
}

.wizard-progress li.is-active,
.wizard-progress li.is-complete {
  border-color: var(--green);
  color: var(--charcoal);
}

.wizard-progress li.is-active span,
.wizard-progress li.is-complete span {
  background: var(--green);
  color: var(--white);
}

.form-step-heading {
  margin-bottom: 28px;
}

.form-step-heading > span {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-step-heading h2 {
  margin: 8px 0 0;
  color: var(--charcoal);
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
  line-height: 1.1;
}

.form-step-heading p {
  margin: 12px 0 0;
  color: var(--steel);
  line-height: 1.55;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.wizard-actions-end {
  justify-content: flex-end;
}

.button-ghost {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--graphite);
}

.button-ghost:hover {
  border-color: var(--graphite);
}

.consent-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #59616a;
  font-size: 0.88rem;
  line-height: 1.5;
  cursor: pointer;
}

.consent-row input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.contact-methods {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--max), calc(100% - 40px));
  margin: -34px auto 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(37, 42, 49, 0.14);
}

.contact-method {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 205px;
  border-right: 1px solid var(--line);
  padding: 24px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.contact-method:last-child {
  border-right: 0;
}

.contact-method:hover {
  color: var(--white);
  background: var(--green);
}

.contact-method-number {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-method strong {
  margin-top: 28px;
  color: var(--steel);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.contact-method:hover strong,
.contact-method:hover small {
  color: rgba(255, 255, 255, 0.7);
}

.contact-method b {
  min-width: 0;
  margin-top: 7px;
  overflow-wrap: anywhere;
  font-size: 1.04rem;
}

.contact-method small {
  margin-top: 9px;
  color: var(--steel);
  line-height: 1.45;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0;
  align-items: start;
}

.text-link-dark {
  color: var(--charcoal);
}

.contact-message-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(37, 42, 49, 0.1);
}

.address-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  min-height: 500px;
  background: #e8edef;
}

.address-band > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.service-page-hero h1 {
  max-width: 960px;
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-page-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 116px) 0;
}

.service-page-intro,
.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.service-page-section h2,
.service-band h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.service-page-section h3,
.service-band h3 {
  color: var(--charcoal);
}

.service-page-section p,
.service-page-section li,
.service-band p,
.service-band li {
  color: #555d65;
  line-height: 1.72;
}

.service-page-section p {
  margin: 0 0 18px;
}

.service-proof-list {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.service-proof-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px;
  background: var(--white);
}

.service-proof-list dt,
.service-proof-list dd {
  margin: 0;
}

.service-proof-list dt {
  color: var(--steel);
  font-weight: 900;
}

.service-proof-list dd {
  color: var(--charcoal);
  font-weight: 800;
}

.service-band {
  background: #e8edef;
}

.service-band-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(68px, 9vw, 108px) 0;
}

.service-band-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: end;
  margin-bottom: 34px;
}

.service-band-heading > p {
  margin: 0;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-feature {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
}

.service-feature span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-feature h3 {
  margin: 32px 0 12px;
  font-size: 1.25rem;
}

.service-feature p {
  margin: 0;
}

.service-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.service-copy {
  align-self: center;
}

.service-copy h2 {
  margin-bottom: 24px;
}

.service-checklist {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.service-checklist li {
  position: relative;
  padding-left: 26px;
}

.service-checklist li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.local-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.local-route {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.local-route h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.local-route p {
  margin: 0;
}

.service-faq {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.service-faq details {
  padding: 20px 22px;
  background: var(--white);
}

.service-faq summary {
  color: var(--charcoal);
  font-weight: 900;
  cursor: pointer;
}

.service-faq details p {
  margin: 14px 0 0;
}

.address-band > div {
  align-self: center;
  padding: clamp(34px, 7vw, 84px);
}

.address-band address {
  margin: 24px 0 28px;
}

.address-hours {
  display: grid;
  gap: 5px;
  margin: -10px 0 28px;
  color: #4c555d;
  line-height: 1.5;
}

.address-hours strong {
  color: var(--charcoal);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: minmax(180px, 230px) auto auto;
    gap: 14px;
  }

  .site-nav {
    gap: 14px;
  }

  .hero-inner,
  .fleet-display,
  .method,
  .mission-lab {
    grid-template-columns: 1fr;
  }

  .hero-control-panel {
    width: min(430px, 100%);
  }

  .service-grid,
  .service-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-method:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 74px;
  }

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

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-phone {
    position: fixed;
    left: 20px;
    right: 20px;
    display: none;
  }

  .site-nav.is-open,
  .header-phone.is-open {
    display: grid;
  }

  .site-nav {
    top: calc(var(--header-height) + 14px);
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(37, 42, 49, 0.98);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  }

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .header-phone {
    top: calc(var(--header-height) + 308px);
    justify-content: center;
    text-align: center;
    background: var(--red);
    border-color: var(--red);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 62px);
    padding-bottom: 34px;
  }

  .hero-slide {
    background-position: 60% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(23, 26, 31, 0.9), rgba(23, 26, 31, 0.58)),
      linear-gradient(180deg, rgba(23, 26, 31, 0.2), rgba(23, 26, 31, 0.72));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .intro-grid,
  .section-heading,
  .founder,
  .slogan-band,
  .coverage,
  .contact,
  .site-footer,
  .legal-hero,
  .legal-layout,
  .service-page-intro,
  .service-split,
  .service-band-heading {
    grid-template-columns: 1fr;
  }

  .site-footer:has(> div:nth-child(4)) {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    justify-self: center;
    width: min(100%, 520px);
    max-width: none;
    min-height: 0;
  }

  .road-story {
    min-height: 720px;
  }

  .road-story-scrim {
    background: linear-gradient(90deg, rgba(24, 28, 33, 0.94), rgba(24, 28, 33, 0.62));
  }

  .legal-index {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-index strong {
    grid-column: 1 / -1;
  }

  .contact-cta-band,
  .quote-page-grid,
  .contact-page-grid,
  .address-band {
    grid-template-columns: 1fr;
  }

  .quote-guidance {
    position: static;
  }

  .subpage-topbar {
    grid-template-columns: minmax(180px, 1fr) auto;
  }

  .subpage-nav {
    display: none;
  }

  .address-band > img {
    min-height: 380px;
  }

  .fleet-display img {
    min-height: 320px;
  }

  .contact {
    padding: 30px 20px;
  }
}

@media (max-width: 620px) {
  .brand {
    min-height: 48px;
    padding: 7px 9px;
  }

  .brand img {
    width: min(205px, 58vw);
  }

  .hero h1 {
    font-size: clamp(2.05rem, 11vw, 3.35rem);
  }

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

  .trust-strip,
  .service-grid,
  .service-feature-grid,
  .local-route-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .fleet-section,
  .method,
  .slogan-band,
  .coverage,
  .contact,
  .site-footer,
  .mission-lab {
    width: min(100% - 32px, var(--max));
  }

  .service-page-section,
  .service-band-inner {
    width: min(100% - 32px, var(--max));
  }

  .contact-cta-band,
  .quote-page-grid,
  .contact-page-grid,
  .contact-methods {
    width: min(100% - 32px, var(--max));
  }

  .road-story-inner,
  .legal-main,
  .legal-footer,
  .subpage-hero-inner {
    width: min(100% - 32px, var(--max));
  }

  .fleet-tabs {
    display: grid;
  }

  .service-card {
    min-height: auto;
  }

  .founder {
    gap: 28px;
  }

  .founder-portrait {
    justify-self: center;
    width: min(100%, 520px);
    max-width: none;
    min-height: 0;
    aspect-ratio: 4 / 5;
    box-shadow: 0 18px 42px rgba(37, 42, 49, 0.16);
  }

  .founder-portrait img {
    object-position: 50% 28%;
  }

  .founder-portrait::after {
    inset: 46% 0 0;
  }

  .founder-portrait figcaption {
    gap: 4px;
    padding: 20px;
  }

  .founder-portrait figcaption strong {
    font-size: clamp(1.45rem, 7.5vw, 1.9rem);
  }

  .founder-portrait figcaption small {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .service-proof-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-media,
  .service-media img {
    min-height: 360px;
  }

  .identity-panel dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .gallery-grid,
  .mission-tabs,
  .contact-methods,
  .contact-message-form {
    grid-template-columns: 1fr;
  }

  .contact-method {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-method:last-child {
    border-bottom: 0;
  }

  .contact-method strong {
    margin-top: 20px;
  }

  .subpage-hero {
    min-height: 470px;
  }

  .subpage-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .service-page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .quote-wizard {
    padding: 22px 18px;
  }

  .wizard-progress {
    margin-bottom: 32px;
  }

  .wizard-progress li {
    display: grid;
    justify-items: start;
    font-size: 0.72rem;
  }

  .wizard-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .address-band > img {
    min-height: 300px;
  }

  .gallery-grid {
    grid-auto-rows: 245px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item > span {
    display: grid;
  }

  .legal-topbar {
    grid-template-columns: minmax(150px, 1fr) auto;
  }

  .legal-topbar .brand img {
    width: min(190px, 52vw);
  }

  .legal-back {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

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

  .legal-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .lightbox figure img {
    height: 68svh;
  }

  .lightbox figcaption {
    padding-inline: 52px;
  }
}

@media (max-width: 420px) {
  :root {
    --header-height: 68px;
  }

  .site-header,
  .legal-topbar {
    gap: 10px;
    padding-right: 12px;
    padding-left: 12px;
  }

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

  .brand,
  .legal-topbar .brand {
    min-width: 0;
  }

  .brand img,
  .legal-topbar .brand img {
    width: min(175px, 52vw);
  }

  .legal-topbar {
    grid-template-columns: minmax(0, 1fr) minmax(82px, auto);
  }

  .legal-back {
    max-width: 112px;
    padding: 9px 10px;
    font-size: 0.78rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-nav,
  .header-phone {
    right: 12px;
    left: 12px;
  }

  .hero-inner,
  .road-story-inner,
  .legal-main,
  .legal-footer,
  .subpage-hero-inner,
  .section,
  .fleet-section,
  .method,
  .slogan-band,
  .coverage,
  .contact,
  .site-footer,
  .mission-lab,
  .service-page-section,
  .service-band-inner,
  .contact-cta-band,
  .quote-page-grid,
  .contact-page-grid,
  .contact-methods {
    width: min(100% - 24px, var(--max));
  }

  .founder-portrait figcaption {
    padding: 16px;
  }

  .founder-portrait figcaption span {
    font-size: 0.68rem;
  }

  .founder-portrait figcaption strong {
    font-size: clamp(1.35rem, 7vw, 1.65rem);
  }

  .founder-quote {
    padding-left: 14px;
    font-size: 1rem;
  }

  .contact-cta-band,
  .mission-lab,
  .slogan-band {
    padding-right: 22px;
    padding-left: 22px;
  }

  .subpage-hero-inner {
    padding-bottom: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
