
:root {
  --ink: #11130f;
  --ink-2: #191d15;
  --panel: #20251a;
  --olive: #5f6835;
  --olive-light: #7c8650;
  --corn: #d6ba5e;
  --cream: #f2ead5;
  --muted: #b8b7ab;
  --brown: #75563d;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header {
  position: fixed;
  z-index: 50;
  width: 100%;
  transition: background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(17,19,15,.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Roboto Slab", serif;
  font-weight: 800;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand span { font-size: .98rem; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  text-decoration: none;
  color: #eee8d9;
  font-weight: 600;
  font-size: .92rem;
}
.nav-links a:hover { color: var(--corn); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  width: 20px;
  margin: 4px auto;
  background: white;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/truck-loadout.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,14,10,.94) 0%, rgba(12,14,10,.78) 43%, rgba(12,14,10,.20) 78%),
    linear-gradient(0deg, rgba(17,19,15,.96) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 60px;
}
.kicker, .eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--corn);
  font-size: .78rem;
  font-weight: 800;
}
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 {
  margin-bottom: 24px;
  font-family: Oswald, sans-serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  text-transform: uppercase;
  letter-spacing: -.035em;
}
h1 span { color: var(--corn); }
.hero-text { max-width: 640px; font-size: 1.13rem; color: #dedbcf; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--corn); color: var(--ink); }
.button-primary:hover { background: #ecd37a; }
.button-secondary { border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.button-light { background: var(--cream); color: var(--ink); text-align: center; }
.social-row { display: flex; gap: 24px; margin-top: 26px; }
.social-row a { color: #d4d2c8; font-size: .9rem; font-weight: 700; text-decoration: none; }
.social-row a:hover { color: var(--corn); }

.hero-badge {
  justify-self: end;
  width: min(420px, 35vw);
  padding: 18px;
  background: rgba(242,234,213,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-badge img { border-radius: 18px; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: #d6d3c8;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
}
.scroll-cue i {
  display: block;
  width: 1px; height: 34px;
  margin: 8px auto 0;
  background: linear-gradient(var(--corn), transparent);
}

.stats-strip { background: var(--cream); color: var(--ink); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 28px 24px; border-right: 1px solid rgba(17,19,15,.15); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font: 800 2rem "Roboto Slab", serif; }
.stat span { color: #4c4d46; font-size: .85rem; }

.section { padding: 110px 0; }
.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 80px;
}
.split.reverse { grid-template-columns: 1.05fr .95fr; }
.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: inherit;
  pointer-events: none;
}
.image-frame img { width: 100%; min-height: 560px; object-fit: cover; }
.portrait-frame img { object-position: center; }
.frame-label {
  position: absolute;
  left: 20px; bottom: 20px;
  padding: 10px 14px;
  background: rgba(17,19,15,.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.section-copy h2, .section-heading h2 {
  font: 800 clamp(2.4rem, 4.5vw, 4.4rem) "Roboto Slab", serif;
  letter-spacing: -.035em;
  margin-bottom: 24px;
}
.section-copy p { color: #cfcec4; max-width: 650px; }
.feature-list { display: grid; gap: 14px; margin: 34px 0 0; }
.feature-list > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.feature-list span { color: var(--corn); font-family: Oswald, sans-serif; font-weight: 700; }
.feature-list strong, .feature-list small { display: block; }
.feature-list small { color: #a9aa9f; margin-top: 2px; }

.content-section { background: #151812; }
.section-heading {
  display: flex; justify-content: space-between; align-items: end;
  gap: 30px; margin-bottom: 44px;
}
.section-heading h2 { max-width: 770px; margin-bottom: 0; }
.section-heading.centered { display: block; text-align: center; }
.text-link { color: var(--corn); text-decoration: none; font-weight: 800; white-space: nowrap; }

.content-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, 315px);
  gap: 18px;
}
.content-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 315px;
}
.content-card.featured { grid-row: 1 / 3; }
.content-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.content-card:hover img { transform: scale(1.04); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,14,10,.88), rgba(12,14,10,.05) 66%);
}
.card-copy { position: absolute; left: 24px; right: 24px; bottom: 22px; }
.card-copy span {
  color: var(--corn);
  text-transform: uppercase;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .14em;
}
.card-copy h3 {
  margin: 7px 0 0;
  font: 700 1.35rem "Roboto Slab", serif;
  max-width: 510px;
}
.featured .card-copy h3 { font-size: clamp(1.8rem, 3vw, 3rem); }

.platforms { background: var(--cream); color: var(--ink); }
.platforms .eyebrow { color: var(--olive); }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.platform-card {
  display: block;
  min-height: 300px;
  padding: 30px;
  background: #fbf7ec;
  border: 1px solid rgba(17,19,15,.13);
  border-radius: 18px;
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.platform-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(17,19,15,.12); }
.platform-number { color: var(--olive); font: 700 .9rem Oswald, sans-serif; }
.platform-card h3 { margin: 45px 0 12px; font: 800 2rem "Roboto Slab", serif; }
.platform-card p { color: #595b52; }
.platform-card strong { display: block; margin-top: 34px; color: var(--olive); }

.partners { background: linear-gradient(120deg, #1b2016, #11130f); }
.partner-points { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.partner-points span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d2d0c6;
  font-size: .82rem;
}

.contact-section { padding: 0 0 100px; background: linear-gradient(180deg, #11130f, #171b13); }
.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 48px;
  background: var(--olive);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.contact-panel .eyebrow { color: #f6e29a; }
.contact-panel h2 { margin: 0 0 10px; font: 800 clamp(2rem, 4vw, 3.7rem) "Roboto Slab", serif; }
.contact-panel p { margin: 0; max-width: 720px; color: #eef0e4; }

footer { padding: 54px 0 28px; background: #0d0f0b; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.footer-brand { display: flex; gap: 16px; align-items: center; }
.footer-brand img { width: 74px; border-radius: 10px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { font-family: "Roboto Slab", serif; }
.footer-brand span { color: #96988d; font-size: .82rem; margin-top: 2px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { text-decoration: none; color: #cac9bf; font-weight: 700; font-size: .85rem; }
.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #85877d;
  font-size: .75rem;
}
.footer-bottom p { margin: 0; }
.disclaimer { text-align: right; }

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

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 74px; left: 20px; right: 20px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    background: #171a13;
    border: 1px solid var(--line);
    border-radius: 14px;
  }
  .nav-links.open { display: flex; }
  .hero-content { grid-template-columns: 1fr; padding-bottom: 90px; }
  .hero-badge { display: none; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12,14,10,.91), rgba(12,14,10,.55)),
      linear-gradient(0deg, rgba(17,19,15,.96), transparent 45%);
  }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(17,19,15,.15); }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 46px; }
  .section { padding: 82px 0; }
  .content-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .content-card.featured { grid-row: auto; }
  .platform-grid { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-panel .button { width: 100%; }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .brand span { display: none; }
  .hero-content { padding-top: 108px; }
  h1 { font-size: 3.4rem; }
  .hero-actions .button { width: 100%; }
  .social-row { flex-wrap: wrap; }
  .section-heading { display: block; }
  .text-link { display: inline-block; margin-top: 20px; }
  .image-frame img { min-height: 420px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 14px; }
  .stat strong { font-size: 1.55rem; }
  .contact-panel { padding: 30px 22px; }
  .footer-grid, .footer-bottom { display: block; }
  .footer-links { margin-top: 26px; flex-wrap: wrap; }
  .disclaimer { text-align: left; margin-top: 14px !important; }
}

/* Embedded content portfolio */
.watch-section { background: #0f110d; }
.video-showcase { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.video-feature { background: #1a1e16; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.video-frame { position: relative; background: #000; overflow: hidden; }
.video-frame.landscape { aspect-ratio: 16 / 9; }
.video-frame iframe, .short-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-meta { padding: 24px; }
.video-meta span { color: var(--corn); text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 800; }
.video-meta h3 { margin: 10px 0; font: 800 1.55rem "Roboto Slab", serif; }
.video-meta p { margin: 0; color: #aaa99f; }
.shorts-row { margin-top: 54px; padding: 44px; display: grid; grid-template-columns: 1fr 330px; gap: 64px; align-items: center; background: linear-gradient(135deg,#242a1b,#171a13); border: 1px solid var(--line); border-radius: 24px; }
.short-copy h3 { font: 800 clamp(2rem,4vw,3.7rem) "Roboto Slab",serif; margin-bottom: 18px; }
.short-copy > p:not(.eyebrow) { color: #c3c2b7; max-width: 620px; }
.short-player { position: relative; aspect-ratio: 9 / 16; width: 100%; border-radius: 18px; overflow: hidden; background:#000; box-shadow: var(--shadow); }
.marketing-section { background: #181c14; }
.marketing-intro { max-width: 760px; color: #c5c4b9; margin-top: -20px; margin-bottom: 38px; }
.instagram-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; align-items: start; }
.instagram-card { padding: 18px; background: #f3efe5; color: var(--ink); border-radius: 20px; min-width: 0; overflow: hidden; }
.work-label { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; padding: 4px 4px 16px; }
.work-label > span { display:grid; place-items:center; width:38px; height:38px; border-radius:50%; background:var(--olive); color:white; font:700 .8rem Oswald,sans-serif; }
.work-label strong,.work-label small { display:block; }
.work-label small { color:#66695e; }
.instagram-media { min-width: 0 !important; width: 100% !important; margin: 0 auto !important; }
.instagram-card blockquote > a { display:block; padding:30px; color:var(--olive); font-weight:800; text-align:center; }
@media(max-width:900px){.video-showcase,.instagram-grid{grid-template-columns:1fr}.shorts-row{grid-template-columns:1fr;gap:34px}.short-player{max-width:330px;margin:auto}}
@media(max-width:620px){.shorts-row{padding:24px 18px}.video-meta{padding:20px}.instagram-card{padding:10px}}


/* Partner logo portfolio */
.partners-heading-copy {
  max-width: 340px;
  margin: 0;
  color: #aaa99f;
  text-align: right;
}
.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 10px 0 90px;
}
.partner-logo-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(214,186,94,.35);
  border-radius: 18px;
  background: #11140f;
  color: var(--cream);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.partner-logo-card:hover,
.partner-logo-card:focus-visible {
  transform: translateY(-5px);
  border-color: var(--corn);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.partner-logo-box {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 28px 24px;
  background: #050605;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.partner-logo-box img {
  width: 100%;
  max-width: 220px;
  max-height: 150px;
  object-fit: contain;
}
.partner-name {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 20px;
}
.partner-name strong {
  font-family: "Roboto Slab", serif;
  font-size: 1rem;
}
.partner-name span {
  color: var(--corn);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.partner-pitch {
  padding-top: 82px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1000px) {
  .partner-logo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .partners-heading-copy { text-align: left; margin-top: 14px; }
  .partner-logo-grid { grid-template-columns: 1fr; margin-bottom: 64px; }
  .partner-logo-box { min-height: 190px; }
  .partner-pitch { padding-top: 62px; }
}


/* Streamlined hero and contact updates */
.hero-social-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  max-width: 520px;
}
.hero-social-button {
  width: 100%;
}
.contact-panel-form {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  align-items: start;
}
.contact-copy .partner-points {
  margin-bottom: 0;
}
.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: rgba(17,19,15,.22);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 18px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: #f5f0df;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 9px;
  background: rgba(10,12,9,.72);
  color: white;
  font: inherit;
  padding: 12px 13px;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--corn);
  box-shadow: 0 0 0 3px rgba(214,186,94,.15);
}
.contact-form textarea {
  resize: vertical;
  min-height: 145px;
}
.contact-form small {
  color: rgba(255,255,255,.76);
  font-size: .72rem;
}

@media (max-width: 900px) {
  .contact-panel-form { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hero-social-actions { grid-template-columns: 1fr 1fr; }
  .hero-social-actions .button { width: 100%; padding-left: 10px; padding-right: 10px; }
  .contact-form { padding: 18px; }
}


/* V5 hero headline adjustment */
.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 6.7vw, 6.3rem);
}


/* Production v1.0 polish */
.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a:first-child,
.footer-links a:nth-child(2) {
  color: var(--corn);
}
.nav-links a {
  white-space: nowrap;
}
@media (max-width: 760px) {
  .footer-links {
    justify-content: flex-start;
  }
}




/* Hero redesign v1.4 */
.hero {
  min-height: 100svh;
  padding-bottom: 86px;
}

.hero-content {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: 105px;
  padding-bottom: 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.45rem, 6.35vw, 6.15rem);
}

.hero-actions {
  align-items: center;
}

.hero-explore-link {
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
  padding: 14px 2px;
}

.hero-explore-link:hover {
  color: var(--corn);
}

/* No blur, glass, panel, or rotation behind the landing-page logo. */
.hero-badge {
  justify-self: end;
  align-self: start;
  width: min(520px, 42vw);
  padding: 0;
  margin-top: -18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  transform: translate(-2vw, -32px);
}

.hero-badge img {
  display: block;
  width: 100%;
  border-radius: 0;
  filter:
    drop-shadow(0 12px 8px rgba(0,0,0,.38))
    drop-shadow(0 28px 34px rgba(0,0,0,.42));
}

/* Full-color social bar */
.hero-social-dock {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 86px;
  display: flex;
  align-items: center;
  background: rgba(7,9,7,.94);
  border-top: 1px solid rgba(214,186,94,.48);
  backdrop-filter: blur(8px);
}

.hero-social-dock-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 22px;
}

.dock-link {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--cream);
  text-decoration: none;
}

.dock-link > span:last-child {
  display: grid;
  gap: 2px;
}

.dock-link strong {
  font-size: .95rem;
}

.dock-link small {
  color: #aaa99f;
  font-size: .7rem;
}

.social-icon {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.28);
}

.social-icon svg {
  width: 27px;
  height: 27px;
  fill: white;
}

.instagram-icon {
  background: radial-gradient(circle at 30% 105%, #ffd600 0 20%, #ff7a00 35%, #ff0169 60%, #d300c5 78%, #7638fa 100%);
}

.youtube-icon {
  width: 54px;
  background: #ff0033;
}

.rumble-icon {
  background: #85d632;
  color: #0d120b;
  font-size: 1.25rem;
  font-weight: 900;
  padding-left: 3px;
}

.dock-link:hover strong {
  color: var(--corn);
}

.dock-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--corn);
  border-radius: 8px;
  color: var(--corn);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.dock-cta:hover {
  background: var(--corn);
  color: var(--ink);
}

.scroll-cue {
  display: none;
}

@media (max-width: 1000px) {
  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 120px;
    padding-bottom: 54px;
  }

  .hero-badge {
    display: block;
    justify-self: center;
    width: min(520px, 82vw);
    margin-top: -12px;
    transform: translateY(-10px);
  }

  .hero-social-dock {
    position: relative;
  }

  .hero-social-dock-inner {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .dock-cta {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .hero-content {
    padding-top: 104px;
    gap: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .hero-badge {
    width: min(430px, 94vw);
    transform: none;
  }

  .hero-social-dock-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px 10px;
  }

  .dock-link {
    gap: 9px;
  }

  .dock-link small {
    display: none;
  }

  .social-icon {
    width: 39px;
    height: 39px;
  }

  .youtube-icon {
    width: 47px;
  }

  .dock-cta {
    grid-column: 1 / -1;
  }
}


/* v1.5 social icon colors */
.instagram-icon{
  background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5)!important;
}
.youtube-icon{
  background:#FF0000!important;
}
.youtube-icon svg,
.instagram-icon svg{
  fill:#fff!important;
}
.rumble-icon{
  background:#85C742!important;
  color:#111!important;
}


/* Footer social icon update v1.6 */
.site-footer .footer-brand img,
.footer-brand img {
  width: 118px;
  max-width: 118px;
  height: auto;
}

.footer-social-links {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr) auto auto auto;
  align-items: center;
  gap: 18px 24px;
}

.footer-meta-link {
  color: var(--corn);
  font-weight: 700;
  text-decoration: none;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
  overflow: hidden;
  flex: 0 0 auto;
}

.footer-social-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.footer-youtube-icon {
  background: #ff0000;
}

.footer-instagram-icon {
  background:
    radial-gradient(circle at 30% 105%, #ffd600 0 18%, #ff7a00 32%, #ff0169 58%, #d300c5 78%, #7638fa 100%);
}

.footer-rumble-icon {
  background: #85c742;
}

.footer-rumble-icon svg {
  fill: #111;
  width: 25px;
  height: 25px;
}

.footer-social-link:hover span:last-child,
.footer-meta-link:hover {
  color: var(--corn);
}

@media (max-width: 1100px) {
  .footer-social-links {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-meta-link {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .footer-social-links {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-meta-link {
    word-break: break-word;
  }

  .site-footer .footer-brand img,
  .footer-brand img {
    width: 132px;
    max-width: 132px;
  }
}


/* Final launch refinements v1.7 */
.content-card,
.content-tile,
.category-card,
.feature-card {
  grid-template-rows: auto 1fr;
}

.content-card img,
.content-tile img,
.category-card img,
.feature-card img {
  width: 100%;
  height: clamp(150px, 17vw, 220px);
  object-fit: cover;
}

.content-card h3,
.content-tile h3,
.category-card h3,
.feature-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.1;
}

.content-card p,
.content-tile p,
.category-card p,
.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Specifically target the Range Footage, Product Reviews, Testing, and Loadouts cards */
.content-grid article:nth-child(-n+4) img,
.category-grid article:nth-child(-n+4) img,
.feature-grid article:nth-child(-n+4) img {
  height: clamp(145px, 15vw, 205px);
}

.content-grid article:nth-child(-n+4) h3,
.category-grid article:nth-child(-n+4) h3,
.feature-grid article:nth-child(-n+4) h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

@media (max-width: 700px) {
  .content-card img,
  .content-tile img,
  .category-card img,
  .feature-card img,
  .content-grid article:nth-child(-n+4) img,
  .category-grid article:nth-child(-n+4) img,
  .feature-grid article:nth-child(-n+4) img {
    height: 180px;
  }
}


/* Final launch image sizing v1.8 */
.content-card img,
.content-tile img,
.category-card img,
.feature-card img,
.content-grid article:nth-child(-n+4) img,
.category-grid article:nth-child(-n+4) img,
.feature-grid article:nth-child(-n+4) img {
  height: clamp(210px, 23vw, 310px);
}

@media (max-width: 700px) {
  .content-card img,
  .content-tile img,
  .category-card img,
  .feature-card img,
  .content-grid article:nth-child(-n+4) img,
  .category-grid article:nth-child(-n+4) img,
  .feature-grid article:nth-child(-n+4) img {
    height: 230px;
  }
}


/* Range Footage card normalization v1.9 */
.content-grid,
.category-grid,
.feature-grid {
  align-items: stretch;
}

.content-grid > article,
.category-grid > article,
.feature-grid > article {
  grid-column: auto !important;
  grid-row: auto !important;
  min-height: 0 !important;
  height: auto !important;
}

.content-grid > article:first-child,
.category-grid > article:first-child,
.feature-grid > article:first-child {
  grid-column: auto !important;
  grid-row: auto !important;
  min-height: 0 !important;
  height: auto !important;
}

.content-grid > article img,
.category-grid > article img,
.feature-grid > article img {
  display: block;
  width: 100%;
  height: clamp(210px, 23vw, 310px) !important;
  object-fit: cover;
}

.content-grid > article:first-child img,
.category-grid > article:first-child img,
.feature-grid > article:first-child img {
  height: clamp(210px, 23vw, 310px) !important;
}

@media (min-width: 900px) {
  .content-grid,
  .category-grid,
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 899px) and (min-width: 601px) {
  .content-grid,
  .category-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px) {
  .content-grid,
  .category-grid,
  .feature-grid {
    grid-template-columns: 1fr !important;
  }

  .content-grid > article img,
  .category-grid > article img,
  .feature-grid > article img {
    height: 230px !important;
  }
}
