/* ============================================================
   APUSA — styles.css
   The Awareness Project USA
   ============================================================ */

:root {
  --black-onyx:             #000000;
  --white-quartz-platinum:  #bcbbbc;
  --charcoal:               #141414;
  --roman-blu:              #2a4bb1;
  --roman-blu-deep:         #10245f;
  --white:                  #f5f5f2;
  --border:                 rgba(188,187,188,.28);
  --font-title:             "Cinzel", Georgia, serif;
  --font-body:              Tahoma, Verdana, sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: #000; }

body {
  min-height: 100%;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(42,75,177,.10), transparent 34%),
    linear-gradient(135deg, #000000, #141414 52%, #050505);
  font-family: var(--font-body);
}

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

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 46px);
  background: linear-gradient(to bottom, rgba(0,0,0,.34), rgba(0,0,0,0));
  pointer-events: none;
}

.brand-mark, .menu-wrap { pointer-events: auto; }

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 56px;
  min-height: 44px;
  padding: 0 14px 0 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--white-quartz-platinum);
  background: rgba(0,0,0,.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 28px rgba(0,0,0,.34);
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.brand-label {
  font-family: var(--font-title);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255,255,255,.14), 0 2px 6px rgba(0,0,0,.95);
}

.menu-wrap { position: relative; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(188,187,188,.42);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  background: linear-gradient(145deg, rgba(42,75,177,.98), rgba(16,36,95,.96));
  font-family: var(--font-title);
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 14px 34px rgba(0,0,0,.38);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 20px; height: 2px;
  display: block;
  background: var(--white);
  border-radius: 99px;
  transition: transform 220ms ease;
}

.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; right: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after  { top:  6px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after  { transform: translateY(-6px) rotate(-45deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(285px, calc(100vw - 36px));
  padding: 10px;
  border: 1px solid rgba(188,187,188,.28);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(42,75,177,.84), rgba(8,12,24,.96) 45%, rgba(0,0,0,.97));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 26px 54px rgba(0,0,0,.62);
  transform: translateY(-8px) scale(.96);
  transform-origin: top right;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 12px;
  font-family: var(--font-title);
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dropdown-menu a:hover {
  background: rgba(188,187,188,.12);
  transform: translateX(-3px);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero-page { min-height: 100vh; }

.hero-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 110px clamp(18px, 5vw, 72px) clamp(36px, 7vw, 86px);
  background: #000;
}

/* B&W → Colour hero crossfade via pseudo-elements */
.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.012);
  will-change: opacity, filter;
}

.hero-shell::before {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.52)),
    linear-gradient(to right, rgba(0,0,0,.48), rgba(0,0,0,.22), rgba(0,0,0,.42)),
    url("APUSA_Hero_Desktop.jpg");
  opacity: 1;
  filter: grayscale(1) brightness(.46) contrast(1.10);
  animation: apusaHeroBWLift 5.6s cubic-bezier(.62,.04,.3,1) forwards;
}

.hero-shell::after {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.01), rgba(0,0,0,.10)),
    linear-gradient(to right, rgba(0,0,0,.12), rgba(0,0,0,.03), rgba(0,0,0,.10)),
    url("APUSA_HERO_DESKTOP_COLOR.jpg");
  opacity: 0;
  filter: saturate(.6) brightness(.7) contrast(1.06);
  animation: apusaHeroColorReveal 5.6s cubic-bezier(.62,.04,.3,1) forwards;
}

.hero-content { position: relative; z-index: 3; width: min(690px, 100%); }

/* APUSA symbol — sunrise gradient (Burnt Ember → Obsidian Orange → Molten Gold)
   PNG used as a mask so the gradient fills the symbol shape exactly */
