/* ═══════════════════════════════════════════
   Interstate Asphalt of Washington, Home Page
   Cinematic video hero, PNW shield-country aesthetic.
   Dark forest overlay over paving footage, bright content on top.
   ═══════════════════════════════════════════ */


/* ═══════════════════════════════════════════
   HOME HERO — Full-bleed paving video under a dark forest overlay.
   Kicker/headline/cta live in sharp contrast so the shield palette sings.
   ═══════════════════════════════════════════ */

.home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 1.25rem 5rem;
  isolation: isolate;
  background: var(--bg-ink);
}
@media (min-width: 768px) {
  .home-hero { padding: 9rem 2rem 6.5rem; }
}

/* Full-bleed video */
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  display: block;
  opacity: 0;
  animation: heroBgIn 1.6s var(--ease) 0.15s forwards;
}
@keyframes heroBgIn {
  to { opacity: 1; }
}
.home-hero-bg video,
.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.62) contrast(1.05) saturate(1.05);
  animation: heroZoom 22s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.10); }
}

/* Forest-black overlay with a gold vignette at top and a green vignette at bottom */
.home-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 110% 70% at 50% 18%, rgba(245, 206, 26, 0.11) 0%, transparent 62%),
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(43, 122, 60, 0.28) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10, 13, 10, 0.55) 0%, rgba(10, 13, 10, 0.72) 55%, rgba(10, 13, 10, 0.88) 100%);
  pointer-events: none;
}

/* Orange dash accent in a corner */
.home-hero-stripe {
  position: absolute;
  top: -12%;
  right: -14%;
  width: 520px;
  height: 520px;
  background-image: repeating-linear-gradient(
    45deg,
    var(--accent) 0,
    var(--accent) 2px,
    transparent 2px,
    transparent 26px
  );
  opacity: 0.14;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}
@media (max-width: 768px) {
  .home-hero-stripe { display: none; }
}

.home-hero-shell {
  position: relative;
  z-index: 3;
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.home-hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-hero-content .section-kicker {
  justify-content: center;
  color: var(--accent-2);
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}
.home-hero-content .section-kicker::before {
  display: none;
}

/* $1,000 off badge sitting above the kicker */
.home-hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 auto 1.4rem;
  padding: 0.5rem 0.9rem 0.5rem 0.5rem;
  background: rgba(10, 13, 10, 0.55);
  border: 1px solid rgba(245, 206, 26, 0.45);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
  box-shadow: 0 6px 20px -8px rgba(245, 206, 26, 0.5);
}
.home-hero-promo-badge {
  display: inline-block;
  background: var(--accent-2);
  color: #0A0D0A;
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 700;
}
.home-hero-promo-text {
  color: #FBF7EC;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.home-hero-promo-text strong {
  color: var(--accent-2-bright);
  font-weight: 800;
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  margin-right: 0.15rem;
}

.home-hero-title {
  font-family: 'Bebas Neue', 'Oswald', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.6rem, 6.6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #FBF7EC;
  margin: 0 auto 1.5rem;
  max-width: 22ch;
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}
.home-hero-title .line {
  display: block;
  overflow: hidden;
}
.home-hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) skewY(6deg);
  animation: wordIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.home-hero-title .line:nth-child(1) .word { animation-delay: 0.45s; }
.home-hero-title .line:nth-child(2) .word { animation-delay: 0.6s; }
.home-hero-title .line:nth-child(3) .word { animation-delay: 0.75s; }
@keyframes wordIn {
  to { opacity: 1; transform: translateY(0) skewY(0); }
}
.home-hero-title em {
  font-style: normal;
  color: var(--accent-2);
  display: inline-block;
  position: relative;
}
.home-hero-title em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0;
  height: 6px;
  background: var(--accent-2);
  border-radius: 2px;
  transform-origin: left center;
  transform: scaleX(0);
  animation: heroLineIn 1s var(--ease) 1.4s forwards;
  opacity: 0.78;
  box-shadow: 0 0 24px rgba(245, 206, 26, 0.45);
}
@keyframes heroLineIn {
  to { transform: scaleX(1); }
}

.home-hero-lead {
  color: rgba(251, 247, 236, 0.86);
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 400;
  line-height: 1.65;
  max-width: 58ch;
  margin: 0 auto 2rem;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0 auto 2.5rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.2s forwards;
}

