/* Curbside Rentals — mockup layout, black & white */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --gray: #5c5c5c;
  --line: #e6e6e6;
  --blue: #7dbe5e;
  --blue-deep: #6fae4a;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.5rem;
  --font: "Barlow", sans-serif;
  --font-display: "Barlow Condensed", "Barlow", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
}

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

a {
  color: var(--black);
}

address {
  font-style: normal;
}

h1,
h2,
h3,
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  color: var(--black);
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  max-width: 12ch;
}

h2,
.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
}

h3 {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

p {
  margin: 0 0 1rem;
  color: var(--gray);
}

p:last-child {
  margin-bottom: 0;
}

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

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

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.6rem 1rem;
  overflow: visible;
  clip: auto;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
}

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

.btn:focus-visible,
.nav-toggle:focus-visible,
.carousel-arrow:focus-visible,
.carousel-dot:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* Header — translucent white over hero, solid white after scroll */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid transparent;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled,
.site-header.nav-open {
  background: var(--white);
  border-bottom-color: var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo:hover {
  opacity: 0.75;
}

.logo img {
  width: auto;
  height: 2.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a:not(.btn) {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:not(.btn):hover,
.site-nav a:not(.btn)[aria-current="page"] {
  border-bottom-color: var(--blue);
  color: var(--black);
}

.nav-book {
  min-height: 2.6rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  border-color: var(--blue);
  background: transparent;
  color: var(--black);
}

.nav-book:hover {
  border-color: var(--blue);
  background: transparent;
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.35rem auto;
  background: var(--black);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border: 2px solid var(--black);
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:hover {
  text-decoration: none;
}

.btn-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--white);
  color: var(--black);
}

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.nav-book {
  min-height: 2.6rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  border-color: var(--blue);
  background: transparent;
  color: var(--black);
  box-shadow: none;
}

.nav-book:hover {
  border-color: var(--blue);
  background: transparent;
  color: var(--black);
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}

.text-link {
  font-weight: 600;
  color: var(--black);
}

/* Hero — full-bleed photo, copy left over open asphalt */
.hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #d8d8d8;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: grayscale(0.55) contrast(1.02);
}

.hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.68) 0%,
    rgba(255, 255, 255, 0.32) 30%,
    rgba(255, 255, 255, 0) 55%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem)) 0 clamp(3.5rem, 9vw, 6rem);
  justify-self: center;
  width: var(--shell);
  max-width: none;
  margin-inline: auto;
}

.hero-content h1 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
  max-width: none;
  margin: 0 0 1.15rem;
  color: var(--black);
}

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

.hero-content .lede {
  max-width: 26rem;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 400;
  margin: 0 0 1.75rem;
  color: var(--black);
}

/* Desktop: keep hero button position, show lede below image */
.hero-lede-band {
  display: none;
}

@media (min-width: 901px) {
  .hero-content .hero-lede-reserve {
    visibility: hidden;
  }

  .hero-lede-band {
    display: block;
    width: 100%;
    padding: clamp(1.5rem, 3vw, 2.25rem) 0;
    background: var(--white);
    text-align: center;
  }

  .hero-lede-band .shell {
    width: var(--shell);
    max-width: none;
  }

  .hero-lede-band .lede {
    max-width: none;
    width: 100%;
    margin: 0 auto 0.65rem;
    font-size: 1.1rem;
    line-height: 1.55;
    font-weight: 400;
    color: #000;
    text-align: center;
  }

  .hero-lede-band .lede:last-child {
    margin-bottom: 0;
  }
}

.hero .btn-primary,
.meet-hero .btn-primary,
.truck-hero .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.hero .btn-primary:hover,
.meet-hero .btn-primary:hover,
.truck-hero .btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.meet-hero-content .about-contact {
  margin: 0 0 1.35rem;
  color: var(--black);
}

.meet-hero-content .about-contact .text-link {
  font-weight: 600;
  color: var(--black);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 0.85rem auto 0;
  background: var(--blue);
}