.hero-symbol-mark {
  position: absolute;
  left: 50%;
  top: clamp(48px, 7.5vh, 104px);
  transform: translate(-50%, 0) scale(.96);
  width: clamp(116px, 15vw, 224px);
  aspect-ratio: 1 / 1;
  z-index: 2;
  background: linear-gradient(180deg,
    #993333 0%,
    #b94818 32%,
    #cc6600 58%,
    #dca621 100%);
  -webkit-mask: url("APUSA_Symbol_All_Inclusive.png") center / contain no-repeat;
          mask: url("APUSA_Symbol_All_Inclusive.png") center / contain no-repeat;
  filter:
    drop-shadow(0 0 16px rgba(204,102,0,.5))
    drop-shadow(0 0 40px rgba(220,166,33,.3))
    drop-shadow(0 2px 5px rgba(153,51,51,.5));
  opacity: 0;
  animation: apusaSymbolReveal 5.2s cubic-bezier(.62,.04,.3,1) forwards;
  pointer-events: none;
}

@keyframes apusaHeroBWLift {
  0%   { opacity: 1;  filter: grayscale(1) brightness(.38) contrast(1.12); }
  45%  { opacity: 1;  filter: grayscale(1) brightness(.6)  contrast(1.08); }
  72%  { opacity: .5; filter: grayscale(1) brightness(.95) contrast(1.05); }
  100% { opacity: 0;  filter: grayscale(1) brightness(1.08) contrast(1.02); }
}

@keyframes apusaHeroColorReveal {
  0%      { opacity: 0;   filter: saturate(.6)  brightness(.5)  contrast(1.06); }
  45%     { opacity: .28; filter: saturate(.85) brightness(.8)  contrast(1.04); }
  72%     { opacity: .85; filter: saturate(1.1) brightness(1.24) contrast(1.02); }
  100%    { opacity: 1;   filter: saturate(1.2) brightness(1.5)  contrast(1.01); }
}

@keyframes apusaSymbolReveal {
  0%, 24%  { opacity: 0;   transform: translate(-50%, 10px) scale(.92); }
  48%      { opacity: .28; transform: translate(-50%, 6px)  scale(.97); }
  72%      { opacity: .78; transform: translate(-50%, 0)    scale(1);   }
  88%      { opacity: 1;   transform: translate(-50%, 0)    scale(1.012);}
  100%     { opacity: 1;   transform: translate(-50%, 0)    scale(1);   }
}

@media (prefers-reduced-motion: reduce) {
  .hero-shell::before { animation: none; opacity: 0; }
  .hero-shell::after  { animation: none; opacity: 1; filter: saturate(1.18) brightness(1.58) contrast(1.01); }
  .hero-symbol-mark   { animation: none; opacity: 1; transform: translate(-50%, 0) scale(1); }
}

/* ── HERO PANEL ──────────────────────────────────────────── */
.hero-panel, .page-intro {
  border: 1px solid rgba(188,187,188,.22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(0,0,0,.34), rgba(20,20,20,.62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 28px 66px rgba(0,0,0,.56);
  backdrop-filter: blur(8px);
  padding: clamp(24px, 4vw, 42px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--white-quartz-platinum);
  font-family: var(--font-title);
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 6vw, 5.45rem);
  font-weight: 600;
  line-height: .98;
  letter-spacing: .015em;
  color: var(--white);
  text-shadow: 0 1px 0 rgba(255,255,255,.16), 0 3px 0 rgba(0,0,0,.52), 0 14px 30px rgba(0,0,0,.86);
}

.hero-copy, .page-intro p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(245,245,242,.94);
  font-size: clamp(.98rem, 1.8vw, 1.08rem);
  line-height: 1.72;
}

/* ── CTA BUTTONS ─────────────────────────────────────────── */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta-row-secondary {
  margin-top: 12px;
  gap: 10px;
}

.cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid rgba(188,187,188,.35);
  border-radius: 999px;
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms, border-color 180ms, color 180ms;
}

