/* ============================================================
   SCULPTRIX BRAND SYSTEM v1.0
   Locked: 2026-05-04
   Brand: Preppy Editorial Authority
   Source of truth for sculptrix.ai
   Drop into any page via <link rel="stylesheet" href="/sculptrix-brand-system.css">
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,700;0,6..72,800;1,6..72,400;1,6..72,700;1,6..72,800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---- Design tokens ---- */
:root {
  /* Color */
  --cream: #F5F0E6;
  --stationery-white: #FAFAF7;
  --ink: #1A1A1A;
  --slate: #4A4A48;
  --stone: #8C8985;
  --oxblood: #6E1818;
  --navy: #1E3A5F;
  --sandstone: #D9C9A8;
  --rule: rgba(26, 26, 26, 0.15);
  --rule-soft: rgba(26, 26, 26, 0.08);

  /* Typography */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'Menlo', 'Courier New', monospace;

  /* Spacing scale */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 36px;
  --space-xl: 56px;
  --space-2xl: 96px;
  --space-3xl: 120px;

  /* Layout widths */
  --max-editorial: 580px;
  --max-hero: 880px;
  --max-wide: 1080px;

  /* Border radius (preppy editorial = sharp corners; only chips/buttons use small radius) */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 999px;

  /* Motion */
  --transition-fast: all 0.15s ease;
  --transition-base: all 0.2s ease;
  --transition-slow: all 0.4s ease;

  /* Layout reference */
  --nav-height: 76px;
}

/* ---- Reset + base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--oxblood);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.h2 em { font-style: italic; color: var(--oxblood); }

.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.h3 em { font-style: italic; color: var(--oxblood); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
}

.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--slate);
  max-width: var(--max-editorial);
}

.body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  max-width: var(--max-editorial);
}

/* Use this on paragraphs containing .stat-highlight — line-height 2 lets the
   navy callout become one continuous block across wrapped lines */
.body--reading-block {
  line-height: 2;
}

.footnote {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}
.footnote--oxblood { color: var(--oxblood); }

.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  color: var(--oxblood);
  max-width: var(--max-editorial);
}

.wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.wordmark__suffix { color: var(--oxblood); }
.wordmark--large { font-size: 32px; }
.wordmark--small { font-size: 18px; }

/* ============================================================
   SIGNATURE NAVY STAT CALLOUT
   Use inside any .body--reading-block paragraph
   ============================================================ */

.stat-highlight {
  background: var(--navy);
  color: var(--stationery-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  padding: 0.55em 0.42em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid;
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
}
.btn-primary {
  background: var(--oxblood);
  color: var(--stationery-white);
  border-color: var(--oxblood);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--stationery-white);
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
}

/* ============================================================
   AVATAR + LOGO SEAL
   The initial-in-oxblood-circle pattern.
   .logo-seal = brand mark (S). .avatar = team initials (B/P/J).
   ============================================================ */

.avatar,
.logo-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--oxblood);
  color: var(--stationery-white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  user-select: none;
}
.avatar { width: 44px; height: 44px; font-size: 20px; }
.avatar--small { width: 32px; height: 32px; font-size: 14px; }
.avatar--large { width: 64px; height: 64px; font-size: 28px; }
.avatar--xlarge { width: 96px; height: 96px; font-size: 42px; }
.logo-seal { width: 64px; height: 64px; font-size: 32px; }
.logo-seal--small { width: 32px; height: 32px; font-size: 16px; }
.logo-seal--large { width: 96px; height: 96px; font-size: 48px; }

/* Optional 1px ink border for "stamped" deliverable contexts */
.logo-seal--stamped {
  box-shadow: 0 0 0 1px var(--ink);
}

/* ============================================================
   SECTION SEAL — Snow Leopard mascot
   v1 placeholder. Replace embedded SVG with final illustration
   when commissioned. Use as section break ornament.
   ============================================================ */

.section-seal {
  display: block;
  margin: 32px auto;
  width: 32px;
  height: 32px;
  color: var(--oxblood);
}
.section-seal--large { width: 64px; height: 64px; margin: 48px auto; }

