/* Right Start Foods / Global Food Solutions — Co-Pack Capabilities Lookbook */
:root {
  --cream: #F7F7F2;
  --cream-alt: #F2EDE3;
  --cream-soft: #F5E6E0;
  --red: #B72E28;
  --red-deep: #D3332B;
  --gold: #EDA734;
  --ink: #131313;
  --hero: #170202;
  --border: #C9C6BB;
  --muted: #6D4C41;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(23, 2, 2, 0.08);
  --shadow-lg: 0 24px 60px rgba(23, 2, 2, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1120px;
  --font-display: "new-spirit", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Atkinson Hyperlegible Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red-deep); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--hero);
  padding: 0.6rem 1rem; z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ——— Nav ——— */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav .nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.65rem 1.25rem;
}
.brand-mark {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--hero); text-decoration: none; font-weight: 700;
}
.brand-mark .brand-logo {
  height: 48px; width: auto; display: block; flex-shrink: 0;
}
.brand-mark .brand-text {
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.01em;
  font-weight: 500; line-height: 1.15;
}
.brand-mark .brand-text small {
  display: block; font-family: var(--font-body); font-weight: 500;
  color: var(--muted); font-size: 0.68rem; letter-spacing: 0.04em;
  text-transform: uppercase; margin-top: 0.15rem;
}
@media (max-width: 520px) {
  .brand-mark .brand-text { display: none; }
  .brand-mark .brand-logo { height: 42px; }
}

.nav-links {
  display: flex; flex-wrap: wrap; gap: 0.35rem 1rem;
  list-style: none; margin: 0; padding: 0; justify-content: flex-end;
}
.nav-links a {
  color: var(--ink); text-decoration: none; font-size: 0.82rem; font-weight: 600;
  opacity: 0.85;
}
.nav-links a:hover { color: var(--red); opacity: 1; }
.nav-cta {
  background: var(--red) !important; color: var(--cream) !important;
  padding: 0.45rem 0.85rem !important; border-radius: 999px;
  opacity: 1 !important;
}
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--border);
  border-radius: 8px; padding: 0.4rem 0.6rem; font-weight: 700; cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 1rem 1.25rem 1.25rem; gap: 0.75rem;
  }
  .site-nav.open .nav-links { display: flex; }
}

/* ——— Layout helpers ——— */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5.25rem 0; }
.section-alt { background: var(--cream-alt); }
.section-dark { background: var(--hero); color: var(--cream); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem;
}
.section-dark .eyebrow { color: var(--gold); }
.eyebrow::before {
  content: ""; width: 1.4rem; height: 2px; background: var(--gold);
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; margin: 0 0 0.75rem; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.45rem); }
h3 { font-size: 1.25rem; }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 40rem; margin: 0 0 1.5rem; line-height: 1.65; }
.section-dark .lede { color: var(--cream-soft); opacity: 0.92; }
.gold-rule {
  width: 3rem; height: 3px; background: var(--gold); border: 0; margin: 0 0 1.25rem;
}

/* ——— Buttons ——— */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.85rem 1.35rem; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--cream); box-shadow: 0 8px 24px rgba(183, 46, 40, 0.28); }
.btn-primary:hover { background: var(--red-deep); color: var(--cream); }
.btn-secondary {
  background: transparent; color: var(--cream); border-color: rgba(247,247,242,0.45);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline {
  background: transparent; color: var(--red); border-color: var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--hero); }
.btn-gold:hover { filter: brightness(1.05); color: var(--hero); }

/* ——— Hero ——— */
.hero {
  position: relative; overflow: hidden;
  background: var(--hero); color: var(--cream);
  padding: 5.75rem 0 5rem;
  min-height: min(88vh, 780px);
  display: flex; align-items: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(237, 167, 52, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(183, 46, 40, 0.35), transparent 50%),
    linear-gradient(160deg, #170202 0%, #2a0a0a 55%, #170202 100%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red-deep), var(--gold));
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: end;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; min-height: auto; }
}
.hero h1 { color: var(--cream); margin-bottom: 1rem; }
.hero .lede { font-size: 1.15rem; max-width: 36rem; color: var(--cream-soft); }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem;
}
.badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem; border-radius: 999px;
  background: rgba(247,247,242,0.08); border: 1px solid rgba(201,198,187,0.35);
  color: var(--cream-soft);
}
.hero-panel {
  background: rgba(247, 247, 242, 0.06);
  border: 1px solid rgba(201, 198, 187, 0.28);
  border-radius: var(--radius);
  padding: 1.5rem 1.45rem;
  backdrop-filter: blur(8px);
}
.hero-panel h3 { color: var(--gold); font-size: 1rem; margin-bottom: 0.85rem; }
.hero-panel ol { margin: 0; padding-left: 1.15rem; color: var(--cream-soft); font-size: 0.92rem; }
.hero-panel li { margin-bottom: 0.45rem; }
.hero-panel li strong { color: var(--cream); }

/* ——— Cards / grids ——— */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.55rem 1.45rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-accent { border-top: 3px solid var(--red); }
.card-gold { border-top: 3px solid var(--gold); }
.card .tag {
  display: inline-block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem;
}
.card p { margin: 0.4rem 0 0; color: var(--muted); font-size: 0.95rem; }
.sku {
  font-family: var(--font-mono);
  font-size: 0.82rem; font-weight: 700; color: var(--red);
  background: var(--cream-alt); padding: 0.15rem 0.45rem; border-radius: 6px;
}