.section-head.center {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-head.center .section-title {
  margin-bottom: 0.85rem;
}

.section-head.center p {
  margin-inline: auto;
  max-width: 34rem;
}

.headed {
  display: inline-block;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--black);
  margin-bottom: 1.15rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.media-block {
  margin: 0;
  overflow: hidden;
  background: #ececec;
}

.media-block img {
  width: 100%;
  height: min(420px, 55vw);
  object-fit: cover;
  object-position: center;
}

/* Meet the truck — hero-style full-bleed background */
.meet-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #d8d8d8;
}

.meet-hero-media {
  position: absolute;
  inset: 0;
}

.meet-hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.meet-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.meet-hero-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.52) 0%,
    rgba(255, 255, 255, 0.22) 30%,
    rgba(255, 255, 255, 0) 55%
  );
}

.meet-hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  justify-self: center;
  width: var(--shell);
  max-width: none;
  margin-inline: auto;
}

.meet-hero-content h2 {
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: none;
  max-width: none;
  margin: 0 0 1.15rem;
  color: var(--black);
}

.meet-hero-content .lede {
  max-width: 26rem;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 400;
  margin: 0 0 1.15rem;
  color: #3a3a3a;
}

.about-owner .meet-hero-content .lede {
  max-width: 28rem;
}

.meet-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  margin: 0 0 1.5rem;
  max-width: 34rem;
}

.meet-spec-group h3 {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 0.55rem;
}

.meet-hero-content .check-list {
  margin-bottom: 0;
  max-width: none;
  columns: auto;
}

.about-owner .meet-hero-content .check-list {
  margin-bottom: 1.5rem;
  max-width: 34rem;
  columns: 1;
}

.meet-hero-content .check-list-dense li {
  padding-top: 0.28rem;
  padding-bottom: 0.28rem;
  break-inside: avoid;
  font-size: 0.95rem;
}

.meet-hero-content .check-list li::before {
  border-left-color: var(--blue);
  border-bottom-color: var(--blue);
  top: 0.55rem;
}

.meet-highlights {
  columns: 1 !important;
  max-width: 22rem !important;
  margin-bottom: 1.5rem !important;
}

/* How it works */
.how-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  counter-reset: none;
}

.how-grid li {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border: 2px solid var(--blue);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
}

.how-grid h3 {
  margin-bottom: 0.45rem;
}

.how-grid p {
  margin: 0;
  max-width: 20rem;
  font-size: 0.98rem;
}

/* Feature grid */
.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-grid li {
  padding: 0 1.5rem;
  border-right: 1px solid var(--line);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-grid li:first-child {
  padding-left: 0;
}

.feature-grid li:last-child {
  border-right: 0;
  padding-right: 0;
}

.feature-grid h3 {
  margin-bottom: 0.5rem;
}

.feature-grid p {
  font-size: 0.95rem;
  max-width: 15rem;
}

.feature-grid .icon {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.15rem;
  color: var(--black);
}

.feature-grid .icon svg,
.feature-grid .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon {
  display: inline-flex;
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.1rem;
  color: var(--black);
}

.icon svg {
  width: 100%;
  height: 100%;
}

/* Meet the truck */
.check-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.85rem;
  font-weight: 600;
  color: var(--black);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.7rem;
  width: 0.95rem;
  height: 0.5rem;
  border-left: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(-45deg);
}

/* Locations */
.location-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.location-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--line);
  text-align: center;
  color: var(--black);
}

.location-grid .location-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.location-grid li p {
  margin: 0;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gray);
  line-height: 1.4;
}

.location-grid li:last-child {
  border-right: 0;
}

.location-grid .icon {
  margin-bottom: 0;
  color: var(--blue);
}

/* CTA */
.section-cta {
  padding-top: 0;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem 2rem;
  padding: 2rem 2.25rem;
  background: var(--black);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1rem;
}

.cta-band .cta-checks {
  margin: 0;
}