/* ============================================================
   EDITORIAL RULE LINES
   ============================================================ */

.editorial-rule {
  border: 0;
  border-top: 1px solid var(--ink);
  opacity: 0.15;
  margin: 56px 0 36px;
}
.editorial-rule--centered {
  max-width: 80px;
  margin: 32px auto;
  border-top: 2px solid var(--oxblood);
  opacity: 1;
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
  background: var(--stationery-white);
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  transition: var(--transition-base);
}
.card:hover {
  border-color: var(--rule);
  transform: translateY(-2px);
}

/* ============================================================
   SANDSTONE CALLOUT
   Set-apart quote blocks, sidebars, "this matters" content
   ============================================================ */

.sandstone-callout {
  background: var(--sandstone);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  max-width: var(--max-editorial);
}
.sandstone-callout__line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
}
.sandstone-callout__attribution {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-top: 12px;
}

/* ============================================================
   CAUSE BAND
   The Snow Leopard Trust voice line, sitewide near footer
   ============================================================ */

.cause-band {
  background: var(--sandstone);
  padding: 64px 32px;
  text-align: center;
}
.cause-band__line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  max-width: var(--max-editorial);
  margin: 0 auto;
}
.cause-band__attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-top: 24px;
}
.cause-band__seal {
  margin: 0 auto 24px;
}

/* ============================================================
   STICKY NAVIGATION
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--stone);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
  height: var(--nav-height);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav__link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  transition: var(--transition-base);
}
.nav__link:hover { color: var(--ink); }
.nav__link--active { color: var(--ink); }
.nav__link--cta {
  background: var(--oxblood);
  color: var(--stationery-white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.nav__link--cta:hover { background: var(--ink); color: var(--stationery-white); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--cream);
  border-top: 1px solid var(--sandstone);
  padding: 64px 32px 32px;
}
.footer__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 16px;
}
.footer__link {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--transition-base);
}
.footer__link:hover { color: var(--oxblood); }
.footer__bottom {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */

.container {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 32px;
}
.container--editorial { max-width: var(--max-editorial); padding: 0 32px; }
.container--hero { max-width: var(--max-hero); padding: 0 32px; }

.section {
  padding: var(--space-2xl) 0;
}
.section--hero {
  padding: var(--space-2xl) 0 var(--space-xl);
}
.section--tight {
  padding: var(--space-xl) 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .h1 { font-size: 36px; }
  .h2 { font-size: 28px; }
  .h3 { font-size: 22px; }
  .lede { font-size: 18px; }
  .body { font-size: 15px; }
  .stat-highlight { font-size: 16px; }
  .pull-quote { font-size: 20px; }
  .wordmark { font-size: 18px; }

  .nav { padding: 14px 20px; }
  .nav__links { gap: 14px; }
  .nav__link { font-size: 11px; letter-spacing: 0.14em; }

  .container,
  .container--editorial,
  .container--hero { padding: 0 20px; }
  .section { padding: var(--space-xl) 0; }
  .section--hero { padding: var(--space-xl) 0 var(--space-lg); }

  .editorial-rule { margin: 32px 0 24px; }

  .cause-band { padding: 36px 20px; }
  .cause-band__line { font-size: 18px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .btn-primary,
  .btn-secondary { padding: 14px 24px; font-size: 11px; }
}

@media (max-width: 480px) {
  .h1 { font-size: 30px; }
  .h2 { font-size: 24px; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL (use with IntersectionObserver in page JS)
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.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 (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   v1.1 ADDITIONS — 2026-05-06 (post-design-critique)
   ============================================================ */

/* ---- Article typography (widened H2/H3 gap) ---- */
.article-hero {
  padding: 96px 0 32px;
}
@media (max-width: 760px) { .article-hero { padding: 56px 0 20px; } }

.article-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
}
.article-meta strong { color: var(--ink); font-weight: 500; }
.article-meta a { color: var(--oxblood); text-decoration: none; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 760px) { .article-body { padding: 0 20px; } }

.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.18;
  color: var(--ink);
  margin: 56px 0 18px;
  letter-spacing: -0.005em;
}
.article-body h2 em { font-style: italic; color: var(--oxblood); }

.article-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ink);
  margin: 32px 0 12px;
  letter-spacing: 0;
}
.article-body h3 em { font-style: italic; color: var(--oxblood); }

