/* ==========================================================================
   BANG! Advertising — Homepage 2026
   Built from BANG__HOMEPAGE_New_2026_rasterized.psd (1920 x 8685)
   Bootstrap 5.3.3 handles the grid, navbar collapse and dropdowns.
   Everything below is project styling layered on top.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------------------
   FONT SWAP
   The PSD uses Futura PT Condensed ExtraBold (display) and Century Gothic Pro
   (body). Both are Adobe Fonts and cannot be self-hosted. The defaults below
   are the closest freely licensed matches:
       Archivo @ 78% width, 800 weight, italic  ->  Futura PT Cond ExtraBold Obl.
       Jost                                     ->  Century Gothic Pro

   If BANG! licenses the originals through Adobe Fonts, add the kit <link> in
   index.html and change only these two lines:
       --font-display: "futura-pt-condensed", sans-serif;
       --font-body:    "century-gothic", sans-serif;
   ...then set --display-stretch to `normal` (Futura PT Condensed is already
   condensed, so the synthetic width axis is no longer needed).
   -------------------------------------------------------------------------- */

:root {
  /* Brand palette — sampled directly from the PSD */
  --red: #f92734;
  --red-dark: #d81420;
  --orange: #ff9001;
  --purple: #a064bc;
  --purple-dark: #75498a;
  --teal: #35b6bb;
  --black: #000000;
  --white: #ffffff;
  --grey-100: #f2f2f2;
  --grey-200: #d9d9d9;
  --grey-text: #747474;
  --grey-placeholder: #bababa;
  --grey-rule: #cfcfcf;

  /* Type */
  --font-display: "Archivo Variable", "Arial Narrow", sans-serif;
  --font-body: "Jost Variable", "Century Gothic", sans-serif;
  --display-width: 64;   /* Archivo wdth axis -> matches Futura PT Condensed */
  --display-weight: 800;

  /* Type scale — derived from rendered cap-heights in the PSD */
  --fs-hero: 150px;
  --fs-h2: 85px;
  --fs-h3: 62px;
  --fs-eyebrow: 46px;
  --fs-pillar: 35px;
  --fs-lead-bold: 36px;
  --fs-lead: 30px;
  --fs-service-title: 28px;
  --fs-body-lg: 24px;
  --fs-body: 22px;
  --fs-nav: 22px;
  --fs-sm: 18px;
  --fs-xs: 16px;

  /* Services page */
  --fs-page-hero: 112px;
  --fs-page-hero-copy: 36px;
  --fs-page-eyebrow: 38px;
  --fs-band-title: 105px;
  --fs-band-copy: 38px;
  --fs-card-title: 36px;
  --fs-card-copy: 26px;
  --fs-card-num: 41px;

  /* Layout — PSD content runs x105 -> x1815 on a 1920 canvas */
  --container: 1550px;
  --gutter: 50px;
  --header-h: 193px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.35;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.bang-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--red);
  color: #fff;
  padding: 14px 22px;
  font-weight: 700;
}
.skip-link:focus {
  left: 0;
}

/* Display type ------------------------------------------------------------ */

.display-type,
.eyebrow,
.section-title,
.pillar-title,
.hero__title,
.flow__name,
.page-hero__title,
.phase-band__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-variation-settings: "wdth" var(--display-width), "wght" var(--display-weight);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  word-spacing: 0.06em;
  line-height: 0.95;
  margin: 0;
}

/* The PSD sets eyebrows and the Framework lockup upright, and every other
   large display heading in the oblique cut. */
.section-title,
.hero__title,
.page-hero__title,
.phase-band__title {
  font-style: italic;
}
.section-title--sm {
  font-style: normal;
}

.eyebrow {
  font-size: var(--fs-eyebrow);
  color: var(--red);
  line-height: 1;
}

.section-title {
  font-size: var(--fs-h2);
}

.section-title--sm {
  font-size: var(--fs-h3);
}

.pillar-title {
  font-size: var(--fs-pillar);
  font-style: normal;
}

.tm {
  font-size: 0.34em;
  vertical-align: super;
  line-height: 1;
  font-style: normal;
}

