/* ============================================
   PRONGHORN CUSTOMS — REDESIGNED STYLESHEET
   Typefaces: Bebas Neue (display) + DM Sans (body)
   Palette: Rich black, warm off-white, clay orange accent
   ============================================ */

:root {
  --black:     #0a0906;
  --near-black:#111008;
  --dark:      #1a1814;
  --white:     #fff;
  --cream:     #ffffff;
  --cream-soft:#ffffff;
  --clay:      #c41f1f;
  --clay-light:#e03030;
  --muted:     #b0a898;
  --text-dark: #1a1814;
  --line-light: rgba(255,255,255,.12);
  --line-dark:  rgba(26,24,20,.1);
  --max:       1360px;
  --gutter:    clamp(20px, 5vw, 60px);
  --radius:    6px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--black);
  color: var(--white);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .02em;
  line-height: .95;
}
h1 { font-size: clamp(4rem, 12vw, 9rem); }
h2 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h3 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .9rem;
}
.eyebrow--dark { color: rgba(26,24,20,.45); }
.eyebrow--light { color: rgba(255,255,255,.45); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--clay); color: #fff; border-color: var(--clay); }
.btn--primary:hover { background: var(--clay-light); border-color: var(--clay-light); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn--dark { background: var(--text-dark); color: #fff; border-color: var(--text-dark); }
.btn--dark:hover { background: #333; }
.btn--outline { background: transparent; color: var(--text-dark); border-color: rgba(26,24,20,.3); }
.btn--outline:hover { background: var(--text-dark); color: #fff; border-color: var(--text-dark); }
.btn--xl { padding: 1.1rem 2.2rem; font-size: .88rem; }
.btn--light-sm {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  transition: var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--light-sm:hover { background: rgba(255,255,255,.28); transform: none; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10,9,6,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: .7rem var(--gutter);
  box-shadow: 0 1px 0 var(--line-light);
}
.site-logo img {
  height: 44px;
  width: auto;
  transition: height var(--transition);
}
.site-header.scrolled .site-logo img { height: 36px; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: fixed;
  top: 0;
  right: var(--gutter);
  height: 72px;
  z-index: 100;
  /* mobile overlay props — inert on desktop */
  width: auto;
  left: auto;
  bottom: auto;
  flex-direction: row;
  background: transparent;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.site-nav a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.site-nav a:hover { color: #fff; }
.site-nav .nav-cta {
  background: var(--clay);
  color: #fff;
  padding: .55rem 1.2rem;
  border-radius: var(--radius);
  letter-spacing: .08em;
}
.site-nav .nav-cta:hover { background: var(--clay-light); color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.shopify.com/s/files/1/0695/0394/2841/files/Pronghorn-Customs.jpg?v=1757374249');
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,9,6,.15) 0%,
    rgba(10,9,6,.08) 30%,
    rgba(10,9,6,.55) 65%,
    rgba(10,9,6,.9) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3rem, 8vh, 5rem);
}
.hero__content .eyebrow { color: rgba(255,255,255,.6); margin-bottom: 1.2rem; }
.hero__content h1 {
  color: #fff;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
}
.hero__subhead {
  max-width: 560px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2.2rem;
}
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.35);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%,100% { opacity: .35; transform: scaleY(1); }
  50% { opacity: .7; transform: scaleY(.7); }
}

/* ---- BRAND STRIP ---- */
.brand-strip {
  background: var(--cream);
  padding: 2.2rem 0;
  overflow: hidden;
}
.ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 50s linear infinite;
  will-change: transform;
}
.ticker-group {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  flex-shrink: 0;
}
.ticker-group img {
  height: 26px;
  width: auto;
  opacity: .55;
  filter: grayscale(1);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- ABOUT ---- */
.about-section {
  background: var(--cream-soft);
  color: var(--text-dark);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.about-image-col {
  position: relative;
  overflow: hidden;
}
.about-image-frame {
  position: relative;
  height: 100%;
  min-height: 500px;
}
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--clay);
  color: #fff;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  text-align: center;
  line-height: 1;
}
.badge-line1 { display: block; font-size: .65rem; letter-spacing: .2em; opacity: .8; margin-bottom: .3rem; }
.badge-line2 { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; }
.about-copy-col {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-headline {
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  color: var(--text-dark);
  margin-bottom: 1.4rem;
}
.about-lede {
  font-size: 1.05rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-copy-col p {
  color: #555;
  line-height: 1.7;
  font-size: .95rem;
  margin-bottom: 1rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2rem 0 2.2rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--clay);
  letter-spacing: .02em;
}
.stat-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(26,24,20,.45);
  margin-top: .3rem;
}
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- SECTION INTRO ---- */
.section-intro { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-intro--center { text-align: center; }
.section-intro h2 { color: var(--text-dark); }
.section-intro .h2--light { color: #fff; }
.section-lede {
  max-width: 600px;
  font-size: 1.05rem;
  color: rgba(26,24,20,.55);
  margin-top: .8rem;
  line-height: 1.65;
}
.section-intro--center .section-lede { margin: .8rem auto 0; }

/* ---- BUILDS ---- */
.builds-section {
  background: var(--cream-soft);
  color: var(--text-dark);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.builds-section .container { margin-bottom: 2.5rem; }
.builds-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: .6rem;
  padding: 0 var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.build-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 480px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.build-card--large { min-height: 580px; }
.build-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,9,6,.85) 0%,
    rgba(10,9,6,.3) 50%,
    transparent 100%
  );
  transition: opacity var(--transition);
}
.build-card:hover { transform: scale(1.015); }
.build-card:hover .build-card__inner { opacity: 1; transform: translateY(0); }
.build-card__inner {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 2rem;
  transform: translateY(6px);
  transition: var(--transition);
}
.build-tag {
  display: inline-block;
  padding: .3rem .7rem;
  background: var(--clay);
  color: #fff;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: .7rem;
}
.build-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: #fff;
  margin-bottom: .35rem;
  line-height: 1;
}
.build-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 280px;
}