@media (max-width: 760px) {
  .article-body h2 { font-size: 26px; margin: 40px 0 14px; }
  .article-body h3 { font-size: 17px; margin: 24px 0 10px; }
}

/* ---- Dropdown nav (More ▾) ---- */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.nav__dropdown-toggle:hover { color: var(--ink); }
.nav__dropdown-toggle::after {
  content: "▾";
  font-size: 9px;
  color: var(--oxblood);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  background: var(--stationery-white);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
  list-style: none;
  margin: 0;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s;
}
.nav__dropdown-link:hover {
  background: var(--cream);
  color: var(--oxblood);
}
.nav__dropdown-link em { font-style: italic; color: var(--oxblood); }

/* ---- Mobile hamburger nav ---- */
.nav__hamburger {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav__hamburger-icon {
  position: relative;
  width: 22px;
  height: 14px;
  display: block;
}
.nav__hamburger-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.25s ease;
}
.nav__hamburger-icon span:nth-child(1) { top: 0; }
.nav__hamburger-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__hamburger-icon span:nth-child(3) { bottom: 0; }
.nav.is-mobile-open .nav__hamburger-icon span:nth-child(1) {
  top: 50%; transform: translateY(-50%) rotate(45deg);
}
.nav.is-mobile-open .nav__hamburger-icon span:nth-child(2) { opacity: 0; }
.nav.is-mobile-open .nav__hamburger-icon span:nth-child(3) {
  bottom: 50%; transform: translateY(50%) rotate(-45deg);
}

.nav__mobile-panel {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 49;
  padding: 32px 28px 56px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile-panel.is-open {
  display: flex;
}
.nav__mobile-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  letter-spacing: -0.005em;
}
.nav__mobile-link em { font-style: italic; color: var(--oxblood); }
.nav__mobile-link:hover { color: var(--oxblood); }
.nav__mobile-link--secondary {
  font-size: 18px;
  font-weight: 400;
  color: var(--slate);
  padding: 10px 0;
}
.nav__mobile-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-top: 28px;
  margin-bottom: 8px;
}
.nav__mobile-cta {
  margin-top: 24px;
  text-align: center;
  background: var(--oxblood);
  color: var(--stationery-white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 28px;
  border-radius: 2px;
  text-decoration: none;
  display: block;
}
.nav__mobile-cta:hover { background: var(--ink); color: var(--stationery-white); }

@media (max-width: 760px) {
  .nav__hamburger { display: inline-flex; }
  .nav__links { display: none; }
  body.nav-mobile-open { overflow: hidden; }
}

/* ---- Back-to-top pill ---- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 12px 18px;
  background: var(--ink);
  color: var(--stationery-white);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
  box-shadow: 0 4px 16px rgba(26, 26, 26, 0.18);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--oxblood);
}
.back-to-top::before {
  content: "↑";
  font-size: 14px;
  color: var(--sandstone);
  line-height: 1;
}
.back-to-top:hover::before { color: var(--stationery-white); }

@media (max-width: 760px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    padding: 10px 16px 10px 14px;
    font-size: 9px;
  }
}

/* ---- Stat callout color variants ----
   Default .stat-highlight stays navy. Apply one of these modifier
   classes for tonal variety per page. */
.stat-highlight--oxblood {
  background: var(--oxblood);
  color: var(--stationery-white);
}
.stat-highlight--ink {
  background: var(--ink);
  color: var(--sandstone);
}
.stat-highlight--sandstone {
  background: var(--sandstone);
  color: var(--ink);
  border-bottom: 2px solid var(--oxblood);
}

/* ---- Editorial figure (Editorial #8 — photography craft, 2026-05-06) ----
   Canonical figure + caption pattern. NYT-magazine register.
   Captions ADD information — they don't describe.
   Three width variants: default body-width (1080px), --full bleed (1280px),
   --narrow inline (720px). Always paired with figcaption. */
.editorial-figure {
  margin: 64px auto;
  max-width: 1080px;
  padding: 0 32px;
}
.editorial-figure--full {
  max-width: 1280px;
  padding: 0 32px;
}
.editorial-figure--narrow {
  max-width: 720px;
  padding: 0 32px;
}
.editorial-figure--inline {
  max-width: 720px;
  padding: 0 32px;
  margin: 48px auto;
}
.editorial-figure img,
.editorial-figure video {
  display: block;
  width: 100%;
  height: auto;
  background: var(--ink);
  border-radius: 0;
}
.editorial-figure--cinema img,
.editorial-figure--cinema video {
  aspect-ratio: 21 / 9;
  object-fit: cover;
}
.editorial-figure--landscape img,
.editorial-figure--landscape video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.editorial-figure--portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.editorial-figure__caption {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 640px;
  margin: 18px 0 0;
}
.editorial-figure__caption em { color: var(--oxblood); font-style: italic; }
.editorial-figure__credit {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule-soft);
  max-width: 320px;
}
.editorial-figure__credit strong { color: var(--ink); font-weight: 500; }
@media (max-width: 760px) {
  .editorial-figure { margin: 40px auto; padding: 0 20px; }
  .editorial-figure__caption { font-size: 13px; padding: 0; }
}