.lead-bold {
  font-size: var(--fs-lead-bold);
  font-weight: 700;
  line-height: 1.22;
  margin: 0 0 14px;
}

.lead-text {
  font-size: var(--fs-lead);
  line-height: 1.3;
  margin: 0;
}

.body-text {
  font-size: var(--fs-body);
  line-height: 1.35;
  margin: 0;
}

/* Buttons ----------------------------------------------------------------- */

.btn-bang {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 17px 30px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-bang:hover,
.btn-bang:focus-visible {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-bang .btn-arrow {
  width: 22px;
  transition: transform 0.2s var(--ease);
}
.btn-bang:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-bang--lg {
  font-size: 26px;
  padding: 24px 34px;
  gap: 22px;
}
.btn-bang--lg .btn-arrow {
  width: 46px;
}

/* Inline red text link with arrow ---------------------------------------- */

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--red);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.text-link img {
  width: 30px;
  transition: transform 0.2s var(--ease);
}
.text-link:hover img,
.text-link:focus-visible img {
  transform: translateX(6px);
}
.text-link:hover {
  color: var(--black);
}

/* --------------------------------------------------------------------------
   3. HEADER / NAV
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-stuck {
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.11);
}

.site-header .navbar {
  padding: 0;
  min-height: var(--header-h);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 24px 0;
}
.brand-lockup img {
  width: 253px;
  min-width: 150px;
}
.brand-tagline {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
  white-space: nowrap;
}

.navbar-toggler {
  border: 2px solid var(--black);
  border-radius: 0;
  padding: 10px 13px;
}
.navbar-toggler:focus {
  box-shadow: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav .nav-item {
  position: relative;
}

.main-nav .nav-link,
.main-nav .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-nav);
  font-weight: 400;
  color: var(--black);
  background: none;
  border: 0;
  padding: 10px 0;
  position: relative;
  transition: color 0.18s var(--ease);
}

.main-nav .nav-link::after,
.main-nav .dropdown-toggle::after {
  content: none;
}

.main-nav .nav-link .underline,
.main-nav .dropdown-toggle .underline {
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 3px;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s var(--ease);
}

.main-nav .nav-item:hover .underline,
.main-nav .nav-item.show .underline,
.main-nav .nav-link:focus-visible .underline,
.main-nav .dropdown-toggle:focus-visible .underline {
  transform: scaleX(1);
}

.main-nav .nav-item:hover > .nav-link,
.main-nav .nav-item:hover > .dropdown-toggle,
.main-nav .nav-item.show > .dropdown-toggle {
  color: var(--red);
}

/* Current page: keep the red rule pinned open under the active nav item. */
.main-nav .nav-link.is-active .underline,
.main-nav .dropdown-toggle.is-active .underline {
  transform: scaleX(1);
}

.caret {
  width: 16px;
  height: 10px;
  flex: none;
  transition: transform 0.24s var(--ease);
}
.nav-item.show .caret {
  transform: rotate(180deg);
}

/* Nav dividers, matching the thin rules in the PSD */
.nav-divider {
  width: 2px;
  height: 32px;
  background: var(--black);
  flex: none;
}

/* Dropdown panels */
.main-nav .dropdown-menu {
  border: 0;
  border-radius: 0;
  padding: 22px 26px;
  margin-top: 12px;
  min-width: 410px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}
.main-nav .dropdown-menu li + li {
  margin-top: 10px;
}
.main-nav .dropdown-item {
  font-size: var(--fs-body);
  padding: 4px 0;
  color: var(--black);
  background: none;
  white-space: normal;
  transition: color 0.16s var(--ease), padding-left 0.16s var(--ease);
}
.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus-visible {
  color: var(--red);
  padding-left: 8px;
}

/* Menus that sit close to the right edge hang leftward from their toggle so
   the 410px panel cannot run past the gutter. Bootstrap's own
   .dropdown-menu-end is no help here: its right/left rule is gated behind
   [data-bs-popper], and Bootstrap skips Popper for dropdowns inside .navbar,
   so that attribute is never written. Scoped to the desktop nav — below 992px
   Bootstrap switches these menus to position: static and they stack inline. */
@media (min-width: 992px) {
  .main-nav .dropdown-menu--end {
    right: 0;
    left: auto;
  }
}


/* Form spam trap ---------------------------------------------------------- */
.form-hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* --------------------------------------------------------------------------
   4. HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 887px;
  display: flex;
  align-items: center;
  background-color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity .58s ease-in-out;
  will-change: opacity;
}

