/* ============================================================
   CrispBeacon Hub — Educational product guide
   Brand v2 only. Scoped to .hub-* and ancillary classes so the
   existing storefront sign styles remain untouched.
   ============================================================ */

:root {
  --hub-cream:    #FAF7F2;
  --hub-cream-2:  #F4F0E8;
  --hub-paper:    #FFFFFF;
  --hub-navy:     #0A1226;
  --hub-navy-2:   #11192E;
  --hub-night:    #050912;
  --hub-signal:   #E81820;
  --hub-signal-2: #B41218;
  --hub-ink:      #1A1F2E;
  --hub-ink-mute: #5C6273;
  --hub-border:   #E5DFD3;
  --hub-border-2: #D9D2C3;
}

/* ============================ LEFT HEADER BAR ============================
   CrispSign brand lockup on the left, three-line menu next to it.
   Sits fixed over the dark hero — Brand V2 colors only. Overrides the
   legacy .floating-menu-btn left-fixed button used elsewhere by routing
   through scoped beacon-header classes. */

.beacon-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
  padding: clamp(14px, 2vw, 22px) clamp(16px, 2.2vw, 28px);
  pointer-events: none;
}

.beacon-header > * {
  pointer-events: auto;
}

.beacon-header-account {
  margin-left: auto;
}

.beacon-header-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  filter:
    drop-shadow(0 2px 14px rgba(5, 9, 18, 0.55))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.6));
  transition: opacity 200ms ease;
  border-radius: 6px;
}

.beacon-header-brand:hover { opacity: 0.85; }

.beacon-header-brand:focus-visible {
  outline: 2px solid var(--hub-signal);
  outline-offset: 4px;
}

.beacon-header-logo {
  display: block;
  height: auto;
  width: clamp(180px, 18vw, 260px);
}

.beacon-header-menu {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(5, 9, 18, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, border-color 200ms ease;
}

.beacon-header-menu:hover {
  background: rgba(5, 9, 18, 0.78);
  border-color: rgba(255, 255, 255, 0.32);
}

.beacon-header-menu:focus-visible {
  outline: 2px solid var(--hub-signal);
  outline-offset: 3px;
}

.beacon-header-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--hub-cream);
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.beacon-header-menu[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.beacon-header-menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.beacon-header-menu[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 600px) {
  .beacon-header {
    padding: 12px 14px;
    gap: 10px;
  }
  .beacon-header-logo {
    width: 150px;
  }
  .beacon-header-menu {
    width: 44px;
    height: 44px;
  }
}

/* ============================ FULL-BLEED HERO ============================ */

.hub-hero-bleed {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--hub-night);
  color: var(--hub-cream);
  min-height: clamp(540px, 78vh, 760px);
  display: flex;
  align-items: center;
  padding: clamp(120px, 14vw, 168px) 0 clamp(56px, 8vw, 96px);
}

.hub-hero-bleed-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hub-hero-bleed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}

.hub-hero-bleed-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      100deg,
      rgba(5, 9, 18, 0.86) 0%,
      rgba(5, 9, 18, 0.66) 38%,
      rgba(5, 9, 18, 0.34) 62%,
      rgba(5, 9, 18, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 9, 18, 0.45) 0%,
      rgba(5, 9, 18, 0.10) 38%,
      rgba(5, 9, 18, 0.55) 100%
    );
}

.hub-hero-bleed-inner {
  position: relative;
  width: 100%;
}

.hub-hero-bleed-copy {
  max-width: 38rem;
  color: var(--hub-cream);
  text-shadow: 0 2px 22px rgba(5, 9, 18, 0.4);
}

.hub-hero-eyebrow {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.86);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hub-hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--hub-signal);
}

.hub-hero-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.4vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--hub-cream);
  margin: 0 0 18px;
}

.hub-hero-title .brand { color: var(--hub-signal); }

.hub-hero-tagline {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.3;
  color: rgba(250, 247, 242, 0.92);
  margin: 0 0 16px;
  max-width: 36ch;
}

.hub-hero-sub {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.88);
  margin: 0 0 28px;
  max-width: 56ch;
}

.hub-hero-sub .brand { color: var(--hub-signal); font-weight: 600; }

.hub-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-ghost--onmedia {
  background: rgba(250, 247, 242, 0.08);
  color: var(--hub-cream);
  border-color: rgba(250, 247, 242, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-ghost--onmedia:hover {
  background: var(--hub-cream);
  color: var(--hub-navy);
  border-color: var(--hub-cream);
}

/* Logo mark over the media — use a softer combined shadow so the navy
   lockup reads cleanly on the storefront imagery without a harsh halo. */
.hero-mark--onmedia {
  filter:
    drop-shadow(0 2px 14px rgba(5, 9, 18, 0.55))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.6));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .hub-hero-bleed {
    min-height: 0;
    padding: clamp(104px, 22vw, 140px) 0 clamp(40px, 8vw, 64px);
  }
  .hub-hero-bleed-img {
    object-position: center 42%;
  }
  .hub-hero-bleed-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(5, 9, 18, 0.55) 0%,
        rgba(5, 9, 18, 0.4) 35%,
        rgba(5, 9, 18, 0.78) 100%
      );
  }
  .hub-hero-bleed-copy { max-width: 100%; }
  .hub-hero-actions .btn { flex: 1 1 auto; text-align: center; }
}

/* ============================ STICKY NAV ============================ */