/* ---- Byline block (Editorial #9 — magazine masthead per essay, 2026-05-06) ----
   Replaces the thin "By Briana O'Brien" single-line byline.
   The Atlantic / Harper's / New Yorker register: name, role, dateline, location,
   length, issue, then a short editorial bio paragraph. Hairline rules above and below. */
.byline-block {
  max-width: 720px;
  margin: 36px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--ink);
}
.byline-block__by {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.byline-block__name {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 8px;
}
.byline-block__name em { font-style: italic; color: var(--oxblood); }
.byline-block__role {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--slate);
  margin-bottom: 22px;
}
.byline-block__role em { color: var(--oxblood); font-style: italic; }
.byline-block__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 14px 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 18px;
  line-height: 1.6;
}
.byline-block__meta strong { color: var(--oxblood); font-weight: 500; }
.byline-block__bio {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0;
  max-width: 620px;
}
.byline-block__bio em { color: var(--oxblood); font-style: italic; }
@media (max-width: 760px) {
  .byline-block { padding: 22px 0 0; margin-top: 28px; }
  .byline-block__name { font-size: 24px; }
  .byline-block__role { font-size: 14px; }
  .byline-block__meta { gap: 14px; padding: 12px 0; }
  .byline-block__bio { font-size: 13px; }
}

/* ---- Paw glyph system (Editorial #10 — universal editorial ornament, 2026-05-06) ----
   The snow-leopard paw is the universal mark threaded across the editorial system.
   Used as: section divider (existing .paw-divider), end-of-essay end-mark (.paw-end-mark),
   masthead seal (.paw-seal), and freely composable utility (.paw-glyph + size).
   The SVG is canonical: 4 toes arranged in an arc above one larger central pad.
   Color is inherited via currentColor — set on parent or via modifier. */

/* Generic utility — drop in anywhere with a size modifier */
.paw-glyph {
  display: inline-block;
  vertical-align: middle;
  color: var(--oxblood);
  flex-shrink: 0;
}
.paw-glyph--xs { width: 12px; height: 12px; }
.paw-glyph--sm { width: 16px; height: 16px; }
.paw-glyph--md { width: 24px; height: 24px; }
.paw-glyph--lg { width: 40px; height: 40px; }
.paw-glyph--xl { width: 64px; height: 64px; }
.paw-glyph--block {
  display: block;
  margin: 32px auto;
}
.paw-glyph--ink { color: var(--ink); }
.paw-glyph--cream { color: var(--cream); }

