:root {
  color-scheme: light;
  --black: #111111;
  --black-2: #2a2a2a;
  --yellow: #f4c400;
  --yellow-dark: #d8aa00;
  --link: #715600;
  --off-white: #fbfaf6;
  --gray: #eeeeea;
  --gray-2: #d8d6cd;
  --charcoal: #1b1b1b;
  --muted: #5f5f5b;
  --white: #ffffff;
  --danger: #b83232;
  --radius: 8px;
  --shadow: 0 18px 42px rgba(17, 17, 17, 0.14);
  --shadow-soft: 0 10px 24px rgba(17, 17, 17, 0.09);
  --max: 1200px;
  --header-max: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  background: #ffffff;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .mobile-cta {
  display: none;
}

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

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(244, 196, 0, 0.58);
  outline-offset: 3px;
}

.sr-only {
  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 {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
}

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

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 76px;
  --header-h: 76px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(16, 42, 67, 0.08);
  transition: box-shadow 150ms ease, height 150ms ease;
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  height: 68px;
  --header-h: 68px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(100% - 40px, var(--header-max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  color: var(--black);
}

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

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: linear-gradient(180deg, #111111 0 68%, var(--yellow) 68% 100%);
  box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
}

.brand-mark::before {
  top: 13px;
}

.brand-mark::after {
  top: 25px;
}

.brand-name {
  display: block;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.05;
}

.brand-sub {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.desktop-nav a {
  white-space: nowrap;
}

.desktop-nav a,
.mobile-menu a {
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--yellow);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 150ms ease, transform 150ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.desktop-nav a[aria-current="page"] {
  color: var(--black);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-actions .btn {
  white-space: nowrap;
}

.phone-link {
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.portal-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1.5px solid var(--yellow-dark);
  border-radius: 999px;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s ease;
}

.portal-link:hover {
  background: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
  transition: transform 150ms ease, opacity 150ms 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);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h, 64px) 0 0;
  z-index: 90;
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px 32px;
  background: var(--white);
  border-top: 1px solid var(--gray);
  box-shadow: var(--shadow);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: calc(100vh - var(--header-h, 64px));
  max-height: calc(100dvh - var(--header-h, 64px));
}

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

.mobile-menu a {
  padding: 13px 0;
  border-bottom: 1px solid var(--gray);
}

.mobile-menu .btn {
  justify-content: center;
  width: 100%;
  border-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--black);
  background: var(--yellow);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.btn:hover {
  background: var(--yellow-dark);
  color: var(--black);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

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

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

.btn.text {
  min-height: 44px;
  padding: 0;
  color: var(--link);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.btn.text:hover {
  color: var(--link);
  background: transparent;
  box-shadow: none;
  text-decoration: underline;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  color: var(--black);
  background: rgba(244, 196, 0, 0.2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.section {
  padding: 104px 0;
  background: var(--white);
}

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

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

.section.yellow {
  color: var(--black);
  background: var(--yellow);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-header.align-left {
  margin-left: 0;
  text-align: left;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--black);
  line-height: 1.12;
}

.dark h1,
.dark h2,
.dark h3 {
  color: var(--white);
}

.yellow h1,
.yellow h2,
.yellow h3 {
  color: var(--black);
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(38px, 7vw, 64px);
  font-weight: 850;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.dark .lead,
.yellow .lead {
  color: rgba(17, 17, 17, 0.78);
}

.dark .lead {
  color: rgba(255, 255, 255, 0.84);
}

.hero {
  padding: 112px 0 104px;
  background: var(--off-white);
}

.hero-photo {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: min(580px, calc(100svh - 160px));
  overflow: hidden;
  padding: 72px 0 44px;
  color: var(--white);
  background: var(--black);
}

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

.hero-bg {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  animation: hero-drift 16s ease-out both;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.84) 0%, rgba(17, 17, 17, 0.58) 46%, rgba(17, 17, 17, 0.16) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.5), rgba(17, 17, 17, 0.04) 48%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 330px);
  gap: 32px;
  align-items: end;
}

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

.hero-photo h1,
.hero-photo h2,
.hero-photo h3 {
  color: var(--white);
}

.hero-photo .lead,
.hero-photo .trust-item {
  color: rgba(255, 255, 255, 0.9);
}

.hero-photo .eyebrow {
  color: var(--black);
  background: rgba(244, 196, 0, 0.92);
}

.hero-photo .btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

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

.hero-photo + .section {
  padding-top: 16px;
}

.hero-actions,
.cta-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.hero-proof {
  width: 100%;
  padding: 20px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-proof span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 9px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  font-size: 22px;
  line-height: 1.15;
}

.hero-proof small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.feature-card,
.step-card,
.price-card,
.area-panel,
.info-card,
.policy-card,
.form-panel,
.summary-panel,
.faq-group,
.city-card,
.zone-card,
.policy-content,
.table-wrap {
  min-width: 0;
}

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

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

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

.feature-card,
.step-card,
.price-card,
.area-panel,
.info-card,
.policy-card,
.form-panel,
.summary-panel,
.faq-group,
.city-card,
.zone-card {
  background: var(--white);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(16, 42, 67, 0.03);
}

.feature-card,
.step-card,
.price-card,
.area-panel,
.info-card,
.policy-card,
.city-card,
.zone-card {
  padding: 24px;
}

.feature-card:hover,
.price-card:hover,
.city-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.price-card,
.city-card {
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.icon-block {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--black);
  background: rgba(244, 196, 0, 0.24);
  border-radius: 8px;
  font-weight: 900;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  font-weight: 900;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-card.featured {
  border-color: rgba(244, 196, 0, 0.85);
  box-shadow: var(--shadow-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  color: var(--black);
  background: rgba(244, 196, 0, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  color: var(--black);
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.clean-list,
.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  transform: rotate(-45deg);
}

.note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.area-checker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 20px;
}

.area-checker input,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gray-2);
  border-radius: 8px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.area-result {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.area-result.is-visible {
  display: block;
}

.area-result.success {
  color: var(--black);
  background: rgba(244, 196, 0, 0.22);
}

.area-result.warning {
  color: #6b4b12;
  background: rgba(214, 158, 46, 0.2);
}

.area-result.neutral {
  color: var(--black);
  background: var(--gray);
}

.calculator-panel {
  background: var(--white);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  display: grid;
  gap: 24px;
}

.calculator-rooms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.room-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  background: var(--off-white);
}

.room-label {
  font-weight: 700;
  color: var(--black);
  font-size: 14px;
}

.stepper-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stepper-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.stepper-btn:hover {
  background: var(--yellow-dark);
}

.stepper-count {
  min-width: 22px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
}

.calculator-result {
  border-top: 1px dashed var(--gray-2);
  padding-top: 20px;
  display: grid;
  gap: 8px;
}

.calc-line {
  font-size: 16px;
  color: var(--black-2);
}

.calc-line strong {
  font-size: 20px;
  color: var(--black);
}

.calc-recommend {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
}

.service-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.service-map .area-panel {
  min-height: 100%;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.city-pills span {
  padding: 8px 12px;
  color: var(--black);
  background: var(--gray);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-column {
  padding: 28px;
}

.comparison-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.comparison-column + .comparison-column {
  border-left: 1px solid var(--gray-2);
  background: #fbfcfd;
}

.partner-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 28px;
  align-items: center;
}

.visual-story {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 34px;
  align-items: center;
}

.visual-story.reverse .story-photo {
  order: 2;
}

.steps-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.steps-stack .step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 4px;
  align-items: start;
  padding: 18px 20px;
}

.steps-stack .step-number {
  grid-row: span 2;
}

.steps-stack h3 {
  margin: 0;
}

.steps-stack p {
  grid-column: 2;
  margin: 0;
}

.steps-stack .btn.text {
  grid-column: 2;
}

.story-photo,
.partner-photo,
.compare-card figure,
.truck-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow-soft);
}

.story-photo img,
.partner-photo img,
.compare-card img,
.truck-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.story-photo {
  min-height: 430px;
}

.story-photo img {
  aspect-ratio: 16 / 10;
}

.story-photo figcaption,
.partner-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 11px 13px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.story-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.story-points div {
  padding: 16px 0 16px 18px;
  border-left: 4px solid var(--yellow);
}

.story-points strong,
.story-points span {
  display: block;
}

.story-points strong {
  color: var(--black);
  font-size: 18px;
}

.story-points span {
  color: var(--muted);
  font-weight: 700;
}

.partner-photo {
  min-height: 320px;
}

.partner-photo img {
  aspect-ratio: 4 / 3;
}

.partner-photo figcaption {
  display: grid;
  gap: 3px;
}

.partner-photo figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  text-transform: uppercase;
}

.partner-photo:hover img,
.story-photo:hover img,
.compare-card:hover img,
.truck-card:hover img {
  transform: scale(1.035);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--black);
  font-weight: 850;
  list-style: none;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--yellow);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.page-hero {
  padding: 70px 0 58px;
  background: var(--off-white);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 30px;
  align-items: end;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(36px, 6vw, 56px);
}

.page-hero-actions {
  display: flex;
  justify-content: flex-end;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray);
  vertical-align: top;
}