.hero__slide.is-active {
  opacity: 1;
}

/* White scrim so the headline stays legible over every rotating photo. */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    #fff 0%,
    #fff 24%,
    rgba(255, 255, 255, 0.86) 36%,
    rgba(255, 255, 255, 0) 56%
  );
}

.hero .bang-container {
  position: relative;
  z-index: 1;
}

.hero__inner {
  max-width: 860px;
  padding: 60px 0;
}

.hero__title {
  font-size: var(--fs-hero);
  line-height: 0.88;
  white-space: nowrap;
}
.hero__title .accent {
  color: var(--red);
}

.hero__rule {
  width: 243px;
  height: 8px;
  background: var(--red);
  margin: 42px 0 36px;
  border: 0;
  opacity: 1;
}

.hero__kicker {
  font-size: 41px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero__copy {
  font-size: 38px;
  line-height: 1.28;
  margin: 0 0 44px;
  max-width: 490px;
}

/* --------------------------------------------------------------------------
   5. CLIENT LOGO STRIP
   -------------------------------------------------------------------------- */

.clients {
  background: var(--grey-200);
  height: 210px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.clients__viewport {
  width: 100%;
  overflow: hidden;
}

.clients__marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: clients-marquee 30s linear infinite;
  will-change: transform;
}

.clients__row {
  display: flex;
  align-items: center;
  flex: none;
  gap: 72px;
  padding-right: 72px;
}

.clients__row li {
  width: 205px;
  flex: 0 0 205px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients__row img {
  max-height: 118px;
  max-width: 190px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes clients-marquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

@media (max-width: 767px) {
  .clients { height: 170px; }
  .clients__marquee { animation-duration: 24s; }
  .clients__row { gap: 48px; padding-right: 48px; }
  .clients__row li { width: 155px; flex-basis: 155px; }
  .clients__row img { max-height: 90px; max-width: 145px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition: none; }
  .clients__marquee { animation: none; }
}

/* --------------------------------------------------------------------------
   6. WHAT WE DO
   -------------------------------------------------------------------------- */

.what-we-do {
  background: var(--white);
  padding: 110px 0 128px;
  text-align: center;
}
.what-we-do .eyebrow {
  margin-bottom: 62px;
}
.what-we-do .lead-bold {
  max-width: 40ch;
  margin-inline: auto;
  margin-bottom: 24px;
}
.what-we-do .lead-text {
  max-width: 72ch;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   7. HOW WE DO IT / FRAMEWORK
   -------------------------------------------------------------------------- */

.framework {
  background: var(--grey-100);
  padding: 146px 0 135px;
}

.framework__head {
  text-align: center;
  max-width: 1510px;
  margin: 0 auto 94px;
}
.framework__head .eyebrow {
  margin-bottom: 28px;
}
.framework__head .section-title--sm {
  margin-bottom: 26px;
}
.framework__head .lead-text {
  margin-top: 18px;
}

/* Phase flow ------------------------------------------------------------- */

.flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 105px;
}

.flow__step {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
}
.flow__step img {
  width: 164px;
  height: 164px;
}
.flow__name {
  font-size: 42px;
  line-height: 1;
  margin: 26px 0 16px;
}
.flow__desc {
  font-size: var(--fs-body);
  line-height: 1.3;
  margin: 0;
}

/* Dotted connector between steps */
.flow__link {
  flex: 1 1 auto;
  max-width: 190px;
  min-width: 40px;
  height: 164px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.flow__link .dots {
  flex: 1 1 auto;
  height: 9px;
  background-image: radial-gradient(circle, var(--black) 4.5px, transparent 5px);
  background-size: 22px 9px;
  background-repeat: repeat-x;
  background-position: left center;
}
.flow__link .head {
  flex: none;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--black);
}

.flow__step--ignite .flow__name {
  color: var(--red);
}
.flow__step--prepare .flow__name {
  color: var(--orange);
}
.flow__step--launch .flow__name {
  color: var(--purple);
}
.flow__step--support .flow__name {
  color: var(--teal);
}

/* Phase cards ------------------------------------------------------------ */

.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  max-width: 1400px;
  margin-inline: auto;
}

.phase-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.phase-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  border-radius: 10px;
  overflow: hidden;
  background: var(--black);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.phase-card:hover .phase-card__body {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.phase-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 340 / 414;
  object-fit: cover;
}

.phase-card__text {
  background: var(--black);
  color: var(--white);
  padding: 6px 30px 32px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.phase-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.phase-card__title img {
  width: 38px;
  flex: none;
}

.phase-card__desc {
  font-size: var(--fs-body);
  line-height: 1.28;
  margin: 0 0 auto;
  padding-bottom: 26px;
}

.phase-card__link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.phase-card__link .arrow {
  width: 20px;
  transition: transform 0.2s var(--ease);
}
.phase-card__link:hover .arrow,
.phase-card__link:focus-visible .arrow {
  transform: translateX(6px);
}

.phase-card__bar {
  height: 35px;
  border-radius: 18px;
  margin-top: 16px;
}

.phase-card--ignite .phase-card__title,
.phase-card--ignite .phase-card__link {
  color: var(--red);
}
.phase-card--ignite .phase-card__bar {
  background: var(--red);
}
.phase-card--prepare .phase-card__title,
.phase-card--prepare .phase-card__link {
  color: var(--orange);
}
.phase-card--prepare .phase-card__bar {
  background: var(--orange);
}
.phase-card--launch .phase-card__title,
.phase-card--launch .phase-card__link {
  color: var(--purple);
}
.phase-card--launch .phase-card__bar {
  background: var(--purple);
}
.phase-card--support .phase-card__title,
.phase-card--support .phase-card__link {
  color: var(--teal);
}
.phase-card--support .phase-card__bar {
  background: var(--teal);
}

/* --------------------------------------------------------------------------
   8. NATIONWIDE EXECUTION
   -------------------------------------------------------------------------- */

.nationwide {
  position: relative;
  min-height: 576px;
  display: flex;
  align-items: center;
  background: var(--white);
  overflow: hidden;
}

.nationwide__media {
  position: absolute;
  inset: 0;
  background-image: url("../img/nationwide.jpg");
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.nationwide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    #fff 0%,
    #fff 30%,
    rgba(255, 255, 255, 0.94) 40%,
    rgba(255, 255, 255, 0) 60%
  );
}

.nationwide .bang-container {
  position: relative;
  z-index: 1;
}

.nationwide__inner {
  max-width: 640px;
  padding: 74px 0;
}
.nationwide .eyebrow {
  margin-bottom: 24px;
}
.nationwide .section-title {
  margin-bottom: 34px;
}
.nationwide__kicker {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  margin: 0 0 10px;
}
.nationwide__copy {
  font-size: var(--fs-body);
  line-height: 1.32;
  margin: 0 0 38px;
}

/* --------------------------------------------------------------------------
   9. SERVICES STRIP
   -------------------------------------------------------------------------- */

.services {
  background: var(--white);
  padding: 45px 0;
}

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

.services__item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 26px;
  border-right: 4px solid var(--black);
}
.services__item:last-child {
  border-right: 0;
}
.services__item:first-child {
  padding-left: 0;
}

.services__icon {
  flex: none;
  width: 104px;
  display: flex;
  justify-content: center;
}
.services__icon img {
  max-height: 129px;
  width: auto;
}

.services__title {
  font-size: var(--fs-service-title);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.services__desc {
  font-size: var(--fs-body);
  line-height: 1.22;
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. CASE STUDIES
   -------------------------------------------------------------------------- */

.results {
  background: var(--grey-100);
  padding: 74px 0 92px;
}
.results .eyebrow {
  margin-bottom: 22px;
}
.results .section-title {
  margin-bottom: 34px;
}
.results__kicker {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 14px;
}
.results__copy {
  font-size: var(--fs-body);
  line-height: 1.32;
  margin: 0 0 46px;
  max-width: 78ch;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 44px 44px;
}

.case-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 248 / 194;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.case-card:hover .case-card__thumb {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.case-card__title {
  font-size: var(--fs-xs);
  font-weight: 700;
  line-height: 1.25;
  margin: 18px 0 2px;
}
.case-card__meta {
  font-size: var(--fs-xs);
  line-height: 1.25;
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. PEACE OF MIND
   -------------------------------------------------------------------------- */

.peace {
  background: var(--white);
  padding: 74px 0 100px;
}

.peace__layout {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.peace .eyebrow {
  margin-bottom: 22px;
}
.peace .section-title {
  margin-bottom: 34px;
}
.peace__copy {
  font-size: var(--fs-body);
  line-height: 1.32;
  margin: 0;
}

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

.peace__point {
  text-align: center;
  padding: 0 22px;
  border-right: 4px solid var(--grey-rule);
}
.peace__point:last-child {
  border-right: 0;
}

.peace__point-icon {
  height: 92px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 30px;
}
.peace__point-icon img {
  max-height: 92px;
  width: auto;
}

.peace__point-label {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

/* --------------------------------------------------------------------------
   12. BEHIND EVERY SUCCESSFUL OPENING
   -------------------------------------------------------------------------- */

.behind {
  position: relative;
  min-height: 766px;
  display: flex;
  align-items: flex-end;
  background-image: url("../img/behind-plan.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}
.behind::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.35) 75%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.behind .bang-container {
  position: relative;
  z-index: 1;
}

.behind__inner {
  max-width: 900px;
  margin-left: auto;
  padding: 0 0 70px;
}
.behind .section-title {
  margin-bottom: 46px;
}
.behind__copy {
  font-size: var(--fs-body);
  line-height: 1.35;
  margin: 0;
}

/* --------------------------------------------------------------------------
   13. WHY RETAILERS TRUST BANG!
   -------------------------------------------------------------------------- */

.trust {
  background: var(--grey-100);
  padding: 55px 0 75px;
}

.trust__head {
  text-align: center;
  margin-bottom: 106px;
}
.trust__head .section-title {
  margin-bottom: 26px;
}
.trust__head .section-title .accent {
  color: var(--red);
}
.trust__head p {
  font-size: var(--fs-body);
  line-height: 1.35;
  max-width: 76ch;
  margin: 0 auto;
}

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

.trust__col {
  padding: 0 40px;
  border-right: 3px solid var(--grey-rule);
  text-align: center;
}
.trust__col:last-child {
  border-right: 0;
}
.trust__col:first-child {
  padding-left: 0;
}

.trust__icon {
  height: 74px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 16px;
}
.trust__icon img {
  max-height: 74px;
  width: auto;
}

.trust__col .pillar-title {
  margin-bottom: 20px;
}

.trust__col > p {
  font-size: var(--fs-sm);
  line-height: 1.35;
  margin: 0 0 34px;
}

/* Certification + membership logo clusters */
.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 26px;
}
.badge-cloud img {
  max-height: 82px;
  width: auto;
}
.badge-cloud--members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 20px;
  place-items: center;
}
.badge-cloud--members img {
  max-height: 62px;
}

/* Stat rows with red circle icons */
.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 36px;
}
.stat-list li {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-list img {
  width: 52px;
  flex: none;
}
.stat-list b {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.2;
}
.stat-list span {
  font-size: var(--fs-xs);
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   14. CONTACT / FORM
   -------------------------------------------------------------------------- */

.contact {
  background: var(--white);
  padding: 83px 0 98px;
}
.contact .section-title {
  margin-bottom: 70px;
}

.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  max-width: 1170px;
  margin-bottom: 50px;
}

.topic-pill {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: 3px solid var(--black);
  padding: 24px 44px;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease),
    background 0.2s var(--ease);
}
.topic-pill:hover {
  border-color: var(--red);
  color: var(--red);
}
.topic-pill[aria-pressed="true"] {
  border-color: var(--red);
  color: var(--red);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 649px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.field {
  position: relative;
  margin-bottom: 28px;
}
.field:last-child {
  margin-bottom: 0;
}

.field__icon {
  position: absolute;
  left: 22px;
  top: 28px;
  width: 34px;
  pointer-events: none;
}
.field__icon--email {
  width: 41px;
  top: 32px;
}

.field input,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  background: var(--white);
  border: 3px solid var(--grey-rule);
  padding: 26px 26px 26px 82px;
  transition: border-color 0.2s var(--ease);
}
.field textarea {
  min-height: 250px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--grey-placeholder);
  font-weight: 700;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.field.has-error input,
.field.has-error textarea {
  border-color: var(--red);
}

.field__error {
  display: none;
  color: var(--red);
  font-size: var(--fs-xs);
  font-weight: 700;
  margin-top: 8px;
}
.field.has-error .field__error {
  display: block;
}

.form-status {
  margin-top: 26px;
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--red);
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 41px 0 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.95fr 1.2fr 1.15fr;
  gap: 38px;
}

.footer__col {
  padding-left: 28px;
  border-left: 3px solid rgba(255, 255, 255, 0.85);
}
.footer__col--brand {
  padding-left: 0;
  border-left: 0;
}

.footer__logo {
  width: 179px;
  margin-bottom: 34px;
}

.footer__heading {
  font-size: var(--fs-body-lg);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 22px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.4;
}
.footer__list li {
  margin-bottom: 8px;
}

.footer__list--links a {
  transition: color 0.18s var(--ease);
}
.footer__list--links a:hover,
.footer__list--links a:focus-visible {
  color: var(--red);
}

.footer__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
  font-size: var(--fs-body);
  line-height: 1.35;
}
.footer__row img {
  width: 23px;
  flex: none;
  margin-top: 6px;
}
.footer__row a:hover {
  color: var(--red);
}

.footer__note {
  font-size: var(--fs-body);
  line-height: 1.4;
  margin: 0 0 22px;
}

.footer-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 24px 0;
  font-size: var(--fs-body);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   16. SCROLL REVEAL
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 1600px) {
  :root {
    --fs-hero: 122px;
    --fs-h2: 70px;
    --fs-h3: 54px;
    --fs-eyebrow: 40px;
    --fs-lead-bold: 32px;
    --fs-lead: 27px;
    --fs-service-title: 26px;
    --fs-body-lg: 22px;
    --fs-body: 20px;
    --fs-nav: 19px;
    --header-h: 150px;
    --fs-page-hero: 92px;
    --fs-page-hero-copy: 30px;
    --fs-page-eyebrow: 32px;
    --fs-band-title: 84px;
    --fs-band-copy: 31px;
    --fs-card-title: 30px;
    --fs-card-copy: 22px;
    --fs-card-num: 34px;
  }
  .brand-tagline {
    font-size: 26px;
  }
  .brand-lockup img {
    width: 200px;
  }
  .brand-lockup {
    gap: 24px;
  }
  .main-nav {
    gap: 20px;
  }
  .hero__kicker {
    font-size: 32px;
  }
  .hero__copy {
    font-size: 29px;
  }
  .hero {
    min-height: 720px;
  }
  .flow__step {
    width: 200px;
  }
  .flow__name {
    font-size: 34px;
  }
  .services__icon {
    width: 90px;
  }
  .services__icon img {
    max-height: 96px;
  }
  .field input,
  .field textarea {
    font-size: 24px;
  }
}

@media (max-width: 1299px) {
  :root {
    --fs-hero: 96px;
    --fs-h2: 56px;
    --fs-h3: 44px;
    --fs-eyebrow: 34px;
    --fs-pillar: 30px;
    --fs-lead-bold: 28px;
    --fs-lead: 23px;
    --gutter: 26px;
    --fs-page-hero: 70px;
    --fs-page-hero-copy: 25px;
    --fs-page-eyebrow: 26px;
    --fs-band-title: 64px;
    --fs-band-copy: 25px;
    --fs-card-title: 26px;
    --fs-card-copy: 19px;
    --fs-card-num: 28px;
  }
  .brand-tagline {
    display: none;
  }
  .hero__inner {
    max-width: 560px;
  }
  .hero__kicker {
    font-size: 26px;
  }
  .hero__copy {
    font-size: 24px;
    max-width: 22ch;
  }
  .case-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
  }
  .peace__layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .trust__col {
    padding: 0 22px;
  }
  .services__item {
    padding: 0 18px;
    gap: 16px;
  }
  .behind__inner {
    max-width: 100%;
    padding-bottom: 90px;
  }
}

/* Tablet and below — nav collapses (Bootstrap lg breakpoint = 992px) */
@media (max-width: 991.98px) {
  :root {
    --header-h: 110px;
  }

  .site-header .navbar {
    min-height: 110px;
    padding: 14px 0;
  }
  .brand-lockup {
    padding: 0;
  }
  .brand-lockup img {
    width: 165px;
  }

  .navbar-collapse {
    padding: 18px 0 26px;
  }
  .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .main-nav .nav-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .main-nav .nav-link,
  .main-nav .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 18px 4px;
    font-size: 20px;
  }
  .main-nav .nav-link .underline,
  .main-nav .dropdown-toggle .underline {
    display: none;
  }
  .nav-divider {
    display: none;
  }
  .main-nav .dropdown-menu {
    box-shadow: none;
    padding: 4px 4px 20px 20px;
    margin: 0;
    min-width: 0;
    background: transparent;
  }

  .hero {
    min-height: 0;
  }
  .hero__title {
    white-space: normal;
  }
  .hero__slide {
    background-position: 72% center;
  }
  .hero__media::after {
    background: linear-gradient(
      165deg,
      #fff 0%,
      #fff 30%,
      rgba(255, 255, 255, 0.9) 46%,
      rgba(255, 255, 255, 0.55) 100%
    );
  }
  .hero__inner {
    max-width: 100%;
    padding: 70px 0 260px;
  }

  .clients {
    height: auto;
    padding: 30px 0;
  }
  .clients__track {
    min-height: 78px;
  }
  .clients__set {
    gap: 22px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .clients__set img {
    max-height: 78px;
    min-width: 0;
  }

  .what-we-do {
    padding: 66px 0 72px;
  }
  .framework {
    padding: 76px 0 84px;
  }
  .framework__head {
    margin-bottom: 60px;
  }

  .flow {
    flex-wrap: wrap;
    gap: 44px 0;
    margin-bottom: 64px;
  }
  .flow__step {
    width: 50%;
  }
  .flow__step img {
    width: 120px;
    height: 120px;
  }
  .flow__link {
    display: none;
  }

  .phases {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .nationwide {
    min-height: 0;
    display: block;
  }
  .nationwide__media {
    position: relative;
    height: 300px;
    background-image: url("../img/nationwide-mobile.jpg");
    background-position: center;
  }
  .nationwide__media::after {
    display: none;
  }
  .nationwide__inner {
    max-width: 100%;
    padding: 54px 0 60px;
  }

  .services {
    padding: 50px 0;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
  .services__item {
    border-right: 0;
    padding: 0 16px;
  }
  .services__item:first-child,
  .services__item:nth-child(3) {
    padding-left: 0;
  }
  .services__item:nth-child(odd) {
    border-right: 4px solid var(--black);
  }

  .results {
    padding: 60px 0 70px;
  }
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .peace {
    padding: 60px 0 70px;
  }
  .peace__points {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 0;
  }
  .peace__point {
    border-right: 0;
  }
  .peace__point:nth-child(odd) {
    border-right: 4px solid var(--grey-rule);
  }

  .behind {
    min-height: 520px;
  }
  .behind__inner {
    padding-bottom: 60px;
  }

  .trust {
    padding: 60px 0 70px;
  }
  .trust__head {
    margin-bottom: 60px;
  }
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 0;
  }
  .trust__col {
    border-right: 0;
    padding: 0 24px;
  }
  .trust__col:nth-child(odd) {
    border-right: 3px solid var(--grey-rule);
    padding-left: 0;
  }

  .contact {
    padding: 60px 0 70px;
  }
  .contact .section-title {
    margin-bottom: 44px;
  }
  .topic-pills {
    gap: 16px;
  }
  .topic-pill {
    padding: 16px 24px;
    font-size: 16px;
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  .footer__col {
    padding-left: 24px;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  :root {
    --fs-hero: 62px;
    --fs-h2: 40px;
    --fs-h3: 32px;
    --fs-eyebrow: 26px;
    --fs-pillar: 26px;
    --fs-lead-bold: 22px;
    --fs-lead: 18px;
    --fs-service-title: 22px;
    --fs-body-lg: 19px;
    --fs-body: 17px;
    --fs-sm: 16px;
    --gutter: 20px;
    --fs-page-hero: 46px;
    --fs-page-hero-copy: 20px;
    --fs-page-eyebrow: 21px;
    --fs-band-title: 46px;
    --fs-band-copy: 20px;
    --fs-card-title: 23px;
    --fs-card-copy: 18px;
    --fs-card-num: 26px;
  }

  .hero__inner {
    padding: 44px 0 200px;
  }
  .hero__kicker {
    font-size: 21px;
  }
  .hero__copy {
    font-size: 19px;
    margin-bottom: 32px;
  }
  .hero__rule {
    width: 160px;
    height: 6px;
    margin: 26px 0 24px;
  }

  .clients {
    padding: 22px 0;
  }
  .clients__track {
    min-height: 44px;
  }
  .clients__set {
    gap: 10px;
  }
  .clients__set img {
    max-height: 44px;
  }

  .flow__step {
    width: 100%;
  }

  .phases {
    grid-template-columns: 1fr;
  }
  .phase-card__text {
    padding: 6px 22px 26px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .services__item,
  .services__item:nth-child(odd) {
    border-right: 0;
    padding: 0;
  }

  .case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 20px;
  }

  .peace__points {
    grid-template-columns: 1fr;
  }
  .peace__point,
  .peace__point:nth-child(odd) {
    border-right: 0;
    padding: 0;
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }
  .trust__col,
  .trust__col:nth-child(odd) {
    border-right: 0;
    padding: 0;
  }

  .topic-pill {
    width: 100%;
    padding: 15px 18px;
  }
  .field input,
  .field textarea {
    font-size: 19px;
    padding: 20px 18px 20px 62px;
  }
  .field__icon {
    left: 16px;
    top: 22px;
    width: 26px;
  }
  .field__icon--email {
    width: 30px;
    top: 26px;
  }
  .btn-bang--lg {
    font-size: 20px;
    padding: 18px 24px;
  }
  .btn-bang--lg .btn-arrow {
    width: 34px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__col {
    padding-left: 20px;
  }
  .footer-bar {
    font-size: 14px;
  }
}

/* --------------------------------------------------------------------------
   18. MOTION + PRINT
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .clients__set {
    transition: none;
  }
  /* The rotator does not run under reduced motion, so without this the
     second set of clients would stay permanently invisible. Stack the sets
     into static rows instead and show every logo at once. */
  .clients {
    height: auto;
    padding: 30px 0;
  }
  .clients__track {
    position: static;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .clients__set {
    position: static;
    inset: auto;
    opacity: 1;
    visibility: visible;
  }
}

@media print {
  .site-header,
  .topic-pills,
  .contact-form__grid {
    display: none;
  }
  .hero,
  .nationwide,
  .behind {
    min-height: 0;
  }
}

/* Client-requested mobile refinements — scoped to mobile only. */
@media (max-width: 575.98px) {
  /* Homepage hero: show the rotating photography clearly above the copy. */
  .hero { display: block; }
  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(260px, 72vw, 360px);
  }
  .hero__slide { background-position: 72% center; }
  .hero__media::after { background: rgba(255, 255, 255, 0.12); }
  .hero__inner { padding: 44px 0 60px; }

  /* BANG! Framework: restore the dotted directional connectors vertically. */
  .flow {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
  }
  .flow__link {
    display: block;
    flex: none;
    width: 56px;
    height: 92px;
    min-width: 0;
    max-width: none;
    margin: 10px auto 14px;
    background: url('../img/framework-mobile-arrow.png') center / contain no-repeat;
  }
  .flow__link .dots,
  .flow__link .head { display: none; }

  /* Trust columns: mobile divider lines between each section. */
  .trust__col,
  .trust__col:nth-child(odd) {
    border-bottom: 2px solid var(--grey-rule);
    padding: 0 0 52px;
    margin-bottom: 52px;
  }
  .trust__col:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
