:root {
  --paper: #f3efe6;
  --cream: #faf6ee;
  --ink: #10151c;
  --muted: #6a645c;
  --line: #ddd6c8;
  --orange: #e24a16;
  --orange-deep: #c13a0e;
  --on-orange: #fff7f2;
  --night: #0a121c;
  --night-soft: #15202e;
  --on-night: #ede8df;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Newsreader", "Times New Roman", serif;
  --radius: 1.25rem;
  --radius-md: 0.5rem;
  --text-display: clamp(3.25rem, 8vw, 6.75rem);
  --text-title: clamp(2.25rem, 4.5vw, 3.75rem);
  --shadow-border:
    0 0 0 1px rgba(16, 21, 28, 0.06),
    0 1px 2px -1px rgba(16, 21, 28, 0.06),
    0 12px 32px -16px rgba(16, 21, 28, 0.12);
  --shadow-lift:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 48px -20px rgba(0, 0, 0, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 80rem;
}

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

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

h1, h2, h3 { text-wrap: balance; margin: 0; }
p { text-wrap: pretty; margin: 0; }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

@media (min-width: 640px) {
  .wrap { width: min(100% - 4rem, var(--max)); }
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}

.display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.title {
  font-family: var(--font-display);
  font-size: var(--text-title);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--orange);
  color: var(--on-orange);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 150ms var(--ease), transform 150ms var(--ease);
}
.btn:hover { background: var(--orange-deep); }
.btn:active { transform: scale(0.96); }
.btn--lg { padding: 0.8rem 1.5rem; font-size: 1rem; }
.btn--full { width: 100%; }
.btn svg { width: 1rem; height: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(237, 232, 223, 0.1);
  background: rgba(10, 18, 28, 0.8);
  color: var(--on-night);
  backdrop-filter: blur(12px);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.header-phone {
  display: none;
  margin-right: 1.25rem;
  font-size: 0.875rem;
  color: rgba(237, 232, 223, 0.7);
  text-decoration: none;
}
.header-phone:hover { color: var(--on-night); }
@media (min-width: 640px) {
  .header-phone { display: inline; }
}
.header-actions { display: flex; align-items: center; }

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--night);
  color: var(--on-night);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: none;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 18, 28, 0.8), rgba(10, 18, 28, 0.45) 50%, rgba(10, 18, 28, 0.15));
}
.hero-grid {
  position: relative;
  display: grid;
  min-height: 100dvh;
  align-items: end;
  gap: 2.5rem;
  padding: 7rem 0 3rem;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.75fr;
    padding-bottom: 4rem;
  }
}
.route {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 232, 223, 0.65);
}
.route svg { width: 1.25rem; height: 0.875rem; border-radius: 1px; }
.route-line { width: 2rem; height: 1px; background: rgba(237, 232, 223, 0.3); }
.hero p.lede {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(237, 232, 223, 0.75);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 700ms var(--ease) both; }
.rise-2 { animation: rise 700ms var(--ease) 120ms both; }
.rise-3 { animation: rise 700ms var(--ease) 220ms both; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise, .rise-2, .rise-3 { animation: none; }
}

.card {
  width: 100%;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-border);
}
.card--dark {
  background: var(--night);
  color: var(--on-night);
  box-shadow: var(--shadow-lift);
}
.card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.card-number {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.card-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  margin-top: 0.25rem;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}
.card--dark .card-copy { color: rgba(237, 232, 223, 0.6); }
.card-copy:hover { color: var(--ink); }
.card--dark .card-copy:hover { color: var(--on-night); }
.card-copy svg { width: 0.9rem; height: 0.9rem; }
.choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.choices:first-of-type { margin-top: 1.25rem; }
.choice {
  min-height: 2.75rem;
  padding: 0 0.75rem;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 0 0 1px rgba(16, 21, 28, 0.1);
}
.choice.is-on {
  background: var(--night);
  color: var(--on-night);
  box-shadow: none;
}
.card--dark .choice {
  background: var(--night-soft);
  color: rgba(237, 232, 223, 0.75);
  box-shadow: 0 0 0 1px rgba(237, 232, 223, 0.08);
}
.card--dark .choice.is-on {
  background: var(--cream);
  color: var(--ink);
  box-shadow: none;
}