/* ---- PROCESS ---- */
.process-section {
  background: var(--black);
  color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 0;
}
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.step {
  display: flex;
  flex-direction: column;
  background: var(--near-black);
  padding: clamp(2rem, 4vw, 3.5rem);
  gap: 1.5rem;
  transition: background var(--transition);
}
.step:hover { background: #1c1a17; }
.step--reverse { direction: ltr; }
.step-media {
  flex: 0 0 auto;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 1.5rem 2rem;
}
.step-media img {
  max-width: 100%;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.step:hover .step-media img { transform: scale(1.06); }
.step-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: var(--clay);
  letter-spacing: .2em;
  display: block;
  margin-bottom: .6rem;
}
.step-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: #fff;
  margin-bottom: .6rem;
  line-height: .95;
}
.step-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: .8rem;
}
.step-brands {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.9;
  letter-spacing: .02em;
  margin-top: auto;
}

/* ---- RIDEWRAP ---- */
.ridewrap-section {
  background: var(--cream);
  color: var(--text-dark);
  overflow: hidden;
}
.ridewrap-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}
.ridewrap-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 5vw, 5rem);
}
.ridewrap-copy h2 {
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.ridewrap-copy p {
  font-size: .95rem;
  color: #555;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}
.ridewrap-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 480px;
  overflow: hidden;
}
.ridewrap-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.ridewrap-images img:hover { transform: scale(1.04); }

/* ---- SERVICES ---- */
.services-section {
  background: var(--black);
  padding: clamp(5rem, 8vw, 7rem) 0;
}
.services-section .section-intro h2 { color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.service-card {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,9,6,.85) 0%, rgba(10,9,6,.2) 55%, transparent 100%);
  transition: background var(--transition);
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(10,9,6,.92) 0%, rgba(10,9,6,.45) 60%, rgba(10,9,6,.1) 100%);
}
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--clay);
  margin-bottom: .5rem;
}
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: .4rem;
  line-height: 1;
}
.service-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  margin-bottom: .8rem;
  max-width: 280px;
}
.service-link {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay-light);
  transition: color var(--transition);
}
.service-link:hover { color: #fff; }

/* ---- BRAND SPOTLIGHTS ---- */
.brand-spotlights { background: var(--cream-soft); color: var(--text-dark); }
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 500px;
}
.spotlight--flip { direction: rtl; }
.spotlight--flip > * { direction: ltr; }
.spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 6vw, 5rem);
  background: var(--cream-soft);
}
.spotlight--flip .spotlight-copy {
  background: var(--cream);
}
.spotlight-logo {
  max-width: 200px;
  height: 38px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  filter: grayscale(1);
  opacity: .7;
}
.spotlight-copy p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2rem;
}
.spotlight-image {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  min-height: 360px;
  transition: transform .6s ease;
  overflow: hidden;
}
.spotlight:hover .spotlight-image { transform: scale(1.03); }