.hub-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hub-border);
}

.hub-nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(8px, 1.6vw, 22px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 12px 4px;
  width: 100%;
  justify-content: center;
}

.hub-nav-list::-webkit-scrollbar { display: none; }

.hub-nav-link {
  display: inline-block;
  padding: 8px 14px;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--hub-ink-mute);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hub-nav-link:hover {
  color: var(--hub-navy);
  background: var(--hub-cream-2);
}

.hub-nav-link.is-active {
  color: var(--hub-paper);
  background: var(--hub-navy);
  border-color: var(--hub-navy);
}

.hub-nav-link:focus-visible {
  outline: 2px solid var(--hub-signal);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .hub-nav-list {
    justify-content: flex-start;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ============================ SECTION CHROME ============================ */

.hub-section {
  padding: clamp(56px, 8vw, 120px) 0;
  background: var(--hub-cream);
  color: var(--hub-navy);
}

.hub-section + .hub-section { border-top: 1px solid var(--hub-border); }

.hub-section--dark {
  background: var(--hub-navy);
  color: var(--hub-cream);
}

.hub-section--dark .hub-h2 { color: var(--hub-cream); }
.hub-section--dark .hub-lede { color: rgba(250, 247, 242, 0.86); }

.hub-h2 {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--hub-navy);
}

.hub-h2 .brand { color: var(--hub-signal); }

.hub-section-head {
  max-width: 64ch;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
}

.hub-section-lede {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: var(--hub-ink-mute);
  margin: 0;
}

.hub-section--dark .hub-section-lede { color: rgba(250, 247, 242, 0.78); }

.section-eyebrow--light {
  color: var(--hub-signal);
}

.hub-fine {
  text-align: center;
  font-size: 13px;
  color: var(--hub-ink-mute);
  margin: 24px auto 0;
  max-width: 56ch;
}

/* ============================ EDU GRID (BeaconLetters / Carved) ============================ */

.hub-edu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

@media (min-width: 900px) {
  .hub-edu-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.hub-edu-copy .section-eyebrow { margin-bottom: 12px; }

.hub-lede {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  margin: 0 0 24px;
  color: var(--hub-ink);
}

.hub-section--dark .hub-lede { color: rgba(250, 247, 242, 0.9); }

.hub-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.hub-bullets li {
  padding-left: 22px;
  position: relative;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--hub-ink);
}

.hub-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 2px;
  background: var(--hub-signal);
}

.hub-bullets li strong { color: var(--hub-navy); }

.hub-bullets--light li { color: rgba(250, 247, 242, 0.9); }
.hub-bullets--light li strong { color: var(--hub-cream); }

.hub-edu-card {
  background: var(--hub-paper);
  border: 1px solid var(--hub-border);
  border-radius: 16px;
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow: 0 1px 0 rgba(10, 18, 38, 0.04), 0 18px 40px -28px rgba(10, 18, 38, 0.25);
  position: sticky;
  top: 88px;
}

.hub-edu-card--dark {
  background: var(--hub-navy-2);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--hub-cream);
}

.hub-edu-card-eyebrow {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-ink-mute);
  margin: 0 0 14px;
}

.hub-edu-card--dark .hub-edu-card-eyebrow { color: rgba(250, 247, 242, 0.6); }

.hub-edu-dl {
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}

.hub-edu-dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--hub-border);
}

.hub-edu-card--dark .hub-edu-dl > div { border-bottom-color: rgba(255, 255, 255, 0.08); }
.hub-edu-dl > div:last-child { border-bottom: 0; padding-bottom: 0; }

.hub-edu-dl dt {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hub-ink-mute);
}

.hub-edu-dl dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--hub-navy);
}

.hub-edu-card--dark .hub-edu-dl dd { color: var(--hub-cream); }
.hub-edu-card--dark .hub-edu-dl dt { color: rgba(250, 247, 242, 0.6); }

.hub-edu-cta {
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

/* ============================ STYLE ROWS (letter styles + materials) ============================ */

.style-row,
.material-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--hub-border);
}

.style-row:first-of-type,
.material-row:first-of-type { border-top: 0; }

@media (min-width: 900px) {
  .style-row,
  .material-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    align-items: start;
  }
  .style-row--alt,
  .material-row--alt {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .style-row--alt .style-row-media,
  .material-row--alt .material-row-media {
    order: 2;
  }
}

.style-row-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-self: stretch;
}

.style-row-media-photo,
.material-row-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--hub-cream-2);
  border: 1px solid var(--hub-border);
  aspect-ratio: 4 / 3;
}

.style-row-media-photo img,
.material-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.style-row:hover .style-row-media-photo img { transform: scale(1.025); }

.material-row:hover .material-row-media img { transform: scale(1.025); }

/* ============================ Product section (BeaconLetters lit styles) ============================
   Each lit style is a <section class="style-section"> containing:
     .style-section-head  — product label, hero photo, lead description, CTA
     .style-options       — a vertical stack of .opt-card option education rows,
                            each pairing one customer-facing control with the matching approved-C image */

.style-section {
  padding: clamp(28px, 4vw, 48px) 0;
  border-top: 1px solid var(--hub-border);
}

.style-section:first-of-type { border-top: 0; }

.style-section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

@media (min-width: 900px) {
  .style-section-head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
  .style-section--alt .style-section-head {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .style-section--alt .style-section-head-media { order: 2; }
}

.style-section-head-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--hub-cream-2);
  border: 1px solid var(--hub-border);
  aspect-ratio: 4 / 3;
}