/* ——— Platform cards (expandable) ——— */
.platform-cards { margin-bottom: 2rem; }
.platform-card { padding: 0; overflow: hidden; }
.platform-toggle {
  display: block; width: 100%; text-align: left; background: transparent;
  border: 0; padding: 1.55rem 1.45rem; cursor: pointer; font: inherit; color: inherit;
}
.platform-toggle h3 { margin-bottom: 0.4rem; }
.platform-toggle p { margin: 0.35rem 0 0; }
.expand-hint {
  display: inline-block; margin-top: 0.85rem; font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
}
.platform-toggle[aria-expanded="true"] .expand-hint::after { content: " · close"; }
.platform-toggle[aria-expanded="false"] .expand-hint::after { content: " · open"; }
.platform-body {
  padding: 0 1.45rem 1.45rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.platform-body ul { margin: 0.85rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.platform-body li { margin-bottom: 0.35rem; }
.platform-card.is-open { box-shadow: var(--shadow-lg); }

.who-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 0.5rem;
}
.who-strip > div {
  background: var(--hero); color: var(--cream-soft); border-radius: var(--radius);
  padding: 1.15rem 1.25rem; border-left: 4px solid var(--gold);
}
.who-strip strong { display: block; color: var(--cream); font-family: var(--font-display); margin-bottom: 0.35rem; }
.who-strip span { font-size: 0.9rem; opacity: 0.9; }
@media (max-width: 700px) { .who-strip { grid-template-columns: 1fr; } }

/* ——— Proof ——— */
.proof-panel {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: var(--white); box-shadow: var(--shadow); height: 100%;
}
.proof-panel .panel-head {
  padding: 0.85rem 1.15rem; font-family: var(--font-display); font-weight: 700;
  color: var(--cream);
}
.proof-panel.melt .panel-head { background: var(--red); }
.proof-panel.school .panel-head { background: var(--hero); border-left: 4px solid var(--gold); }
.proof-panel ul { margin: 0; padding: 1.15rem 1.35rem 1.35rem 2.1rem; color: var(--muted); }
.proof-panel li { margin-bottom: 0.55rem; }

/* ——— Plant tabs ——— */
.plant-tabs {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem;
  background: var(--cream-alt); padding: 0.4rem; border-radius: 999px;
  border: 1px solid var(--border); width: fit-content; max-width: 100%;
}
.plant-tab {
  border: 0; background: transparent; color: var(--ink); font: inherit; font-weight: 700;
  font-size: 0.88rem; padding: 0.65rem 1.1rem; border-radius: 999px; cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.plant-tab[aria-selected="true"] {
  background: var(--red); color: var(--cream);
  box-shadow: 0 4px 14px rgba(183, 46, 40, 0.22);
}
.plant-tab:hover:not([aria-selected="true"]) { background: rgba(183, 46, 40, 0.08); }
@media (max-width: 640px) {
  .plant-tabs {
    width: 100%;
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .plant-tab {
    width: 100%;
    text-align: center;
    white-space: normal;
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
    line-height: 1.25;
  }
}
.together-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem;
}
@media (max-width: 800px) { .together-grid { grid-template-columns: 1fr; } }

/* ——— Facilities ——— */
.facility {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.5rem; align-items: stretch;
  margin-bottom: 0.5rem;
}
.facility:nth-child(even) { grid-template-columns: 0.9fr 1.1fr; }
.facility:nth-child(even) .facility-copy { order: 2; }
@media (max-width: 800px) {
  .facility, .facility:nth-child(even) { grid-template-columns: 1fr; }
  .facility:nth-child(even) .facility-copy { order: 0; }
}
.facility-photos { display: grid; gap: 0.75rem; }
.facility-photos.two { grid-template-columns: 1fr 1fr; }
@media (max-width: 520px) { .facility-photos.two { grid-template-columns: 1fr; } }
.photo-frame {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); background: var(--cream-alt); position: relative;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/10; }
.photo-frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.55rem 0.75rem; font-size: 0.75rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(23,2,2,0.82)); color: var(--cream);
}
.facility-copy .addr { font-weight: 700; color: var(--red); margin: 0.5rem 0 0.85rem; }
.facility-copy ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }


/* ——— Hero trust strip (compact partner logos) ——— */
.hero-trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1rem;
  margin-top: 1.15rem; padding-top: 1rem;
  border-top: 1px solid rgba(237, 167, 52, 0.28);
}
.hero-trust-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); flex-shrink: 0;
}
.hero-trust-logos {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.55rem 0.85rem;
}
.hero-trust-logos li {
  display: flex; align-items: center; justify-content: center;
  height: 2.1rem; padding: 0.2rem 0.45rem;
  background: rgba(247, 247, 242, 0.94);
  border: 1px solid rgba(237, 167, 52, 0.35);
  border-radius: 8px;
}
.hero-trust-logos img {
  max-height: 1.55rem; width: auto; max-width: 6.5rem;
  object-fit: contain; filter: none;
}

/* ——— Food safety & plant partners ——— */
.partners-strip {
  margin-top: 1.75rem;
  padding: 1.35rem 1.4rem 1.25rem;
  background: linear-gradient(165deg, rgba(247,247,242,0.09), rgba(242,237,227,0.04));
  border: 1px solid rgba(237, 167, 52, 0.38);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(237, 167, 52, 0.12);
}
.partners-strip-head { margin-bottom: 1.1rem; max-width: 42rem; }
.partners-eyebrow { color: var(--gold); margin-bottom: 0.35rem; }
.partners-lede {
  margin: 0; color: var(--cream-soft); font-size: 0.95rem; opacity: 0.95; line-height: 1.5;
}
.partners-logos {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem;
}
@media (max-width: 900px) {
  .partners-logos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .partners-logos { grid-template-columns: 1fr; }
}
.partner-card {
  background: var(--cream);
  border: 1px solid rgba(201, 198, 187, 0.85);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 0.9rem 0.95rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(23, 2, 2, 0.12);
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  min-height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(23, 2, 2, 0.18);
}
.partner-logo-frame {
  display: flex; align-items: center; justify-content: center;
  height: 4.25rem; width: 100%;
  margin-bottom: 0.15rem;
}
.partner-logo-frame img {
  max-height: 3.5rem; max-width: 100%; width: auto; height: auto;
  object-fit: contain;
}
.partner-name {
  margin: 0; font-family: var(--font-display); font-size: 0.98rem; font-weight: 600;
  color: var(--ink); line-height: 1.2;
}
.partner-role {
  margin: 0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--muted); text-transform: uppercase;
}
.partners-note {
  margin: 1rem 0 0; font-size: 0.8rem; color: rgba(245, 230, 224, 0.78);
  text-align: center; letter-spacing: 0.01em;
}