/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: #fff;
  color: var(--text-dark);
  padding: clamp(5rem, 8vw, 7rem) 0;
}
.testimonials-section .section-intro h2 { color: var(--text-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.testimonial-card {
  background: #f7f7f7;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(26,24,20,.07);
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.testimonial-card--wide {
  grid-column: 2 / 4;
}
.testimonial-stars {
  color: var(--clay);
  font-size: 1rem;
  letter-spacing: .1em;
}
.testimonial-text {
  font-size: .95rem;
  line-height: 1.7;
  color: #333;
  flex: 1;
  font-style: italic;
}
.testimonial-author {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
  transition: color var(--transition);
  margin-top: auto;
}
.testimonial-author:hover { color: var(--clay-light); }

@media (max-width: 1100px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card--wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--wide { grid-column: span 1; }
}

/* ---- CTA ---- */
.cta-section {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,6,.75);
}
.cta-content {
  position: relative;
  z-index: 2;
  padding: var(--gutter);
  max-width: 680px;
}
.cta-content .eyebrow { color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.cta-content h2 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 1.4rem;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.cta-actions { display: flex; justify-content: center; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line-light);
  padding: 3rem var(--gutter);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  text-align: center;
}
.footer-logo { height: 38px; width: auto; opacity: .6; }
.footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: .88rem;
  color: rgba(255,255,255,.4);
}
.footer-copy {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .builds-grid { grid-template-columns: 1fr 1fr; }
  .build-card--large { grid-column: span 2; min-height: 440px; }
  .ridewrap-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .site-nav {
    /* Reset ALL desktop values first */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: rgba(10,9,6,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    font-size: 1.4rem;
    letter-spacing: .1em;
    color: rgba(255,255,255,.85);
  }
  .site-nav .nav-cta {
    font-size: 1rem;
    padding: .8rem 2.5rem;
  }
  .site-header {
    z-index: 9999;
  }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 9999;
  }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-col { min-height: 400px; }
  .steps { grid-template-columns: 1fr; }
  .step-media { height: 180px; }
  .ridewrap-inner { grid-template-columns: 1fr; }
  .ridewrap-images {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 340px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 380px; }
  .spotlight, .spotlight--flip { grid-template-columns: 1fr; direction: ltr; }
  .spotlight-image { min-height: 300px; }
  .builds-grid { grid-template-columns: 1fr; }
  .build-card--large { grid-column: span 1; }
}

@media (max-width: 640px) {
  .hero__buttons, .about-actions, .cta-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { align-items: center; }
  .about-stats { gap: 1.5rem; }
  .ridewrap-images { grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px; }
  .ridewrap-images img { object-position: center center; }
  .ticker-group img { height: 20px; }
}