.stores {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.stores-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-mask {
  margin-top: 1.5rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 3.5rem;
  padding: 0 2.5rem;
  animation: marquee 48s linear infinite;
}
.store-logo {
  height: 2rem;
  width: auto;
  max-width: 9rem;
  object-fit: contain;
  opacity: 0.85;
  outline: none;
}
@media (min-width: 640px) {
  .store-logo { height: 2.25rem; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.manifesto { padding: 5rem 0; }
@media (min-width: 640px) { .manifesto { padding: 7rem 0; } }
.manifesto .title { margin-top: 1.25rem; max-width: 56rem; }
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-k {
  font-family: var(--font-display);
  font-size: 1.875rem;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .stat-k { font-size: 2.25rem; } }
.stat-v { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted); }

.steps {
  padding: 5rem 0;
  border-block: 1px solid var(--line);
  background: var(--cream);
}
@media (min-width: 1024px) {
  .steps { padding: 7rem 0; }
  .steps-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
  }
}
.steps .title { margin-top: 1rem; }
.steps .lede { margin-top: 1rem; max-width: 24rem; color: var(--muted); }
.steps .btn { margin-top: 2rem; }
.step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
}
.step + .step { border-top: 1px solid var(--line); }
.step-n {
  font-family: var(--font-display);
  font-size: 1.875rem;
  color: var(--orange);
}
.step h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }
.step p { margin-top: 0.25rem; font-size: 0.875rem; line-height: 1.65; color: var(--muted); }

.freight {
  padding: 5rem 0;
  background: var(--night);
  color: var(--on-night);
}
@media (min-width: 1024px) { .freight { padding: 7rem 0; } }
.freight .title { margin-top: 1rem; max-width: 36rem; }
.freight-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3.5rem;
}
@media (min-width: 1024px) { .freight-grid { grid-template-columns: 1fr 1fr; } }
.lane {
  overflow: hidden;
  border-radius: var(--radius);
}
.lane img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  outline: none;
}
.lane-body { padding: 1.75rem; background: var(--night-soft); }
.lane-body h3 {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
}
.lane-body p {
  margin-top: 0.75rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(237, 232, 223, 0.7);
}

.corridor { padding: 5rem 0; }
@media (min-width: 1024px) {
  .corridor { padding: 7rem 0; }
  .corridor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
  .corridor-sticky { position: sticky; top: 6rem; }
}
.corridor .title { margin-top: 1rem; }
.corridor-photo {
  margin-top: 2.5rem;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}
.row {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
}
.row + .row { border-top: 1px solid var(--line); }
.row:first-child { padding-top: 0; }
.row-n {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--muted);
}
.row h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
.row p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.65; color: var(--muted); }

.faq {
  padding: 5rem 0;
  border-block: 1px solid var(--line);
  background: var(--cream);
}
.faq .wrap { max-width: 48rem; }
.faq .title { margin-top: 1rem; }
.faq-list { margin-top: 2.5rem; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4rem;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: -0.01em;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 150ms var(--ease);
}
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p {
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

.final { padding: 5rem 0; }
@media (min-width: 1024px) {
  .final { padding: 7rem 0; }
  .final-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
  }
}
.final .title { margin-top: 1rem; }
.final .lede { margin-top: 1.25rem; max-width: 28rem; color: var(--muted); }
.final-photo {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 36rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.site-footer {
  padding: 4rem 0;
  background: var(--night);
  color: var(--on-night);
}
.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 640px) {
  .site-footer .wrap {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.foot-name {
  font-family: var(--font-display);
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}
.foot-tag {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(237, 232, 223, 0.7);
}
.foot-blurb {
  margin-top: 1.25rem;
  max-width: 24rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(237, 232, 223, 0.55);
}
.foot-wa {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.foot-wa:hover { color: var(--orange); }

.sticky-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-top: 1px solid var(--night-soft);
  background: rgba(10, 18, 28, 0.95);
  color: var(--on-night);
  backdrop-filter: blur(12px);
}
.sticky-bar p { font-size: 0.75rem; color: rgba(237, 232, 223, 0.55); }
.sticky-bar .num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--on-night);
}
.page { padding-bottom: 5rem; }
@media (min-width: 1024px) {
  .sticky-bar { display: none; }
  .page { padding-bottom: 0; }
}