/* ——— Compliance ——— */
.compliance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 700px) { .compliance-grid { grid-template-columns: 1fr; } }
.comp-item {
  background: rgba(247,247,242,0.06); border: 1px solid rgba(201,198,187,0.25);
  border-radius: var(--radius); padding: 1.2rem 1.25rem;
}
.comp-item h3 { color: var(--gold); font-size: 1.05rem; }
.comp-item p { margin: 0.4rem 0 0; color: var(--cream-soft); font-size: 0.92rem; opacity: 0.92; }
.callout-honest {
  margin-top: 1.25rem; padding: 1rem 1.2rem;
  border: 1px dashed rgba(237,167,52,0.5); border-radius: var(--radius-sm);
  color: var(--cream-soft); font-size: 0.92rem;
}
.callout-honest strong { color: var(--gold); }

/* ——— Supply map ——— */
.supply-map {
  display: flex; flex-wrap: wrap; align-items: stretch; justify-content: space-between;
  gap: 0.65rem; margin: 1.75rem 0 2rem;
}
.supply-node {
  flex: 1 1 140px; min-width: 140px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.15rem 1rem; text-align: center; box-shadow: var(--shadow);
}
.supply-node.highlight {
  background: var(--hero); color: var(--cream); border-color: var(--gold);
}
.supply-node.highlight h3 { color: var(--gold); }
.supply-node.highlight p { color: var(--cream-soft); }
.supply-step {
  display: inline-grid; place-items: center;
  width: 1.85rem; height: 1.85rem; border-radius: 50%;
  background: var(--red); color: var(--cream); font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem; margin-bottom: 0.55rem;
}
.supply-node.highlight .supply-step { background: var(--gold); color: var(--hero); }
.supply-node h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.supply-node p { margin: 0; font-size: 0.88rem; color: var(--muted); }
.supply-arrow {
  display: flex; align-items: center; color: var(--gold); font-size: 1.4rem; font-weight: 700;
  padding: 0 0.15rem;
}
@media (max-width: 700px) {
  .supply-arrow { display: none; }
  .supply-map { flex-direction: column; }
}

.partner-banner {
  display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.5rem 1.6rem; box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.partner-banner p { margin: 0.35rem 0 0; color: var(--muted); max-width: 40rem; }

/* Components drawer (singles demoted) */
.components-drawer {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0; box-shadow: var(--shadow); overflow: hidden;
}
.components-drawer > summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.35rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display);
}
.components-drawer > summary::-webkit-details-marker { display: none; }
.components-drawer > summary .tag { margin-right: 0.5rem; }
.components-drawer > summary::after {
  content: "+"; color: var(--red); font-size: 1.5rem; font-weight: 400; flex-shrink: 0;
}
.components-drawer[open] > summary::after { content: "–"; }
.components-drawer .drawer-lede {
  margin: 0; padding: 0 1.35rem 1rem; color: var(--muted); font-size: 0.95rem;
}
.component-grid { padding: 0 1.35rem 1.35rem; }
.category-block { margin-bottom: 2rem; }
.category-block:last-child { margin-bottom: 0; }
.category-block h3 {
  font-size: 1.25rem; margin-bottom: 0.75rem; padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--gold); display: inline-block;
}
.sku-table {
  width: 100%; border-collapse: collapse; background: var(--cream);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.sku-table th, .sku-table td {
  text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; vertical-align: top;
}
.sku-table th {
  background: var(--hero); color: var(--cream); font-size: 0.75rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.sku-table tr:last-child td { border-bottom: 0; }
.pill {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  padding: 0.2rem 0.5rem; border-radius: 999px; background: var(--cream-alt);
  color: var(--muted); margin-right: 0.25rem; margin-bottom: 0.2rem;
}
.pill-k12 { background: rgba(183,46,40,0.1); color: var(--red); }
.pill-wg { background: rgba(237,167,52,0.18); color: #8a5a00; }
.bridge-example {
  margin: 0 1.35rem 1.35rem; padding: 1.15rem 1.35rem;
  background: var(--hero); color: var(--cream); border-radius: var(--radius);
  border-left: 4px solid var(--gold); line-height: 1.7;
}
.bridge-example strong { color: var(--gold); }

/* ——— Process accordion ——— */
.process-accordion { display: flex; flex-direction: column; gap: 0.65rem; }
.process-step {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.process-step summary {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.85rem; align-items: center;
  padding: 1rem 1.2rem; cursor: pointer; list-style: none; font-family: var(--font-display);
}
.process-step summary::-webkit-details-marker { display: none; }
.process-step .step-num {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--red); color: var(--cream); display: grid; place-items: center;
  font-weight: 700; font-size: 0.95rem;
}
.process-step .step-title { font-weight: 700; font-size: 1.05rem; }
.process-step .step-owner {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  color: var(--red); text-align: right; max-width: 11rem;
}
.process-body {
  padding: 0 1.2rem 1.2rem 4rem; color: var(--muted); border-top: 1px solid var(--border);
  background: var(--cream);
}
.process-body p { margin: 0.85rem 0 0.5rem; }
.process-body ul { margin: 0.35rem 0 0; padding-left: 1.1rem; }
.process-body li { margin-bottom: 0.3rem; }
@media (max-width: 600px) {
  .process-step summary { grid-template-columns: auto 1fr; }
  .process-step .step-owner { grid-column: 2; text-align: left; max-width: none; }
  .process-body { padding-left: 1.2rem; }
}

.packaging-matrix { margin-top: 2.75rem; }
.packaging-matrix-head { margin-bottom: 1.15rem; }
.packaging-lede { margin: 0; color: var(--muted); max-width: 38rem; }
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}
@media (max-width: 1100px) {
  .packaging-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .packaging-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .packaging-grid { grid-template-columns: 1fr; }
}
.pack-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.05rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 0.35rem;
  min-height: 100%;
}
.pack-card-accent { border-top: 3px solid var(--gold); }
.pack-icon {
  display: inline-flex; align-self: flex-start;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream);
  background: var(--hero); padding: 0.28rem 0.55rem; border-radius: 999px;
  border: 1px solid rgba(237, 167, 52, 0.45); margin-bottom: 0.35rem;
}
.pack-card h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 500;
  margin: 0; color: var(--ink);
}
.pack-card > p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.45; }
.pack-card ul {
  margin: 0.45rem 0 0; padding-left: 1rem; color: var(--muted); font-size: 0.82rem;
}
.pack-card li { margin-bottom: 0.2rem; }

