/* FireBar Distro — shared style, v2 (mobile-fixed + Mind x Melt page additions).
   Brand tokens mirror the print flyer (champs_flyer_src/HANDOFF.md). */

:root {
  --red:        #C8372D;
  --red-deep:   #8C2018;
  --ink:        #14151A;
  --ink-2:      #2A2C33;
  --bone:       #F5EFE6;
  --bone-2:     #ECE3D2;
  --bone-3:     #FBF7EF;
  --smoke:      #5A5B61;     /* bumped from #6E6F75 — better AA contrast */
  --smoke-2:    #6E6F75;
  --teal:       #18524A;
  --gold:       #C49A2A;
  --line:       #D8CEB9;
  --plum:       #2A1F3A;     /* new — Mind x Melt accent */
  --amethyst:   #6B4F8F;     /* new — Mind x Melt accent */
  --shadow:     0 1px 2px rgba(20,21,26,0.04), 0 4px 14px rgba(20,21,26,0.06);
  --shadow-lg:  0 12px 40px rgba(20,21,26,0.18);
  --radius:     6px;
  --radius-lg:  12px;
  --max:        1180px;
  --max-narrow: 920px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0; padding: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); text-decoration: underline; }

h1, h2, h3, .display {
  font-family: 'Bebas Neue', 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
  line-height: 1.05;
}
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); }

p  { margin: 0 0 1em; }

.eyebrow {
  font: 700 11px/1 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
}

.muted { color: var(--smoke); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }
.section   { padding: 64px 0; }
.section-tight { padding: 40px 0; }
.section-tall { padding: 96px 0; }

@media (max-width: 720px) {
  .section { padding: 48px 0; }
  .section-tall { padding: 64px 0; }
}