.style-section-head-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.style-section:hover .style-section-head-media img { transform: scale(1.025); }

/* Option cards — one per customer-facing control. */
.style-options {
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
  margin-top: clamp(20px, 2.4vw, 32px);
}

.opt-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
  background: var(--hub-cream-2);
  border: 1px solid var(--hub-border);
  border-radius: 16px;
  padding: clamp(14px, 1.8vw, 22px);
}

@media (min-width: 760px) {
  .opt-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  }
  .opt-card--flip { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); }
  .opt-card--flip .opt-card-media { order: -1; }
}

.opt-card-body { display: grid; gap: 8px; }

.opt-card-eyebrow {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-signal);
  margin: 0;
}

.opt-card-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--hub-navy);
  margin: 0;
  line-height: 1.25;
}

.opt-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--hub-ink);
  margin: 0;
}

.opt-card-bullets {
  font-size: 13.5px;
  line-height: 1.55;
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--hub-ink);
}

.opt-card-bullets li { margin: 2px 0; }

.opt-card-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--hub-border);
  aspect-ratio: 4 / 3;
}

.opt-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Compact swatch + chart wrappers inside option cards. */
.opt-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
}

.opt-card .style-chart-figure {
  margin: 8px 0 0;
  padding: 8px;
}

.opt-card .style-chart-figure img {
  aspect-ratio: auto;
  max-height: 220px;
  object-fit: contain;
  background: #fff;
}

.opt-card .style-chart-figure figcaption {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hub-ink-mute);
  text-align: center;
}

.opt-card-note {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--hub-ink-mute);
  margin: 6px 0 0;
}

.style-section-cta {
  margin-top: clamp(18px, 2vw, 26px);
  display: inline-flex;
}

.style-section-lead-eyebrow {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-ink-mute);
  margin: 0 0 8px;
}

.style-section-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--hub-navy);
}

.style-section-lead {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--hub-ink);
  margin: 0 0 12px;
}

.style-section-meta {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--hub-border);
}

.style-section-meta dt {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-signal);
  margin: 0;
}

.style-section-meta dd {
  font-size: 14px;
  line-height: 1.55;
  color: var(--hub-ink);
  margin: 2px 0 6px;
}

.style-row-badge,
.material-row-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 18, 38, 0.85);
  color: var(--hub-cream);
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
}


.style-chart-figure {
  margin: 4px 0 0;
  padding: 12px;
  background: var(--hub-cream-2);
  border: 1px solid var(--hub-border);
  border-radius: 12px;
  display: grid;
  gap: 8px;
}

.style-chart-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--hub-border);
}

.style-chart-figure figcaption {
  font-size: 12px;
  line-height: 1.45;
  color: var(--hub-ink-mute);
  margin: 0;
  text-align: center;
}

.style-row-body .detail-num,
.material-row-body .detail-num {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-ink-mute);
  margin: 0 0 8px;
}

.style-row-title,
.material-row-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.style-row-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--hub-ink);
  margin: 0 0 22px;
  max-width: 60ch;
}

.style-row-meta,
.material-row-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px;
  background: var(--hub-paper);
  border: 1px solid var(--hub-border);
  border-radius: 14px;
}

@media (min-width: 600px) {
  .style-row-meta,
  .material-row-meta {
    grid-template-columns: 1fr 1fr;
  }
  .style-row-meta > div:last-child,
  .material-row-meta > div:last-child {
    grid-column: 1 / -1;
  }
}

.style-meta-label {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-signal);
  margin: 0 0 6px;
}

.style-meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.style-meta-list li {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--hub-ink);
  padding-left: 16px;
  position: relative;
}

.style-meta-list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--hub-signal);
  font-weight: 700;
}

.style-row-cta,
.material-row-cta {
  display: inline-block;
}

/* ============================ COLORS GUIDE ============================ */

.hub-section--colors { background: var(--hub-cream-2); }

.color-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 800px) {
  .color-guide-grid { grid-template-columns: repeat(3, 1fr); }
}

.color-card {
  background: var(--hub-paper);
  border: 1px solid var(--hub-border);
  border-radius: 16px;
  padding: 24px;
}

.color-card-eyebrow {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-signal);
  margin: 0 0 10px;
}

.color-card-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--hub-navy);
}

.color-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--hub-ink);
  margin: 0 0 18px;
}

.color-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c, var(--hub-cream));
  border: 1px solid rgba(10, 18, 38, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.color-swatch.is-light {
  border-color: rgba(10, 18, 38, 0.22);
  box-shadow: 0 0 0 2px rgba(232, 24, 32, 0) inset;
}

/* ============================ PAINT SYSTEM ============================ */

.hub-section--paint { background: var(--hub-paper); }

.paint-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) { .paint-grid { grid-template-columns: 1fr 1fr; } }

.paint-card {
  background: var(--hub-cream);
  border: 1px solid var(--hub-border);
  border-radius: 18px;
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
}

.paint-card--premium {
  background: var(--hub-navy);
  color: var(--hub-cream);
  border-color: var(--hub-navy);
}

.paint-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.paint-card-logo {
  max-height: 38px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.04));
}

.paint-card--premium .paint-card-logo {
  background: var(--hub-cream);
  padding: 6px 10px;
  border-radius: 6px;
}

.paint-card-tag {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-ink-mute);
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10, 18, 38, 0.06);
}