.cta-primary {
  background: linear-gradient(145deg, var(--white-quartz-platinum), #fff 42%, #8d8c8e);
  color: #080808;
}

.cta-primary:hover {
  filter: brightness(1.06);
}

.cta-secondary {
  min-height: 40px;
  padding: 0 18px;
  background: linear-gradient(145deg, rgba(42,75,177,.32), rgba(16,36,95,.30));
  color: var(--white);
  font-size: .78rem;
  letter-spacing: .1em;
  border-color: rgba(126,154,228,.55);
}

.cta-secondary:hover {
  background: linear-gradient(145deg, rgba(42,75,177,.55), rgba(16,36,95,.5));
  border-color: rgba(158,182,244,.85);
  color: var(--white);
}

/* Branded CONTRIBUTE action — burnt-ember pill (matches the logo intro) */
.cta-contribute {
  background: linear-gradient(145deg, #b94818 0%, #cc6600 50%, #dca621 100%);
  color: #0c0603;
  border-color: rgba(220,166,33,.65);
  box-shadow: 0 10px 30px rgba(204,102,0,.32), inset 0 1px 0 rgba(255,255,255,.28);
  text-shadow: 0 1px 0 rgba(255,255,255,.2);
}
.cta-contribute:hover { filter: brightness(1.08); }

/* ── SUB-PAGES ───────────────────────────────────────────── */
.sub-page {
  min-height: 100vh;
  padding: 104px clamp(18px, 5vw, 72px) 0;
}

.page-intro {
  width: min(980px, 100%);
  margin: 0 auto 28px;
}

/* ── VIDEO WALL (HOME) ───────────────────────────────────── */
.home-video-band {
  padding: clamp(38px, 6vw, 76px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 70% 20%, rgba(42,75,177,.11), transparent 32%),
    linear-gradient(135deg, #070707, #151515 52%, #050505);
}

.home-video-band-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.home-video-heading { margin: 0 0 22px; }

.home-video-heading h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
}

.home-main-video-wall {
  width: 100%;
  min-height: clamp(260px, 43vw, 520px);
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: clamp(10px, 1.6vw, 16px);
}

.home-wall-video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(188,187,188,.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(42,75,177,.19), transparent 48%),
    linear-gradient(145deg, rgba(35,35,38,.92), rgba(0,0,0,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 44px rgba(0,0,0,.42);
}

/* ── BRIAN JOURNAL SECTION ───────────────────────────────── */
.home-story-band {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(56px, 8vw, 104px);
  background:
    radial-gradient(circle at 16% 18%, rgba(188,187,188,.08), transparent 28%),
    linear-gradient(135deg, #131313, #242425 46%, #111);
}

.home-story-band-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, .72fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: start;
}

.journal-story-shell {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(188,187,188,.18);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(18,18,18,.86), rgba(10,10,10,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 26px 56px rgba(0,0,0,.42);
}

.journal-story-title-wrap h2 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.journal-story-subhead {
  margin: 12px 0 0;
  max-width: 780px;
  color: rgba(245,245,242,.92);
  font-size: 1rem;
  line-height: 1.68;
}

.journal-story-quote {
  margin: 24px 0 22px;
  padding: 18px 22px;
  border-left: 3px solid rgba(188,187,188,.48);
  border-radius: 14px;
  color: rgba(245,245,242,.94);
  background: rgba(255,255,255,.03);
  font-family: var(--font-title);
  font-size: clamp(1.04rem, 1.8vw, 1.32rem);
  line-height: 1.55;
}

/* Journal stage & page-flip */
.journal-stage {
  position: relative;
  min-height: 650px;
}

.journal-book {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  transform: perspective(1600px) rotateY(0deg) translateX(0) scale(.99);
  transition: opacity .55s ease, visibility .55s ease, transform .85s cubic-bezier(.22,.61,.36,1);
}

.journal-book.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transform: perspective(1600px) rotateY(0deg) translateX(0) scale(1);
}

.journal-book.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 3;
  transform: perspective(1600px) rotateY(-8deg) translateX(-28px) scale(.985);
}

.journal-book.is-entering {
  opacity: 1;
  visibility: visible;
  z-index: 4;
  animation: pageSettle .72s cubic-bezier(.22,.61,.36,1);
}

@keyframes pageSettle {
  0%   { transform: perspective(1600px) rotateY(4deg) translateX(18px) scale(.995); }
  45%  { transform: perspective(1600px) rotateY(-1.5deg) translateX(-8px) scale(1); }
  100% { transform: perspective(1600px) rotateY(0deg) translateX(0) scale(1); }
}

.journal-page {
  min-height: 650px;
  padding: 34px 38px 30px;
  background-image: url("brian-journal-notebook.jpg");
  background-size: 200% 100%;
  background-repeat: no-repeat;
  background-position: left center;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.26);
}

.journal-right {
  background-position: right center;
  border-radius: 0 16px 16px 0;
}

.journal-page-inner {
  height: 100%;
  padding: 26px 14px 24px 18px;
  color: #352f2c;
  font-size: .99rem;
  line-height: 1.88;
  overflow: hidden;
}

.journal-page-inner p { margin: 0 0 16px; }

.journal-final-line {
  margin-top: 18px;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 700;
}

/* Journal footer & nav */
.journal-story-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.journal-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.journal-nav-btn {
  padding: 6px 16px;
  border: 1px solid rgba(188,187,188,.3);
  border-radius: 999px;
  background: transparent;
  color: rgba(188,187,188,.78);
  cursor: pointer;
  font-family: var(--font-title);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color 180ms, color 180ms;
}

.journal-nav-btn:hover:not(:disabled) {
  border-color: rgba(188,187,188,.6);
  color: var(--white);
}

.journal-nav-btn:disabled { opacity: .3; cursor: not-allowed; }

#journalProgress {
  color: rgba(188,187,188,.78);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journal-foot-note {
  color: rgba(188,187,188,.48);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Story media aside */
.story-media-shell {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 102px;
}

.story-promo-video-card,
.story-pitch-card {
  overflow: hidden;
  border: 1px solid rgba(188,187,188,.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(42,75,177,.15), transparent 48%),
    linear-gradient(145deg, rgba(28,28,30,.96), rgba(0,0,0,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 40px rgba(0,0,0,.36);
}

.story-promo-video-card { margin: 0; aspect-ratio: 4 / 5; }

.story-promo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.02), rgba(0,0,0,.28)),
    url("brian-promo-poster.jpg");
  background-size: cover;
  background-position: center;
}

.story-pitch-card { padding: 22px 22px 24px; }

.story-pitch-placeholder {
  margin: 10px 0 0;
  color: rgba(245,245,242,.92);
  line-height: 1.72;
}

/* ── BRIAN STORY TEASER (home page) ─────────────────────── */
.home-story-teaser-band {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(ellipse at 60% 50%, rgba(42,75,177,.09), transparent 55%),
    linear-gradient(135deg, #111112, #1c1c1e 50%, #111);
}

.home-story-teaser-inner {
  width: min(780px, 100%);
  margin: 0 auto;
  text-align: center;
}

.story-teaser-card {
  padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 56px);
  border: 1px solid rgba(188,187,188,.16);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(18,18,20,.88), rgba(10,10,12,.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 30px 64px rgba(0,0,0,.52);
}

.story-teaser-name {
  margin: 10px 0 24px;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .02em;
}

.story-teaser-quote {
  margin: 0 auto 28px;
  max-width: 560px;
  padding: 22px 26px;
  border-left: 3px solid rgba(42,75,177,.55);
  border-radius: 0 12px 12px 0;
  background: rgba(42,75,177,.07);
  font-family: var(--font-title);
  font-size: clamp(.9rem, 1.8vw, 1.08rem);
  font-style: italic;
  letter-spacing: .02em;
  color: rgba(244,244,246,.95);
  line-height: 1.6;
  text-align: left;
}

.story-teaser-copy {
  margin: 0 auto 36px;
  max-width: 520px;
  color: rgba(232,233,236,.9);
  font-size: 1rem;
  line-height: 1.74;
}

.story-teaser-cta {
  /* inherit .cta inline-flex + justify-content:center so the label sits dead-center in the pill */
  text-align: center;
  min-width: clamp(220px, 28vw, 280px);
}

/* ── MERCHANDISE PAGE ────────────────────────────────────── */
.merch-feature-wall {
  width: min(1180px, 100%);
  height: 420px;
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 14px;
}

.merch-feature-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(188,187,188,.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(42,75,177,.22), transparent 48%),
    linear-gradient(145deg, rgba(32,32,34,.92), rgba(0,0,0,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 20px 44px rgba(0,0,0,.46);
}

.merch-wall {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.merch-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(188,187,188,.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at center, rgba(42,75,177,.22), transparent 48%),
    linear-gradient(145deg, rgba(32,32,34,.92), rgba(0,0,0,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 20px 44px rgba(0,0,0,.46);
}

.merch-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  display: block;
}

.merch-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(188,187,188,.24);
  border-radius: 999px;
  background: rgba(0,0,0,.68);
  font-family: var(--font-title);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.merch-card.missing-image::before {
  content: "Coming Soon";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(245,245,242,.36);
  font-family: var(--font-title);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.merch-card.missing-image img { opacity: 0; }

/* ── CALENDAR PAGE ───────────────────────────────────────── */
.calendar-page { display: grid; place-items: start center; }

.calendar-stage { width: 100%; display: grid; place-items: center; }

.calendar-frame {
  width: min(820px, 100%);
  border: 2px solid rgba(0,0,0,.9);
  border-radius: 6px;
  background: linear-gradient(180deg, #4b4b4f 0%, #2d2e31 8%, #0b0b0c 14%, #000 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 24px 56px rgba(0,0,0,.66);
  padding: 14px;
}

.calendar-media {
  position: relative;
  height: 185px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.95);
  background: #111;
}

.video-wall {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2px;
  background: #070707;
}

.wall-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background:
    linear-gradient(135deg, rgba(42,75,177,.12), rgba(0,0,0,.18)),
    linear-gradient(180deg, #9aa2ad 0%, #566171 46%, #1c2330 100%);
}

.live-overlay {
  position: absolute;
  left: 16px;
  bottom: 12px;
  z-index: 4;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.84);
}

.live-time { font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1; font-weight: 400; }
.live-date { margin-top: 5px; font-size: clamp(.82rem, 1.6vw, 1.02rem); }
.live-zone { margin-top: 3px; color: rgba(245,245,242,.84); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.calendar-toolbar {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  min-height: 54px;
  padding: 0 6px;
  background: #000;
}

.calendar-nav {
  width: 34px;
  height: 34px;
  justify-self: center;
  border: 1px solid rgba(188,187,188,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  cursor: pointer;
  background: rgba(255,255,255,.03);
  font-size: 1.55rem;
  line-height: 1;
}

.calendar-month {
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(1rem, 1.75vw, 1.35rem);
  letter-spacing: .06em;
  color: #fff;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  background: #000;
}

.calendar-weekdays { padding: 6px 0 4px; }

.calendar-weekdays span {
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(1rem, 2vw, 1.65rem);
  color: rgba(245,245,242,.94);
  font-weight: 400;
}

.calendar-grid { border-top: 1px solid rgba(255,255,255,.04); }

.calendar-day {
  min-height: 112px;
  padding: 7px 7px 6px;
  border-right: 1px solid rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.04);
  background: #000;
}

.calendar-day:nth-child(7n) { border-right: 0; }

.day-top { display: flex; align-items: flex-start; min-height: 36px; }

.day-number { font-size: clamp(1.55rem, 3vw, 2.35rem); color: rgba(245,245,242,.92); font-weight: 300; line-height: 1; }

.calendar-day.muted .day-number { color: rgba(245,245,242,.26); }

.today-ring {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #d00f00;
}

.today-ring .day-number { color: #fff; font-size: 1.75rem; }

.day-events { display: grid; gap: 4px; }

.event-chip {
  display: block;
  max-width: 100%;
  padding: 2px 6px 3px;
  border-radius: 2px;
  color: #fff;
  font-size: .62rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag-blue     { background: #287fe7; }
.tag-red      { background: #ea4941; }
.tag-platinum { color: #111; background: #d7d7d7; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  padding: clamp(42px, 7vw, 76px) clamp(18px, 5vw, 72px) clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(188,187,188,.1);
  margin-top: clamp(42px, 6vw, 72px);
}

.site-footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  opacity: .86;
}

.footer-tagline {
  margin: 0;
  color: var(--white-quartz-platinum);
  font-family: var(--font-title);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-self: center;
}

.footer-links a {
  color: rgba(188,187,188,.65);
  font-family: var(--font-title);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color 180ms;
}

.footer-links a:hover { color: var(--white); }

.footer-ecosystem {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-self: center;
  text-align: right;
}

.footer-eco-label {
  margin: 0;
  color: rgba(188,187,188,.42);
  font-size: .72rem;
  letter-spacing: .06em;
}

.footer-eco-link {
  color: rgba(188,187,188,.72);
  font-family: var(--font-title);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color 180ms;
}

.footer-eco-link:hover { color: var(--white); }

.footer-copy {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: rgba(188,187,188,.28);
  font-size: .7rem;
  letter-spacing: .06em;
  text-align: center;
}

/* ── INQUIRY MODAL ───────────────────────────────────────── */
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.inquiry-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.inquiry-modal-inner {
  position: relative;
  width: min(540px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(188,187,188,.22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(10,10,16,.98), rgba(4,4,8,.99));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 32px 72px rgba(0,0,0,.82);
  backdrop-filter: blur(24px);
  transform: translateY(16px);
  transition: transform 260ms cubic-bezier(.22,.61,.36,1);
}

.inquiry-modal.open .inquiry-modal-inner { transform: translateY(0); }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0,0,0,.76);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
  backdrop-filter: blur(3px);
}

.modal-backdrop.open { opacity: 1; visibility: visible; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(188,187,188,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: rgba(188,187,188,.72);
  cursor: pointer;
  font-size: .9rem;
  display: grid;
  place-items: center;
  transition: background 160ms, color 160ms;
}

.modal-close:hover { background: rgba(255,255,255,.1); color: var(--white); }

.modal-title {
  margin: 6px 0 22px;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--white-quartz-platinum);
  font-family: var(--font-title);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(188,187,188,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .96rem;
  line-height: 1.6;
  outline: none;
  transition: border-color 180ms, background 180ms;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(188,187,188,.35); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(42,75,177,.7);
  background: rgba(42,75,177,.06);
}

.form-submit { width: 100%; margin-top: 4px; cursor: pointer; }

.form-success,
.form-error {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  text-align: center;
  line-height: 1.6;
}

.form-success {
  border: 1px solid rgba(42,177,86,.28);
  background: rgba(42,177,86,.07);
  color: rgba(190,245,205,.9);
}

.form-error {
  border: 1px solid rgba(177,42,42,.28);
  background: rgba(177,42,42,.07);
  color: rgba(245,190,190,.9);
}

.form-error a { color: rgba(200,200,200,.9); }

body.modal-open { overflow: hidden; }

/* ── DONATION MODAL ──────────────────────────────────────── */
.donation-modal {
  position: fixed;
  inset: 0;
  z-index: 205;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.donation-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.donation-modal-inner {
  position: relative;
  width: min(640px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(188,187,188,.22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(10,10,18,.98), rgba(4,4,10,.99));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 32px 80px rgba(0,0,0,.88);
  backdrop-filter: blur(24px);
  transform: translateY(18px);
  transition: transform 280ms cubic-bezier(.22,.61,.36,1);
}

.donation-modal.open .donation-modal-inner { transform: translateY(0); }

.donation-subtitle {
  margin: 6px 0 28px;
  color: rgba(230,231,234,.9);
  font-size: .96rem;
  line-height: 1.6;
}

/* ── tier grid ── */
.donation-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.donation-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 20px 10px 16px;
  border: 1px solid rgba(188,187,188,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  color: var(--white);
  cursor: pointer;
  text-align: center;
  transition: border-color 170ms, background 170ms, transform 130ms, box-shadow 170ms;
}

.donation-tier:hover {
  border-color: rgba(42,75,177,.5);
  background: rgba(42,75,177,.07);
  transform: translateY(-2px);
}

.donation-tier.is-selected {
  border-color: rgba(42,75,177,.9);
  background: linear-gradient(145deg, rgba(42,75,177,.2), rgba(16,36,95,.16));
  box-shadow: 0 0 0 1px rgba(42,75,177,.45), 0 8px 28px rgba(42,75,177,.16);
}

.tier-amount {
  font-family: var(--font-title);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}

.tier-label {
  font-size: .76rem;
  letter-spacing: .03em;
  color: rgba(228,229,232,.92);
  line-height: 1.35;
}

.tier-perk {
  margin-top: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(42,75,177,.16);
  border: 1px solid rgba(42,75,177,.28);
  font-size: .67rem;
  letter-spacing: .05em;
  color: rgba(200,212,255,.84);
}

.tier-custom .tier-amount {
  font-size: 1.55rem;
  color: rgba(188,187,188,.6);
}

/* ── perks callout ── */
.donation-perks-callout {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(42,75,177,.22);
  background: rgba(42,75,177,.06);
  margin-bottom: 14px;
}

.donation-perks-callout p {
  margin: 0;
  font-size: .87rem;
  color: rgba(200,212,255,.86);
  line-height: 1.65;
}

.donation-min {
  margin: 0 0 24px;
  font-size: .77rem;
  color: rgba(188,187,188,.42);
  text-align: center;
  letter-spacing: .02em;
}

.donation-go-btn {
  width: 100%;
  cursor: pointer;
  font-size: 1.05rem;
  letter-spacing: .08em;
}

@media (max-width: 500px) {
  .donation-tiers { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-shell::before {
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.52)),
      linear-gradient(to right, rgba(0,0,0,.48), rgba(0,0,0,.22), rgba(0,0,0,.42)),
      url("APUSA_Hero_Table.jpg");
  }
  .hero-shell::after {
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,.01), rgba(0,0,0,.10)),
      linear-gradient(to right, rgba(0,0,0,.12), rgba(0,0,0,.03), rgba(0,0,0,.10)),
      url("APUSA_HERO_TABLET_COLOR.jpg");
  }

  .home-main-video-wall { grid-template-columns: 1fr; min-height: 360px; }
  .home-wall-video:nth-child(n+2) { display: none; }

  .home-story-band-inner { grid-template-columns: 1fr; }
  .story-media-shell { position: relative; top: auto; grid-template-columns: 1fr 1fr; }
  .story-promo-video-card { aspect-ratio: 16 / 10; }

  .journal-stage { min-height: 880px; }
  .journal-book { grid-template-columns: 1fr; gap: 14px; }
  .journal-page { min-height: 430px; background-size: cover; background-position: center; border-radius: 18px; }
  .journal-right { border-radius: 18px; }
  .journal-page-inner { padding: 24px 18px 20px 20px; line-height: 1.8; }

  .merch-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .merch-feature-wall { height: 360px; grid-template-columns: 1fr; }
  .merch-feature-wall .merch-feature-video:nth-child(n+2) { display: none; }

  .calendar-frame { width: min(760px, 100%); }
  .calendar-media { height: 165px; }
  .calendar-day { min-height: 96px; }

  .site-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-links { justify-content: center; }
  .footer-ecosystem { text-align: center; }
}

@media (max-width: 620px) {
  .site-header { min-height: 68px; padding: 14px; }
  .brand-label { display: none; }
  .brand-mark { padding: 0 10px 0 4px; }
  .menu-label { display: none; }
  .menu-toggle { padding: 0 14px; }

  .hero-shell {
    padding: 95px 16px 32px;
    align-items: center;
  }
  .hero-shell::before {
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.52)),
      linear-gradient(to right, rgba(0,0,0,.48), rgba(0,0,0,.22), rgba(0,0,0,.42)),
      url("APUSA_Hero_Mobile.jpg");
  }
  .hero-shell::after {
    background-image:
      linear-gradient(to bottom, rgba(0,0,0,.01), rgba(0,0,0,.10)),
      linear-gradient(to right, rgba(0,0,0,.12), rgba(0,0,0,.03), rgba(0,0,0,.10)),
      url("APUSA_HERO_MOBILE_COLOR.jpg");
  }

  .hero-panel, .page-intro { border-radius: 22px; }
  .cta-row { display: grid; }
  .cta { width: 100%; }
  .cta-row-secondary { display: grid; gap: 8px; }

  .sub-page { padding-top: 88px; }

  .home-video-band { padding: 34px 16px 44px; }
  .home-main-video-wall { min-height: 290px; }
  .home-wall-video { min-height: 290px; border-radius: 20px; }

  .home-story-band { padding: 26px 16px 58px; }
  .journal-story-shell { padding: 18px; border-radius: 24px; }
  .journal-story-quote { padding: 14px 16px; }
  .journal-stage { min-height: 780px; }
  .journal-page { min-height: 380px; padding: 20px 18px 18px; }
  .journal-page-inner { padding: 16px 10px 10px 12px; font-size: .84rem; line-height: 1.7; }
  .journal-story-foot { flex-direction: column; align-items: flex-start; }
  .story-media-shell { grid-template-columns: 1fr; }

  .merch-wall { grid-template-columns: 1fr; }
  .merch-feature-wall { height: 280px; margin-bottom: 32px; }

  .calendar-frame { padding: 10px; }
  .calendar-media { height: 135px; }
  .video-wall { grid-template-columns: 1fr; }
  .video-wall .wall-video:nth-child(n+2) { display: none; }
  .live-overlay { left: 12px; bottom: 10px; }
  .calendar-toolbar { grid-template-columns: 40px 1fr 40px; min-height: 46px; padding: 0 2px; }
  .calendar-nav { width: 30px; height: 30px; font-size: 1.35rem; }
  .calendar-weekdays span { font-size: .9rem; }
  .calendar-day { min-height: 58px; padding: 5px; }
  .day-top { min-height: 22px; }
  .day-number { font-size: 1.15rem; }
  .today-ring { width: 28px; height: 28px; }
  .today-ring .day-number { font-size: 1rem; }
  .event-chip { padding: 1px 3px 2px; font-size: .46rem; }
}

@media (max-width: 1100px) {
  .home-story-band-inner { grid-template-columns: 1fr; }
  .story-media-shell { position: relative; top: auto; grid-template-columns: 1fr 1fr; }
  .story-promo-video-card { aspect-ratio: 16 / 10; }
}

/* ════════════════════════════════════════════════════════
   SPONSOR PLACEMENTS (live) — ported from the approved sponsor preview.
   Ember/gold accents (#c9a960 / #e3c87d) match the Living Journal &
   Calendar sponsor lines. Slot data via apusa-journal /sponsors (KV-cached).
   ════════════════════════════════════════════════════════ */

/* Site / APUSA sponsor credit — footer of every page → links to sponsor.html */
.site-sponsor-credit {
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(201,169,96,.22);
  text-align: center;
  font-family: var(--font-title);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(201,169,96,.85);
  line-height: 1.6;
}
.site-sponsor-credit .ss-name { color: rgba(240,231,218,.94); }
.site-sponsor-credit a {
  color: #c9a960;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,96,.45);
}
.site-sponsor-credit a:hover { color: #e3c87d; }

/* Live Stream / Podcast — banner / lower-third beneath the video wall */
.stream-sponsor-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px auto 0;
  padding: 12px 20px;
  max-width: 900px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(20,16,8,.9), rgba(8,8,10,.92));
  border: 1px solid rgba(201,169,96,.4);
  font-family: var(--font-title);
  color: #f0e7da;
  font-size: .82rem;
  letter-spacing: .06em;
  text-align: center;
}
.stream-sponsor-banner .ss-name { color: #e3c87d; }
.stream-sponsor-banner a {
  color: #e3c87d;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,96,.45);
}

/* Highlight Sponsor — tag pinned to the main video wall (over the lead card) */
.home-main-video-wall { position: relative; }
.highlight-sponsor-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 6;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(20,16,8,.92), rgba(8,8,10,.92));
  border: 1px solid rgba(201,169,96,.5);
  font-family: var(--font-title);
  font-size: .68rem;
  letter-spacing: .05em;
  color: #f0e7da;
  box-shadow: 0 10px 26px rgba(0,0,0,.5);
}
.highlight-sponsor-tag .ss-name { color: #e3c87d; }
.highlight-sponsor-tag a {
  color: #e3c87d;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,96,.4);
}

/* ════════════════════════════════════════════════════════════
   ECO-Ai MONITOR-WALL TREATMENT  (added 2026-06-02c)
   Bezeled monitor tiles + dark gold-hairline frame + AFM-style
   "TAP FOR SOUND" gold pill — replicates the ECO-Ai #systems video
   wall on ronniedicicco.com. Applied to: home Main Video Wall,
   calendar-top wall, merch feature wall, and (SINGLE tile) Brian.
   Themed to APUSA's existing sponsor-gold accent (#c9a960 / #e3c87d).
   ADD-ONLY: no pre-existing selector is modified.
   ════════════════════════════════════════════════════════════ */
.eco-frame {
  position: relative;
  background: #040404;
  border: 1px solid rgba(201,169,96,.30);
  border-radius: 14px;
  padding: 7px;
  gap: 7px;
  box-shadow: 0 26px 64px rgba(0,0,0,.55), inset 0 0 0 1px rgba(201,169,96,.07);
  overflow: hidden;
}
/* keep one full-height row so absolutely-painted tiles fill the frame */
.home-main-video-wall.eco-frame,
.merch-feature-wall.eco-frame,
.video-wall.eco-frame { grid-template-rows: 1fr; }
/* home wall needs a definite height for the 1fr row to resolve
   (calendar/merch walls already have a definite height) */
.home-main-video-wall.eco-frame { height: clamp(260px, 43vw, 520px); }
/* Brian = a SINGLE bezeled monitor (not the multi-tile wall) */
.brian-wall.eco-frame {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: min(760px, 100%);
  min-height: 0;
  aspect-ratio: 16 / 9;
}

/* Each bezeled monitor tile */
.eco-tile {
  position: relative;
  background: #000;
  border: 1px solid rgba(201,169,96,.18);
  border-radius: 4px;
  overflow: hidden;
  min-height: 0;
  min-width: 0;
}
.eco-tile > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
  border-radius: 0;
}
/* Canvas-master walls (home/calendar/merch): each tile is a <canvas> painted
   from ONE hidden master <video>, synced — exactly like the ECO-Ai #systems wall. */
.eco-tile > canvas { display: block; width: 100%; height: 100%; }
.eco-wall-src {
  position: absolute;
  left: -9999px;
  width: 2px;
  height: 2px;
  opacity: 0;
  pointer-events: none;
}
/* glossy screen highlight, exactly like the ECO-Ai tiles */
.eco-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(155deg, rgba(255,255,255,.055), transparent 40%);
}

/* AFM-style gold "TAP FOR SOUND" pill, bottom-right of the wall */
.eco-audio-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 7;
  background: rgba(5,5,5,.9);
  border: 1px solid #c9a960;
  color: #e3c87d;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.eco-audio-btn:hover {
  background: rgba(201,169,96,.12);
  box-shadow: 0 0 15px rgba(201,169,96,.22);
}
@media (max-width: 600px) {
  .eco-frame { gap: 4px; padding: 4px; border-radius: 10px; }
  .eco-audio-btn { bottom: 10px; right: 10px; font-size: .62rem; padding: 7px 11px; letter-spacing: 1.5px; }
}
/* Mobile: the site collapses these walls to a single column at <=900px.
   Match the original behaviour — show ONE monitor tile (the lead) so the
   single 1fr row always has exactly one tile to fill. */
@media (max-width: 900px) {
  .home-main-video-wall.eco-frame,
  .merch-feature-wall.eco-frame,
  .video-wall.eco-frame { grid-template-columns: 1fr; }
  .home-main-video-wall.eco-frame .eco-tile:nth-child(n+2),
  .merch-feature-wall.eco-frame .eco-tile:nth-child(n+2),
  .video-wall.eco-frame .eco-tile:nth-child(n+2) { display: none; }
}
