/* ============================================================
   LABORA COLLECTIVE — Standard CSS
   lc-standard.css — THE SINGLE SOURCE OF TRUTH
   
   Every page on laboracollective.com links to this file.
   DO NOT duplicate this CSS inline. DO NOT override these values.
   
   Last locked: April 5, 2026 · Updated 2026-05-20 (nav + footer h5)
   Nav: 7-link (Newsletters / Journals / Streams / Intelligence / The Network / Products / Join)
   Footer: column titles use <h5>. Pages MUST load this file via <link rel="stylesheet" href="/assets/css/lc-standard.css"> and MUST NOT duplicate nav/footer CSS locally.
   ============================================================ */


/* ─────────────────────────────────────────────
   DESIGN TOKENS — Do not change without YC approval
   ───────────────────────────────────────────── */

:root {
  /* Brand */
  --espresso:       #362511;
  --espresso-mid:   #4A3218;
  --body-text:      #2C1A0E;
  --muted:          #6B5648;

  /* Copper */
  --copper:         #D48662;
  --copper-text:    #7A4D2E;
  --copper-light:   #E8A882;

  /* Accents */
  --blush:          #EABAB0;
  --blush-light:    #F5DDD9;
  --rose:           #E7817F;
  --rose-light:     #FAEAEA;
  --teal:           #1D6B78;
  --teal-light:     #E0F2F4;
  --forest:         #2E5240;
  --forest-light:   #E4EFE8;
  --gold:           #9E7D0A;
  --gold-light:     #F5EDCC;
  --blue:           #5B8FA8;
  --blue-light:     #E8F1F5;

  /* Backgrounds */
  --bg-warm:        #F7F3EE;
  --bg-open:        #FBF5FF;
  --white:          #FFFFFF;

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'EB Garamond', Georgia, serif;
  --font-ui:        'DM Sans', Arial, Helvetica, sans-serif;
}


/* ─────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────── */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light only; }

body {
  font-family: var(--font-ui);
  background: var(--bg-warm);
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}


/* ─────────────────────────────────────────────
   CONTENT TRACKS — Canonical container widths
   Use these instead of inline max-width values.
   Width-only by default so they compose with nested layouts.
   Add .track-padded for the standard 2rem side gutter
   (or just put padding on the parent section).
   ───────────────────────────────────────────── */

.track-wide,
.track-content,
.track-text,
.track-narrow,
.track-form { margin-left: auto; margin-right: auto; }

.track-wide    { max-width: 1100px; } /* Site track: nav, footer, listings */
.track-content { max-width: 800px;  } /* Article header, page hero */
.track-text    { max-width: 700px;  } /* Long-form body text */
.track-narrow  { max-width: 620px;  } /* Focused prose, decks */
.track-form    { max-width: 500px;  } /* CTAs, signup forms */

.track-padded { padding-left: 2rem; padding-right: 2rem; }
@media (max-width: 600px) {
  .track-padded { padding-left: 1.25rem; padding-right: 1.25rem; }
}


/* ─────────────────────────────────────────────
   NAV — 7-Link Standard (Updated 2026-05-20)
   Newsletters / Journals / Streams / Intelligence / The Network / Products / Join
   ───────────────────────────────────────────── */

.lc-nav {
  background: var(--espresso);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.lc-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.lc-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.lc-nav-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bg-open);
}
.lc-nav-mark em { font-style: normal; color: var(--copper); }
.lc-nav-org {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251,245,255,0.82);
  border-left: 1px solid rgba(251,245,255,0.1);
  padding-left: 0.65rem;
}
.lc-nav-org a { color: inherit; text-decoration: none; }
.lc-nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
  flex-wrap: nowrap;
}
.lc-nav-links li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251,245,255,0.88);
  text-decoration: none;
  transition: color 0.15s;
  height: 56px;
  line-height: 56px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.lc-nav-links li a:hover { color: var(--copper); }
.lc-nav-links li a.active-nav {
  color: var(--copper);
  border-bottom-color: var(--copper);
}
.lc-nav-cta {
  background: #B56A45;
  color: var(--white) !important;
  padding: 0.4rem 1.1rem !important;
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.18em;
  border: none !important;
  height: auto !important;
  line-height: 1.4 !important;
}
.lc-nav-cta:hover {
  background: var(--copper-light);
  color: var(--espresso) !important;
}
.lc-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.lc-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(251,245,255,0.88);
  margin: 4px 0;
  transition: 0.3s;
}


/* ─────────────────────────────────────────────
   ARTICLE HEADER — 6-Layer Hybrid (Locked March 29)
   accent stripe → circle initial → journal name → headline → byline → date
   ───────────────────────────────────────────── */