/* Hero buttons sit on a dark overlay — override defaults for visibility */
.home-hero .btn-primary {
  background: var(--accent-2);
  color: #0A0D0A;
  border: 2px solid var(--accent-2);
  box-shadow: 0 10px 32px -10px rgba(245, 206, 26, 0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}
.home-hero .btn-primary:hover {
  background: var(--accent-2-bright);
  border-color: var(--accent-2-bright);
  color: #0A0D0A;
  box-shadow: 0 14px 40px -10px rgba(255, 224, 51, 0.65);
}

.home-hero .btn-ghost {
  background: rgba(251, 247, 236, 0.08);
  color: #FBF7EC;
  border: 2px solid rgba(251, 247, 236, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.home-hero .btn-ghost:hover {
  background: #FBF7EC;
  color: var(--text);
  border-color: #FBF7EC;
  transform: translateY(-2px);
}
.home-hero .btn-ghost .btn-arrow-icon {
  color: inherit;
}

/* Meta strip (badges) */
.home-hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  padding: 1.8rem 0 0;
  margin: 0 auto;
  max-width: 620px;
  border-top: 1px solid rgba(245, 206, 26, 0.22);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 1.4s forwards;
}
@media (min-width: 540px) { .home-hero-meta { grid-template-columns: repeat(3, 1fr); } }
.home-hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  text-align: center;
}
.home-hero-meta-num {
  font-family: 'Bebas Neue', 'Oswald', 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  color: var(--accent-2);
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 18px rgba(245, 206, 26, 0.25);
}
.home-hero-meta-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: rgba(251, 247, 236, 0.78);
}

/* Right-side hero form panel, white card with red top rail */
.home-hero-panel {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(10, 13, 10, 0.10);
  padding: 1rem 1.4rem 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease) 1.5s forwards;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  box-shadow: 0 20px 50px rgba(10, 13, 10, 0.10), 0 4px 12px rgba(10, 13, 10, 0.05);
}
@media (min-width: 768px) {
  .home-hero-panel { padding: 1rem 1.75rem 1.6rem; }
}
.home-hero-panel::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: var(--accent);
}
.home-hero-panel-header {
  margin-bottom: 1.1rem;
}
.home-hero-panel-kicker {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.6rem;
  background: rgba(245, 206, 26, 0.08);
  border: 1px solid rgba(245, 206, 26, 0.22);
}
.home-hero-panel h3 {
  font-family: 'Bebas Neue', 'Oswald', 'Inter', system-ui, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  line-height: 1.05;
}
.home-hero-panel p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Compact form styling inside the hero */
.home-hero-form .form-group { margin-bottom: 0.65rem; }
.home-hero-form .form-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}
.home-hero-form .form-input {
  padding: 0.75rem 0.9rem;
  background: var(--bg-page);
  border: 1px solid rgba(10, 13, 10, 0.12);
  color: var(--text);
  font-size: 16px;
}
.home-hero-form .form-input:focus {
  border-color: var(--accent);
  background: #FFFFFF;
  outline: none;
}
.home-hero-form textarea.form-input {
  min-height: 78px;
  line-height: 1.4;
}
.home-hero-form .form-row-2col { gap: 0.6rem; }
.home-hero-form .btn-primary {
  margin-top: 0.35rem;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}
.home-hero-form .cf-turnstile {
  margin: 0.25rem 0 0.5rem;
}
.home-hero-form-footnote {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.78rem;
  margin-top: 0.75rem;
}
.home-hero-form-footnote a {
  color: var(--accent);
  font-weight: 600;
}
.home-hero-form-footnote a:hover {
  color: var(--accent-bright);
}

/* Scroll indicator */
.home-hero-scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(251, 243, 228, 0.7);
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  z-index: 4;
  animation: fadeUp 0.9s var(--ease) 1.8s forwards;
}
.home-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.home-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--accent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { top: -40%; }
  100% { top: 100%; }
}


/* ═══════════════════════════════════════════
   INTRO / ABOUT, split with asymmetric image
   ═══════════════════════════════════════════ */