.paint-card-tag--premium {
  background: var(--hub-signal);
  color: var(--hub-cream);
}

.paint-card-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px;
}

.paint-card--premium .paint-card-title { color: var(--hub-cream); }

.paint-card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 16px;
  color: var(--hub-ink);
}

.paint-card--premium p { color: rgba(250, 247, 242, 0.88); }

.paint-card-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.paint-card-list li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
  color: var(--hub-ink);
}

.paint-card--premium .paint-card-list li { color: rgba(250, 247, 242, 0.88); }

.paint-card-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--hub-signal);
}

.paint-card--premium .paint-card-list li::before { color: var(--hub-cream); }

.paint-chart {
  margin: 6px 0 0;
  background: var(--hub-cream);
  border-radius: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.paint-chart img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.paint-chart figcaption {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--hub-ink-mute);
  margin-top: 8px;
  text-align: center;
}

/* ============================ TIMELINE ============================ */

.hub-section--timeline { background: var(--hub-cream); }

.hub-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: ts;
}

@media (min-width: 700px) { .hub-timeline { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .hub-timeline { grid-template-columns: repeat(4, 1fr); } }

.hub-timeline li {
  background: var(--hub-paper);
  border: 1px solid var(--hub-border);
  border-radius: 14px;
  padding: 22px;
  position: relative;
}

.hub-timeline-num {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--hub-signal);
  display: inline-block;
  margin-bottom: 8px;
}

.hub-timeline h3 {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--hub-navy);
}

.hub-timeline p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--hub-ink);
  margin: 0;
}

/* ============================ FINAL CTA CARDS ============================ */

.hub-section--final {
  background: var(--hub-navy);
  color: var(--hub-cream);
}

.hub-section--final .hub-h2 { color: var(--hub-cream); }
.hub-section--final .hub-h2 .brand { color: var(--hub-signal); }
.hub-section--final .section-eyebrow { color: rgba(250, 247, 242, 0.65); }

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 900px) { .final-cta-grid { grid-template-columns: repeat(3, 1fr); } }

.final-cta-card {
  background: var(--hub-navy-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.final-cta-card--alt {
  background: var(--hub-signal);
  border-color: var(--hub-signal-2);
}

.final-cta-card--alt .final-cta-eyebrow { color: rgba(250, 247, 242, 0.8); }
.final-cta-card--alt p { color: rgba(250, 247, 242, 0.92); }
.final-cta-card--alt .btn-primary {
  background: var(--hub-cream);
  color: var(--hub-navy);
  border-color: var(--hub-cream);
}
.final-cta-card--alt .btn-primary:hover {
  background: var(--hub-navy);
  color: var(--hub-cream);
}

.final-cta-card--help {
  background: transparent;
  border: 1px dashed rgba(250, 247, 242, 0.24);
}

.final-cta-eyebrow {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.65);
  margin: 0;
}

.final-cta-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
  color: var(--hub-cream);
}

.final-cta-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(250, 247, 242, 0.78);
  margin: 0;
}

.final-cta-btn {
  margin-top: auto;
  align-self: flex-start;
}

.final-cta-card--help .btn-ghost {
  color: var(--hub-cream);
  border-color: rgba(250, 247, 242, 0.6);
}
.final-cta-card--help .btn-ghost:hover {
  background: var(--hub-cream);
  color: var(--hub-navy);
}

/* ============================ FOCUS / A11y ============================ */

.hub-section a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--hub-signal);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================ Color swatches (used inside .opt-card .opt-swatches) ============================ */

.style-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c, var(--hub-cream));
  border: 1px solid rgba(10, 18, 38, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}

.style-swatch.is-light {
  border-color: rgba(10, 18, 38, 0.26);
}

