:root {
  --red: #d51f26;
  --red-dark: #a90f15;
  --ink: #111111;
  --ink-2: #1c1c1c;
  --paper: #f3f1ec;
  --paper-2: #e8e5df;
  --white: #ffffff;
  --muted: #6c6a66;
  --line: rgba(17, 17, 17, 0.14);
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 28px 70px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 999;
  background: var(--white);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: 120px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(12, 12, 12, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  width: var(--shell);
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.brand-mark {
  width: 46px;
  height: 43px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  fill: none;
  stroke: var(--red);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.075em;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 29px 0;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--white);
}

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

.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 14px 19px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: #ef292f;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  height: 100svh;
  max-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
  color: var(--white);
}

.hero-image,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  background: url("assets/facebook-dump-trailer-cover.jpg") center 20% / cover no-repeat;
  transform: scale(1.015);
  animation: hero-drift 14s ease-out both;
}

@keyframes hero-drift {
  from { transform: scale(1.08); }
  to { transform: scale(1.015); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.93) 0%, rgba(7, 7, 7, 0.79) 38%, rgba(7, 7, 7, 0.24) 67%, rgba(7, 7, 7, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38) 0%, transparent 42%);
}

.hero-grid {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-copy {
  max-width: 760px;
  animation: intro-up 0.8s 0.1s ease-out both;
}

@keyframes intro-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow span {
  width: 35px;
  height: 3px;
  background: var(--red);
}

.hero h1,
.section-heading h2,
.process-heading h2,
.why-copy h2,
.faq-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4.2rem, 7.3vw, 7.6rem);
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.65;
}

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

.button {
  min-height: 54px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

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

.button:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

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

.button-primary:hover {
  background: #ee252d;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);
}

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

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

.button-dark:hover {
  background: #2b2b2b;
}

.hero-stamp {
  width: 160px;
  margin: 0 0 32px;
  padding: 17px 0 17px 20px;
  border-left: 4px solid var(--red);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent);
  display: flex;
  flex-direction: column;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: intro-up 0.8s 0.35s ease-out both;
}

.hero-stamp strong {
  color: var(--red);
}

.hero-rail {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(14px);
}

.rail-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.rail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.rail-item:first-child {
  padding-left: 0;
}

.rail-item:last-child {
  border-right: 0;
}

.rail-item svg {
  width: 30px;
  flex: 0 0 30px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rail-item span {
  display: flex;
  flex-direction: column;
}

.rail-item strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 72px;
  margin-bottom: 68px;
}

.section-heading h2,
.process-heading h2,
.why-copy h2,
.faq-heading h2 {
  font-size: clamp(3.4rem, 5.7vw, 6.4rem);
}

.section-heading h2 span,
.process-heading h2 span,
.why-copy h2 span,
.faq-heading h2 span,
.contact-copy h2 span {
  color: var(--red);
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.fleet-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 20px 45px rgba(17, 17, 17, 0.12);
}

.fleet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.48) 39%, transparent 72%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.12), transparent);
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.fleet-card:first-child img {
  object-position: 47% center;
}

.fleet-card:nth-child(2) img {
  object-position: center 63%;
}

.fleet-card:nth-child(3) img {
  object-position: center 64%;
}

.fleet-card:hover img {
  transform: scale(1.045);
}

.fleet-card-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 31px 30px;
}

.fleet-card-copy p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fleet-card-copy p span {
  margin-right: 8px;
  color: var(--red);
  font-size: 12px;
}

.fleet-card-copy h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.65rem, 3.4vw, 3.7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.fleet-card-copy small {
  min-height: 42px;
  margin-top: 13px;
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.55;
}

.fleet-card-copy a {
  margin-top: 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-card-copy a::after {
  content: "→";
  color: var(--red);
  font-size: 16px;
  transition: transform 0.2s ease;
}

.fleet-card-copy a:hover::after {
  transform: translateX(4px);
}

.equipment-feature {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) 1.12fr;
  gap: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.flyer-frame {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  padding: 22px;
  background: #242424;
}

.flyer-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
  pointer-events: none;
}

.flyer-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.equipment-feature:hover .flyer-frame img {
  transform: scale(1.025);
}