.cta-band .cta-checks li {
  color: var(--white);
  font-weight: 500;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

.cta-band .cta-checks li::before {
  border-left-color: var(--blue);
  border-bottom-color: var(--blue);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-self: end;
}

.cta-band .cta-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.cta-band .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.cta-band .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.cta-band-light {
  background: var(--off-white);
  color: var(--black);
}

.section-cta-full {
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  background: var(--off-white);
}

.section-cta-full .cta-band-light {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.cta-band-light h2 {
  color: var(--black);
}

.cta-band-light p {
  color: var(--gray);
}

.cta-band-light .btn-secondary {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}

.cta-band-light .btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

.cta-band-light .btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.cta-band-light .cta-checks {
  margin: 0 0 1rem;
}

.cta-band-light .cta-checks li {
  color: var(--black);
  font-weight: 700;
}

.cta-band-light .cta-checks li::before {
  border-left-color: var(--blue);
  border-bottom-color: var(--blue);
}

.cta-band-light .cta-contact {
  margin: 0;
}

.cta-band-light .cta-contact .text-link {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* The Truck page */
.truck-hero {
  padding: calc(var(--header-h) + clamp(2rem, 5vw, 3.5rem)) 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--white);
}

.truck-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.truck-hero .eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.truck-hero h1 {
  max-width: none;
  text-transform: none;
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.truck-subhead {
  margin: 0 0 0.85rem;
  font-family: var(--font);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
}

.truck-hero .lede {
  max-width: 28rem;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.truck-hero-media {
  margin: 0;
  overflow: visible;
  background: var(--white);
}

.truck-hero-media img {
  width: 100%;
  height: auto;
  max-height: min(480px, 58vw);
  object-fit: contain;
  object-position: center;
}

/* Truck photo carousel */
.truck-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  background: var(--off-white);
}

.carousel-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.45s var(--ease);
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: min(460px, 56vw);
  object-fit: cover;
  object-position: center;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--black);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.carousel-arrow:hover {
  background: var(--blue);
  color: var(--white);
}

.carousel-prev {
  left: 0.85rem;
}

.carousel-next {
  right: 0.85rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.carousel-dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.carousel-dot[aria-current="true"] {
  background: var(--blue);
}

.specs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
}

.spec-table {
  margin: 0;
}

.spec-table > div {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-table dt {
  margin: 0;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}

.spec-table dd {
  margin: 0;
  color: var(--gray);
}

.specs-feature {
  display: flex;
  flex-direction: column;
}

.specs-media {
  margin: 0 0 0.85rem;
  overflow: hidden;
  background: #ececec;
  flex: 1 1 auto;
}

.specs-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  object-position: center;
}

.specs-feature h3 {
  margin-bottom: 0.35rem;
}

.specs-feature p {
  margin: 0;
}

.specs-features {
  display: grid;
  gap: 1.15rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.spec-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.spec-card {
  margin: 0;
  overflow: hidden;
  background: #ececec;
}

.spec-card img {
  width: 100%;
  height: min(220px, 40vw);
  object-fit: cover;
  object-position: center;
}

.spec-pair-copy {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
}

.spec-pair-copy h3 {
  margin-bottom: 0.35rem;
}

.spec-pair-copy p {
  margin: 0;
}

.perfect-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem 1rem;
}

.perfect-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.25;
  color: var(--black);
}

.perfect-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
}

.perfect-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  max-width: 52rem;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--black);
  position: relative;
  padding-right: 2.75rem;
}

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

.faq-item a {
  color: var(--black);
  font-weight: 600;
  text-underline-offset: 0.2em;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--blue);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--gray);
}

/* Inner pages */
.page-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
}

.page-hero h1 {
  max-width: none;
}

.brand-lockup {
  display: block;
  width: min(280px, 70vw);
  height: auto;
  margin: 0 0 1.25rem;
}

.page-hero .lede {
  max-width: none;
  font-size: 1.125rem;
}

.about-placeholder {
  margin-inline: auto;
  text-align: center;
  max-width: 40rem;
}

.about-placeholder p {
  font-size: 1.1rem;
  color: var(--gray);
}

.prose {
  max-width: 40rem;
}

.prose p {
  font-size: 1.1rem;
}

.booking-panel {
  max-width: 56rem;
}

.booking-section {
  padding-top: 0;
}