.style-swatch.is-brushed {
  background: linear-gradient(135deg, #d6d6d6 0%, #bdbdbd 35%, #f0f0f0 55%, #aeaeae 80%, #cfcfcf 100%);
}

.style-swatch.is-mirror {
  background: linear-gradient(135deg, #f4f6f8 0%, #c9d1d8 45%, #ffffff 60%, #a8b1b8 100%);
}

.style-swatch.is-custom {
  background: conic-gradient(#e81820, #f1b71f, #2bb673, #1b7ad9, #6a3fbd, #e81820);
}

.style-swatch.is-printed {
  background:
    linear-gradient(45deg, rgba(255,255,255,0.65) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0.65) 75%, transparent 75%),
    linear-gradient(135deg, #e81820 0%, #f1b71f 35%, #2bb673 65%, #1b7ad9 100%);
  background-size: 8px 8px, 100% 100%;
}

.style-swatch.is-daynight {
  background: linear-gradient(135deg, #0A1226 0%, #0A1226 50%, #FFF6E0 50%, #FFF6E0 100%);
}

.style-swatch.is-blockout {
  background: linear-gradient(135deg, #111 0%, #111 50%, #fff 50%, #fff 100%);
}

/* ============================ Native palette grids (full color libraries inside option cards) ============================ */

.palette {
  margin-top: 14px;
  padding: 16px;
  background: var(--hub-cream-2);
  border: 1px solid var(--hub-border);
  border-radius: 14px;
  display: grid;
  gap: 14px;
}

.palette-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}

.palette-title {
  margin: 0;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hub-signal);
  font-weight: 600;
}

.palette-sub {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--hub-ink-mute);
}

.palette-group + .palette-group {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px dashed var(--hub-border);
}

.palette-group-label {
  margin: 0 0 10px;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hub-ink-mute);
  font-weight: 500;
}

.palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.palette-grid--dense {
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
}

.palette-chip {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--hub-border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(10, 18, 38, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.palette-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(10, 18, 38, 0.08);
}

.palette-chip-swatch {
  display: block;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  background: var(--c, #ddd);
  border-bottom: 1px solid rgba(10, 18, 38, 0.08);
}

.palette-chip-swatch.is-light {
  box-shadow: inset 0 0 0 1px rgba(10, 18, 38, 0.06);
}

.palette-chip-swatch.is-brushed {
  background: repeating-linear-gradient(135deg, #d6d6d6 0px, #f0f0f0 2px, #c4c4c4 4px, #e8e8e8 6px);
}

.palette-chip-swatch.is-mirror {
  background: linear-gradient(135deg, #f4f6f8 0%, #c9d1d8 45%, #ffffff 60%, #a8b1b8 100%);
}

.palette-chip-swatch.is-metallic-silver {
  background: linear-gradient(135deg, #d0d4d7 0%, #f3f4f6 45%, #b8bcc0 70%, #e2e4e6 100%);
}

.palette-chip-swatch.is-metallic-gold {
  background: linear-gradient(135deg, #b78a2e 0%, #f1d27a 45%, #a37a1d 70%, #e4be5a 100%);
}

.palette-chip-swatch.is-graphite {
  background: linear-gradient(135deg, #2a2d31 0%, #43474c 50%, #1d1f22 100%);
}

.palette-chip-swatch.is-custom {
  background: conic-gradient(#e81820, #f1b71f, #2bb673, #1b7ad9, #6a3fbd, #e81820);
}

.palette-chip-swatch.is-blockout {
  background: linear-gradient(135deg, #111 0%, #111 50%, #fff 50%, #fff 100%);
}

.palette-chip-swatch.is-daynight {
  background: linear-gradient(135deg, #0A1226 0%, #0A1226 50%, #FFF6E0 50%, #FFF6E0 100%);
}

.palette-chip-swatch.is-printed {
  background:
    linear-gradient(45deg, rgba(255,255,255,0.55) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0.55) 75%, transparent 75%),
    linear-gradient(135deg, #e81820 0%, #f1b71f 35%, #2bb673 65%, #1b7ad9 100%);
  background-size: 10px 10px, 100% 100%;
}

.palette-chip-name {
  font-size: 12px;
  line-height: 1.3;
  color: var(--hub-ink);
  padding: 8px 10px 10px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (max-width: 700px) {
  .palette-grid {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 8px;
  }
  .palette-grid--dense {
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  }
  .palette-chip-name {
    font-size: 11.5px;
    padding: 6px 8px 8px;
  }
}

/* Hide the small embedded PDF chart figure inside option cards — the native palette grid replaces it. */
.opt-card .style-chart-figure { display: none; }

/* ============================ Smooth scroll for anchor jumps ============================ */

html { scroll-behavior: smooth; }

/* Account for sticky nav when jumping to anchors */
.hub-section,
#overview,
#letter-styles,
#colors,
#beaconcarved,
#materials,
#start,
#products,
#artwork,
#beaconletters {
  scroll-margin-top: 84px;
}


/* ============================================================
   OPTION B DESIGN SYSTEM — shared hub layout (quick-pick chooser,
   product split + side CTA rail, process strip, artwork grid).
   Adopted from the live Lobby Hub so CrispBeacon matches the family.
   ============================================================ */
/* ============================================================
   REFRESH 2026 — quick product cards, spec tiles, artwork guide
   ============================================================ */

/* Centered section heads (used on the quick-pick grid) */
.hub-section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.hub-section-lede--center { margin-left: auto; margin-right: auto; }

/* ---- Quick product cards ---- */
.hub-section--pick { background: var(--hub-cream-2); }

.pick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(18px, 2vw, 28px);
}
@media (min-width: 620px) { .pick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .pick-grid { grid-template-columns: repeat(4, 1fr); } }

/* Two-product hubs (CrispAuto): keep the chooser balanced, no orphan columns */
@media (min-width: 620px) { .pick-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-left: auto; margin-right: auto; } }
@media (min-width: 1040px) { .pick-grid--two { grid-template-columns: repeat(2, 1fr); } }

.pick-card {
  display: flex;
  flex-direction: column;
  background: var(--hub-paper);
  border: 1px solid var(--hub-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s var(--ease, ease), box-shadow 0.25s var(--ease, ease), border-color 0.25s var(--ease, ease);
}
.pick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow, 0 12px 32px rgba(10,18,38,0.1));
  border-color: var(--hub-border-2);
}

.pick-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--hub-cream-2);
}
.pick-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s var(--ease, ease); }
.pick-card:hover .pick-card-media img { transform: scale(1.04); }

.pick-card-body { display: flex; flex-direction: column; gap: 8px; padding: clamp(16px, 1.8vw, 22px); flex: 1; }
.pick-card-eyebrow {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hub-ink-mute); margin: 0;
}
.pick-card-eyebrow .brand { color: var(--hub-signal); }
.pick-card-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700; font-size: clamp(18px, 1.7vw, 21px);
  color: var(--hub-navy); margin: 0; line-height: 1.2;
}
.pick-card-desc { font-size: 14px; line-height: 1.55; color: var(--hub-ink); margin: 0; flex: 1; }
.pick-card-btn { margin-top: 6px; justify-content: center; width: 100%; }
.pick-card-learn {
  font-size: 13px; font-weight: 600; color: var(--hub-ink-mute);
  text-align: center; text-decoration: underline; text-underline-offset: 3px;
}
.pick-card-learn:hover { color: var(--hub-signal); }

/* ============================================================
   PHOTOREAL PRODUCT LAYOUTS — premium, no spec tiles
   Two-up photo features, photo showcases, fact rows, brand bar
   ============================================================ */

/* ---- Two-up photo feature pair (e.g. Halo-Lit / Trimless) ---- */
.style-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(16px, 2vw, 24px);
}
@media (min-width: 820px) { .style-split { grid-template-columns: repeat(2, 1fr); } }

.style-feature {
  display: flex;
  flex-direction: column;
  background: var(--hub-paper);
  border: 1px solid var(--hub-border);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.style-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow, 0 16px 40px rgba(10,18,38,0.12));
  border-color: var(--hub-border-2);
}
.style-feature-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--hub-cream-2);
}
.style-feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.style-feature:hover .style-feature-media img { transform: scale(1.04); }
.style-feature-body { display: grid; gap: 8px; padding: clamp(18px, 2vw, 26px); }
.style-feature-body .opt-card-bullets { margin-top: 4px; }