/* ——— Platforms appendix ——— */
.glance-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem;
}
@media (max-width: 900px) { .glance-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .glance-grid { grid-template-columns: 1fr; } }
.glance-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.2rem; box-shadow: var(--shadow);
}
.glance-card h3 {
  font-size: 0.95rem; color: var(--red); margin-bottom: 0.65rem;
  padding-bottom: 0.4rem; border-bottom: 2px solid var(--gold);
}
.glance-card ul { margin: 0; padding-left: 1.05rem; color: var(--muted); font-size: 0.9rem; }
.glance-card li { margin-bottom: 0.3rem; }
.starter-platforms h3 { margin-bottom: 1rem; }

/* ——— FAQ ——— */
.faq details {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-bottom: 0.75rem; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; font-weight: 500; font-family: var(--font-display);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--red); font-size: 1.35rem; font-weight: 400; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0.75rem 0 0.25rem; color: var(--muted); }

/* Channel CTAs */
.cta-paths {
  text-align: center; color: var(--muted); margin: -0.35rem 0 1.35rem; font-size: 0.95rem;
}
.cta-paths strong { color: var(--ink); }
.channel-card {
  text-align: left; height: 100%;
  display: flex; flex-direction: column;
}
.channel-card .btn { margin-top: auto; align-self: flex-start; }
.channel-card-school { border-top: 3px solid var(--gold); }
.cta-contact {
  margin: 1rem 0 0.85rem;
  padding: 0.85rem 0.9rem;
  background: var(--cream-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.cta-contact strong {
  display: block; font-family: var(--font-display); font-size: 1rem;
  color: var(--ink); margin-bottom: 0.2rem;
}
.cta-role {
  display: block; font-size: 0.78rem; font-weight: 700; color: var(--red);
  letter-spacing: 0.02em; margin-bottom: 0.45rem;
}
.cta-contact-list {
  list-style: none; margin: 0.35rem 0 0; padding: 0; font-size: 0.88rem;
}
.cta-contact-list li { margin-bottom: 0.25rem; color: var(--muted); }
.cta-contact-list a { font-weight: 600; word-break: break-word; }
.cta-path-btns {
  display: flex; flex-wrap: wrap; gap: 0.45rem;
  margin-top: auto; padding-top: 0.75rem;
}
.cta-path-btns .btn {
  padding: 0.55rem 0.85rem; font-size: 0.82rem; margin-top: 0;
}

/* Footer */
.site-footer {
  background: var(--hero); color: var(--cream-soft); padding: 3.5rem 0 2.25rem;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .footer-logos {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.35rem;
  margin-bottom: 1rem;
}
.footer-brand .footer-logos img {
  height: 52px; width: auto; display: block;
}
.footer-brand .footer-logos .gfs-logo {
  height: 48px;
  /* GFS mark is blue/white — lift slightly on dark footer */
  filter: brightness(1.15);
}
.site-footer h3 { color: var(--cream); font-size: 1.05rem; }
.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; font-size: 0.92rem; }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(201,198,187,0.2);
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between;
  font-size: 0.8rem; opacity: 0.8;
}

/* Reveal motion */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (min-width: 901px) {
  .wrap { padding: 0 1.5rem; }
  .nav-links a { font-size: 0.84rem; }
}

/* ——— Share lookbook control ——— */
.share-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.75rem 1.15rem; border-radius: 999px; font: inherit; font-weight: 700;
  font-size: 0.88rem; cursor: pointer;
  border: 1px solid rgba(201, 198, 187, 0.45);
  background: transparent; color: var(--cream-soft);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.25s var(--ease);
}
.share-btn:hover {
  border-color: var(--gold); color: var(--gold); transform: translateY(-2px);
}
.share-btn.is-copied {
  border-color: var(--gold); color: var(--gold);
  background: rgba(237, 167, 52, 0.12);
}
.share-btn .share-icon { flex-shrink: 0; }
.share-btn-cta {
  color: var(--ink); border-color: var(--border); background: var(--white);
}
.share-btn-cta:hover { color: var(--red); border-color: var(--red); }
.share-btn-cta.is-copied {
  color: var(--red); border-color: var(--gold);
  background: rgba(237, 167, 52, 0.12);
}
.cta-actions { justify-content: center; margin-top: 2rem; }
.share-hint {
  text-align: center; margin: 1rem 0 0; font-size: 0.82rem; color: var(--muted);
}
.share-hint code {
  font-family: var(--font-mono); font-size: 0.78rem;
  background: var(--cream-alt); padding: 0.1rem 0.4rem; border-radius: 4px;
  color: var(--ink);
}

/* ——— Hero product mosaic ——— */
.hero-mosaic {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem;
  margin: -0.25rem -0.25rem 1.1rem; border-radius: 10px; overflow: hidden;
}
.hero-mosaic img {
  width: 100%; height: 72px; object-fit: cover;
  filter: saturate(1.05);
}
@media (min-width: 861px) {
  .hero-mosaic img { height: 88px; }
}

/* ——— Format strip (capabilities overview) ——— */
.format-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem;
  margin: 0 0 1.5rem;
}
.format-chip {
  display: flex; align-items: center; gap: 0.85rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.65rem 0.85rem;
  box-shadow: var(--shadow);
}
.format-chip img {
  width: 72px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0;
}
.format-chip strong {
  display: block; font-family: var(--font-display); font-size: 0.98rem;
  color: var(--ink); margin-bottom: 0.15rem;
}
.format-chip span { font-size: 0.8rem; color: var(--muted); }
@media (max-width: 800px) {
  .format-strip { grid-template-columns: 1fr; }
}

/* ——— Platform card media ——— */
.platform-media {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--cream-alt);
}
.platform-media img {
  width: 100%; height: 168px; object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.platform-card:hover .platform-media img { transform: scale(1.04); }
.platform-media-label {
  position: absolute; left: 0.75rem; bottom: 0.65rem;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cream);
  background: rgba(23, 2, 2, 0.72); padding: 0.28rem 0.55rem; border-radius: 999px;
  border: 1px solid rgba(237, 167, 52, 0.45);
}