.article-header {
  background: var(--espresso);
  color: var(--white);
  padding: 0;
  position: relative;
}
.article-header::before {
  content: '';
  display: block;
  height: 5px;
  background: var(--accent-color, var(--copper));
}
.article-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem 2rem;
}
.article-header .journal-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.article-header .journal-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color, var(--copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.article-header .journal-name {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-color, var(--copper));
}
.article-header .parent-brand {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251,245,255,0.4);
  display: block;
  margin-top: 2px;
}
.article-header .content-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(251,245,255,0.15);
  color: rgba(251,245,255,0.6);
  margin-bottom: 1rem;
}
.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.article-header .subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(251,245,255,0.75);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.article-header .byline {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: rgba(251,245,255,0.6);
}
.article-header .byline strong {
  color: rgba(251,245,255,0.88);
}


/* ─────────────────────────────────────────────
   ARTICLE BODY — Standard content typography
   ───────────────────────────────────────────── */

.article-body {
  max-width: 1100px; /* Migrated from 720px to wide track */
  margin: 0 auto;
  padding: 2.5rem 2rem 3rem;
}

/* 3-Column Article Layout */
.article-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 720px) 220px;
  gap: 3rem;
  align-items: start;
  justify-content: center;
}

@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.article-col-left {
  position: sticky;
  top: 100px;
}

.article-col-right {
  position: sticky;
  top: 100px;
}

.article-col-center {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--espresso);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--espresso);
  margin: 2rem 0 0.75rem;
}
.article-body p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 1.25rem;
}
.article-body blockquote {
  border-left: 3px solid var(--copper);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(212,134,98,0.04);
}
.article-body blockquote p {
  font-style: italic;
  color: var(--muted);
}
.article-body ul, .article-body ol {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 1rem 0 1.25rem 1.5rem;
}
.article-body a {
  color: var(--copper-text);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body a:hover { color: var(--copper); }
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5rem 0;
}


/* ─────────────────────────────────────────────
   FOOTER — 5-Column Standard (Locked April 5, 2026)
   Brand / Journals / Products / Intelligence / Organization
   ───────────────────────────────────────────── */

.lc-footer {
  background: var(--espresso);
  border-top: 3px solid var(--copper);
  color: rgba(251,245,255,0.88);
}
.lc-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}
.lc-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.lc-footer-brand-logo {
  display: block;
  height: 72px;
  width: auto;
  margin-bottom: 1.25rem;
  opacity: 0.95;
}
.lc-footer-brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bg-open);
  margin-bottom: 0.35rem;
}
.lc-footer-brand-mark em { font-style: normal; color: var(--copper); }
.lc-footer-brand-org {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251,245,255,0.88);
  margin-bottom: 1rem;
}
.lc-footer-brand-org a { color: inherit; text-decoration: none; }
.lc-footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(251,245,255,0.82);
}
.lc-footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.lc-footer-col ul { list-style: none; padding: 0; }
.lc-footer-col li { margin-bottom: 0.5rem; }
.lc-footer-col a {
  font-size: 0.78rem;
  color: rgba(251,245,255,0.85);
  text-decoration: none;
  transition: color 0.15s;
}
.lc-footer-col a:hover { color: var(--copper); }
.lc-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(251,245,255,0.88);
}
.lc-footer-bottom a {
  color: rgba(251,245,255,0.88);
  text-decoration: none;
}
.lc-footer-bottom a:hover { color: var(--copper); }


/* ─────────────────────────────────────────────
   PUBLICATION HEADER — Shared by all .pub-* pages
   (Signal, GYN-Signal, OB-Signal, Briefing, Viva Voce)
   Pages set their own --pub-accent / --pub-light in :root.
   ───────────────────────────────────────────── */

.pub-tag { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.pub-pill { display: inline-block; background: var(--pub-accent); padding: 0.22rem 0.7rem; }
.pub-pill span { font-size: 0.52rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--white); }
.pub-day { font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(251,245,255,0.22); }
.pub-name { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 300; line-height: 1.04; color: var(--bg-open); letter-spacing: -0.01em; margin-bottom: 0.4rem; }
.pub-subtitle { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--pub-accent); margin-bottom: 1.5rem; opacity: 0.8; }
.pub-deck { font-size: 0.97rem; line-height: 1.8; color: rgba(251,245,255,0.45); max-width: 560px; margin-bottom: 2.25rem; }
.pub-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }


/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 1440px) {
  .lc-nav-org { display: none; }
  .lc-nav-links { gap: 1rem; }
  .lc-nav-links li a { font-size: 0.75rem; letter-spacing: 0.08em; }
}

