.banner-main {
  background: linear-gradient(180deg, var(--silver-soft) 0, var(--soft-paper) 260px, var(--paper) 260px);
}

/* Hero — large-format intro band, dark with a diagonal stripe motif matching the banner placeholders */
.banner-hero {
  display: grid;
  min-height: min(620px, 100svh);
  background: var(--brand-charcoal);
  color: var(--paper);
  grid-template-columns: minmax(460px, 0.92fr) minmax(0, 1.08fr);
}

.banner-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  padding: calc(var(--header-height) + clamp(40px, 4.6vw, 64px)) clamp(32px, 5.5vw, 96px) clamp(40px, 4.6vw, 64px);
  justify-content: center;
  flex-direction: column;
  background: repeating-linear-gradient(135deg, rgb(206 15 61 / 4%) 0 2px, transparent 2px 34px);
}

.banner-hero-eyebrow {
  margin: 0 0 18px;
  color: var(--brand-red);
  font-family: var(--headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.banner-hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(50px, 5.4vw, 92px);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.banner-hero h1 > span {
  display: block;
}

.banner-hero h1 em {
  color: var(--brand-red);
  font-style: normal;
}

.banner-hero-lead {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgb(255 255 255 / 66%);
  font-size: 15px;
  line-height: 1.65;
}

.banner-hero-actions {
  margin-top: 38px;
}

.banner-hero-cta {
  display: inline-flex;
  min-height: 54px;
  padding: 0 34px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 14px;
  background: var(--brand-red);
  color: var(--paper);
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.banner-hero-cta:hover {
  background: var(--paper);
  color: var(--brand-charcoal);
  transform: translateY(-2px);
}

.banner-hero-cta svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.banner-hero-facts {
  display: grid;
  max-width: 560px;
  margin: 24px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.banner-hero-facts li {
  display: grid;
  padding: 0 16px;
  border-left: 1px solid rgb(255 255 255 / 14%);
  gap: 0;
}

.banner-hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.banner-hero-facts strong {
  font-family: var(--headline);
  font-size: 15px;
  line-height: 1.15;
}

.banner-hero-facts span {
  color: rgb(255 255 255 / 48%);
  font-size: 13px;
  line-height: 1.3;
}

.banner-hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #050505;
}

.banner-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(20 18 19 / 50%), transparent 31%),
    linear-gradient(0deg, rgb(0 0 0 / 35%), transparent 38%);
  content: "";
  pointer-events: none;
}

.banner-hero-media::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: -20%;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 12%) 45%, rgb(255 255 255 / 22%) 50%, rgb(255 255 255 / 12%) 55%, transparent);
  content: "";
  animation: banner-hero-sweep 5s ease-in-out infinite;
}

@keyframes banner-hero-sweep {
  0% { transform: translateX(0); }
  100% { transform: translateX(260%); }
}

.banner-hero-media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.banner-hero-index {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(28px, 4vw, 58px);
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgb(255 255 255 / 70%);
  font-family: var(--headline);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.banner-hero-index i {
  width: 44px;
  height: 1px;
  background: var(--brand-red);
}

@media (min-width: 821px) {
  .banner-hero-copy > * {
    position: relative;
    top: -20px;
  }
}

@media (max-width: 960px) {
  .banner-hero {
    grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.08fr);
  }

  .banner-hero-copy {
    padding-inline: 44px;
  }
}

@media (max-width: 820px) {
  .banner-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .banner-hero-copy {
    min-height: 0;
    padding: calc(var(--header-height) + 24px) var(--page-gutter) 56px;
  }

  .banner-hero-media {
    min-height: 420px;
  }
}