/* Text-only companion feature (e.g. Trimless explainer) — deliberate dark card,
   reads as an intentional callout, never an empty image slot. */
.style-feature--note {
  background:
    radial-gradient(140% 120% at 18% 0%, rgba(255,246,224,0.10), transparent 60%),
    linear-gradient(160deg, #141a2b, var(--hub-night, #0A1226));
  border-color: rgba(255,255,255,0.10);
  justify-content: center;
}
.style-feature--note .opt-card-eyebrow { color: var(--hub-signal); }
.style-feature--note .opt-card-title { color: #fff; }
.style-feature--note .opt-card-desc { color: rgba(255,255,255,0.82); }
.style-feature--note .opt-card-bullets { color: rgba(255,255,255,0.78); }
.style-feature--note .opt-card-note { color: rgba(255,255,255,0.55); }

/* ---- Photo showcase: one large photo + stacked fact blocks ---- */
.style-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: center;
  margin-top: clamp(16px, 2vw, 24px);
}
@media (min-width: 900px) {
  .style-showcase { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
  .style-showcase--reverse .style-showcase-media { order: 2; }
}
.style-showcase-media {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--hub-border);
  background: var(--hub-cream-2);
  aspect-ratio: 4 / 3;
}
.style-showcase-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.style-showcase-media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 16px 12px;
  font-size: 12.5px; line-height: 1.4; color: #fff; font-weight: 500;
  background: linear-gradient(to top, rgba(10,18,38,0.78), rgba(10,18,38,0));
}
.style-showcase-copy { display: grid; gap: clamp(16px, 2vw, 22px); }
.style-fact { display: grid; gap: 6px; }
.style-fact .opt-card-title { font-size: clamp(16px, 1.5vw, 19px); }

/* ---- Single detail row (full-width copy block under features) ---- */
.style-detail-row {
  margin-top: clamp(14px, 1.8vw, 22px);
  padding: clamp(18px, 2.2vw, 28px);
  background: var(--hub-cream-2);
  border: 1px solid var(--hub-border);
  border-radius: 16px;
}
.style-detail-row--split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.4vw, 32px);
  align-items: center;
}
@media (min-width: 820px) {
  .style-detail-row--split { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); }
}
.style-detail-copy { display: grid; gap: 8px; }

/* Two-column bullet list for denser spec blocks */
.opt-card-bullets--cols { columns: 2; column-gap: 28px; }
.opt-card-bullets--cols li { break-inside: avoid; }
@media (max-width: 560px) { .opt-card-bullets--cols { columns: 1; } }

/* ---- Substrate brand bar (genuine manufacturer logos) ---- */
.style-brandbar {
  display: grid; gap: 14px;
  padding: clamp(16px, 2vw, 22px);
  background: var(--hub-paper);
  border: 1px solid var(--hub-border);
  border-radius: 14px;
}
.style-brandbar-label {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--hub-ink-mute); margin: 0; font-weight: 600; text-align: center;
}
.style-brandbar-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 28px;
  align-items: center;
}
.style-brandbar-row img { max-height: 46px; width: auto; margin: 0 auto; object-fit: contain; opacity: 1; transition: transform 0.2s ease; }
.style-brandbar:hover .style-brandbar-row img { transform: scale(1.03); }

/* ---- Tent production dieline (honest technical diagram, not a photo) ---- */
.style-dieline {
  margin: clamp(18px, 2.4vw, 30px) 0 0;
  padding: clamp(16px, 2vw, 24px);
  background: var(--hub-paper);
  border: 1px dashed var(--hub-border-2);
  border-radius: 16px;
  text-align: center;
}
.style-dieline img { width: 100%; max-width: 560px; height: auto; margin: 0 auto; display: block; }
.style-dieline figcaption {
  margin-top: 12px; font-size: 13px; line-height: 1.5;
  color: var(--hub-ink-mute); max-width: 620px; margin-left: auto; margin-right: auto;
}

/* ---- Artwork & file guidance ---- */
.hub-section--artwork { background: var(--hub-paper); }
.artwork-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(18px, 2vw, 28px);
}
@media (min-width: 880px) { .artwork-grid { grid-template-columns: repeat(3, 1fr); } }