th {
  color: var(--black);
  background: #f8fbff;
  font-size: 15px;
}

tr:last-child td {
  border-bottom: 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.form-panel,
.summary-panel {
  padding: 24px;
}

.summary-panel {
  position: sticky;
  top: 94px;
}

.form-section {
  padding: 26px 0;
  border-bottom: 1px solid var(--gray);
}

.form-section:first-child {
  padding-top: 0;
}

.form-section:last-child {
  border-bottom: 0;
}

.form-section h2 {
  margin-bottom: 16px;
  font-size: 25px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.field > span,
.choice-field legend {
  color: var(--black);
  font-size: 14px;
  font-weight: 850;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray);
}

.summary-row.total {
  color: var(--black);
  font-size: 20px;
  font-weight: 900;
  border-bottom: 0;
}

.intake-layout {
  grid-template-columns: 360px minmax(0, 1fr);
}

.booking-guide {
  position: sticky;
  top: 94px;
}

.intake-panel {
  overflow: hidden;
}

.intake-panel .lead {
  font-size: 17px;
}

.branded-form {
  display: grid;
  gap: 0;
}

.branded-form.compact {
  margin-top: 20px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

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

.choice-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-field legend {
  margin-bottom: 12px;
}

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

.partner-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  background: var(--off-white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.partner-choice-grid .choice-card {
  grid-template-columns: auto minmax(0, 1fr);
}

.choice-card input {
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  color: var(--black);
  line-height: 1.15;
}

.choice-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.choice-card b {
  color: var(--black);
  font-size: 18px;
}

.choice-card:hover,
.choice-card:has(input:checked),
.choice-card.is-selected {
  transform: translateY(-2px);
  border-color: rgba(244, 196, 0, 0.9);
  background: rgba(244, 196, 0, 0.12);
  box-shadow: var(--shadow-soft);
}

.field + .field {
  margin-top: 16px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--yellow-dark);
  box-shadow: 0 0 0 4px rgba(244, 196, 0, 0.17);
  outline: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 24px;
}

.recaptcha-field {
  margin-top: 20px;
}

.recaptcha-field:empty {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.form-status a {
  color: var(--link);
  text-decoration: underline;
}

.full-message-fallback {
  display: block;
  width: 100%;
  min-height: 120px;
  margin-top: 10px;
  padding: 10px 12px;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  resize: vertical;
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid {
  border-color: var(--danger);
}

.compare-hero {
  background:
    linear-gradient(120deg, rgba(244, 196, 0, 0.2), rgba(255, 255, 255, 0) 42%),
    var(--off-white);
}

.compare-pair,
.truck-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.compare-card,
.truck-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(16, 42, 67, 0.12);
}

.compare-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.compare-card figure {
  border-radius: 0;
  box-shadow: none;
}

.compare-card img {
  aspect-ratio: 16 / 10;
}

.compare-card > div,
.truck-caption {
  padding: 22px;
}

.compare-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--black);
  background: rgba(244, 196, 0, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cardboard-card .compare-label {
  background: rgba(122, 85, 47, 0.16);
}

.tote-card {
  border-color: rgba(244, 196, 0, 0.75);
}

.truck-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius);
  color: var(--charcoal);
}

.truck-card img {
  aspect-ratio: 16 / 10;
}

.truck-card.featured {
  border-color: rgba(244, 196, 0, 0.82);
}

.truck-caption {
  background: var(--white);
}

.truck-caption p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.resale-section {
  overflow: hidden;
}

.resale-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 34px;
  align-items: start;
}