/* End-mark — small inline paw at the end of the last paragraph of an essay.
   The magazine "■" / "◆" / "♦" tradition. Inherits font color, sized to baseline. */
.paw-end-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  vertical-align: -2px;
  color: var(--oxblood);
}

/* Masthead seal — small paw beside the SCULPTRIX wordmark in masthead bands.
   Threads the brand mark quietly across every issue/section masthead. */
.paw-seal {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  vertical-align: -2px;
  color: var(--oxblood);
}

/* ---- Editorial aside / sidebar note (Editorial #11 — universal sidebar pattern, 2026-05-06) ----
   Drop-in editorial aside box for any page (not just blog essays).
   The blog-essay .marginalia component handles the right-margin-gutter float;
   .aside-note handles the in-flow inline editorial sidebar.
   Three labels: Field Note, Editor's Note, Sidebar.
   Three visual treatments: default (oxblood-bordered), inset (rule above + below), ink (dark mode). */
.aside-note {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--stationery-white);
  border-left: 3px solid var(--oxblood);
  padding: 24px 28px;
  margin: 36px 0;
  max-width: 640px;
}
.aside-note em { font-style: italic; color: var(--oxblood); }
.aside-note strong { color: var(--ink); font-weight: 500; }
.aside-note p { margin: 0 0 12px; }
.aside-note p:last-child { margin-bottom: 0; }
.aside-note__label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 12px;
  font-weight: 500;
}
.aside-note__label-attribution {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--slate);
  margin-left: 8px;
}

/* Variant: inset — no left border, rule above + below, transparent bg */
.aside-note--inset {
  background: transparent;
  border-left: 0;
  border-top: 1px solid var(--oxblood);
  border-bottom: 1px solid var(--oxblood);
  padding: 22px 0;
}

/* Variant: ink — dark mode for cause-band / dark backgrounds */
.aside-note--ink {
  background: var(--ink);
  color: var(--cream);
  border-left-color: var(--sandstone);
}
.aside-note--ink em { color: var(--sandstone); }
.aside-note--ink strong { color: var(--cream); }
.aside-note--ink .aside-note__label { color: var(--sandstone); }
.aside-note--ink .aside-note__label-attribution { color: var(--cream); }

@media (max-width: 760px) {
  .aside-note { padding: 18px 20px; margin: 28px 0; font-size: 14px; }
  .aside-note--inset { padding: 18px 0; }
}

/* ---- Colophon (Editorial #13 — publication-level credits at the back of the issue, 2026-05-06) ----
   The magazine colophon block. Sits between the page's last content section and the footer nav.
   Three columns: Publication / Set in / Founders. Closing dateline below.
   Exists on every page except /pms-compatibility (which uses a minimal footer by design). */
.colophon {
  background: var(--cream);
  padding: 64px 32px 0;
  border-top: 1px solid var(--rule-soft);
}
.colophon__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--rule-soft);
}
.colophon__brand { grid-column: 1 / span 4; }
.colophon__type { grid-column: 5 / span 4; }
.colophon__founders { grid-column: 9 / span 4; }
@media (max-width: 980px) {
  .colophon { padding: 48px 32px 0; }
  .colophon__inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 28px; }
  .colophon__brand,
  .colophon__type,
  .colophon__founders { grid-column: 1 / -1; }
}
.colophon__col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule-soft);
  font-weight: 500;
}
.colophon__wordmark {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1;
}
.colophon__wordmark em { color: var(--oxblood); font-style: italic; }
.colophon__tagline {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--slate);
  margin: 0 0 12px;
}
.colophon__line {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0 0 8px;
}
.colophon__line:last-child { margin-bottom: 0; }
.colophon__line em { color: var(--oxblood); font-style: italic; }
.colophon__line strong { color: var(--ink); font-weight: 500; }
.colophon__dateline {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  line-height: 2;
}
.colophon__dateline strong { color: var(--ink); font-weight: 500; }
.colophon__dateline em {
  font-family: 'Newsreader', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
}

/* ============================================================
   END SCULPTRIX BRAND SYSTEM v1.6
   ============================================================ */