/* .about-grid moved to css/pages.css (shared across home + service-areas pages) */
.about-text { max-width: 56ch; }
.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-text p strong { color: var(--text); font-weight: 600; }

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(245, 206, 26, 0.4);
  transition: gap 0.3s var(--ease), border-color 0.3s ease;
}
.about-link:hover {
  gap: 0.85rem;
  border-color: var(--accent);
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
}
.about-image img,
.about-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 0.8s var(--ease), filter 0.8s ease;
  position: relative;
  z-index: 1;
  display: block;
}
.about-image:hover img,
.about-image:hover video {
  transform: scale(1.03);
  filter: grayscale(0);
}
.about-image::before {
  content: '';
  position: absolute;
  top: -22px;
  left: -22px;
  bottom: 22px;
  right: 22px;
  border: 2px solid var(--accent);
  z-index: 0;
  pointer-events: none;
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--accent) 0,
    var(--accent) 6px,
    transparent 6px,
    transparent 14px
  );
  z-index: 2;
  pointer-events: none;
}
.about-stats {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--bg-border);
  padding-top: 1.75rem;
}
.about-stat {
  padding-right: 1rem;
  border-right: 1px solid var(--bg-border);
}
.about-stat:last-child { border-right: none; }
.about-stat-num {
  font-family: 'Bebas Neue', 'Oswald', 'Inter', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about-stat-label {
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}


/* ═══════════════════════════════════════════
   CONTACT STRIP (info cards between sections)
   ═══════════════════════════════════════════ */

.contact-strip {
  background: #0D0E0D;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  padding: 1.5rem 0;
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .contact-strip-grid { grid-template-columns: repeat(3, 1fr); }
}
.contact-strip-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  position: relative;
  transition: background 0.3s ease;
  border-bottom: 1px solid rgba(251, 243, 228, 0.12);
}
.contact-strip-card:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .contact-strip-card { border-bottom: none; border-right: 1px solid rgba(251, 243, 228, 0.12); }
  .contact-strip-card:last-child { border-right: none; }
}
.contact-strip-card:hover {
  background: rgba(43, 122, 60, 0.08);
}
.contact-strip-icon {
  width: 42px;
  height: 42px;
  background: rgba(43, 122, 60, 0.14);
  border: 1px solid rgba(43, 122, 60, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-strip-label {
  color: rgba(251, 243, 228, 0.72);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.contact-strip-value {
  color: #F2ECDB;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease;
}
a.contact-strip-card:hover .contact-strip-value {
  color: var(--accent);
}


/* ═══════════════════════════════════════════
   SERVICES SECTION HEADER, large displayed
   ═══════════════════════════════════════════ */

.section-header-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  align-items: end;
}
@media (min-width: 900px) {
  .section-header-split { grid-template-columns: 1.5fr 1fr; gap: 3rem; }
}


/* ═══════════════════════════════════════════
   HOW IT WORKS, numbered timeline
   ═══════════════════════════════════════════ */

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .how-grid { grid-template-columns: 1fr 1.2fr; }
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.how-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--bg-border);
  transition: background 0.3s ease;
}
.how-step:first-child { border-top: 1px solid var(--bg-border); }
.how-step:hover .how-step-num {
  color: var(--accent);
  background: rgba(245, 206, 26, 0.08);
  border-color: rgba(245, 206, 26, 0.4);
}
.how-step-num {
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(245, 206, 26, 0.22);
  background: transparent;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', 'Oswald', 'Inter', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.how-step-title {
  font-family: 'Bebas Neue', 'Oswald', 'Inter', system-ui, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.05;
}
.how-step-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 54ch;
}


/* ═══════════════════════════════════════════
   GALLERY PREVIEW (home), asymmetric
   ═══════════════════════════════════════════ */

.gallery-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery-preview {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 1024px) {
  .gallery-preview {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
    gap: 1rem;
  }
  .gallery-preview .gallery-item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
  .gallery-preview .gallery-item:nth-child(2) { grid-column: span 3; grid-row: span 1; }
  .gallery-preview .gallery-item:nth-child(3) { grid-column: span 2; grid-row: span 1; }
  .gallery-preview .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .gallery-preview .gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 1; }
  .gallery-preview .gallery-item:nth-child(6) { grid-column: span 3; grid-row: span 1; }
}
.gallery-preview .gallery-item { aspect-ratio: auto; }


/* ═══════════════════════════════════════════
   SERVICE AREAS PREVIEW (home)
   ═══════════════════════════════════════════ */

.areas-preview-footer {
  margin-top: 2.25rem;
  display: flex;
  justify-content: flex-start;
}


/* ═══════════════════════════════════════════
   MAP / COVERAGE CARD
   ═══════════════════════════════════════════ */

/* .coverage-card moved to css/pages.css (shared with service-areas pages) */


/* ═══════════════════════════════════════════
   PROMO BANNER — scrolling marquee stripe
   Highway-yellow stripe with the $1,000 off offer running infinite loop.
   Sits just under the hero like a road sign/construction caution stripe.
   ═══════════════════════════════════════════ */

.promo-banner {
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--accent-2-dark) 100%);
  color: #0A0D0A;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  border-top: 3px solid var(--bg-ink);
  border-bottom: 3px solid var(--bg-ink);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), 0 10px 30px -12px rgba(245, 206, 26, 0.25);
}
.promo-banner::before,
.promo-banner::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 3;
  pointer-events: none;
}
.promo-banner::before {
  left: 0;
  background: linear-gradient(90deg, var(--accent-2) 0%, rgba(245, 206, 26, 0) 100%);
}
.promo-banner::after {
  right: 0;
  background: linear-gradient(-90deg, var(--accent-2) 0%, rgba(245, 206, 26, 0) 100%);
}
.promo-banner-track {
  display: flex;
  width: max-content;
  animation: promoScroll 38s linear infinite;
  will-change: transform;
}
.promo-banner-inner {
  display: flex;
  gap: 3rem;
  padding: 0.85rem 1.5rem;
  white-space: nowrap;
}
.promo-banner-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.promo-banner-star {
  color: var(--accent-forest);
  font-size: 1rem;
  line-height: 1;
}
@keyframes promoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-banner-track { animation: none; }
}