.resale-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.resale-photo img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.resale-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 11px 13px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.resale-animation {
  position: relative;
  min-height: 310px;
  margin: 26px 0 24px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 196, 0, 0.16), rgba(255, 255, 255, 0) 45%),
    var(--off-white);
  border: 1px solid rgba(16, 42, 67, 0.12);
  border-radius: var(--radius);
}

.market-screen {
  position: relative;
  z-index: 1;
  width: min(330px, 82%);
  padding: 16px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.screen-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.screen-bar span {
  width: 9px;
  height: 9px;
  background: var(--gray-2);
  border-radius: 50%;
}

.listing-row {
  display: grid;
  gap: 3px;
  padding: 12px;
  background: var(--off-white);
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  animation: listing-pulse 4.8s ease-in-out infinite;
}

.listing-row + .listing-row {
  margin-top: 10px;
}

.listing-row strong,
.listing-row span {
  display: block;
}

.listing-row strong {
  color: var(--black);
  font-size: 14px;
  line-height: 1.2;
}

.listing-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.row-two {
  animation-delay: 800ms;
}

.row-three {
  animation-delay: 1600ms;
}

.message-float {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 10px 12px;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 16px 16px 16px 4px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  animation: message-drift 5.2s ease-in-out infinite;
}

.float-one {
  top: 34px;
  right: 26px;
}

.float-two {
  top: 126px;
  right: 10px;
  animation-delay: 1100ms;
}

.float-three {
  right: 40px;
  bottom: 54px;
  animation-delay: 2200ms;
}

.mini-box-stack {
  position: absolute;
  right: 36px;
  bottom: 22px;
  display: grid;
  grid-template-columns: 54px 48px;
  grid-template-rows: 42px 42px;
  gap: 7px;
  opacity: 0.9;
}

.mini-box-stack span {
  display: block;
  background:
    linear-gradient(90deg, transparent 48%, rgba(70, 45, 20, 0.22) 48% 52%, transparent 52%),
    #b9854e;
  border: 2px solid #7c5129;
  border-radius: 4px;
  box-shadow: inset 0 8px 0 rgba(255, 255, 255, 0.12);
  animation: box-wobble 3.8s ease-in-out infinite;
}

.mini-box-stack span:nth-child(2) {
  transform: rotate(4deg);
  animation-delay: 600ms;
}

.mini-box-stack span:nth-child(3) {
  grid-column: 1 / 3;
  width: 78px;
  transform: rotate(-3deg);
  animation-delay: 1200ms;
}

.resale-points {
  display: grid;
  gap: 12px;
}

.resale-points div {
  padding: 16px 0 16px 18px;
  border-left: 4px solid var(--yellow);
}

.resale-points strong,
.resale-points span {
  display: block;
}

.resale-points strong {
  color: var(--black);
  font-size: 18px;
}

.resale-points span {
  color: var(--muted);
  font-weight: 700;
}

.compare-takeaways .section-header {
  max-width: 780px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes hero-drift {
  from {
    transform: scale(1.045) translateX(10px);
  }

  to {
    transform: scale(1) translateX(0);
  }
}

@keyframes listing-pulse {
  0%,
  100% {
    transform: translateX(0);
    border-color: var(--gray-2);
  }

  42% {
    transform: translateX(7px);
    border-color: rgba(244, 196, 0, 0.82);
  }
}

@keyframes message-drift {
  0%,
  100% {
    opacity: 0.78;
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    opacity: 1;
    transform: translateY(-9px) rotate(1deg);
  }
}

@keyframes box-wobble {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -4px;
  }
}

.tote-loader {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 40px;
  vertical-align: middle;
}

.tote-loader .tote-chip {
  position: absolute;
  left: 2px;
  width: 16px;
  height: 12px;
  border: 1.5px solid var(--black);
  border-radius: 3px;
  background: linear-gradient(180deg, #111111 0 62%, var(--yellow) 62% 100%);
  opacity: 0;
}

.tote-loader .tote-chip:nth-child(1) {
  bottom: 0;
  animation: tote-stack 1.6s ease-in-out infinite;
}

.tote-loader .tote-chip:nth-child(2) {
  bottom: 11px;
  animation: tote-stack 1.6s ease-in-out infinite 0.25s;
}

.tote-loader .tote-chip:nth-child(3) {
  bottom: 22px;
  animation: tote-stack 1.6s ease-in-out infinite 0.5s;
}

.tote-loader-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@keyframes tote-stack {
  0% {
    transform: translateY(-24px);
    opacity: 0;
  }

  35% {
    transform: translateY(0);
    opacity: 1;
  }

  75% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.policy-sidebar {
  position: sticky;
  top: 96px;
}

.policy-sidebar .policy-card {
  display: grid;
  gap: 10px;
}

.policy-content h2 {
  margin-top: 36px;
  font-size: 29px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.site-footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.86);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 32px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-sub {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--gray-2);
  box-shadow: 0 -8px 18px rgba(16, 42, 67, 0.1);
}

.mobile-cta .btn {
  flex: 1;
  min-height: 48px;
  padding: 11px 12px;
  font-size: 15px;
}

.mobile-cta .secondary {
  border-color: var(--yellow);
}

@media (max-width: 1500px) {
  .header-actions .phone-link,
  .header-actions .portal-link {
    display: none;
  }
}

@media (max-width: 1200px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-content,
  .page-hero .container,
  .booking-layout,
  .intake-layout,
  .policy-layout,
  .partner-strip,
  .visual-story,
  .resale-layout {
    grid-template-columns: 1fr;
  }

  .visual-story.reverse .story-photo {
    order: initial;
  }

  .page-hero-actions {
    justify-content: flex-start;
  }

  .summary-panel,
  .policy-sidebar {
    position: static;
  }

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

@media (max-width: 780px) {
  body {
    padding-bottom: 76px;
    font-size: 16px;
  }

  .site-header {
    height: 64px;
    --header-h: 64px;
  }

  .site-header.is-scrolled {
    height: 64px;
    --header-h: 64px;
  }

  .header-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-sub {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .hero-photo {
    min-height: auto;
    padding: 40px 0 28px;
  }

  .hero-proof {
    display: none;
  }

  .hero-bg {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.84), rgba(17, 17, 17, 0.48)),
      linear-gradient(0deg, rgba(17, 17, 17, 0.44), rgba(17, 17, 17, 0.02));
  }

  .section {
    padding: 62px 0;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .trust-row,
  .grid-4,
  .grid-3,
  .grid-2,
  .service-map,
  .comparison,
  .compare-pair,
  .truck-comparison,
  .form-grid.two,
  .choice-grid,
  .partner-choice-grid {
    grid-template-columns: 1fr;
  }

  .comparison-column + .comparison-column {
    border-left: 0;
    border-top: 1px solid var(--gray-2);
  }

  .area-checker {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .button-row .btn,
  .form-actions .btn {
    width: 100%;
  }

  .story-photo,
  .partner-photo,
  .resale-photo img {
    min-height: 300px;
  }

  .resale-animation {
    min-height: 380px;
    padding: 16px;
  }

  .market-screen {
    width: 100%;
  }

  .message-float {
    max-width: 190px;
    font-size: 12px;
  }

  .float-one {
    top: 178px;
    right: 18px;
  }

  .float-two {
    top: 238px;
    right: 42px;
  }

  .float-three {
    right: 16px;
    bottom: 78px;
  }

  .mini-box-stack {
    right: 20px;
    bottom: 18px;
  }

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

  .mobile-cta {
    display: flex;
  }

  .booking-page {
    padding-bottom: 0;
  }

  .booking-page .mobile-cta {
    display: none;
  }
}

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