/* ---------- Show banner ---------- */
.show-banner {
  background: var(--red); color: #fff;
  padding: 12px 0;
  text-align: center;
  font: 700 13px/1.4 'Barlow Condensed', sans-serif;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.show-banner strong { font-weight: 800; }
.show-banner a { color: #fff; }

/* ---------- Header (mobile-responsive) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid #000;
}
.site-header .container { display: flex; align-items: center; gap: 18px; height: 64px; }
.brand {
  font: 800 18px/1 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: 0.06em;
  color: #fff; text-transform: uppercase;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; color: #fff; }
.brand .accent { color: var(--red); }
.site-header .nav {
  margin-left: auto; display: flex; gap: 18px; align-items: center;
}
.site-header .nav a { color: #fff; font-size: 14px; padding: 8px 0; }
.site-header .nav a:hover { color: var(--red); text-decoration: none; }
.site-header .phone {
  font: 700 14px/1 'Barlow Condensed', 'Inter', sans-serif;
  letter-spacing: 0.04em;
  color: #fff;
}
.site-header .cta {
  display: inline-block;
  background: var(--red); color: #fff;
  font: 700 13px/1 'Inter', sans-serif;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 11px 16px; border-radius: var(--radius);
  flex-shrink: 0;
}
.site-header .cta:hover { background: var(--red-deep); text-decoration: none; color: #fff; }

/* Hamburger button — desktop hidden, mobile visible */
.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  padding: 10px; margin-left: auto;
  color: #fff;
}
.nav-toggle svg { display: block; width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 880px) {
  .site-header .container { gap: 12px; }
  .site-header .phone { display: none; }
  .site-header .cta { padding: 9px 12px; font-size: 12px; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .site-header .nav {
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .site-header .nav.is-open { transform: translateY(0); }
  .site-header .nav a {
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    min-height: 48px;
    display: flex; align-items: center;
  }
  .site-header .nav .phone {
    display: flex;
    color: var(--gold);
    font-size: 18px;
  }
  .site-header .nav .cta {
    margin: 12px 24px 0;
    text-align: center;
    border-radius: var(--radius);
    padding: 14px 20px;
    border: 0;
  }
}

/* ---------- Hero (default) ---------- */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 80px 0 88px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; right: -10%; bottom: -40%;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(200,55,45,0.18), transparent 60%);
  pointer-events: none;
}
.hero h1 { color: #fff; }
.hero p.lead { font-size: clamp(16px, 1.6vw, 19px); color: #ECE3D2; max-width: 720px; }
.hero .eyebrow { color: #F5EFE6; opacity: 0.9; }

@media (max-width: 720px) {
  .hero { padding: 56px 0 64px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--red); color: #fff;
  font: 700 14px/1 'Inter', sans-serif;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 22px; border-radius: var(--radius);
  border: 0; cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--red-deep); text-decoration: none; color: #fff; transform: translateY(-1px); }
.btn-ink   { background: var(--ink); }
.btn-ink:hover { background: #000; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: #B58820; color: var(--ink); }
.btn-lg { padding: 18px 30px; font-size: 15px; }

/* Button row — wraps cleanly on mobile, no smoosh */
.btn-row {
  display: flex; flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0 0 1em;
}
.btn-row .btn { white-space: nowrap; }
@media (max-width: 540px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { text-align: center; }
}

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 880px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 8px; }
.card p  { color: var(--smoke); margin: 0; font-size: 14px; line-height: 1.5; }

/* ---------- Reps ---------- */
.reps {
  display: grid; gap: 12px;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 980px) { .reps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .reps { grid-template-columns: repeat(2, 1fr); } }
.rep {
  background: var(--bone-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px 16px;
  text-align: center;
}
.rep .role {
  font: 700 10px/1 'Inter', sans-serif;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--smoke); margin-bottom: 6px;
}
.rep .name {
  font: 700 22px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em; color: var(--ink);
  margin-bottom: 6px;
}
.rep .phone {
  font: 700 17px/1 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em; color: var(--red);
  margin-bottom: 4px;
}
.rep .email {
  font: 500 12px/1.4 'Inter', sans-serif;
  color: var(--ink-2); word-break: break-all;
}
.rep.house { background: var(--ink); color: #fff; }
.rep.house .role  { color: var(--gold); }
.rep.house .name  { color: #fff; }
.rep.house .phone { color: #fff; }
.rep.house .email { color: #ECE3D2; }
.reps.no-titles .rep .role { display: none; }
.reps.no-titles .rep .name { margin-top: 4px; }

/* ---------- Form ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
}
.form-card h2 { margin-bottom: 6px; }
.form-card p.subnote { color: var(--smoke); font-size: 14px; margin-bottom: 22px; }
.form-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-row label {
  display: block;
  font: 700 11px/1 'Inter', sans-serif;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink-2); margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 4px;
  background: #fff; color: var(--ink);
  font: 14px 'Inter', sans-serif;
  min-height: 44px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--red); outline-offset: -1px;
  border-color: var(--red);
}
.form-row input.is-invalid,
.form-row select.is-invalid {
  border-color: var(--red);
  background: #FBE7E5;
}
.form-row textarea { min-height: 90px; resize: vertical; }
.form-hint {
  font: 400 12px/1.4 'Inter', sans-serif;
  color: var(--red);
  margin-top: 4px;
  min-height: 16px;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-error {
  background: #FBE7E5; color: var(--red-deep);
  padding: 10px 14px; border-radius: 4px;
  font-size: 14px; margin-bottom: 14px;
}
.form-success {
  background: #E5F1EE; color: var(--teal);
  padding: 10px 14px; border-radius: 4px;
  font-size: 14px; margin-bottom: 14px;
}
.form-noscript {
  background: var(--bone-2); border: 1px solid var(--line);
  padding: 14px 18px; border-radius: 4px;
  font-size: 14px; margin-bottom: 14px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #ECE3D2;
  padding: 48px 0 28px;
  font-size: 14px;
}
.site-footer .container { display: grid; gap: 28px; grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .site-footer .container { grid-template-columns: 1fr; } }
.site-footer h4 {
  font: 700 12px/1 'Inter', sans-serif;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold); margin: 0 0 12px;
}
.site-footer a { color: #ECE3D2; }
.site-footer a:hover { color: var(--gold); }
.site-footer .legal {
  border-top: 1px solid #2A2C33;
  padding-top: 20px; margin-top: 32px;
  font-size: 12px; color: #888A91;
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between;
}
.site-footer .legal-links a { margin-left: 14px; color: #888A91; }
.site-footer .legal-links a:hover { color: var(--gold); }

/* ---------- Specifics ---------- */
.kpi-row {
  display: grid; gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
}
@media (max-width: 700px) { .kpi-row { grid-template-columns: 1fr; } }
.kpi {
  background: var(--bone-3); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.kpi .num {
  font: 800 40px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em; color: var(--red);
}
.kpi .label {
  font: 700 11px/1 'Inter', sans-serif;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--smoke); margin-top: 8px;
}

.callout {
  background: var(--ink); color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  display: grid; gap: 18px;
  grid-template-columns: 2fr 1fr;
  align-items: center;
}
@media (max-width: 700px) { .callout { grid-template-columns: 1fr; } }
.callout h2 { color: #fff; margin: 0; }
.callout p  { color: #ECE3D2; margin: 0; }
.callout .btn { background: var(--red); }

/* ---------- Mind x Melt hero (root + champs) ---------- */
.hero-mxm { padding: 64px 0 72px; }
.hero-mxm-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
}
@media (max-width: 880px) {
  .hero-mxm-grid { grid-template-columns: 1fr; gap: 24px; }
}
.hero-mxm-copy h1 { margin-bottom: 14px; }
.hero.hero-mxm .hero-mxm-copy strong { color: #fff; }
.hero-mxm-img {
  display: flex; justify-content: center; align-items: center;
  background: radial-gradient(circle at center, rgba(196,154,42,0.18), transparent 65%);
  padding: 24px;
  border-radius: var(--radius-lg);
  position: relative;
}
.hero-mxm-img img {
  max-width: 100%;
  max-height: 540px;
  width: auto; height: auto;
  filter: drop-shadow(0 22px 40px rgba(0,0,0,0.35));
  border-radius: 8px;
}
.section .hero-mxm-grid .hero-mxm-img {
  background: radial-gradient(circle at center, rgba(107,79,143,0.20), transparent 60%);
}
.section .hero-mxm-copy h2 { margin-bottom: 14px; }
.section .hero-mxm-copy .lead { font-size: clamp(15px, 1.5vw, 18px); }
.section .hero-mxm-copy strong { color: var(--red); font-weight: 800; }

/* ---------- Brand-feature grid (mushroom trio) ---------- */
.brand-feature-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) { .brand-feature-grid { grid-template-columns: 1fr; } }

.brand-feature {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20,21,26,0.12);
}
.brand-feature-img {
  display: flex;
  height: 240px;
  background: var(--bone-3);
  align-items: center; justify-content: center;
  padding: 18px;
  text-decoration: none;
  overflow: hidden;
}
.brand-feature-img img {
  max-width: 100%; max-height: 200px;
  width: auto; height: auto;
  object-fit: contain;
}
.brand-feature-body {
  padding: 18px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.brand-feature-body h3 { margin: 0; }
.brand-feature-body p {
  color: var(--smoke);
  font-size: 14px; line-height: 1.5;
  margin: 0; flex: 1;
}
.brand-feature-cta {
  font: 700 13px/1 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-top: 6px;
}
.brand-feature-cta:hover { color: var(--red-deep); text-decoration: underline; }

.brand-feature-tag {
  display: inline-block;
  font: 700 10px/1 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 9px;
  border-radius: 3px;
  align-self: flex-start;
}
.tag-new      { background: var(--red);  color: #fff; }
.tag-premium  { background: var(--gold); color: var(--ink); }
.tag-volume   { background: var(--teal); color: #fff; }

/* ---------- Product grid (bag catalog + adjacent) ---------- */
.product-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.product-card-img {
  height: 180px;
  background: var(--bone-3);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  margin-bottom: 12px;
}
.product-card-img img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
}
.product-card h4 {
  font: 700 14px/1.25 'Inter', sans-serif;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
  color: var(--ink);
}
.product-card p {
  margin: 0; color: var(--smoke);
  font-size: 13px; line-height: 1.45;
}

/* ---------- PBAL endorsement band ---------- */
.endorsement-band {
  background: linear-gradient(135deg, #14151A 0%, #2A2C33 100%);
  color: #fff;
  padding: 56px 0;
  position: relative; overflow: hidden;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.endorsement-band::after {
  content: "";
  position: absolute; right: -8%; top: -40%;
  width: 460px; height: 460px;
  background: radial-gradient(circle at center, rgba(196,154,42,0.22), transparent 60%);
  pointer-events: none;
}
.endorsement-grid {
  display: grid; gap: 28px;
  grid-template-columns: 220px 1fr;
  align-items: center;
}
@media (max-width: 760px) {
  .endorsement-grid { grid-template-columns: 1fr; gap: 18px; text-align: center; }
}
.endorsement-mark {
  font: 800 64px/0.9 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 24px;
  border: 3px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(196,154,42,0.06);
}
.endorsement-mark span {
  display: block;
  font: 600 12px/1 'Inter', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
  color: #ECE3D2;
}
.endorsement-copy h2 { color: #fff; margin-bottom: 12px; }
.endorsement-copy p { color: #ECE3D2; }

.opt {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--smoke);
}

.partner-strip {
  background: linear-gradient(135deg, #18524A 0%, #0F3A33 100%);
  color: #fff;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.partner-strip .container {
  display: grid; gap: 22px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
@media (max-width: 760px) {
  .partner-strip .container { grid-template-columns: 1fr; text-align: center; }
}
.partner-strip h3 {
  color: #fff; margin: 0 0 6px;
  font-size: clamp(20px, 2vw, 26px);
}
.partner-strip p {
  margin: 0; color: #DDF2EE; font-size: 15px; line-height: 1.5;
}
.partner-strip .btn-gold { white-space: nowrap; }

.pill-soon {
  display: inline-block;
  font: 700 10px/1 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(196,154,42,0.18);
  color: #B58820;
  border: 1px solid rgba(196,154,42,0.4);
  margin-left: 6px;
  vertical-align: middle;
}

/* =========================================================================
   MIND x MELT — dedicated brand page styling
   Lush, photo-first, plum / amethyst / gold accents
   ========================================================================= */

body.mxm-page {
  background: #0E0A14;
  color: #fff;
}
body.mxm-page .site-header {
  background: rgba(14, 10, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.mxm-page h1, body.mxm-page h2, body.mxm-page h3, body.mxm-page h4 {
  color: #fff;
}
body.mxm-page p { color: #D8D0E2; }
body.mxm-page a { color: var(--gold); }
body.mxm-page a:hover { color: #E0BD51; }
body.mxm-page .eyebrow { color: var(--gold); }
body.mxm-page .muted { color: #9B95A6; }

/* Mind x Melt cinematic hero */
.mxm-hero {
  position: relative;
  min-height: 86vh;
  display: flex; align-items: center;
  background: #0E0A14;
  overflow: hidden;
}
.mxm-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: saturate(1.1) contrast(1.05);
}
.mxm-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,10,20,0.4) 0%, rgba(14,10,20,0.5) 60%, rgba(14,10,20,0.95) 100%);
}
.mxm-hero .container { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }
.mxm-hero .eyebrow {
  font-size: 12px; letter-spacing: 0.28em; color: var(--gold);
}
.mxm-hero h1 {
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin: 12px 0 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.mxm-hero h1 .brushstroke {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #E5C260);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mxm-hero p.lead {
  font-size: clamp(17px, 1.8vw, 22px);
  max-width: 620px;
  color: #ECE3D2;
  margin-bottom: 28px;
  font-weight: 500;
}
.mxm-hero .meta-row {
  display: flex; flex-wrap: wrap; gap: 16px 32px;
  margin-bottom: 36px;
  font: 700 12px/1 'Inter', sans-serif;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.mxm-hero .meta-row span { display: flex; align-items: center; gap: 8px; }
.mxm-hero .meta-row span::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
.mxm-hero .btn { background: var(--gold); color: var(--ink); padding: 18px 32px; font-size: 14px; }
.mxm-hero .btn:hover { background: #E0BD51; color: var(--ink); }
.mxm-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); margin-left: 12px; }
.mxm-hero .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* Statement section */
.mxm-statement {
  padding: 96px 0;
  background: linear-gradient(180deg, #0E0A14 0%, #1A1024 100%);
  position: relative;
}
.mxm-statement-grid {
  display: grid; gap: 60px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 880px) {
  .mxm-statement-grid { grid-template-columns: 1fr; gap: 32px; }
}
.mxm-statement h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 24px;
}
.mxm-statement h2 .accent { color: var(--gold); }
.mxm-statement p { font-size: 17px; line-height: 1.6; color: #D8D0E2; }
.mxm-statement-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mxm-statement-img img { width: 100%; height: auto; display: block; }

/* Spec card */
.mxm-spec-row {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}
@media (max-width: 720px) { .mxm-spec-row { grid-template-columns: 1fr; } }
.mxm-spec {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,154,42,0.25);
  border-radius: var(--radius);
  padding: 22px;
}
.mxm-spec .num {
  font: 800 44px/1 'Bebas Neue', sans-serif;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.mxm-spec .label {
  font: 600 13px/1.4 'Inter', sans-serif;
  color: #D8D0E2;
  margin-top: 8px;
}

/* Photo gallery — Mind x Melt */
.mxm-gallery {
  padding: 88px 0;
  background: #0E0A14;
}
.mxm-gallery h2 { text-align: center; margin-bottom: 12px; }
.mxm-gallery .eyebrow { text-align: center; display: block; margin-bottom: 8px; }
.mxm-gallery p.intro { text-align: center; max-width: 640px; margin: 0 auto 48px; color: #B8B0C2; }
.mxm-gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  grid-auto-flow: dense;
}
@media (max-width: 880px) {
  .mxm-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 540px) {
  .mxm-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
}
.mxm-gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1A1024;
}
.mxm-gallery-grid figure.span-2 { grid-column: span 2; }
.mxm-gallery-grid figure.span-2-row { grid-row: span 2; }
@media (max-width: 880px) {
  .mxm-gallery-grid figure.span-2 { grid-column: span 2; }
  .mxm-gallery-grid figure.span-2-row { grid-row: span 1; }
}
@media (max-width: 540px) {
  .mxm-gallery-grid figure.span-2 { grid-column: span 1; }
}
.mxm-gallery-grid figure img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.4s ease;
}
.mxm-gallery-grid figure:hover img { transform: scale(1.04); }

/* Pairing / format section */
.mxm-pairing {
  padding: 96px 0;
  background: linear-gradient(180deg, #1A1024 0%, #0E0A14 100%);
}
.mxm-pairing h2 { text-align: center; margin-bottom: 8px; }
.mxm-pairing p.intro {
  text-align: center; max-width: 640px; margin: 0 auto 56px;
  color: #B8B0C2; font-size: 17px;
}
.mxm-pairing-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 880px) { .mxm-pairing-grid { grid-template-columns: 1fr; } }
.mxm-pairing-card {
  background: #1A1024;
  border: 1px solid rgba(196,154,42,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mxm-pairing-card-img {
  aspect-ratio: 4/5;
  background: #0E0A14;
  overflow: hidden;
}
.mxm-pairing-card-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.mxm-pairing-card-body { padding: 24px 26px 28px; }
.mxm-pairing-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.mxm-pairing-card p { color: #B8B0C2; font-size: 14px; line-height: 1.55; margin: 0; }

/* B2B early-access call-to-action */
.mxm-cta-band {
  padding: 88px 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(196,154,42,0.18), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(107,79,143,0.25), transparent 50%),
    linear-gradient(135deg, #0E0A14, #1A1024);
}
.mxm-cta-grid {
  display: grid; gap: 60px;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
}
@media (max-width: 880px) { .mxm-cta-grid { grid-template-columns: 1fr; gap: 32px; } }
.mxm-cta-grid h2 { font-size: clamp(34px, 4.5vw, 52px); margin-bottom: 18px; }
.mxm-cta-grid h2 .accent { color: var(--gold); }
.mxm-cta-grid p { font-size: 17px; color: #D8D0E2; margin-bottom: 20px; }
.mxm-cta-grid .btn-gold { padding: 18px 32px; font-size: 14px; }
.mxm-cta-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196,154,42,0.3);
}
.mxm-cta-img img { width: 100%; height: auto; display: block; }

/* Compliance / lab-test strip on dark page */
.mxm-compliance {
  padding: 56px 0;
  background: #14101C;
  border-top: 1px solid rgba(196,154,42,0.15);
  border-bottom: 1px solid rgba(196,154,42,0.15);
}
.mxm-compliance-grid {
  display: grid; gap: 32px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 880px) { .mxm-compliance-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .mxm-compliance-grid { grid-template-columns: 1fr; } }
.mxm-compliance .item {
  text-align: center;
}
.mxm-compliance .item .num {
  font: 800 36px/1 'Bebas Neue', sans-serif;
  color: var(--gold);
  margin-bottom: 8px;
}
.mxm-compliance .item .label {
  font: 600 13px/1.4 'Inter', sans-serif;
  color: #D8D0E2;
}

/* MxM page form section — keep the existing form-card on the dark canvas */
body.mxm-page .form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,154,42,0.25);
  color: #fff;
}
body.mxm-page .form-card h2 { color: #fff; }
body.mxm-page .form-card p.subnote { color: #B8B0C2; }
body.mxm-page .form-row label { color: #D8D0E2; }
body.mxm-page .form-row input,
body.mxm-page .form-row select,
body.mxm-page .form-row textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(196,154,42,0.25);
  color: #fff;
}
body.mxm-page .form-row input::placeholder,
body.mxm-page .form-row textarea::placeholder {
  color: rgba(216,208,226,0.5);
}
body.mxm-page .form-row input:focus,
body.mxm-page .form-row select:focus,
body.mxm-page .form-row textarea:focus {
  outline: 2px solid var(--gold);
  border-color: var(--gold);
}
body.mxm-page .form-card .btn { background: var(--gold); color: var(--ink); }
body.mxm-page .form-card .btn:hover { background: #E0BD51; color: var(--ink); }

body.mxm-page .site-footer { background: #060309; border-top: 1px solid rgba(255,255,255,0.06); }

/* =========================================================================
   CHAMPS LV 2026 — show-floor specific lift
   ========================================================================= */

.champs-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(20,21,26,0.92) 0%, rgba(20,21,26,0.78) 100%),
    var(--ink);
  color: #fff;
  padding: 80px 0 88px;
  overflow: hidden;
}
.champs-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.30;
  filter: saturate(1.1);
}
.champs-hero .container { position: relative; z-index: 2; }
.champs-hero h1 {
  color: #fff;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.96;
  margin-bottom: 18px;
}
.champs-hero h1 .accent { color: var(--gold); }
.champs-hero .booth-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font: 700 12px/1 'Inter', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.champs-hero .booth-pill strong { letter-spacing: 0.04em; font-size: 14px; }
.champs-hero p.lead {
  color: #ECE3D2; font-size: clamp(17px, 1.7vw, 20px);
  max-width: 640px; margin-bottom: 28px;
}
.champs-hero .meta-row {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  margin-bottom: 32px;
  font: 700 12px/1 'Inter', sans-serif;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.champs-hero .meta-row span { display: flex; align-items: center; gap: 8px; }

/* Big Mind x Melt feature on champs page */
.champs-mxm-feature {
  background: linear-gradient(135deg, #1A1024 0%, #0E0A14 100%);
  color: #fff;
  padding: 96px 0;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(196,154,42,0.18);
  border-bottom: 1px solid rgba(196,154,42,0.18);
}
.champs-mxm-feature::after {
  content: "";
  position: absolute; left: -10%; top: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(196,154,42,0.20), transparent 60%);
  pointer-events: none;
}
.champs-mxm-feature .container { position: relative; z-index: 2; }
.champs-mxm-feature h2 { color: #fff; font-size: clamp(36px, 5vw, 60px); }
.champs-mxm-feature p { color: #D8D0E2; }
.champs-mxm-feature .lead { font-size: clamp(16px, 1.6vw, 19px); }
.champs-mxm-feature .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 4px;
  font: 700 11px/1 'Inter', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.champs-mxm-feature .btn { background: var(--gold); color: var(--ink); }
.champs-mxm-feature .btn:hover { background: #E0BD51; color: var(--ink); }
.champs-mxm-feature .btn-ghost { color: var(--gold); border-color: var(--gold); margin-left: 12px; }
.champs-mxm-feature .btn-ghost:hover { background: rgba(196,154,42,0.10); color: var(--gold); }

.champs-mxm-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196,154,42,0.25);
}
.champs-mxm-img img { display: block; width: 100%; height: auto; }

/* ================================================================
   WOW additions — trust strip, sticky mobile CTA, FAQ accordion,
   404 page. Added 2026-05-02 as part of CHAMPS deploy polish.
   ================================================================ */

/* --- Trust strip: dark band of social proof under the hero --- */
.trust-strip {
  background: var(--ink);
  color: #fff;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item .num {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font: 800 30px/1 'Bebas Neue', 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
}
.trust-item .label {
  display: block;
  font: 600 11px/1.35 'Inter', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .trust-item .num { font-size: 26px; }
}

/* --- Sticky mobile CTA: bottom-anchored, hides when form is in view --- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(20, 21, 26, 0.94);
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.25s ease;
}
.sticky-mobile-cta.is-hidden { transform: translateY(110%); }
.sticky-mobile-cta a {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font: 700 15px/1 'Barlow Condensed', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(200, 55, 45, 0.30);
}
.sticky-mobile-cta a:hover { background: var(--red-deep); color: #fff; text-decoration: none; }
@media (max-width: 880px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* --- FAQ accordion --- */
.faq-section {
  padding: 64px 0 72px;
  background: var(--bone);
}
.faq-section .eyebrow { text-align: center; }
.faq-section h2 { text-align: center; }
.faq-list {
  max-width: 760px;
  margin: 32px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(20,21,26,0.10);
}
.faq-item summary {
  padding: 22px 0;
  cursor: pointer;
  font: 700 17px/1.35 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
  list-style: none;
  position: relative;
  padding-right: 44px;
  color: var(--ink);
  outline: none;
  transition: color 0.15s;
}
.faq-item summary:hover { color: var(--red); }
.faq-item summary:focus-visible { color: var(--red); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font: 400 26px/1 'Inter', sans-serif;
  color: var(--gold);
  transition: transform 0.2s;
  width: 24px;
  text-align: center;
}
.faq-item[open] summary::after {
  content: '\2212'; /* minus */
}
.faq-item .answer {
  padding: 0 0 22px;
  color: #4A4B52;
  font: 15px/1.65 'Inter', sans-serif;
}
.faq-item .answer p { margin: 0 0 10px; }
.faq-item .answer p:last-child { margin: 0; }
.faq-item .answer a { color: var(--red); }
.faq-item .answer strong { color: var(--ink); }

/* --- 404 page chrome --- */
.notfound-hero {
  text-align: center;
  padding: 96px 0 72px;
}
.notfound-hero .four-oh-four {
  font: 800 96px/1 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  color: var(--red);
  margin: 0 0 8px;
}
.notfound-hero h1 {
  font: 700 32px/1.15 'Barlow Condensed', sans-serif;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  color: var(--ink);
}
.notfound-hero p {
  max-width: 520px;
  margin: 0 auto 28px;
  color: #5A5B61;
  font: 16px/1.55 'Inter', sans-serif;
}
.notfound-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

/* ================================================================
   Round 2 polish — smooth scroll, card hover, focus states
   Added 2026-05-02
   ================================================================ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* offset for fixed-ish header on jumps */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Brand-feature card hover: subtle lift + image zoom */
.brand-feature {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.brand-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(20, 21, 26, 0.10);
}
.brand-feature-img {
  overflow: hidden;
  display: block;
}
.brand-feature-img img {
  transition: transform 0.45s ease;
  display: block;
  width: 100%;
  height: auto;
}
.brand-feature:hover .brand-feature-img img {
  transform: scale(1.03);
}

/* Product card hover */
.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 21, 26, 0.08);
}
.product-card-img {
  overflow: hidden;
}
.product-card-img img {
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

/* Stronger keyboard focus visibility (a11y) — applies to nav + form + buttons */
:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* Button active feedback */
.btn:active {
  transform: translateY(0);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

/* Trust strip number hover (subtle attention pull) */
.trust-item .num {
  transition: color 0.2s ease;
}
.trust-strip:hover .trust-item:hover .num {
  color: #E0B23A;
}

/* ================================================================
   Round 3 polish — How-it-works, color chips, back-to-top, count-up
   Added 2026-05-02
   ================================================================ */

/* --- How It Works: 3-step horizontal flow --- */
.how-it-works {
  padding: 64px 0;
  background: var(--bone-3);
}
.how-it-works .eyebrow,
.how-it-works h2 { text-align: center; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.how-step {
  position: relative;
  padding: 8px 0 0;
  text-align: center;
}
.how-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font: 800 26px/1 'Bebas Neue', 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
  margin: 0 auto 18px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 16px rgba(20,21,26,0.12);
}
.how-step h3 {
  font: 700 19px/1.25 'Barlow Condensed', sans-serif;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}
.how-step p {
  margin: 0;
  color: #5A5B61;
  font: 14.5px/1.55 'Inter', sans-serif;
}
/* Connector lines between steps (desktop only) */
.how-step:not(:last-child)::after {
  content: '';
  display: none;
  position: absolute;
  top: 36px;
  right: -20px;
  width: 24px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
@media (min-width: 720px) {
  .how-step:not(:last-child)::after { display: block; }
}
@media (max-width: 720px) {
  .how-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* --- Color-name chips (Executive Tech color range) --- */
.color-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.color-chips .chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20,21,26,0.06);
  color: var(--ink);
  font: 600 11px/1.4 'Inter', sans-serif;
  letter-spacing: 0.04em;
  border: 1px solid rgba(20,21,26,0.08);
}
.color-chips .chip.le {
  background: rgba(196,154,42,0.10);
  color: #8C6F1F;
  border-color: rgba(196,154,42,0.30);
}

/* --- Floating back-to-top button --- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 92px; /* above sticky CTA on mobile */
  z-index: 80;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 0;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(20,21,26,0.25);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 600 18px/1 sans-serif;
}
.back-to-top:hover { background: var(--red); }
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top svg { width: 18px; height: 18px; }
@media (min-width: 881px) {
  .back-to-top { bottom: 24px; }
}

/* --- Trust strip count-up: prevent flash before JS hydrates --- */
.trust-item .num[data-target] { font-variant-numeric: tabular-nums; }