@media (max-width: 480px) {
  .banner-hero-copy {
    padding: calc(var(--header-height) + 64px) 22px 44px;
  }

  .banner-hero h1 {
    font-size: clamp(38px, 11.6vw, 54px);
    line-height: 1.05;
  }

  .banner-hero-lead {
    margin-top: 20px;
    font-size: 13px;
  }

  .banner-hero-facts {
    margin-top: 34px;
  }

  .banner-hero-facts li {
    padding: 0 10px;
    gap: 2px;
  }

  .banner-hero-facts strong {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-hero-media::after {
    animation: none;
    opacity: 0;
  }
}

/* Gallery — matches the acrylic/DTF product gallery: rounded square main image, bottom-left pill label */
.banner-gallery-main {
  background: var(--brand-charcoal);
}

.banner-gallery-main > img {
  object-position: center;
}

.banner-process-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(35 31 32 / 78%);
  color: var(--paper);
  font-family: var(--headline);
  font-size: 11px;
  letter-spacing: 0.08em;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.banner-thumbnails {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.banner-thumbnails img {
  object-position: center;
}

.banner-spec-card {
  margin-top: 22px;
  padding: 25px 26px 27px;
  border-left: 3px solid var(--brand-red);
  background: var(--brand-charcoal);
  color: var(--paper);
}

.banner-spec-card span {
  display: block;
  color: var(--brand-silver);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.banner-spec-card strong {
  display: block;
  margin-top: 14px;
  font-family: var(--headline);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 600;
  line-height: 1.45;
}

.banner-spec-card p {
  max-width: 500px;
  margin: 12px 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  line-height: 1.6;
}

/* Configurator copy — sharp-cornered eyebrow badge instead of the acrylic dark hero treatment */
.banner-eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 6px 12px;
  align-items: center;
  border: 1px solid var(--brand-red);
  border-radius: 3px;
  color: var(--brand-red);
  font-family: var(--headline);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.banner-configurator h1 {
  letter-spacing: -0.03em;
  line-height: 1.02;
}

/* Quote form — angular pills with a red accent bar, distinct from acrylic's fully rounded / filled pills */
.banner-quote-form {
  display: grid;
  margin-top: 34px;
  gap: 28px;
}

.banner-quote-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.banner-quote-form legend,
.banner-quote-field > span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-charcoal);
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 600;
}

.banner-quote-options {
  display: grid;
  gap: 10px;
}

.banner-quote-options-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.banner-quote-options label {
  position: relative;
  cursor: pointer;
}

.banner-quote-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.banner-quote-options label > span {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 48px;
  padding: 0 16px 0 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--brand-charcoal);
  font-size: 12px;
  font-weight: 600;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, padding-left 180ms ease;
}

.banner-quote-options label > span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: transparent;
  content: "";
  transition: background-color 180ms ease;
}

.banner-quote-options input:checked + span {
  padding-left: 24px;
  border-color: var(--brand-red);
  background: rgb(206 15 61 / 6%);
  color: var(--brand-charcoal);
}

.banner-quote-options input:checked + span::before {
  background: var(--brand-red);
}

.banner-quote-options input:focus-visible + span {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

.banner-quote-checks {
  display: grid;
  gap: 11px;
}

.banner-quote-checks label {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--brand-charcoal);
  font-size: 13px;
  cursor: pointer;
}

.banner-quote-checks input {
  width: 17px;
  height: 17px;
  accent-color: var(--brand-red);
}

.banner-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.banner-quote-field-full {
  grid-column: 1 / -1;
}

.banner-quote-field input,
.banner-quote-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--brand-charcoal);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.banner-quote-field input {
  min-height: 52px;
  padding: 0 15px;
}

.banner-quote-field textarea {
  min-height: 130px;
  padding: 15px;
  resize: vertical;
}

.banner-quote-field input:focus,
.banner-quote-field textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgb(206 15 61 / 10%);
}

.banner-quote-field input::placeholder,
.banner-quote-field textarea::placeholder {
  color: #8a8f92;
}

.banner-quote-upload {
  display: flex;
  min-height: 150px;
  padding: 24px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1.5px dashed var(--brand-silver);
  border-radius: 14px;
  background: color-mix(in srgb, var(--brand-silver) 8%, var(--paper));
  cursor: pointer;
  text-align: center;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.banner-quote-upload:hover,
.banner-quote-upload:focus-visible,
.banner-quote-upload.is-dragging,
.banner-quote-upload.has-file {
  border-color: var(--brand-red);
  background: rgb(206 15 61 / 5%);
  outline: none;
}

.banner-quote-upload.has-file {
  border-style: solid;
}

.banner-quote-upload.has-file small {
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 600;
}

.banner-quote-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.banner-quote-upload svg {
  width: 27px;
  margin-bottom: 13px;
  fill: none;
  stroke: var(--brand-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.banner-quote-upload strong {
  font-size: 12px;
  font-weight: 600;
}

.banner-quote-upload small {
  max-width: 460px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.banner-quote-submit {
  display: inline-flex;
  min-height: 56px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  border-radius: 14px;
  background: var(--brand-charcoal);
  color: var(--paper);
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.banner-quote-submit:hover {
  background: var(--brand-red);
  transform: translateY(-2px);
}

.banner-quote-submit svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.banner-quote-status {
  min-height: 18px;
  margin: -14px 0 0;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* Service strip — dark reversal to differentiate from the light wraps strip */
.banner-service-strip {
  padding-top: 0;
}

.banner-product-shell {
  padding-top: clamp(90px, 9vw, 140px);
}

.banner-benefits-shell {
  padding-top: 0;
}

.banner-benefits {
  margin-top: 0;
}

@media (max-width: 480px) {
  .banner-quote-options-two {
    grid-template-columns: 1fr;
  }

  .banner-quote-grid {
    grid-template-columns: 1fr;
  }

  .banner-quote-field-full {
    grid-column: auto;
  }

  .banner-quote-submit {
    width: 100%;
  }
}