@media (max-width: 1024px) {
  .lc-nav-links { display: none; }
  .lc-nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--espresso);
    padding: 1rem 2rem 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    z-index: 99;
  }
  .lc-nav-links.open li a { height: auto; line-height: 2.5; }
  .lc-nav-toggle { display: block; }
  .lc-footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .lc-footer-top { grid-template-columns: 1fr; }
  .lc-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .article-header-inner { padding: 1.5rem 1.25rem; }
  .article-body { padding: 2rem 1.25rem; }
}


/* ─────────────────────────────────────────────
   MOBILE NAV TOGGLE SCRIPT SUPPORT
   ───────────────────────────────────────────── */

.lc-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.lc-nav-toggle.active span:nth-child(2) { opacity: 0; }
.lc-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ─────────────────────────────────────────────
   VISUAL: Logo Banner (Added to Standard)
───────────────────────────────────────────── */
.logo-banner {
  padding: 1.5rem 2rem;
  background: var(--espresso);
  text-align: center;
  border-bottom: 2px solid var(--copper);
}
.logo-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.logo-banner-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(251,245,255,0.82);
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s;
}
.logo-banner-item:hover {
  color: var(--copper);
}
.logo-banner-item em { font-style: normal; color: var(--copper); font-weight: 600; }
.logo-banner-divider {
  width: 1px;
  height: 24px;
  background: rgba(251,245,255,0.12);
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .logo-banner-inner { gap: 1.5rem; justify-content: center; }
  .logo-banner-item { font-size: 0.9rem; }
}
@media (max-width: 600px) {
  .logo-banner-inner { gap: 1rem; }
  .logo-banner-item { font-size: 0.82rem; }
  .logo-banner-divider { height: 18px; }
}

/* ─────────────────────────────────────────────
   PHASE 2: UTILITY & APPLICATION LAYER
   ───────────────────────────────────────────── */

/* Utility Prose Layout (About, Privacy, Terms) */
.utility-prose {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}
.utility-prose h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 2rem;
  line-height: 1.1;
}
.utility-prose h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--espresso);
}
.utility-prose p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 1.5rem;
}

/* Glassmorphic Elevated Card Form Wrapper (Beehiiv/Coda) */
.utility-form-wrapper {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 48px rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 3rem;
  max-width: 600px;
  margin: 4rem auto;
}

/* Applet App-Shell Structures (Packs) */
.app-shell-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
.applet-bottom-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--espresso);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 100;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}
.applet-carousel-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.applet-carousel-card {
  flex: 0 0 85%;
  max-width: 400px;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
}

@media (max-width: 1024px) {
  /* Hide TOC and Context Columns on Mobile to preserve "Reading App" focus */
  .article-col-left, .article-col-right {
    display: none;
  }
}


/* ─────────────────────────────────────────────
   LC FAMILY BADGE — Signal #8
   Lightweight "Part of the Labora Collective" identifier
   for hosted microsites (*.laboracollective.com).

   Fully standalone — works on pages with NO other LC styles.
   Builders pick a layout mode via modifier class:

     .lc-family-badge                → fixed bottom-right corner chip (default)
     .lc-family-badge.lc-badge-inline  → inline element (flows in content)
     .lc-family-badge.lc-badge-footer  → full-width footer line

   HTML (copy-paste snippet):
     <a class="lc-family-badge" href="https://laboracollective.com"
        target="_blank" rel="noopener">
       <span class="lc-badge-mark">L</span>
       Part of the <strong>Labora Collective</strong>
     </a>

   Added: 2026-05-20
   ───────────────────────────────────────────── */

/* ---------- Base badge (all variants) ---------- */
.lc-family-badge {
  /* Reset — must work on completely unstyled pages */
  all: unset;
  box-sizing: border-box;
  cursor: pointer;

  /* Layout */
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;

  /* Typography — fallback-safe font stack */
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;

  /* Color — quiet, low-visual-weight */
  color: var(--muted);            /* --muted */
  background: rgba(247, 243, 238, 0.92); /* --bg-warm with slight transparency */
  border: 1px solid rgba(212, 134, 98, 0.18); /* --copper hint */
  border-radius: 100px;
  padding: 0.35rem 0.75rem 0.35rem 0.4rem;

  /* Interaction */
  transition: opacity 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;

  /* Default placement: fixed corner chip */
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 9999;
}

.lc-family-badge:hover {
  opacity: 1;
  border-color: rgba(212, 134, 98, 0.45);
  box-shadow: 0 2px 8px rgba(54, 37, 17, 0.08);
}