.artwork-card {
  background: var(--hub-cream);
  border: 1px solid var(--hub-border);
  border-radius: 16px;
  padding: clamp(18px, 2vw, 26px);
  display: flex; flex-direction: column; gap: 10px;
}
.artwork-card--vector { border-top: 3px solid var(--hub-signal); }
.artwork-card--raster { border-top: 3px solid var(--hub-navy); }
.artwork-card--specs { background: var(--hub-cream-2); }
.artwork-card-eyebrow {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--hub-ink-mute); margin: 0;
}
.artwork-card-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700; font-size: clamp(19px, 1.8vw, 23px); color: var(--hub-navy); margin: 0;
}
.artwork-card-formats { margin: 0; font-size: 14px; letter-spacing: 0.02em; color: var(--hub-signal); }
.artwork-card-formats strong { font-family: var(--font-display, 'Space Grotesk', sans-serif); }
.artwork-card-desc { margin: 0; font-size: 14px; line-height: 1.55; color: var(--hub-ink); }
.artwork-card-list { margin: 4px 0 0; padding-left: 18px; list-style: none; display: grid; gap: 6px; }
.artwork-card-list li { position: relative; padding-left: 18px; font-size: 13.5px; line-height: 1.5; color: var(--hub-ink); }
.artwork-card-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--hub-signal); font-weight: 700; font-size: 13px;
}
.artwork-specs-dl { display: grid; gap: 0; margin: 4px 0 0; }
.artwork-specs-dl > div {
  display: grid; grid-template-columns: 92px 1fr; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--hub-border);
}
.artwork-specs-dl > div:last-child { border-bottom: 0; }
.artwork-specs-dl dt {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--hub-ink-mute);
}
.artwork-specs-dl dd { margin: 0; font-size: 13.5px; line-height: 1.45; color: var(--hub-ink); }
.artwork-card-fine { margin: 8px 0 0; font-size: 13px; line-height: 1.5; color: var(--hub-ink-mute); }
.artwork-card-fine strong { color: var(--hub-navy); }

/* ============================================================
   LOWER-PAGE PRODUCT PANELS — side CTA rail layout
   Each product = consistent two-column composition: image/story on
   one side, a sticky CTA rail/panel on the other. Classes prefixed
   .ob-*; shared lower blocks: .lit-*, .proc-*, .brandbar-strip.
   ============================================================ */
.ob-product {
  padding: clamp(44px, 5vw, 78px) 0;
  background: var(--hub-cream);
  border-top: 1px solid var(--hub-border);
}
.ob-product--alt { background: var(--hub-cream-2); }

.ob-head { max-width: 70ch; margin: 0 auto clamp(26px, 3vw, 38px); text-align: center; }
.ob-eyebrow {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--hub-signal); margin: 0 0 12px;
}
.ob-title {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.12;
  letter-spacing: -0.01em; color: var(--hub-navy); margin: 0 0 14px;
}
.ob-lede { font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6; color: var(--hub-ink-mute); margin: 0; }

/* The two-column split: story column + sticky CTA rail. SAME shape every product. */
.ob-split {
  display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 40px);
  align-items: start;
}
@media (min-width: 960px) {
  .ob-split { grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.9fr); }
  /* alt products flip the rail to the left for rhythm, story stays readable */
  .ob-product--alt .ob-rail { order: -1; }
}

/* ---- Story column ---- */
.ob-story { display: grid; gap: clamp(16px, 2vw, 22px); }
.ob-story-media {
  position: relative; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--hub-border); background: var(--hub-cream-2);
  aspect-ratio: 16 / 10;
}
.ob-story-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ob-story-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(10,18,38,0.85); color: var(--hub-cream);
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.ob-story-body { display: grid; gap: 12px; }
.ob-story-body h3 {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700; font-size: clamp(20px, 2.2vw, 27px); line-height: 1.2; color: var(--hub-navy); margin: 0;
}
.ob-story-body p { font-size: 15.5px; line-height: 1.6; color: var(--hub-ink); margin: 0; }

/* even sub-grid of features inside the story (always 2 cols, no orphan) */
.ob-features {
  display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 4px;
}
@media (min-width: 620px) { .ob-features { grid-template-columns: repeat(2, 1fr); } }
.ob-feature {
  background: var(--hub-paper); border: 1px solid var(--hub-border);
  border-radius: 14px; padding: clamp(14px, 1.6vw, 20px); display: grid; gap: 6px;
}
.ob-product--alt .ob-feature { background: var(--hub-paper); }
.ob-feature-eyebrow {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hub-signal); margin: 0;
}
.ob-feature h4 {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700; font-size: 16px; color: var(--hub-navy); margin: 0; line-height: 1.25;
}
.ob-feature p { font-size: 13.5px; line-height: 1.5; color: var(--hub-ink); margin: 0; }
.ob-feature-list { margin: 2px 0 0; padding-left: 16px; list-style: none; display: grid; gap: 4px; }
.ob-feature-list li { position: relative; padding-left: 15px; font-size: 13px; line-height: 1.45; color: var(--hub-ink); }
.ob-feature-list li::before { content: "›"; position: absolute; left: 0; color: var(--hub-signal); font-weight: 700; }