.frame-label {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 13px 18px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.equipment-copy {
  position: relative;
  padding: 64px 68px;
  overflow: hidden;
}

.equipment-copy::after {
  content: "RENT";
  position: absolute;
  right: -20px;
  bottom: -52px;
  z-index: 0;
  color: rgba(17, 17, 17, 0.035);
  font-family: Impact, sans-serif;
  font-size: 11rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.equipment-copy > * {
  position: relative;
  z-index: 1;
}

.equipment-number {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.equipment-number span {
  margin-left: 7px;
  color: #9b9891;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.equipment-copy h3 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.3rem, 5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.equipment-intro {
  max-width: 520px;
  margin: 24px 0 29px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

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

.feature-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--paper);
}

.feature-icon svg {
  width: 22px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-list > div > span:last-child {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 13px;
}

.feature-list strong {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.use-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
}

.use-row span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-section {
  position: relative;
  padding: 120px 0 125px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.process-section::before {
  content: "";
  position: absolute;
  left: -130px;
  bottom: -200px;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(213, 31, 38, 0.08);
  border-radius: 50%;
}

.process-photo {
  position: absolute;
  inset: 0 0 0 55%;
  opacity: 0.1;
  background: url("assets/facebook-bobcat-field.jpg") center 55% / cover no-repeat;
  filter: grayscale(1);
  mask-image: linear-gradient(90deg, transparent, black);
}

.process-inner {
  position: relative;
  z-index: 1;
}

.kicker-light {
  color: rgba(255, 255, 255, 0.55);
}

.process-heading {
  margin-bottom: 70px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.step {
  position: relative;
  min-height: 312px;
  padding: 44px 48px 35px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.step + .step {
  padding-left: 48px;
}

.step:last-child {
  border-right: 0;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 23px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Impact, sans-serif;
  font-size: 58px;
}

.step-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 45px;
  display: grid;
  place-items: center;
  background: var(--red);
}

.step-icon svg {
  width: 28px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3,
.benefit h3 {
  margin: 0 0 13px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.step p {
  max-width: 285px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

.why-section {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 95px;
  align-items: center;
}

.why-lede {
  max-width: 470px;
  margin: 30px 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow);
}

.benefit {
  position: relative;
  min-height: 280px;
  padding: 41px 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.benefit:nth-child(even) {
  border-right: 0;
}

.benefit:nth-child(n + 3) {
  border-bottom: 0;
}

.benefit > span {
  position: absolute;
  top: 25px;
  right: 26px;
  color: #aaa69f;
  font-size: 10px;
  font-weight: 900;
}

.benefit > svg {
  width: 45px;
  margin-bottom: 39px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit p {
  max-width: 255px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.benefit-accent {
  background: var(--red);
  color: var(--white);
}

.benefit-accent > span {
  color: rgba(255, 255, 255, 0.5);
}

.benefit-accent > svg {
  stroke: var(--white);
}

.benefit-accent p {
  color: rgba(255, 255, 255, 0.72);
}

.faq-section {
  background: var(--paper-2);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 110px;
}

.faq-heading > p:last-child {
  max-width: 290px;
  margin: 30px 0 0;
  color: var(--muted);
}

.accordion {
  border-top: 2px solid var(--ink);
}

.accordion details {
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
}

.accordion summary {
  position: relative;
  padding: 27px 54px 27px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span,
.accordion summary span::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 7px;
  width: 17px;
  height: 2px;
  background: var(--red);
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.accordion summary span::after {
  top: 1px;
  right: 0;
  transform: rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: rotate(0deg);
}

.accordion details p {
  max-width: 650px;
  margin: -4px 0 28px;
  padding-right: 45px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 54px 54px;
}

.contact-stripe {
  position: absolute;
  top: -100px;
  right: -165px;
  width: 410px;
  height: 140%;
  background: var(--red);
  transform: rotate(14deg);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 570px;
  font-size: clamp(3.5rem, 5.5vw, 6.3rem);
}

.contact-copy > p:not(.kicker) {
  max-width: 510px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.72;
}

.contact-methods {
  max-width: 520px;
  display: grid;
  gap: 10px;
}

.contact-method {
  min-height: 66px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-method:hover {
  border-color: var(--red);
  background: rgba(213, 31, 38, 0.09);
  transform: translateX(4px);
}

.contact-method svg {
  width: 32px;
  flex: 0 0 32px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method span {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-method small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}

.request-card {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.32);
}

.card-top {
  min-height: 70px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.card-top span {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-top small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

#request-form {
  padding: 29px 32px 32px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 17px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #d5d2cc;
  border-radius: 0;
  outline: 0;
  background: #f7f6f3;
  color: var(--ink);
  font-size: 14px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 83px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(213, 31, 38, 0.09);
}

.form-submit {
  width: 100%;
  margin-top: 5px;
}

.request-result {
  padding: 31px 32px 34px;
}

.request-result > p {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-result blockquote {
  max-height: 210px;
  margin: 0 0 20px;
  padding: 18px;
  overflow: auto;
  border-left: 3px solid var(--red);
  background: var(--paper);
  color: #52504d;
  font-size: 14px;
  white-space: pre-line;
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.start-over {
  margin: 17px auto 0;
  padding: 0;
  display: block;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  padding: 70px 0 25px;
  background: #090909;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-tagline strong {
  color: var(--red);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 23px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-contact {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps .reveal:nth-child(2),
.benefit-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.steps .reveal:nth-child(3),
.benefit-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.benefit-grid .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.fleet-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.fleet-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.nav-cta):nth-child(3) {
    display: none;
  }

  .hero-stamp {
    display: none;
  }

  .section-heading {
    gap: 45px;
  }

  .equipment-copy {
    padding: 52px 44px;
  }

  .fleet-card {
    min-height: 390px;
  }

  .why-grid {
    gap: 60px;
  }

  .faq-grid {
    gap: 70px;
  }

  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .section {
    padding: 86px 0;
  }

  .nav-wrap {
    height: 70px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .brand {
    position: relative;
    z-index: 60;
  }

  .menu-toggle {
    position: relative;
    z-index: 60;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    display: block;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 10px;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: transform 0.25s ease, top 0.25s ease;
  }

  .menu-toggle span:first-child { top: 17px; }
  .menu-toggle span:last-child { top: 25px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

  .site-nav {
    position: fixed;
    z-index: 50;
    inset: 0;
    width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 105px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #090909;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.75, 0.25, 1);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a:not(.nav-cta),
  .site-nav > a:not(.nav-cta):nth-child(3) {
    padding: 20px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: Impact, sans-serif;
    font-size: 30px;
    letter-spacing: 0.02em;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 28px;
    padding: 18px;
    text-align: center;
  }

  .hero {
    height: auto;
    min-height: 820px;
    align-items: flex-end;
  }

  .hero-image {
    background-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.23)),
      linear-gradient(0deg, rgba(7, 7, 7, 0.9) 2%, transparent 62%);
  }

  .hero-content {
    padding: 170px 0 165px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 12vw, 6.7rem);
  }

  .hero-rail {
    background: rgba(12, 12, 12, 0.94);
  }

  .rail-grid {
    min-height: 106px;
  }

  .rail-item {
    padding: 16px;
  }

  .rail-item:first-child {
    padding-left: 0;
  }

  .rail-item svg {
    width: 25px;
  }

  .rail-item span {
    font-size: 10px;
  }

  .rail-item strong {
    font-size: 10px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-bottom: 45px;
  }

  .section-heading > p {
    max-width: 560px;
  }

  .equipment-feature {
    grid-template-columns: 1fr;
  }

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

  .fleet-card:first-child {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .fleet-card:first-child img {
    object-position: center 57%;
  }

  .flyer-frame {
    min-height: 0;
    aspect-ratio: 1;
    padding: 0;
  }

  .process-section {
    padding: 90px 0;
  }

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

  .step,
  .step + .step {
    min-height: 0;
    padding: 30px 0;
    display: grid;
    grid-template-columns: 62px 1fr;
    column-gap: 23px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .step-icon {
    grid-row: 1 / 3;
    margin: 0;
  }

  .step h3 {
    align-self: end;
    margin: 0 0 6px;
  }

  .step p {
    grid-column: 2;
  }

  .step-number {
    top: 25px;
  }

  .why-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    gap: 58px;
  }

  .faq-grid {
    gap: 50px;
  }

  .contact-grid {
    gap: 55px;
  }

  .contact-stripe {
    right: -310px;
  }

  .request-card {
    max-width: 620px;
  }

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

  .footer-tagline {
    display: none;
  }
}

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

  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 65px;
  }

  .brand-mark {
    width: 40px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    min-height: 810px;
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.79), rgba(7, 7, 7, 0.15)),
      linear-gradient(0deg, rgba(7, 7, 7, 0.97) 4%, rgba(7, 7, 7, 0.37) 64%, rgba(7, 7, 7, 0.16));
  }

  .hero-content {
    padding: 185px 0 170px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 17vw, 5.5rem);
    line-height: 0.91;
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 27px;
  }

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

  .hero-actions .button-ghost {
    display: none;
  }

  .hero-rail {
    padding: 11px 0;
  }

  .rail-grid {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .rail-item {
    padding: 6px 0;
    border: 0;
  }

  .rail-item span {
    flex-direction: row;
    gap: 7px;
    font-size: 10px;
  }

  .rail-item strong {
    margin: 0;
  }

  .section-heading h2,
  .process-heading h2,
  .why-copy h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(3.2rem, 15vw, 4.4rem);
  }

  .equipment-copy {
    padding: 40px 25px 44px;
  }

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

  .fleet-card,
  .fleet-card:first-child {
    grid-column: auto;
    min-height: 410px;
  }

  .fleet-card-copy {
    padding: 28px 24px;
  }

  .fleet-card-copy h3 {
    font-size: 3.1rem;
  }

  .equipment-copy h3 {
    font-size: 3.7rem;
  }

  .equipment-intro {
    font-size: 15px;
  }

  .feature-list > div {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .feature-list > div > span:last-child {
    font-size: 12px;
  }

  .process-heading {
    margin-bottom: 50px;
  }

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

  .benefit,
  .benefit:nth-child(even),
  .benefit:nth-child(n + 3) {
    min-height: 235px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .accordion summary {
    font-size: 15px;
  }

  .contact-section {
    padding: 90px 0;
  }

  .contact-copy > p:not(.kicker) {
    font-size: 15px;
  }

  .card-top {
    min-height: 62px;
    padding: 0 21px;
  }

  .card-top small {
    display: none;
  }

  #request-form,
  .request-result {
    padding: 23px 21px 25px;
  }

  .field-row,
  .result-actions {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 45;
    right: 0;
    bottom: 0;
    left: 0;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 -7px 25px rgba(0, 0, 0, 0.2);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-contact svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

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

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