.booking-truck {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.booking-truck-media {
  margin: 0;
  overflow: hidden;
  background: var(--off-white);
}

.booking-truck-media img {
  width: 100%;
  height: min(420px, 58vw);
  object-fit: cover;
  object-position: center;
}

.booking-truck-copy .eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.booking-truck-copy .eyebrow a {
  color: inherit;
  text-decoration: none;
}

.booking-truck-copy .eyebrow a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.booking-truck-copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: none;
  max-width: none;
}

.booking-truck-copy .lede {
  margin: 0 0 1.15rem;
  max-width: 28rem;
  color: var(--black);
}

.booking-rate {
  margin: 0 0 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.booking-rate-amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}

.booking-rate-unit {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray);
}

.rate-grid {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.rate-grid li {
  background: var(--white);
  padding: 1.35rem 1.15rem 1.2rem;
  text-align: center;
}

.rate-label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.rate-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}

.rate-unit {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray);
}

.rate-note {
  margin: 0 0 1.75rem;
  max-width: 46rem;
}

.delivery-band {
  display: grid;
  grid-template-columns: minmax(10rem, 16rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.delivery-price {
  text-align: center;
}

.delivery-copy p {
  margin: 0 0 0.65rem;
  max-width: 40rem;
}

.delivery-copy p:last-child {
  margin-bottom: 0;
}

.rental-checks {
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4rem);
  max-width: 52rem;
  margin: 0 auto;
}

.rental-note {
  margin-top: 1.15rem;
  font-size: 0.95rem;
}

.booking-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.15fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2.25rem;
}

.footer-brand {
  display: inline-block;
  margin: 0 0 0.75rem;
  text-decoration: none;
}

.footer-brand:hover {
  opacity: 0.8;
}