.lc-family-badge:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.lc-family-badge strong {
  font-weight: 600;
  color: var(--espresso);            /* --espresso */
}

/* ---------- Text-mark icon ---------- */
.lc-badge-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--espresso);       /* --espresso */
  color: var(--bg-open);            /* --bg-open */
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}

/* ---------- Modifier: Inline ---------- */
.lc-family-badge.lc-badge-inline {
  position: static;
  bottom: auto;
  right: auto;
}

/* ---------- Modifier: Footer line ---------- */
.lc-family-badge.lc-badge-footer {
  position: static;
  bottom: auto;
  right: auto;
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  padding: 0.6rem 1rem;
  background: rgba(247, 243, 238, 0.96);
}

/* ---------- Dark background variant ---------- */
.lc-family-badge.lc-badge-dark {
  background: rgba(54, 37, 17, 0.85);
  border-color: rgba(212, 134, 98, 0.25);
  color: rgba(251, 245, 255, 0.7);
}
.lc-family-badge.lc-badge-dark strong {
  color: rgba(251, 245, 255, 0.95);
}
.lc-family-badge.lc-badge-dark .lc-badge-mark {
  background: var(--copper);       /* --copper */
  color: var(--espresso);
}
.lc-family-badge.lc-badge-dark:hover {
  border-color: rgba(212, 134, 98, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ---------- Responsive: badge stays out of the way ---------- */
@media (max-width: 600px) {
  .lc-family-badge:not(.lc-badge-inline):not(.lc-badge-footer) {
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.62rem;
    padding: 0.3rem 0.6rem 0.3rem 0.35rem;
  }
  .lc-badge-mark {
    width: 16px;
    height: 16px;
    font-size: 0.65rem;
  }
}


/* ─────────────────────────────────────────────
   SMART SUBDOMAIN RETURN STRIP (Family Signal #9)
   ─────────────────────────────────────────────
   Thin chrome strip at the top of every LC Publication Subdomain.
   Provides a context-aware return link back to where the reader came from.

   How it works:
   - Stream landing pages link out to subdomain articles with
     ?ref=streams/<slug>&anchor=card-<id>
   - On subdomain load, assets/js/lc-return-strip.js reads those params
     and updates the .lc-return-strip__back link to point at
     /streams/<slug>/#card-<id> with label "← Back to <Stream Name>"
   - Browser scroll-anchors back to the exact card. Reader keeps their place.
   - If no ?ref= present, defaults to "← Labora Collective" → home.

   HTML snippet for subdomain pages (copy-paste right after <body>):

     <div class="lc-return-strip">
       <a href="https://laboracollective.com" class="lc-return-strip__brand">
         <img src="https://laboracollective.com/assets/images/journal-art/lc-logo-light-peach.png"
              alt="" class="lc-return-strip__logo">
         <span class="lc-return-strip__mark"><em>Labora</em> Collective</span>
       </a>
       <a href="https://laboracollective.com" class="lc-return-strip__back">← Labora Collective</a>
     </div>
     <script src="https://laboracollective.com/assets/js/lc-return-strip.js" defer></script>

   For immersive visual-essay subdomains, add .lc-strip-immersive to the strip
   for a more transparent background (won't fight the design).

   Added: 2026-05-20
   ───────────────────────────────────────────── */

.lc-return-strip {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 44px;
  padding: 0 1.25rem;
  background: rgba(54, 37, 17, 0.92);    /* var(--espresso) at 92% */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.72rem;
  border-bottom: 1px solid rgba(212, 134, 98, 0.18);  /* var(--copper) low alpha */
}

.lc-return-strip__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(251, 245, 255, 0.92);
  text-decoration: none;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.lc-return-strip__brand:hover { opacity: 0.8; }

.lc-return-strip__logo {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

.lc-return-strip__mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.lc-return-strip__mark em {
  font-style: normal;
  color: var(--copper);
}

.lc-return-strip__back {
  color: rgba(251, 245, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.15s;
  flex-shrink: 0;
}
.lc-return-strip__back:hover { color: var(--copper); }

/* ---------- Mobile: tighter, smaller, hide wordmark to save space ---------- */
@media (max-width: 600px) {
  .lc-return-strip { height: 38px; padding: 0 0.85rem; font-size: 0.66rem; gap: 0.5rem; }
  .lc-return-strip__logo { height: 20px; }
  .lc-return-strip__mark { display: none; }     /* keep just the logo on phones */
}

/* ---------- Immersive variant — for visual-essay subdomains ---------- */
.lc-return-strip.lc-strip-immersive {
  background: rgba(54, 37, 17, 0.55);
  border-bottom: none;
}