/* ---- THE PERSISTENT SIDE CTA RAIL ---- */
.ob-rail {
  position: sticky; top: 96px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(232,24,32,0.18), transparent 55%),
    linear-gradient(160deg, var(--hub-navy-2), var(--hub-night));
  color: var(--hub-cream);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: clamp(22px, 2.6vw, 30px);
  display: grid; gap: 16px;
}
.ob-rail-eyebrow {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hub-signal); margin: 0;
}
.ob-rail h3 {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700; font-size: clamp(20px, 2vw, 25px); line-height: 1.18; color: #fff; margin: 0;
}
.ob-rail-sub { font-size: 14px; line-height: 1.55; color: rgba(250,247,242,0.82); margin: 0; }
.ob-rail .btn { width: 100%; justify-content: center; font-size: 16px; padding: 15px 22px; }
.ob-rail-spec { display: grid; gap: 10px; margin: 2px 0 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12); }
.ob-rail-spec div { display: grid; grid-template-columns: 96px 1fr; gap: 10px; }
.ob-rail-spec dt {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250,247,242,0.6); margin: 0;
}
.ob-rail-spec dd { margin: 0; font-size: 13px; line-height: 1.45; color: var(--hub-cream); }
.ob-rail-note { font-size: 12px; line-height: 1.5; color: rgba(250,247,242,0.55); margin: 0; }
.ob-rail-tier {
  justify-self: start;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  padding: 4px 11px; border-radius: 999px;
}
.ob-rail-tier--premium { background: rgba(201,161,74,0.18); color: #E8C879; border: 1px solid rgba(201,161,74,0.45); }
.ob-rail-tier--value { background: rgba(43,182,115,0.16); color: #7FE3B0; border: 1px solid rgba(43,182,115,0.40); }

/* ============================================================
   SHARED LOWER BLOCKS (trimless explainer, process, brand bar)
   ============================================================ */

/* ---- Halo-Lit photo + Trimless illustration (honest) ---- */
.lit-explainer { display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2vw, 22px); margin-top: 4px; }
@media (min-width: 720px) { .lit-explainer { grid-template-columns: repeat(2, 1fr); } }
.lit-card { border: 1px solid var(--hub-border); border-radius: 16px; overflow: hidden; background: var(--hub-paper); display: flex; flex-direction: column; }
.lit-card-figure { aspect-ratio: 16 / 9; position: relative; overflow: hidden; }
.lit-card-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lit-card-body { display: grid; gap: 6px; padding: clamp(14px, 1.6vw, 18px); }
.lit-card-body h4 { font-family: var(--font-display, 'Space Grotesk', sans-serif); font-weight: 700; font-size: 15px; color: var(--hub-navy); margin: 0; }
.lit-card-body p { font-size: 13px; line-height: 1.5; color: var(--hub-ink); margin: 0; }
.lit-card-eyebrow { font-family: var(--font-display, 'Space Grotesk', sans-serif); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hub-signal); margin: 0; }
.lit-card-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(10,18,38,0.82); color: #fff; padding: 4px 10px; border-radius: 999px;
}
.lit-diagram { aspect-ratio: 16 / 9; display: block; width: 100%; background: linear-gradient(160deg,#18203a,#0a1020); }
.lit-illustration-note { font-size: 11.5px; color: var(--hub-ink-mute); margin: 0; font-style: italic; }

/* ---- Process: balanced 2-row / 5-col strip ---- */
.proc-section { padding: clamp(44px, 5vw, 78px) 0; background: var(--hub-navy); color: var(--hub-cream); border-top: 1px solid rgba(255,255,255,0.06); }
.proc-section .ob-eyebrow { color: rgba(250,247,242,0.7); }
.proc-section .ob-title { color: var(--hub-cream); }
.proc-strip { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: clamp(24px, 3vw, 38px); }
@media (min-width: 560px) { .proc-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .proc-strip { grid-template-columns: repeat(5, 1fr); } }
.proc-step { position: relative; background: var(--hub-navy-2); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: clamp(20px, 2vw, 26px); display: grid; gap: 10px; align-content: start; }
.proc-step-num { width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: var(--hub-signal); color: #fff; font-family: var(--font-display, 'Space Grotesk', sans-serif); font-weight: 700; font-size: 16px; }
.proc-step h3 { font-family: var(--font-display, 'Space Grotesk', sans-serif); font-weight: 700; font-size: 16px; margin: 0; color: var(--hub-cream); line-height: 1.25; }
.proc-step p { font-size: 13.5px; line-height: 1.5; margin: 0; color: rgba(250,247,242,0.74); }
@media (min-width: 1080px) {
  .proc-step::after { content: ""; position: absolute; top: 40px; right: -7px; width: 14px; height: 2px; background: rgba(255,255,255,0.18); }
  .proc-step:last-child::after { display: none; }
}

/* ---- Color substrate logo bar ---- */
.brandbar-strip { margin-top: clamp(18px, 2vw, 24px); padding: clamp(18px, 2vw, 24px); background: var(--hub-paper); border: 1px solid var(--hub-border); border-radius: 16px; }
.brandbar-strip-label { text-align: center; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hub-ink-mute); font-weight: 600; margin: 0 0 16px; }
.brandbar-strip-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 24px; align-items: center; }
@media (min-width: 620px) { .brandbar-strip-row { grid-template-columns: repeat(4, 1fr); } }
.brandbar-strip-row img { max-height: 48px; width: auto; margin: 0 auto; object-fit: contain; display: block; }