/* ——— Proof product gallery ——— */
.product-gallery {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem;
  margin: 0 0 1.75rem;
}
.product-tile {
  margin: 0; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.product-tile img {
  width: 100%; height: 160px; object-fit: cover;
}
.product-tile figcaption {
  padding: 0.7rem 0.85rem 0.85rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.product-tile figcaption .sku { align-self: flex-start; }
.product-tile figcaption strong {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; color: var(--ink);
}
@media (max-width: 900px) {
  .product-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .product-gallery { grid-template-columns: 1fr; }
  .product-tile img { height: 200px; }
}

/* ——— Starter platform photos ——— */
.starter-card { padding: 0; overflow: hidden; }
.starter-card .starter-photo img {
  width: 100%; height: 150px; object-fit: cover;
}
.starter-card .tag,
.starter-card h3,
.starter-card p {
  margin-left: 1.45rem; margin-right: 1.45rem;
}
.starter-card .tag { margin-top: 1rem; display: inline-block; }
.starter-card h3 { margin-top: 0.35rem; }
.starter-card p { margin: 0.4rem 1.45rem 1.45rem; }

/* ——— Component photo strip (platforms appendix) ——— */
.component-visuals { margin-top: 2.5rem; }
.component-visuals > h3 { margin-bottom: 0.35rem; }
.comp-visual-lede {
  margin: 0 0 1rem; color: var(--muted); font-size: 0.95rem; max-width: 40rem;
}
.component-photo-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem;
}
.component-photo-strip figure {
  margin: 0; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.component-photo-strip img {
  width: 100%; height: 140px; object-fit: cover;
}
.component-photo-strip figcaption {
  padding: 0.65rem 0.8rem; font-size: 0.85rem; font-weight: 600; color: var(--ink);
}
@media (max-width: 900px) {
  .component-photo-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .component-photo-strip { grid-template-columns: 1fr; }
}


/* ——— School wedge / callout ——— */
.school-wedge {
  margin-top: 1.35rem;
  padding: 0.95rem 1.05rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(237, 167, 52, 0.45);
  background: rgba(237, 167, 52, 0.1);
  max-width: 40rem;
}
.school-wedge-eyebrow {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem;
}
.hero-school-wedge p {
  margin: 0 0 0.45rem; color: var(--cream-soft); font-size: 0.92rem; line-height: 1.5;
}
.hero-school-wedge strong { color: var(--cream); }
.school-wedge-link {
  color: var(--gold); font-weight: 700; font-size: 0.88rem; text-decoration: none;
}
.school-wedge-link:hover { text-decoration: underline; color: var(--gold); }

.school-callout {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem 1.5rem;
  margin: 0 0 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--hero); color: var(--cream-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.school-callout .tag { color: var(--gold); margin-bottom: 0.35rem; }
.school-callout-title {
  color: var(--cream); margin: 0 0 0.4rem; font-size: 1.2rem;
}
.school-callout p { margin: 0; max-width: 42rem; font-size: 0.95rem; opacity: 0.92; }
.school-callout .btn-outline {
  color: var(--gold); border-color: var(--gold); flex-shrink: 0;
}
.school-callout .btn-outline:hover {
  background: var(--gold); color: var(--hero);
}

/* ——— Co-pack vs PL decision visual ——— */
.decision-visual {
  margin: 0 0 2rem;
  padding: 1.5rem 1.35rem 1.45rem;
  background: var(--cream-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.decision-head { margin-bottom: 1.15rem; }
.decision-head .eyebrow { margin-bottom: 0.4rem; }
.decision-head h3 { margin-bottom: 0.45rem; font-size: clamp(1.25rem, 2.5vw, 1.55rem); }
.decision-lede { margin: 0; color: var(--muted); max-width: 40rem; font-size: 0.98rem; }
.decision-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem;
}
@media (max-width: 800px) {
  .decision-grid { grid-template-columns: 1fr; }
}
.decision-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.1rem 1.2rem;
  position: relative;
}
.decision-card-accent {
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow);
}
.decision-num {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.04em;
}
.decision-card h4 {
  font-family: var(--font-display); font-size: 1.12rem; margin: 0.35rem 0 0.35rem;
}
.decision-tag {
  display: inline-block; margin: 0 0 0.5rem !important;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--red);
}
.decision-card > p:last-child {
  margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5;
}

/* ——— Trimmed components drawer ——— */
.component-examples { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sku-table-compact th:first-child,
.sku-table-compact td:first-child { white-space: nowrap; font-weight: 600; }
.drawer-catalog-cta { margin: 1.15rem 0 0.25rem; }

/* ——— Mobile polish: nav, share, partners, hero CTAs ——— */
@media (max-width: 900px) {
  .nav-links {
    max-height: min(70vh, 28rem);
    overflow-y: auto;
  }
  .nav-links a {
    display: block;
    padding: 0.55rem 0.25rem;
    font-size: 0.95rem;
  }
  .nav-cta {
    text-align: center !important;
    margin-top: 0.35rem;
  }
  .hero .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .btn,
  .hero .share-btn {
    width: 100%;
    justify-content: center;
  }
  .share-btn {
    min-height: 2.75rem;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn,
  .cta-actions .share-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .hero-trust-logos {
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    width: 100%;
  }
  .partners-logos {
    gap: 0.75rem;
  }
  .partner-card {
    padding: 0.85rem 0.75rem;
  }
  .partner-logo-frame img {
    max-height: 40px;
  }
}

@media (max-width: 520px) {
  .share-btn .share-label { font-size: 0.85rem; }
  .cta-path-btns .btn { flex: 1 1 calc(50% - 0.45rem); justify-content: center; }
  .sku-table-compact { font-size: 0.82rem; }
  .sku-table-compact th,
  .sku-table-compact td { padding: 0.55rem 0.45rem; }
}


/* ——— Sundown design polish ——— */
.section { padding: 4.25rem 0; }
@media (max-width: 700px) {
  .section { padding: 3.25rem 0; }
}
.lede { margin: 0 0 1.25rem; }
.gold-rule { margin: 0 0 1rem; }

/* Hero premium */
.hero { padding: 5rem 0 4.25rem; min-height: min(82vh, 720px); }
.hero .lede { font-size: 1.08rem; max-width: 34rem; }
.hero-badges { margin-top: 1.35rem; gap: 0.4rem; }
.badge {
  backdrop-filter: blur(6px);
  background: rgba(247,247,242,0.1);
  border-color: rgba(237,167,52,0.28);
}
.hero-panel {
  background: rgba(247, 247, 242, 0.07);
  border-color: rgba(237, 167, 52, 0.28);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}
.hero-school-wedge {
  border-color: rgba(237, 167, 52, 0.55);
  background: linear-gradient(135deg, rgba(237,167,52,0.16), rgba(183,46,40,0.12));
}
.hero-trust-logos li {
  height: 2.25rem;
  min-width: 3.4rem;
  padding: 0.25rem 0.55rem;
}
.hero-trust-logos img {
  max-height: 1.4rem;
  max-width: 5.8rem;
}

/* Compliance premium */
.section-dark .gold-rule { background: var(--gold); }
.comp-item {
  background: rgba(247,247,242,0.07);
  border-color: rgba(237,167,52,0.22);
  transition: border-color 0.2s, transform 0.25s var(--ease);
}
.comp-item:hover {
  border-color: rgba(237,167,52,0.55);
  transform: translateY(-2px);
}
.comp-item h3 {
  display: flex; align-items: center; gap: 0.45rem;
}
.comp-item h3::before {
  content: ""; width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.partners-strip {
  margin-top: 1.5rem;
  padding: 1.2rem 1.25rem 1.1rem;
}
.partners-logos { gap: 0.75rem; align-items: stretch; }
.partner-card {
  padding: 0.85rem 0.75rem 0.8rem;
  gap: 0.25rem;
}
.partner-logo-frame {
  height: 3.6rem;
  display: flex; align-items: center; justify-content: center;
}
.partner-logo-frame img {
  max-height: 2.75rem;
  max-width: 90%;
  margin: 0 auto;
}
.partner-name { font-size: 0.92rem; }
.partner-role { font-size: 0.72rem; letter-spacing: 0.04em; }

/* Decision visual crisp */
.decision-visual {
  margin: 0.25rem 0 1.75rem;
  padding: 1.35rem 1.25rem 1.3rem;
  background: linear-gradient(180deg, #fff 0%, var(--cream-alt) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.decision-grid { gap: 0.75rem; }
.decision-card {
  padding: 1.05rem 1rem 1.1rem;
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.decision-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.decision-card-accent {
  outline: 1px solid rgba(183,46,40,0.18);
}
.decision-num { color: var(--gold); }
.decision-card h4 { margin: 0.25rem 0 0.3rem; line-height: 1.2; }
.decision-tag { margin-bottom: 0.4rem !important; }

/* Packaging matrix crisp */
.packaging-matrix {
  margin-top: 2.25rem;
  padding: 1.35rem 1.2rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.packaging-matrix-head { margin-bottom: 1rem; }
.packaging-grid { gap: 0.7rem; }
.pack-card {
  padding: 1rem 0.9rem 1.05rem;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform 0.25s var(--ease), border-color 0.2s;
}
.pack-card:hover {
  transform: translateY(-2px);
  border-color: rgba(183,46,40,0.35);
}
.pack-card-accent { background: #fff; border-top-color: var(--gold); }
.pack-icon {
  background: var(--hero);
  letter-spacing: 0.1em;
}
.pack-card h4 { font-size: 1rem; }
.pack-card > p { font-size: 0.84rem; }
.pack-card ul { font-size: 0.78rem; margin-top: 0.35rem; }

/* Mobile nav clean */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.82rem;
  background: var(--white);
}
.nav-toggle-bars {
  position: relative;
  width: 1.1rem; height: 0.85rem;
  display: inline-block;
  flex-shrink: 0;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 2px; background: var(--ink); border-radius: 2px;
}
.nav-toggle-bars::before { top: 0; box-shadow: 0 0.32rem 0 var(--ink); }
.nav-toggle-bars::after { bottom: 0; }
.site-nav.open .nav-toggle {
  border-color: var(--red);
  color: var(--red);
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav .nav-inner { position: relative; }
  .nav-links {
    gap: 0.15rem;
    padding: 0.75rem 1.1rem 1.1rem;
    box-shadow: 0 16px 40px rgba(23,2,2,0.12);
  }
  .nav-links li { border-bottom: 1px solid rgba(201,198,187,0.55); }
  .nav-links li:last-child { border-bottom: 0; padding-top: 0.35rem; }
  .nav-links a {
    padding: 0.7rem 0.15rem;
    font-size: 0.95rem;
  }
  .nav-cta {
    display: block !important;
    text-align: center !important;
    width: 100%;
  }
}

/* CTA download affordance */
.cta-actions { gap: 0.75rem; }
.share-hint a { font-weight: 700; }

@media (max-width: 640px) {
  .hero { padding: 3rem 0 2.5rem; }
  .decision-visual,
  .packaging-matrix { padding: 1.1rem 0.95rem; }
  .packaging-grid { grid-template-columns: 1fr; }
  .hero-trust-logos { width: 100%; }
  .hero-trust-logos li { flex: 1 1 calc(50% - 0.55rem); }
}

/* ============================================================
   Interactive upgrades — chapter rail · stats · compare ·
   journey · horizontal lookbook · micro-interactions · tour
   ============================================================ */

/* Ghost button (tour) */
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(249, 247, 242, 0.35);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ——— Chapter rail (desktop side / mobile top) ——— */
.chapter-rail {
  position: fixed;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.chapter-rail-track {
  display: none;
}
.chapter-rail-list {
  list-style: none;
  margin: 0;
  padding: 0.55rem 0.45rem;
  background: rgba(247, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 198, 187, 0.75);
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  pointer-events: auto;
}
.chapter-rail-list a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.chapter-rail-list a:hover { color: var(--red); }
.chapter-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.chapter-label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 0.35s var(--ease), opacity 0.25s;
}
.chapter-rail-list a:hover .chapter-label,
.chapter-rail-list a:focus-visible .chapter-label,
.chapter-rail-list a.is-active .chapter-label {
  max-width: 7.5rem;
  opacity: 1;
}
.chapter-rail-list a.is-active {
  color: var(--hero);
  background: rgba(237, 167, 52, 0.18);
}
.chapter-rail-list a.is-active .chapter-dot {
  background: var(--gold);
  transform: scale(1.25);
  box-shadow: 0 0 0 3px rgba(237, 167, 52, 0.28);
}
.chapter-rail-list a.is-done .chapter-dot {
  background: var(--red);
}

/* Mobile: horizontal top chapter strip under sticky nav */
@media (max-width: 1100px) {
  .chapter-rail {
    top: auto; right: 0; left: 0; bottom: 0;
    transform: none;
    flex-direction: column;
    align-items: stretch;
  }
  .chapter-rail-list {
    flex-direction: row;
    justify-content: space-between;
    border-radius: 0;
    border-left: 0; border-right: 0; border-bottom: 0;
    padding: 0.45rem 0.65rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
    gap: 0.15rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .chapter-rail-list::-webkit-scrollbar { display: none; }
  .chapter-label { display: none; }
  .chapter-rail-list a {
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.2rem 0.35rem;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }
  .chapter-rail-list a::after {
    content: attr(data-short);
    text-transform: capitalize;
    font-size: 0.55rem;
    opacity: 0.75;
    max-width: 4.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .chapter-rail-list a.is-active::after { opacity: 1; color: var(--hero); }
  body { padding-bottom: 3.6rem; }
}
@media (min-width: 1101px) {
  .chapter-rail-list a::after { content: none; }
}

/* Gold scroll progress underline under site nav */
.site-nav::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 3px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ——— Animated stat counters ——— */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.35rem 0 1.1rem;
}
.stat-item {
  background: rgba(23, 2, 2, 0.35);
  border: 1px solid rgba(201, 198, 187, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.75rem;
  text-align: center;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--gold);
  line-height: 1.1;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.stat-value-text { letter-spacing: 0.02em; }
.stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-soft);
  opacity: 0.88;
}
@media (max-width: 720px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
}

/* ——— Comparison table ——— */
.compare-block {
  margin-top: 2.75rem;
  padding: 1.5rem 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.compare-head .compare-lede {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 1.15rem;
  font-size: 0.98rem;
}
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(201, 198, 187, 0.65);
}
.compare-table thead th {
  background: var(--cream-alt);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.compare-table tbody th {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
  width: 22%;
  background: rgba(247, 247, 242, 0.65);
}
.compare-table td { color: var(--muted); width: 39%; }
.compare-table .compare-rsf {
  background: rgba(237, 167, 52, 0.1);
  color: var(--ink);
  font-weight: 600;
  border-left: 3px solid var(--gold);
}
.compare-table thead .compare-rsf {
  color: var(--hero);
  background: rgba(237, 167, 52, 0.22);
}
.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th {
  background: rgba(183, 46, 40, 0.04);
}
.compare-table tbody tr:hover .compare-rsf {
  background: rgba(237, 167, 52, 0.16);
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }

/* ——— Pinned journey strip ——— */
.journey-strip {
  margin: 0 0 1.75rem;
  padding: 1.35rem 1.2rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.journey-strip.is-pinned {
  box-shadow: var(--shadow-lg);
  border-color: rgba(237, 167, 52, 0.45);
}
.journey-title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  margin-bottom: 0.35rem;
}
.journey-lede {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 36rem;
}
.journey-stage-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.journey-tab {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.journey-tab:hover { border-color: var(--red); color: var(--red); }
.journey-tab.is-active {
  background: var(--hero);
  color: var(--cream);
  border-color: var(--hero);
}
.journey-visual {
  background: var(--cream-alt);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.1rem 1rem;
  position: relative;
  overflow: hidden;
}
.journey-progress {
  height: 3px;
  background: rgba(201, 198, 187, 0.55);
  border-radius: 999px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.journey-progress-bar {
  display: block;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: inherit;
  transition: width 0.45s var(--ease);
}
.journey-panel {
  display: none;
  animation: journeyIn 0.45s var(--ease);
}
.journey-panel.is-active { display: block; }
@keyframes journeyIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.journey-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.journey-panel h4 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.journey-panel p {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
  font-size: 1rem;
}
.journey-controls {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}
.journey-controls .btn { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.supply-map-mini {
  margin-top: 1.1rem;
  opacity: 0.95;
}
.supply-map-mini .supply-node {
  cursor: pointer;
  transition: transform 0.25s var(--ease), border-color 0.2s, box-shadow 0.2s;
}
.supply-map-mini .supply-node.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(237, 167, 52, 0.25);
  transform: translateY(-2px);
}
.supply-map-mini .supply-node h3 { font-size: 0.95rem; margin: 0; }
.supply-map-mini .supply-node p { display: none; }

/* ——— Horizontal platform lookbook ——— */
.platform-lookbook {
  position: relative;
  margin: 0 0 1.75rem;
}
.lookbook-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.85rem;
}
.lookbook-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.lookbook-hint {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.lookbook-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.25rem;
  padding: 0.25rem 0.15rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.lookbook-card {
  flex: 0 0 min(78vw, 320px);
  scroll-snap-align: start;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.2s;
}
.lookbook-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(237, 167, 52, 0.55);
}
.lookbook-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.lookbook-card figcaption {
  padding: 0.85rem 0.95rem 1rem;
}
.lookbook-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0.25rem 0 0.2rem;
  color: var(--ink);
}
.lookbook-meta {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}
.lookbook-nav {
  position: absolute;
  right: 0.15rem;
  top: 0.15rem;
  display: flex;
  gap: 0.35rem;
}
.lookbook-btn {
  width: 2.2rem; height: 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(247, 247, 242, 0.95);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lookbook-btn:hover {
  background: var(--hero);
  color: var(--cream);
  border-color: var(--hero);
}
@media (max-width: 640px) {
  .lookbook-nav { display: none; }
  .lookbook-card { flex-basis: min(86vw, 280px); }
  .lookbook-card img { height: 180px; }
}

/* ——— Micro-interactions ——— */
.format-chip,
.platform-card,
.decision-card,
.pack-card,
.channel-card,
.partner-card,
.comp-item {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.25s;
}
.format-chip:hover,
.decision-card:hover,
.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.platform-card:hover {
  border-color: rgba(237, 167, 52, 0.5);
}
.hero-mosaic[data-parallax-mosaic] img {
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.hero-mosaic.is-parallax img:nth-child(1) { transform: translateY(calc(var(--mx, 0) * -4px)) scale(1.03); }
.hero-mosaic.is-parallax img:nth-child(2) { transform: translateY(calc(var(--my, 0) * 3px)) scale(1.04); }
.hero-mosaic.is-parallax img:nth-child(3) { transform: translateY(calc(var(--my, 0) * -3px)) scale(1.03); }
.hero-mosaic.is-parallax img:nth-child(4) { transform: translateY(calc(var(--mx, 0) * 4px)) scale(1.05); }

/* ——— Guided tour tip ——— */
.tour-tip {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 5.5rem;
  transform: translateX(-50%);
  width: min(92vw, 380px);
  background: var(--hero);
  color: var(--cream);
  border: 1px solid rgba(237, 167, 52, 0.45);
  border-radius: var(--radius);
  padding: 1rem 1.1rem 0.95rem;
  box-shadow: var(--shadow-lg);
}
.tour-tip[hidden] { display: none !important; }
.tour-tip-text {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.45;
}
.tour-tip-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}
.tour-tip-next,
.tour-tip-end {
  appearance: none;
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
}
.tour-tip-next {
  background: var(--gold);
  color: var(--hero);
  border: 0;
}
.tour-tip-end {
  background: transparent;
  color: var(--cream-soft);
  border: 1px solid rgba(249, 247, 242, 0.3);
}
body.is-touring .chapter-rail-list a.is-tour-target {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (max-width: 1100px) {
  .tour-tip { bottom: 4.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .journey-panel { animation: none; }
  .hero-mosaic[data-parallax-mosaic] img { transform: none !important; }
  .lookbook-card:hover,
  .format-chip:hover,
  .decision-card:hover,
  .channel-card:hover { transform: none; }
  .site-nav::after { transition: none; }
}

/* ============================================================
   Atlas · editorial diagram · working strip (2026-09-05 OSS fold)
   ============================================================ */
.nav-atlas-link {
  color: var(--gold) !important;
  font-weight: 600;
}
.nav-atlas-link:hover { color: var(--cream) !important; }

.working-strip {
  position: sticky;
  top: 64px;
  z-index: 40;
  background: rgba(23, 2, 2, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(237, 167, 52, 0.35);
  color: var(--cream);
}
.working-strip-inner {
  max-width: var(--wrap, 1120px);
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.working-strip-kicker {
  margin: 0;
  font-family: "New Spirit", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  white-space: nowrap;
}
.working-strip-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  flex: 1;
  font-size: 0.78rem;
  color: var(--cream-soft, #F2EDE3);
}
.working-strip-points strong { color: var(--cream); font-weight: 600; }
.working-strip-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #170202;
  background: var(--gold);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}
.working-strip-cta:hover { filter: brightness(1.05); color: #170202; }
@media (max-width: 900px) {
  .working-strip { top: 56px; }
  .working-strip-points { font-size: 0.72rem; gap: 0.25rem 0.85rem; }
  .working-strip-points li:nth-child(3) { display: none; }
}

.section-atlas {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(183, 46, 40, 0.06), transparent 60%),
    var(--cream, #F7F7F2);
}
.atlas-stage {
  margin-top: 1.5rem;
  border: 1.5px solid var(--ink, #131313);
  box-shadow: 4px 4px 0 rgba(19, 19, 19, 0.85);
  background: #F7F7F2;
  overflow: hidden;
}
.atlas-stage-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  border-bottom: 1.5px solid var(--ink, #131313);
  background: #F2EDE3;
}
.atlas-stage-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.atlas-chip {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #C9C6BB;
  padding: 0.25rem 0.55rem;
  background: #FFFCF5;
  color: #5C5850;
}
.atlas-frame-wrap {
  position: relative;
  height: min(62vh, 560px);
  background: #F7F7F2;
}
.atlas-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #F7F7F2;
}
.atlas-chapter-guide {
  list-style: none;
  margin: 0;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.45rem;
  border-top: 1.5px solid var(--ink, #131313);
  background: #FFFCF5;
}
.atlas-guide-btn {
  width: 100%;
  text-align: left;
  font: inherit;
  font-size: 0.8rem;
  line-height: 1.25;
  padding: 0.65rem 0.7rem;
  border: 1.5px solid #C9C6BB;
  background: #F7F7F2;
  color: #131313;
  cursor: pointer;
  box-shadow: 2px 2px 0 #C9C6BB;
  text-decoration: none;
  display: block;
}
.atlas-guide-btn span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #B72E28;
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.atlas-guide-btn:hover,
.atlas-guide-btn.is-active {
  border-color: #131313;
  box-shadow: 2px 2px 0 #131313;
  background: #F2EDE3;
}
.atlas-guide-link { color: inherit; }
.atlas-hint {
  margin: 0;
  padding: 0.65rem 1rem 0.9rem;
  font-size: 0.85rem;
  color: #5C5850;
  border-top: 1px solid #E4DFD2;
  min-height: 2.6rem;
}
.editorial-diagram {
  margin-top: 2.5rem;
}
.editorial-diagram-head {
  margin-bottom: 1rem;
  max-width: 56ch;
}
.editorial-diagram-head h3 {
  font-family: "New Spirit", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw + 1rem, 1.85rem);
  margin: 0.35rem 0 0.5rem;
  color: #131313;
}
.editorial-diagram-head p { margin: 0; color: #5C5850; font-size: 0.95rem; }
.editorial-diagram-frame {
  background: #F2EDE3;
  border: 1px solid #C9C6BB;
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
}
.editorial-diagram-frame img {
  width: 100%;
  min-width: 720px;
  height: auto;
  display: block;
}

/* Opening 10s polish */
.hero .btn-row { animation: heroCtaIn 0.7s ease both; animation-delay: 0.15s; }
.stat-strip { animation: heroCtaIn 0.75s ease both; animation-delay: 0.28s; }
@keyframes heroCtaIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .btn-row, .stat-strip { animation: none; }
}
.chapter-rail-list a[data-chapter="atlas"] .chapter-dot {
  box-shadow: 0 0 0 2px rgba(237, 167, 52, 0.45);
}
.is-touring .tour-tip {
  box-shadow: 0 12px 40px rgba(183, 46, 40, 0.25);
}