.footer-brand img {
  width: auto;
  height: 2.75rem;
  filter: brightness(0) invert(1);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer strong {
  color: var(--white);
  font-weight: 600;
}

.footer-serving,
.footer-owner,
.footer-tagline,
.footer-hours,
.footer-legal {
  color: var(--white) !important;
}

.footer-legal {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.footer-tagline {
  margin: 0 0 0.15rem;
}

.footer-serving {
  margin: 0;
}

.footer-hours {
  margin: 0;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: var(--white);
  opacity: 0.9;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.social-icon:hover {
  color: var(--blue);
  border-color: var(--blue);
  opacity: 1;
}

.social-icon svg {
  display: block;
}

.footer-label {
  margin: 0 0 0.75rem !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white) !important;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a[href^="tel:"],
.site-footer a[href^="mailto:"] {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  color: var(--blue);
}

a.text-link[href^="tel:"],
a.text-link[href^="mailto:"] {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.footer-menu a[aria-current="page"] {
  color: var(--blue);
}

.footer-bottom {
  padding: 1.1rem 0 1.5rem;
  border-top: 2px solid var(--blue);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-credit {
  margin-top: 0.65rem !important;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-credit a:hover {
  color: var(--blue);
}

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

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
  }

  .truck-hero-inner,
  .specs-layout,
  .faq-grid,
  .booking-truck {
    grid-template-columns: 1fr;
  }

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

  .delivery-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .delivery-copy p {
    margin-inline: auto;
  }

  .specs-media img {
    min-height: 18rem;
    height: min(28rem, 70vw);
  }

  .perfect-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .how-grid {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }

  .truck-hero-media img {
    height: auto;
    max-height: min(360px, 78vw);
  }

  .carousel-slide img {
    height: min(360px, 72vw);
  }

  .carousel-arrow {
    width: 2.4rem;
    height: 2.4rem;
  }

  /* Stacked hero: image + headline overlay, copy below */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    background: var(--white);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(280px, 48vw, 420px);
    flex-shrink: 0;
    z-index: 0;
  }

  .hero-media img {
    object-fit: cover;
    object-position: center bottom;
  }

  .hero-veil {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(280px, 48vw, 420px);
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0.35) 28%,
      transparent 55%
    );
  }

  .hero-content {
    position: relative;
    z-index: 2;
    width: var(--shell);
    margin-inline: auto;
    padding: 1.5rem 0 2.5rem;
    background: var(--white);
  }

  .hero-content h1 {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(-1 * clamp(280px, 48vw, 420px) + var(--header-h) + 0.85rem);
    bottom: auto;
    margin: 0;
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    color: var(--black);
  }

  .hero-content .lede {
    max-width: 34rem;
    font-size: 1rem;
  }

  .feature-grid,
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .feature-grid li,
  .location-grid li {
    border-right: 0;
    border-left: 0;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid li:nth-child(odd),
  .location-grid li:nth-child(odd) {
    padding-left: 0;
  }

  .feature-grid li:nth-child(even),
  .location-grid li:nth-child(even) {
    padding-right: 0;
  }

  .feature-grid li:nth-last-child(-n + 2),
  .location-grid li:nth-last-child(-n + 2) {
    border-bottom: 0;
    padding-bottom: 0;
  }

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

  /* Stacked meet-hero: image + title overlay, copy below */
  .meet-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    background: var(--white);
  }

  .meet-hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(280px, 48vw, 420px);
    flex-shrink: 0;
    z-index: 0;
  }

  .meet-hero-media img {
    object-fit: cover;
    object-position: center bottom;
  }

  .meet-hero-veil {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(280px, 48vw, 420px);
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(255, 255, 255, 0.28) 28%,
      transparent 55%
    );
  }

  .meet-hero-content {
    position: relative;
    z-index: 2;
    width: var(--shell);
    margin-inline: auto;
    padding: 1.5rem 0 2.5rem;
    background: var(--white);
  }

  .meet-hero-content h2 {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(-1 * clamp(280px, 48vw, 420px) + 1.15rem);
    bottom: auto;
    margin: 0;
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    color: var(--black);
  }

  .meet-hero-content .lede {
    max-width: 34rem;
    font-size: 1rem;
  }

  .about-owner .meet-hero-content .lede {
    max-width: 28rem;
  }

  .meet-specs {
    grid-template-columns: 1fr;
    max-width: 26rem;
    gap: 1.15rem;
  }

  .meet-hero-content .check-list,
  .about-owner .meet-hero-content .check-list {
    columns: 1;
    max-width: 26rem;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(1120px, calc(100% - 1.5rem));
  }

  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

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

  .rental-checks {
    columns: 1;
    max-width: 26rem;
  }

  .page-hero .lede {
    white-space: normal;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1.15rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.btn) {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:not(.btn)[aria-current="page"] {
    border-bottom-color: var(--blue);
  }

  .site-nav a:not(.btn):hover {
    border-bottom-color: var(--line);
  }

  .nav-book {
    margin-top: 0.85rem;
    width: 100%;
  }

  .feature-grid,
  .location-grid,
  .footer-grid,
  .perfect-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid li,
  .location-grid li {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
    text-align: center;
  }

  .location-grid li {
    align-items: center;
    text-align: center;
  }

  .feature-grid li:last-child,
  .location-grid li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }

  .cta-actions {
    justify-self: stretch;
  }

  .cta-actions,
  .booking-contacts {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-media,
  .hero-veil {
    height: clamp(240px, 62vw, 320px);
  }

  .hero-content {
    padding: 1.35rem 0 2rem;
  }

  .hero-content h1 {
    top: calc(-1 * clamp(240px, 62vw, 320px) + var(--header-h) + 0.75rem);
    bottom: auto;
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .hero-content .lede {
    max-width: 22rem;
    font-size: 0.95rem;
    margin-bottom: 1.15rem;
  }

  .media-block img {
    height: min(320px, 70vw);
  }

  .meet-hero-media,
  .meet-hero-veil {
    height: clamp(240px, 62vw, 320px);
  }

  .meet-hero-content {
    padding: 1.35rem 0 2rem;
  }

  .meet-hero-content h2 {
    top: calc(-1 * clamp(240px, 62vw, 320px) + 1rem);
    bottom: auto;
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .meet-hero-content .lede {
    max-width: 22rem;
    font-size: 0.95rem;
  }

  .about-owner .meet-hero-content .lede {
    max-width: 28rem;
  }
}
