/* Fonts (self-hosted, inlined here to avoid an extra render-blocking request) */
/* Self-hosted Newsreader + DM Sans (latin subset, variable). Source: Google Fonts, SIL Open Font License. */
@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
  src: url(/assets/fonts/dm-sans-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/assets/fonts/dm-sans-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
  src: url(/assets/fonts/newsreader-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(/assets/fonts/newsreader-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Logo only: Black Ops One (Bulletproof) + Archivo Black Italic (Entrepreneur). SIL Open Font License. */
@font-face {
  font-family: 'Archivo';
  font-style: italic;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(/assets/fonts/archivo-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Black Ops One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/black-ops-one.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Bulletproof Entrepreneur homepage
   Every color, font and spacing value lives in :root so the design pass can swap them in one place. */

:root {
  /* Color */
  --ink: #0D0D0D;
  --ink-2: #151515;
  --bone: #F1EDE3;
  --paper: #FAF9F6;
  --oxblood: #7A1722;
  --oxblood-hover: #8E1C29;
  --signal: #D52B32;
  --graphite: #343434;
  --muted: #5E5850;
  --line-dark: #2A2A2A;
  --line-light: rgba(13, 13, 13, .16);
  --bone-72: rgba(241, 237, 227, .72);
  --bone-50: rgba(241, 237, 227, .5);
  --ox-tint: #D9A3A9;
  --ox-bright: #C8313C; /* oxblood lifted so it reads on the dark nav and footer */
  --placeholder: #9A8F80;
  --placeholder-fill: #E4DDCE;
  --placeholder-fill-dark: #1C1C1C;

  /* Type */
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --fs-hero: clamp(3rem, 6.2vw, 6.8rem);
  --fs-h2: clamp(2.2rem, 4.2vw, 4rem);
  --fs-h3: clamp(1.35rem, 1.8vw, 1.6rem);
  --fs-body: 1.0625rem;
  --fs-lead: clamp(1.125rem, 1.4vw, 1.3rem);
  --fs-small: .8125rem;
  --fs-label: .6875rem;
  --tracking-label: .22em;

  /* Space */
  --gutter: clamp(16px, 4.4vw, 64px);
  --max: 1440px;
  --section-y: clamp(72px, 9vw, 128px);
  --gap: clamp(20px, 2.4vw, 32px);
  --nav-h: 76px;

  /* Shape and motion */
  --radius: 1px;
  --rule: 2px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--ink); color: var(--bone); font-family: var(--font-sans); font-size: var(--fs-body); line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }
.sr, .hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--bone); color: var(--ink); padding: 10px 14px; }
.skip:focus { left: 12px; top: 12px; }
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

/* Placeholder: anything in [brackets]. Visible on purpose so nothing ships by accident. */
.ph { color: var(--placeholder); outline: 1px dashed currentColor; outline-offset: 2px; border-radius: 2px; font-style: normal; }

/* Oxblood Rule */
.orule--v { display: block; width: var(--rule); align-self: stretch; flex-shrink: 0; background: var(--oxblood); }

/* Type roles */
.h2 { font-family: var(--font-serif); font-weight: 700; font-size: var(--fs-h2); line-height: 1.02; letter-spacing: -.015em; text-wrap: balance; }
.h2 em { font-weight: 500; }
.kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: var(--fs-label); font-weight: 600; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--oxblood); }
.kicker::before { content: ""; width: 32px; height: var(--rule); background: var(--oxblood); }
.kicker--light { color: var(--bone-72); }
.live { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); order: 2; }
.textlink { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; }
.textlink > span { color: var(--oxblood); transition: transform .3s var(--ease); }
.textlink:hover > span { transform: translateX(4px); }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head--split { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--gap) clamp(32px, 6vw, 96px); align-items: end; }
.section-head--split > .textlink { justify-self: end; }
.section-head__body { font-size: var(--fs-lead); line-height: 1.5; color: var(--graphite); display: flex; flex-direction: column; gap: 10px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: var(--radius); font-family: var(--font-sans); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; cursor: pointer; white-space: nowrap; transition: background-color .25s var(--ease), color .25s var(--ease); }
.btn--primary { background: var(--oxblood); color: var(--bone); }
.btn--primary:hover { background: var(--oxblood-hover); }
.btn--light { background: var(--bone); color: var(--ink); }
.btn--light:hover { background: var(--paper); }
.btn--sm { min-height: 40px; padding: 0 16px; }

/* NAV */
/* LOGO: stacked lockup (Chi's pick, 2026-09-26). THE / BULLETPROOF (Black Ops One stencil, oxblood) / ENTREPRENEUR(TM) (Archivo Black Italic, white).
   Trademark rule: always the full name "The Bulletproof Entrepreneur", one lockup, TM attached to Entrepreneur. */
.wordmark { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 3px; text-decoration: none; color: var(--bone); text-transform: uppercase; white-space: nowrap; line-height: 1; }
.wm-the { font-family: var(--font-sans); font-weight: 700; font-size: 9.5px; letter-spacing: .5em; color: var(--bone-72); }
.wm-bp { font-family: 'Black Ops One', 'Arial Black', sans-serif; font-weight: 400; font-size: 29px; letter-spacing: .015em; color: #C8313C; line-height: .9; }
.wm-ent { font-family: 'Archivo', 'Arial Black', sans-serif; font-style: italic; font-weight: 900; font-size: 14.9px; letter-spacing: .16em; color: var(--bone); }
.wm-ent sup { font-family: var(--font-sans); font-style: normal; font-weight: 600; font-size: .55em; letter-spacing: 0; vertical-align: top; position: relative; top: -.25em; margin-left: .1em; }
.wordmark--lg { gap: 6px; }
.wordmark--lg .wm-the { font-size: clamp(11px, 1.2vw, 16px); }
.wordmark--lg .wm-bp { font-size: clamp(48px, 7.4vw, 104px); }
.wordmark--lg .wm-ent { font-size: clamp(24.5px, 3.8vw, 53.5px); }
@media (max-width: 900px) {
  .wm-the { font-size: 8px; }
  .wm-bp { font-size: 21px; }
  .wm-ent { font-size: 10.8px; }
}

.nav { position: sticky; top: 0; z-index: 50; height: var(--nav-h); margin-bottom: calc(var(--nav-h) * -1); border-bottom: 1px solid transparent; transition: background-color .3s var(--ease), border-color .3s var(--ease); }
.nav.is-solid { background: rgba(13,13,13,.94); border-bottom-color: var(--line-dark); backdrop-filter: saturate(1.2) blur(8px); }
.nav__inner { max-width: var(--max); height: 100%; margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__links { display: flex; align-items: center; gap: 30px; font-size: .9rem; font-weight: 500; }
.nav__links a { text-decoration: none; padding-block: 6px; border-bottom: var(--rule) solid transparent; }
.nav__links a:hover { border-bottom-color: var(--oxblood); }
.nav__search { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
.nav__actions { display: flex; align-items: center; gap: 8px; }
.nav__menu { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 7px; }
.nav__menu span { display: block; width: 22px; height: 1.5px; background: var(--bone); transition: transform .3s var(--ease); }
.nav__menu[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* HERO */
.fold { min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; }
.hero { position: relative; flex: 1 0 auto; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero__photo { position: absolute; top: calc(var(--nav-h) + 12px); right: 0; bottom: 0; width: 50%; }
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 10%; }
.hero__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 0%, rgba(13,13,13,0) 28%), linear-gradient(180deg, rgba(13,13,13,.6) 0%, rgba(13,13,13,0) 18%, rgba(13,13,13,0) 75%, rgba(13,13,13,.5) 100%); }
.hero__inner { position: relative; z-index: 2; padding-top: calc(var(--nav-h) + 28px); padding-bottom: clamp(28px, 5vh, 72px); }
.hero__copy { max-width: 58%; display: flex; flex-direction: column; gap: clamp(16px, 2.8vh, 36px); }
.hero__title { font-family: var(--font-serif); font-weight: 700; font-size: min(var(--fs-hero), 10.5vh); line-height: .96; letter-spacing: -.01em; text-wrap: balance; }
.hero__brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-sans); font-size: var(--fs-label); font-weight: 600; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--bone-72); }
.hero__brand::before { content: ""; width: 32px; height: var(--rule); background: var(--oxblood); }
.hero__promise { font-size: var(--fs-hero); line-height: .98; letter-spacing: -.02em; text-wrap: balance; }
.hero__promise em { font-weight: 500; }
.hero__sub { display: flex; gap: 18px; max-width: 480px; }
.hero__sub p { font-size: var(--fs-lead); line-height: 1.5; color: var(--bone-72); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* PRESS BAND */
.pressband { background: var(--ink); border-top: 1px solid var(--line-dark); }
.pressband__inner { display: flex; align-items: center; gap: clamp(20px, 3vw, 48px); padding-block: clamp(14px, 2vh, 24px); }
.pressband__label { flex-shrink: 0; display: flex; align-items: center; gap: 12px; font-size: var(--fs-label); font-weight: 600; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--bone-50); }
.pressband__label::before { content: ""; width: 24px; height: var(--rule); background: var(--oxblood); }
.pressband__list { flex: 1; display: flex; justify-content: space-between; align-items: center; gap: clamp(20px, 3vw, 48px); }
.pressband__list img { height: clamp(40px, 4.2vw, 60px); width: auto; opacity: .88; }
.pressband__list img.tall { height: clamp(34px, 3.4vw, 48px); }
.pressband__list img.wsj { transform: scale(1.2); }

/* THE LATEST */
.latest { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; gap: clamp(32px, 4vw, 64px); max-width: var(--max); margin-inline: auto; padding: var(--section-y) var(--gutter); background: var(--bone); color: var(--ink); box-shadow: 0 0 0 100vmax var(--bone); clip-path: inset(0 -100vmax); }
.latest__photo { display: block; }
.latest__photo img { width: 100%; height: auto; transition: transform .8s var(--ease); }
.latest__photo:hover img { transform: scale(1.01); }
.latest__series { font-size: var(--fs-label); font-weight: 700; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--muted); }
.formats a.is-ph { color: var(--placeholder); }
.latest__body { display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.latest__body .kicker { margin-bottom: 0; }
.latest__title { font-size: clamp(2.2rem, 3.6vw, 3.8rem); line-height: 1; }
.latest__dek { font-family: var(--font-serif); font-size: var(--fs-lead); line-height: 1.45; font-weight: 500; }
.latest__guest { font-size: var(--fs-small); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.formats { display: flex; flex-wrap: wrap; border: 1px solid var(--ink); width: max-content; max-width: 100%; }
.formats a { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; text-decoration: none; }
.formats a + a { border-left: 1px solid var(--ink); }
.formats a:hover { background: var(--ink); color: var(--bone); }

/* START HERE */
.start { background: var(--ink); padding-block: var(--section-y); }
.start__inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.start__head { display: flex; flex-direction: column; gap: 22px; position: sticky; top: calc(var(--nav-h) + 32px); }
.start__head .kicker { margin-bottom: 0; }
.start__body { font-size: var(--fs-lead); color: var(--bone-72); }
.start__head .textlink { align-self: flex-start; }
.essentials { border-top: 1px solid var(--line-dark); }
.start.is-collapsed .essentials .is-extra { display: none; }
.start__toggle { margin: 24px 0 0; width: max-content; }
.essentials li { border-bottom: 1px solid var(--line-dark); }
.essentials a { position: relative; display: grid; grid-template-columns: 56px minmax(0, 1fr) auto; align-items: center; gap: 16px; min-height: 64px; padding-block: 26px; text-decoration: none; font-family: var(--font-serif); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 600; }
.essentials a::after { content: ""; position: absolute; left: 0; bottom: -1px; height: var(--rule); width: 0; background: var(--oxblood); transition: width .6s var(--ease); }
.essentials a:hover::after { width: 100%; }
.essentials__t { display: flex; flex-direction: column; gap: 6px; }
.essentials__h { line-height: 1.15; text-wrap: balance; }
.essentials__m { font-family: var(--font-sans); font-size: var(--fs-small); font-weight: 500; color: var(--bone-50); }
.essentials__n { font-family: var(--font-sans); font-size: var(--fs-small); font-weight: 600; color: var(--bone-50); font-variant-numeric: tabular-nums; }
.essentials__arrow { color: var(--bone-50); transition: color .3s, transform .4s var(--ease); }
.essentials a:hover .essentials__arrow { color: var(--bone); transform: translateX(4px); }

/* PODCAST: single split section (assets and card from chiodogwu.com, Bulletproof tokens) */
.pod { background: var(--bone); color: var(--ink); }
.pod-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: min(92vh, 900px); }
.pod-photo { position: relative; min-height: 620px; overflow: hidden; background: var(--ink); }
.pod-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 38% 30%; }
.pod-side { position: relative; display: grid; grid-template-columns: minmax(0, 34%) minmax(0, 1fr); align-items: center; background: var(--bone); }
.pod-phone { position: relative; z-index: 2; margin: 40px 0 40px -34%; rotate: -4deg; filter: drop-shadow(0 40px 50px rgba(13,13,13,.45)); }
.pod-phone img { width: 100%; height: auto; clip-path: inset(4.6% 10% 4.6% 10% round 11% / 6.3%); }
.pod-card { padding: clamp(32px, 4vw, 64px) clamp(24px, 4vw, 64px) clamp(32px, 4vw, 64px) clamp(8px, 1.4vw, 24px); text-align: left; }
.pod-eyebrow { font-size: var(--fs-label); font-weight: 600; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--oxblood); }
.pod-card h2 { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2.2rem, 3.6vw, 4rem); line-height: 1; letter-spacing: -.03em; margin: 14px 0 16px; text-wrap: balance; }
.pod-card h2 sup { font-size: .3em; vertical-align: 1.7em; margin-left: .08em; letter-spacing: 0; }
.pod-copy { color: var(--graphite); font-size: 1.05rem; line-height: 1.55; max-width: 56ch; }
.pod-listen { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; line-height: 1.2; margin: 22px 0 12px; }
.pod-apps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(136px, 1fr)); gap: 10px; }
.pod-apps .apple { grid-column: 1 / -1; }
.pod-app { display: flex; align-items: center; gap: 10px; height: 100%; min-height: 54px; padding: 10px 12px; border-radius: 12px; background: #fff; border: 1px solid var(--line-light); color: var(--ink); text-decoration: none; transition: border-color .3s, transform .5s var(--ease), box-shadow .5s var(--ease); }
.pod-app:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 16px 34px -20px rgba(13,13,13,.5); }
.pod-app svg { width: 30px; height: 30px; flex: none; }
.pod-app small { display: block; font-size: 10px; line-height: 1.1; letter-spacing: .06em; color: var(--muted); }
.pod-app b { display: block; font-size: 15px; font-weight: 600; line-height: 1.25; }
.pod-apps .apple .pod-app { flex-wrap: wrap; }
.pod-app .vanity { margin-left: auto; padding: 6px 12px; border-radius: 999px; background: rgba(122,23,34,.06); border: 1px solid rgba(122,23,34,.22); color: var(--oxblood); font-size: 12.5px; font-weight: 500; line-height: 1.2; white-space: nowrap; }
.pod-app .vanity i { font-style: normal; }
.pod-guest { margin: 20px 0 0; font-size: 14px; color: var(--graphite); }
.pod-guest a { color: var(--oxblood); text-underline-offset: 3px; }
@media (max-width: 1200px) {
  .pod-side { grid-template-columns: minmax(0, 38%) minmax(0, 1fr); }
  .pod-phone { margin-left: -6%; }
}
@media (max-width: 1100px) {
  .pod-apps { grid-template-columns: 1fr; }
  .pod-app .vanity { display: none; }
}
@media (max-width: 900px) {
  .pod-in { grid-template-columns: 1fr; min-height: 0; }
  .pod-photo { min-height: 0; aspect-ratio: 4 / 3; }
  .pod-side { grid-template-columns: 1fr; }
  .pod-phone { width: min(56vw, 280px); margin: -140px auto 0; }
  .pod-card { padding: 24px clamp(20px, 5vw, 40px) 36px; text-align: center; }
  .pod-copy { margin-inline: auto; }
  .pod-apps { grid-template-columns: repeat(2, minmax(0, 1fr)); text-align: left; }
}
@media (max-width: 560px) {
  .pod-apps { grid-template-columns: 1fr; }
}

/* EXPLORE BY IDEA: photo tiles, dark */
.ideas { background: var(--ink); color: var(--bone); padding-block: var(--section-y); border-bottom: 1px solid var(--line-dark); }
.ideas__rail { position: relative; }
.ideas__row { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 12px; }
.itile { display: flex; flex-direction: column; gap: 12px; text-decoration: none; }
.itile__ph { position: relative; display: block; aspect-ratio: 4 / 5; overflow: hidden; background: #1C1C1C; outline: 1px solid rgba(241,237,227,.08); outline-offset: -1px; }
.itile__ph img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.08); transition: filter .6s var(--ease), transform 1.2s var(--ease); }
.itile__ph::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,0) 45%, rgba(13,13,13,.85) 100%); }
.itile__name { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 1; font-size: .72rem; font-weight: 700; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; color: var(--bone); padding-top: 8px; border-top: var(--rule) solid var(--oxblood); }
.itile__dek { font-size: .85rem; line-height: 1.45; color: var(--bone-72); }
.itile:hover .itile__ph img { filter: grayscale(0) contrast(1); transform: scale(1.04); }
.itile:hover .itile__dek { color: var(--bone); }
.ideas__next { display: none; position: absolute; right: -8px; top: calc(50% - 40px); width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--bone-50); background: rgba(13,13,13,.8); color: var(--bone); cursor: pointer; align-items: center; justify-content: center; }
.ideas__next:hover { border-color: var(--bone); }
@media (max-width: 1100px) {
  .ideas__row { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .ideas__row::-webkit-scrollbar { display: none; }
  .ideas__row li { flex: 0 0 clamp(150px, 26vw, 220px); scroll-snap-align: start; }
  .ideas__next { display: flex; }
}
@media (max-width: 760px) {
  .ideas__row li { flex-basis: 44%; }
  .ideas__next { right: 0; }
}

/* PEOPLE: name cards (adapted from chiodogwu.com Power Hours cards) */
.people { background: var(--ink); padding-block: var(--section-y); }
.people__cats { font-family: var(--font-serif); font-size: var(--fs-lead); color: var(--bone-72); }
.people__group { margin-bottom: 28px; }
.people__label { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: var(--fs-label); font-weight: 700; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--bone-72); }
.people__label::after { content: ""; flex: 1; height: 1px; background: var(--line-dark); }
.people.is-collapsed .is-extra { display: none; }
.people__bar { display: flex; justify-content: flex-end; margin: -8px 0 20px; }
.people__toggle { display: flex; align-items: center; gap: 14px; min-height: 48px; margin: 0; padding: 0 22px 0 14px; border: 1px solid #3A3A3A; border-radius: var(--radius); background: transparent; color: var(--bone); font-family: var(--font-sans); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; transition: border-color .25s; }
.people__toggle:hover { border-color: var(--bone); }
.people__pm { position: relative; width: 22px; height: 22px; border: 1px solid var(--oxblood); background: var(--oxblood); }
.people__pm::before, .people__pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 2px; margin: -1px 0 0 -5px; background: var(--bone); transition: transform .3s var(--ease); }
.people__pm::after { transform: rotate(90deg); }
.people__toggle[aria-expanded="true"] .people__pm::after { transform: rotate(0deg); }
.people__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.people .textlink { margin-top: 8px; }
.people .textlink { margin-right: 24px; }
.ncard { display: flex; flex-direction: column; height: 100%; padding: 12px 12px 18px; background: var(--bone); color: var(--ink); border-radius: var(--radius); text-decoration: none; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.ncard:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.ncard__wm { position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 5 / 2; margin-bottom: 14px; padding: 0 16px; background: var(--ink); color: var(--bone); font-family: var(--font-serif); font-size: clamp(1.4rem, 2vw, 2rem); font-weight: 500; line-height: 1.05; letter-spacing: -.02em; text-align: center; }
.ncard__wm::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(241,237,227,.14); pointer-events: none; }
.ncard__wm::after { content: ""; position: absolute; left: 50%; bottom: 14px; width: 28px; height: var(--rule); margin-left: -14px; background: var(--oxblood); transition: width .5s var(--ease), margin-left .5s var(--ease); }
.ncard:hover .ncard__wm::after { width: 64px; margin-left: -32px; }
.ncard__tag { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 8px; }
.ncard h3 { font-family: var(--font-serif); font-size: clamp(1.35rem, 1.7vw, 1.65rem); font-weight: 700; line-height: 1.05; letter-spacing: -.01em; margin-bottom: 4px; }
.ncard__role { font-family: var(--font-serif); font-style: italic; font-size: .98rem; line-height: 1.3; color: var(--graphite); margin-bottom: 10px; }
.ncard p { font-size: .88rem; line-height: 1.45; color: var(--graphite); margin-bottom: 14px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ncard__go { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.ncard__go span { color: var(--oxblood); }

/* EPISODE DIRECTORY (inside People, opens with the toggle) */
.pdir { margin: 12px 0 28px; }
.pdir__head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.pdir__q { width: 100%; max-width: 640px; min-height: 52px; padding: 0 16px; border: 1px solid #3A3A3A; border-radius: var(--radius); background: transparent; color: var(--bone); font: inherit; font-size: 1rem; }
.pdir__q::placeholder { color: var(--bone-50); }
.pdir__q:focus { border-color: var(--bone); outline: none; }
.pdir__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pdir__chips button { min-height: 40px; padding: 0 14px; border: 1px solid #3A3A3A; border-radius: var(--radius); background: transparent; color: var(--bone-72); font-family: var(--font-sans); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }
.pdir__chips button:hover { border-color: var(--bone); color: var(--bone); }
.pdir__chips button.is-on { background: var(--bone); border-color: var(--bone); color: var(--ink); }
.pdir__count { font-size: var(--fs-small); color: var(--bone-50); }
.pdir__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.dcard { display: flex; flex-direction: column; gap: 6px; height: 100%; padding: 16px 16px 14px; background: var(--bone); color: var(--ink); border-radius: var(--radius); text-decoration: none; border-top: var(--rule) solid var(--oxblood); transition: transform .4s var(--ease); }
.dcard:hover { transform: translateY(-3px); }
.dcard__tag { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--oxblood); }
.dcard h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; line-height: 1.1; }
.dcard__t { font-size: .85rem; line-height: 1.4; color: var(--graphite); flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.dcard__meta { display: flex; justify-content: space-between; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-top: 6px; }
.dcard__meta span:last-child { color: var(--oxblood); }
.pdir__more { display: block; min-height: 44px; margin: 18px auto 0; padding: 0 22px; border: 1px solid var(--bone-50); border-radius: var(--radius); background: transparent; color: var(--bone); font-family: var(--font-sans); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; }
.pdir__more:hover { border-color: var(--bone); }
.pdir__more[hidden] { display: none; }
@media (max-width: 1100px) { .pdir__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .pdir__grid { grid-template-columns: 1fr; } }

/* COLLECTIONS */
.collections { background: var(--bone); color: var(--ink); padding-block: var(--section-y); }
.collections__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3vw, 44px) var(--gap); margin-bottom: 36px; }
.collections__grid li:first-child { grid-row: span 2; }
.collections__grid a { display: flex; flex-direction: column; gap: 12px; height: 100%; padding-top: 20px; border-top: 1px solid var(--ink); text-decoration: none; }
.collections__grid li:first-child a { background: var(--ink); color: var(--bone); padding: 32px; border-top: var(--rule) solid var(--oxblood); justify-content: flex-end; min-height: 360px; }
.collections__grid li:first-child p { color: var(--bone-72); }
.collections__grid h3 { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 700; line-height: 1.08; }
.collections__grid li:first-child h3 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
.collections__grid p { font-size: 1rem; color: var(--graphite); }
.collections__grid a:hover h3 { color: var(--oxblood); }
.collections__grid li:first-child a:hover h3 { color: var(--bone); text-decoration: underline; text-decoration-color: var(--oxblood); text-underline-offset: 6px; }

/* ARTICLES (lifted from chiodogwu.com) */
.articles__tools { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.articles__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.articles__chips button { min-height: 44px; padding: 0 16px; border: 1px solid var(--line-light); border-radius: var(--radius); background: transparent; color: var(--graphite); font-family: var(--font-sans); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: border-color .25s, background-color .25s, color .25s; }
.articles__chips button:hover { border-color: var(--ink); color: var(--ink); }
.articles__chips button.is-on { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.articles__count { font-size: var(--fs-small); color: var(--muted); font-variant-numeric: tabular-nums; }
.articles { border-top: 1px solid var(--ink); margin-bottom: clamp(56px, 7vw, 96px); }
.articles li { border-bottom: 1px solid var(--line-light); }
.articles li[hidden] { display: none; }
.arow { position: relative; display: grid; grid-template-columns: 200px minmax(0, 1fr) 32px; align-items: baseline; gap: 20px; padding: 22px 0; text-decoration: none; color: var(--ink); }
a.arow::after { content: ""; position: absolute; left: 0; bottom: -1px; height: var(--rule); width: 0; background: var(--oxblood); transition: width .6s var(--ease); }
a.arow:hover::after { width: 100%; }
.arow__pub { font-size: var(--fs-label); font-weight: 700; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--oxblood); }
.arow__t { font-family: var(--font-serif); font-size: clamp(1.2rem, 1.9vw, 1.6rem); font-weight: 600; line-height: 1.25; }
div.arow .arow__t { color: var(--graphite); font-weight: 500; }
.arow__go { justify-self: end; color: var(--muted); transition: color .25s, transform .4s var(--ease); }
a.arow:hover .arow__go { color: var(--oxblood); transform: translate(3px, -3px); }
.collections__sub { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--gap) clamp(32px, 6vw, 96px); align-items: end; margin-bottom: 28px; }
.collections__sub .kicker { margin-bottom: 0; }
.collections__lede { font-size: var(--fs-lead); color: var(--graphite); }
.collections__grid--compact li:first-child { grid-row: auto; }
.collections__grid--compact li:first-child a { background: transparent; color: var(--ink); padding: 20px 0 0; border-top: var(--rule) solid var(--oxblood); min-height: 0; justify-content: flex-start; }
.collections__grid--compact li:first-child p { color: var(--graphite); }
.collections__grid--compact li:first-child h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
.collections__grid--compact li:first-child a:hover h3 { color: var(--oxblood); text-decoration: none; }
@media (max-width: 760px) {
  .people__bar { justify-content: flex-start; }
  .arow { grid-template-columns: minmax(0, 1fr) 24px; gap: 6px 12px; }
  .arow__pub { grid-column: 1 / -1; }
  .collections__sub { grid-template-columns: 1fr; }
}

/* SEARCH */
.search { background: var(--ink); padding-block: var(--section-y); }
.search__inner { max-width: 1040px; }
.search__body { margin-top: 20px; font-size: var(--fs-lead); color: var(--bone-72); }
.search__form { display: flex; align-items: center; margin-top: 36px; border-bottom: var(--rule) solid var(--bone); }
.search__form:focus-within { border-bottom-color: var(--oxblood); }
.search__form input { flex: 1; min-width: 0; min-height: 64px; border: 0; background: transparent; color: var(--bone); font-family: var(--font-serif); font-size: clamp(1.4rem, 2.6vw, 2.2rem); outline: none; }
.search__form input::placeholder { color: var(--bone-50); }
.search__go { width: 56px; height: 56px; border: 0; background: none; color: var(--bone); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.search__suggest { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.search__suggest a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border: 1px solid #3A3A3A; border-radius: var(--radius); font-size: .95rem; text-decoration: none; color: var(--bone-72); transition: border-color .25s, color .25s; }
.search__suggest a:hover { border-color: var(--oxblood); color: var(--bone); }

/* WRITING & REPORTING */
.writing { background: var(--paper); color: var(--ink); padding-block: var(--section-y); }
.writing__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
.writing__grid a { display: flex; flex-direction: column; gap: 16px; height: 100%; padding-top: 20px; border-top: 1px solid var(--ink); text-decoration: none; }
.writing__grid li:first-child a { border-top: var(--rule) solid var(--oxblood); }
.writing__pub { font-size: var(--fs-label); font-weight: 700; letter-spacing: var(--tracking-label); text-transform: uppercase; }
.writing__grid h3 { font-family: var(--font-serif); font-size: clamp(1.3rem, 1.8vw, 1.65rem); font-weight: 600; line-height: 1.2; flex: 1; }
.writing__grid a:hover h3 { color: var(--oxblood); }
.writing__more { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line-light); font-size: var(--fs-label); font-weight: 700; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--muted); }

/* BRIEFING: the one oxblood field */
.briefing { background: var(--oxblood); color: var(--bone); padding-block: var(--section-y); }
.briefing__inner { max-width: 1040px; }
.briefing .kicker::before { background: var(--bone); }
.briefing__title { font-size: clamp(2.6rem, 5.4vw, 5.2rem); }
.briefing__body { margin-top: 22px; font-size: var(--fs-lead); color: rgba(241,237,227,.9); max-width: 56ch; }
.signup { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 640px; margin-top: 32px; }
.signup__row { display: flex; gap: 10px; }
.signup input[type="email"] { flex: 1; min-width: 0; min-height: 52px; padding: 0 16px; border: 1px solid rgba(241,237,227,.55); border-radius: var(--radius); background: rgba(13,13,13,.16); color: inherit; font: inherit; font-size: 1rem; }
.signup input::placeholder { color: currentColor; opacity: .6; }
.signup input[aria-invalid="true"] { border-color: var(--bone); border-width: 2px; }
.signup .btn { min-height: 52px; }
.signup__micro { font-size: .95rem; font-family: var(--font-serif); opacity: .9; }
.signup__error { font-size: var(--fs-small); font-weight: 600; }
.signup__todo { font-size: var(--fs-small); }
.briefing .ph { color: rgba(241,237,227,.75); }
.signup__success { margin-top: 32px; font-family: var(--font-serif); font-size: 1.5rem; }

/* FROM THE ARCHIVE */
.archive { background: var(--ink); padding-block: var(--section-y); }
.archive .section-head__body { color: var(--bone-72); }
.archive__years { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); border-block: 1px solid var(--line-dark); margin-bottom: 36px; }
.archive__years li + li { border-left: 1px solid var(--line-dark); }
.archive__years a { display: flex; align-items: center; justify-content: center; min-height: 44px; padding-block: 28px; font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3.8rem); font-weight: 700; font-variant-numeric: lining-nums; text-decoration: none; color: transparent; -webkit-text-stroke: 1px var(--bone-72); transition: color .3s var(--ease); }
.archive__years a:hover, .archive__years a.is-now { color: var(--bone); -webkit-text-stroke-color: var(--bone); }

/* FOUNDER & HOST */
.host { background: var(--bone); color: var(--ink); padding-block: var(--section-y); }
.host__inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.host__photo img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 10%; }
.host__copy { display: flex; flex-direction: column; gap: 18px; max-width: 600px; }
.host__copy .kicker { margin-bottom: 0; }
.host__title { font-size: clamp(3rem, 6vw, 5.6rem); line-height: .95; }
.host__line { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 500; font-style: italic; line-height: 1.25; }
.host__copy p:not(.kicker):not(.host__line) { font-size: var(--fs-lead); color: var(--graphite); }
.host__copy .textlink { align-self: flex-start; }

/* FOOTER / BRAND CLOSE */
.footer { background: var(--ink); padding-block: clamp(72px, 9vw, 128px) 40px; }
.footer__promise { margin-top: 24px; font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.6rem); font-style: italic; font-weight: 500; color: var(--bone-72); }
.footer__links { display: flex; flex-wrap: wrap; gap: 4px 32px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: .95rem; font-weight: 500; }
.footer__links a { text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.footer__links a:hover { color: var(--signal); }
.footer__base { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 24px; margin-top: 24px; font-size: var(--fs-small); color: var(--bone-50); }
.footer__base a { text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.footer__base a:hover { color: var(--bone); }
.bp { margin-left: auto; width: 40px; height: 40px; border: 1px solid rgba(241,237,227,.3); display: inline-flex; align-items: center; justify-content: center; gap: 4px; font-family: var(--font-serif); font-size: 1.15rem; color: var(--bone); }
.bp span:first-child { font-weight: 800; }
.bp span:last-child { font-weight: 400; }
.bp i { width: 1px; height: 18px; background: var(--oxblood); }

/* SECTION RHYTHM (2026-09-26): Ideas dark, Rabbit hole ivory, People dark, Search ivory, Writing dark */
/* Rabbit hole on ivory (People stays dark with ivory cards and now sits after this section) */
.articles { margin-bottom: 20px; }
.articles li[hidden] { display: none; }
.articles__toggle { display: flex; align-items: center; gap: 14px; min-height: 48px; margin-bottom: clamp(56px, 7vw, 96px); padding: 0 22px 0 14px; border: 1px solid var(--ink); border-radius: var(--radius); background: transparent; color: var(--ink); font-family: var(--font-sans); font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; }
.articles__toggle:hover { background: var(--ink); color: var(--bone); }
.articles__toggle[hidden] { display: none; }
.articles__toggle[aria-expanded="true"] .people__pm::after { transform: rotate(0deg); }

/* Collections: real episode playlists, accordion */
.colls { border-top: 1px solid var(--ink); }
.coll { border-bottom: 1px solid var(--line-light); }
.coll summary { display: grid; grid-template-columns: 48px minmax(0, 1fr) auto 28px; align-items: center; gap: 16px; padding: 22px 0; cursor: pointer; list-style: none; }
.coll summary::-webkit-details-marker { display: none; }
.coll__n { font-size: var(--fs-small); font-weight: 600; color: var(--oxblood); font-variant-numeric: tabular-nums; }
.coll__head { display: flex; flex-direction: column; gap: 4px; }
.coll__t { font-family: var(--font-serif); font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 700; line-height: 1.1; }
.coll__d { font-size: .95rem; color: var(--graphite); }
.coll__count { font-size: var(--fs-label); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.coll__pm { position: relative; width: 22px; height: 22px; border: 1px solid var(--ink); }
.coll__pm::before, .coll__pm::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 2px; margin: -1px 0 0 -5px; background: var(--ink); transition: transform .3s var(--ease); }
.coll__pm::after { transform: rotate(90deg); }
.coll[open] .coll__pm { background: var(--oxblood); border-color: var(--oxblood); }
.coll[open] .coll__pm::before, .coll[open] .coll__pm::after { background: var(--bone); }
.coll[open] .coll__pm::after { transform: rotate(0deg); }
.coll summary:hover .coll__t { color: var(--oxblood); }
.coll__list { margin: 0 0 22px 64px; padding: 0; list-style: none; border-left: var(--rule) solid var(--oxblood); }
.coll__list a { display: grid; grid-template-columns: 150px minmax(0, 1fr) 20px; gap: 16px; align-items: baseline; padding: 10px 0 10px 20px; text-decoration: none; color: var(--ink); }
.coll__list a:hover .coll__ep { color: var(--oxblood); }
.coll__src { font-size: var(--fs-label); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.coll__ep { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
@media (max-width: 760px) {
  .coll summary { grid-template-columns: minmax(0, 1fr) 24px; }
  .coll__n, .coll__count { display: none; }
  .coll__list { margin-left: 0; }
  .coll__list a { grid-template-columns: minmax(0, 1fr) 16px; gap: 4px 10px; }
  .coll__src { grid-column: 1 / -1; }
}

/* Search on ivory */
.search__one { max-width: 1120px; }
.search__one .h2 { max-width: 20ch; }
.search__form { margin-top: 28px; }
.cbrowse { margin-top: 36px; }
.cbrowse__label { font-size: var(--fs-label); font-weight: 700; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.cbrowse__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cbrowse__tabs button { min-height: 44px; padding: 0 16px; border: 1px solid var(--line-light); border-radius: var(--radius); background: transparent; color: var(--graphite); font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; cursor: pointer; transition: border-color .25s, background-color .25s, color .25s; }
.cbrowse__tabs button:hover { border-color: var(--ink); color: var(--ink); }
.cbrowse__tabs button[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.cpanel { border-top: 1px solid var(--ink); padding-top: 14px; }
.cpanel__d { font-size: .95rem; color: var(--graphite); margin-bottom: 6px; }
.cpanel .coll__list { margin: 0; border-left: 0; }
.cpanel .coll__list li { border-bottom: 1px solid var(--line-light); }
.cpanel .coll__list a { padding-left: 0; padding-block: 14px; }
.cpanel.is-collapsed .is-extra { display: none; }
.cpanel__more { display: flex; align-items: center; gap: 12px; min-height: 44px; margin-top: 14px; padding: 0 18px 0 12px; border: 1px solid var(--ink); border-radius: var(--radius); background: transparent; color: var(--ink); font-family: var(--font-sans); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; cursor: pointer; }
.cpanel__more:hover { background: var(--ink); color: var(--bone); }
.cpanel__more:hover .coll__pm { border-color: var(--bone); }
.cpanel__more:hover .coll__pm::before, .cpanel__more:hover .coll__pm::after { background: var(--bone); }
.cpanel__more[aria-expanded="true"] .coll__pm::after { transform: rotate(0deg); }
.search { background: var(--bone); color: var(--ink); }
.search__body { color: var(--graphite); }
.search__form { border-bottom-color: var(--ink); }
.search__form input { color: var(--ink); }
.search__form input::placeholder { color: var(--muted); }
.search__go { color: var(--ink); }

/* Writing on ink */
.writing { background: var(--ink); color: var(--bone); }
.writing .section-head__body { color: var(--bone-72); }
.writing__grid a { border-top-color: var(--bone); }
.writing__grid li:first-child a { border-top-color: var(--oxblood); }
.writing__grid a:hover h3 { color: var(--ox-tint); }
.writing__more { border-top-color: var(--line-dark); color: var(--bone-50); }

/* PARTNER (sponsorship), ivory, sits between Briefing (oxblood) and Archive (ink) */
.stats { display: flex; flex-wrap: wrap; gap: 14px 0; font-size: .95rem; color: var(--graphite); }
.stats li { display: flex; flex-direction: column; gap: 2px; padding-right: clamp(18px, 2.6vw, 36px); margin-right: clamp(18px, 2.6vw, 36px); border-right: 1px solid var(--line-light); }
.stats li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.stats strong { font-family: var(--font-serif); font-stretch: var(--serif-width); font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1; font-weight: 700; color: var(--ink); font-variant-numeric: lining-nums; }
.stats--partner { grid-column: 1 / -1; padding-block: 28px; border-block: 1px solid var(--line-light); }
.stats--partner strong { font-size: clamp(1.7rem, 2.6vw, 2.5rem); }
.stats li { padding-right: 16px; margin-right: 16px; }
.stats--partner { gap: 18px 0; }
.stats--partner li { flex-basis: 50%; border-right: 0; margin-right: 0; }

.partner { background: var(--bone); color: var(--ink); padding-block: var(--section-y); }
.partner__inner { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 4vw, 48px) clamp(40px, 6vw, 96px); }
.partner__head { display: flex; flex-direction: column; gap: 24px; }
.partner__title { max-width: 16ch; }
.partner__body { align-self: end; display: flex; flex-direction: column; gap: 14px; color: var(--graphite); font-size: var(--fs-lead); line-height: 1.5; }
.stats--partner { grid-column: 1 / -1; padding-block: 28px; border-block: 1px solid var(--line-light); }
.stats--partner strong { font-size: clamp(1.7rem, 2.6vw, 2.5rem); }
.partner__formats { grid-column: 1 / -1; font-family: var(--font-serif); font-size: clamp(1.15rem, 1.8vw, 1.5rem); color: var(--graphite); }
.partner__formats span { color: var(--oxblood); padding-inline: .4em; }
.partner__cta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; }
.partner__email { font-size: var(--fs-small); color: var(--graphite); user-select: all; }
.partner__micro { flex-basis: 100%; font-size: var(--fs-small); color: var(--muted); }

.partner__head .kicker { margin-bottom: 0; }
.partner .ph { color: var(--placeholder); }

/* HERO SIGNUP */
.signup--hero { margin-top: 4px; max-width: 540px; }
.signup--hero input[type="email"] { border-color: rgba(241,237,227,.45); background: rgba(13,13,13,.45); color: var(--bone); }
.signup--hero .signup__micro { font-family: var(--font-sans); font-size: var(--fs-small); color: var(--bone-72); }
.signup__success--hero { font-family: var(--font-serif); font-size: 1.3rem; color: var(--bone); }

@media (max-width: 760px) {
  .signup--hero .signup__row { flex-direction: row; }
  .signup--hero input[type="email"] { min-height: 48px; }
  .signup--hero .btn { min-height: 48px; padding: 0 14px; font-size: .66rem; letter-spacing: .12em; }
}
@media (max-width: 760px) and (max-height: 700px) {
  .signup--hero .signup__micro { display: none; }
  .hero__sub p { font-size: .95rem; }
}

/* FOOTER CONTACT */
.footer__cols { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px 48px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.footer__cols .footer__links { margin: 0; padding: 0; border: 0; }
.footer__contact { display: grid; grid-template-columns: auto auto; gap: 6px 16px; align-items: center; font-size: .95rem; }
.footer__label { font-size: var(--fs-label); font-weight: 700; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--bone-50); }
.footer__contact a { color: var(--bone); text-decoration: none; border-bottom: 1px solid var(--oxblood); }
.footer__contact a:hover { color: var(--ox-tint); }
@media (max-width: 560px) { .footer__contact { grid-template-columns: 1fr; } }

/* ABOUT CHI lightbox */
.textlink--btn { border: 0; background: none; padding: 0; color: inherit; font-family: var(--font-sans); cursor: pointer; }
.about-dlg { width: min(1040px, calc(100vw - 32px)); max-height: calc(100vh - 48px); padding: 0; border: 0; border-radius: var(--radius); background: var(--bone); color: var(--ink); box-shadow: 0 40px 120px rgba(0,0,0,.6); }
.about-dlg::backdrop { background: rgba(13,13,13,.78); backdrop-filter: blur(3px); }
.about-dlg__inner { position: relative; padding: clamp(28px, 5vw, 64px); border-top: 4px solid var(--oxblood); }
.about-dlg__close { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border: 1px solid var(--line-light); border-radius: 50%; background: transparent; color: var(--ink); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.about-dlg__close:hover { background: var(--ink); color: var(--bone); }
.about-dlg .h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); max-width: 24ch; margin-bottom: 28px; }
.about-dlg__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 4vw, 56px); }
.about-dlg__story { display: flex; flex-direction: column; gap: 14px; font-size: 1.02rem; line-height: 1.6; color: var(--graphite); }
.about-dlg__lede { font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; color: var(--ink); line-height: 1.35; }
.about-dlg__tl h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 14px; }
.about-dlg__tl ol { margin: 0; padding: 0; list-style: none; border-left: var(--rule) solid var(--oxblood); }
.about-dlg__tl li { padding: 0 0 14px 18px; }
.about-dlg__tl span { display: block; font-size: var(--fs-label); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 2px; }
.about-dlg__tl p { font-size: .92rem; line-height: 1.45; color: var(--graphite); }
@media (max-width: 760px) { .about-dlg__grid { grid-template-columns: 1fr; } }

/* Partner on ink (Archive removed 2026-09-26, so Partner sits between Briefing (oxblood) and Host (ivory)) */
.partner { background: var(--ink); color: var(--bone); }
.partner .partner__body, .partner .partner__formats { color: var(--bone-72); }
.partner .stats { color: var(--bone-72); }
.partner .stats li { border-right-color: var(--line-dark); }
.partner .stats strong { color: var(--bone); }
.partner .stats--partner { border-color: var(--line-dark); }
.partner .partner__formats span { color: var(--ox-tint); }
.partner .partner__micro { color: var(--bone-50); }

/* PARTNER (homepage): pitch left, short form right */
.partner__grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.partner__pitch { display: flex; flex-direction: column; gap: 16px; }
.partner__pitch .kicker { margin-bottom: 0; }
.partner__pitch > p:not(.kicker) { color: var(--bone-72); font-size: var(--fs-lead); line-height: 1.5; }
.partner__pitch > .partner__formats { font-family: var(--font-serif); font-size: 1.1rem; color: var(--bone); }
.partner__pitch .textlink { align-self: flex-start; }

/* FORMS (partner) */
.pform { display: flex; flex-direction: column; gap: 14px; }
.pform--mini { background: var(--bone); color: var(--ink); padding: clamp(22px, 3vw, 36px); border-top: 4px solid var(--oxblood); }
.pform__title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; }
.pfield { display: flex; flex-direction: column; gap: 6px; }
.pfield label, .pform__checks legend { font-size: .78rem; font-weight: 700; letter-spacing: .06em; color: var(--graphite); }
.pfield label span, .pform__checks legend span { color: var(--oxblood); }
.pform__checks legend small { font-weight: 500; letter-spacing: 0; color: var(--muted); }
.pfield input, .pfield select, .pfield textarea { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid rgba(13,13,13,.28); border-radius: var(--radius); background: #fff; color: var(--ink); font: inherit; font-size: 1rem; }
.pfield textarea { min-height: 90px; resize: vertical; }
.pfield input:focus, .pfield select:focus, .pfield textarea:focus { outline: 2px solid var(--oxblood); outline-offset: 1px; border-color: var(--oxblood); }
.pfield [aria-invalid="true"] { border-color: var(--signal); }
.pform .btn { align-self: flex-start; }
.pform__error { font-size: var(--fs-small); font-weight: 600; color: var(--signal); }
.pform__micro { font-size: var(--fs-small); color: var(--muted); }
.pform__success-t { font-family: var(--font-serif); font-size: 1.3rem; }
.pform__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; }
.pfield--full { grid-column: 1 / -1; }
.pform__checks { border: 0; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; }
.pform__checks legend { margin-bottom: 8px; }
.pform__checks label { display: flex; align-items: center; gap: 10px; min-height: 40px; font-size: .98rem; color: var(--ink); cursor: pointer; }
.pform__checks input { width: 18px; height: 18px; accent-color: var(--oxblood); }

/* SUB PAGES (privacy, terms, partner, 404) */
.subpage .nav { background: rgba(13,13,13,.96); border-bottom-color: var(--line-dark); }
.doc { background: var(--bone); color: var(--ink); padding: calc(var(--nav-h) + clamp(48px, 7vw, 96px)) 0 var(--section-y); }
.doc__inner { max-width: 760px; }
.doc__inner .h2 { margin-bottom: 10px; }
.doc__date { font-size: var(--fs-small); color: var(--muted); margin-bottom: 28px; }
.doc__inner h2 { font-family: var(--font-serif); font-size: 1.45rem; margin: 30px 0 10px; }
.doc__inner p, .doc__inner li { font-size: 1.02rem; line-height: 1.65; color: var(--graphite); }
.doc__inner ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 10px; }
.doc__inner a { color: var(--oxblood); }
.doc--404 { min-height: 70vh; }
.doc--404 .btn { margin-top: 16px; color: var(--bone); }

/* PARTNER PAGE */
.phead { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--gap) clamp(32px, 6vw, 96px); align-items: end; padding-bottom: clamp(40px, 5vw, 64px); border-bottom: 1px solid var(--ink); }
.phead .kicker { grid-column: 1 / -1; margin-bottom: 0; }
.phead .h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
.phead__body { display: flex; flex-direction: column; gap: 14px; font-size: var(--fs-lead); color: var(--graphite); }
.phead__body .btn { align-self: flex-start; margin-top: 6px; }
.pblock { padding-block: clamp(40px, 6vw, 80px); border-bottom: 1px solid var(--line-light); }
.pformats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.pformats li { background: var(--ink); color: var(--bone); padding: 24px 22px 26px; border-top: 3px solid var(--oxblood); display: flex; flex-direction: column; gap: 10px; }
.pformats__n { font-size: var(--fs-small); color: var(--ox-tint); font-weight: 700; }
.pformats h3 { font-family: var(--font-serif); font-size: 1.4rem; line-height: 1.1; }
.pformats p { font-size: .95rem; color: var(--bone-72); line-height: 1.5; }
.pphil { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); }
.pphil__h { font-size: clamp(2rem, 3.6vw, 3.2rem); }
.pphil__list { margin: 0; padding: 0; list-style: none; }
.pphil__list li { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.pphil__list li > span { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--oxblood); line-height: 1; }
.pphil__list p { font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.35; }
.pinquire { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 96px); padding-top: clamp(40px, 6vw, 80px); scroll-margin-top: calc(var(--nav-h) + 16px); }
.pinquire__intro { display: flex; flex-direction: column; gap: 14px; }
.pinquire__intro .kicker { margin-bottom: 0; }
.pinquire__intro > p { font-size: var(--fs-lead); color: var(--graphite); }
.partnerpage__alt a { color: var(--oxblood); }
.pfaq { border-top: 1px solid var(--line-light); padding: 12px 0; }
.pfaq summary { cursor: pointer; font-weight: 700; min-height: 32px; display: flex; align-items: center; }
.pfaq p { color: var(--graphite); margin-top: 6px; }
.doc--partner .pform { background: #fff; padding: clamp(22px, 3vw, 36px); border-top: 4px solid var(--oxblood); }
.doc--partner .pform__success { background: #fff; padding: 36px; border-top: 4px solid var(--oxblood); }
@media (max-width: 1100px) { .pformats { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 900px) {
  .partner__grid, .phead, .pphil, .pinquire { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pformats, .pform__grid, .pform__checks { grid-template-columns: 1fr; }
}

/* BRIEFING + BOOK */
.briefing__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 80px); align-items: center; }
.briefing__copy { display: flex; flex-direction: column; }
.briefing__book { margin-top: 16px; padding-left: 16px; border-left: var(--rule) solid var(--bone); font-size: 1.02rem; line-height: 1.55; color: var(--bone); max-width: 56ch; }
.briefing__book em { font-family: var(--font-serif); font-size: 1.12em; }
.briefing__bookart { margin: 0; display: flex; justify-content: center; }
.briefing__bookart img { width: 100%; max-width: 380px; height: auto; filter: drop-shadow(0 34px 38px rgba(13,13,13,.55)); transform: rotate(2deg); transition: transform .8s var(--ease); }
.briefing__bookart:hover img { transform: rotate(0deg) translateY(-6px); }
@media (max-width: 900px) {
  .briefing__grid { grid-template-columns: 1fr; }
  .briefing__bookart { order: -1; }
  .briefing__bookart img { max-width: 250px; }
}

.footer__legal { margin-top: 18px; max-width: 760px; font-size: .75rem; line-height: 1.55; color: var(--bone-50); }

.about-dlg__more { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-light); }
.about-dlg__more .btn { color: var(--bone); }

/* FOOTER SOCIAL */
.footer__right { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.footer__right .bp { margin-left: 0; }
.footer__social { display: flex; gap: 6px; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--bone); border-radius: 50%; transition: color .25s var(--ease), background-color .25s var(--ease); }
.footer__social a:hover, .footer__social a:focus-visible { color: #C8313C; }
.footer__social svg { width: 19px; height: 19px; }
.pressband__list a { display: inline-flex; }
.pressband__list a:hover img { opacity: 1; }
.about-dlg__story a { color: var(--oxblood); }
.signup__micro a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 560px) { .footer__right { margin-left: 0; width: 100%; justify-content: space-between; } }

/* QA fixes (2026-09-26) */
[hidden] { display: none !important; }
.wordmark--lg .wm-bp { font-size: clamp(34px, 7.4vw, 104px); }
.wordmark--lg .wm-ent { font-size: clamp(17.4px, 3.8vw, 53.5px); }
.partnerpage__alt a, .pinquire__intro a, .footer__contact a { overflow-wrap: anywhere; }
.pinquire > * { min-width: 0; }
.pform__error { color: #A5141B; }
.nav__search::after { content: "Search"; font-family: var(--font-serif); display: none; }
html.dlg-open { overflow: hidden; }
@media (max-width: 900px) { .nav__links .nav__search::after { display: inline; margin-left: 10px; } .nav__links .nav__search { gap: 10px; } }

/* LATEST carousel */
.latest__top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 32px; margin: 0 0 clamp(20px, 3vw, 32px); padding-bottom: 14px; border-bottom: 1px solid var(--line-light); }
.latest__label { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; margin: 0; }
.latest__intro2 { max-width: none; font-size: .98rem; line-height: 1.5; color: var(--graphite); }
.latest__ph { font-family: var(--font-serif); font-weight: 700; font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1; letter-spacing: -.015em; color: var(--oxblood); }
.latest__on { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--graphite); }
.latest__head { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 12px clamp(32px, 4vw, 64px); align-items: end; margin-bottom: clamp(28px, 4vw, 48px); padding-bottom: 20px; border-bottom: 1px solid var(--line-light); }
.latest__head .kicker { grid-column: 1 / -1; margin-bottom: 0; }
.latest__h { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: .98; letter-spacing: -.02em; color: var(--oxblood); margin: 0; }
.latest__h span { display: block; font-style: italic; font-weight: 500; color: var(--ink); font-size: .52em; letter-spacing: -.01em; margin-top: 6px; }
.latest__intro { font-size: var(--fs-lead); line-height: 1.5; color: var(--graphite); }
@media (max-width: 760px) { .latest__head { grid-template-columns: 1fr; } }
.latest { position: relative; display: block; }
.lslide { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; gap: clamp(32px, 4vw, 64px); }
.lslide[hidden] { display: none !important; }
.lslide.is-in { animation: lfade .5s var(--ease) both; }
@keyframes lfade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.lart { position: relative; aspect-ratio: 1672 / 941; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; padding: clamp(20px, 3vw, 40px); background: var(--ink); color: var(--bone); text-decoration: none; overflow: hidden; }
.lart::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(241,237,227,.16); pointer-events: none; }
.lart::after { content: ""; position: absolute; left: clamp(20px, 3vw, 40px); top: clamp(20px, 3vw, 40px); width: 40px; height: var(--rule); background: #C8313C; }
.lart__tag { position: absolute; top: clamp(30px, 3.6vw, 52px); left: clamp(20px, 3vw, 40px); font-size: var(--fs-label); font-weight: 700; letter-spacing: var(--tracking-label); text-transform: uppercase; color: var(--ox-tint); }
.lart__co { font-family: var(--font-serif); font-weight: 700; font-size: clamp(2.6rem, 6vw, 5.4rem); line-height: .92; letter-spacing: -.02em; }
.lart__name { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.1rem, 1.8vw, 1.6rem); color: var(--bone-72); }
.lart__by { font-size: var(--fs-label); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--bone-50); margin-top: 6px; }
.lcar__nav { display: flex; align-items: center; gap: 14px; margin-top: 22px; justify-content: flex-end; }
.lcar__btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background-color .25s, color .25s; }
.lcar__btn:hover { background: var(--oxblood); border-color: var(--oxblood); color: var(--bone); }
.lcar__count { font-size: var(--fs-small); font-weight: 700; letter-spacing: .12em; color: var(--muted); font-variant-numeric: tabular-nums; min-width: 3.5em; text-align: center; }
@media (max-width: 760px) {
  .lslide { grid-template-columns: 1fr; gap: 24px; }
  .lart { margin-inline: calc(var(--gutter) * -1); aspect-ratio: auto; min-height: 280px; padding-top: 72px; }
  .lart__tag { top: 36px; }
  .lcar__nav { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .lslide.is-in { animation: none; } }

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero__title { animation: rise 1s var(--ease) both .1s; }
  .hero__sub, .hero__actions, .signup--hero { animation: rise 1s var(--ease) both .35s; }
  .hero__photo { animation: fade 1.6s var(--ease) both; }
  .orule--v { animation: drawv 1s var(--ease) both .6s; transform-origin: top; }
  @keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  @keyframes fade { from { opacity: 0; transform: scale(1.03); } to { opacity: 1; transform: none; } }
  @keyframes drawv { from { transform: scaleY(0); } to { transform: none; } }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }

/* TABLET */
@media (max-width: 1100px) {
  .nav__links { gap: 20px; }
  .pressband__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pressband__list { width: 100%; flex-wrap: wrap; justify-content: flex-start; gap: 8px 32px; }
  .people__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collections__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collections__grid li:first-child { grid-row: auto; grid-column: 1 / -1; }
  .archive__years { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .archive__years li + li { border-left: 0; }
  .archive__years li:not(:nth-child(4n+1)) { border-left: 1px solid var(--line-dark); }
}

/* MOBILE NAV */
@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  .nav { background: rgba(13,13,13,.94); border-bottom-color: var(--line-dark); }
  .nav__actions .btn--sm { min-height: 40px; padding: 0 12px; font-size: .66rem; letter-spacing: .12em; }
  .nav__inner { gap: 10px; }
        .nav__menu { display: flex; }
  .nav__links { position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; padding: 8px var(--gutter) 24px; background: var(--ink); border-bottom: 1px solid var(--line-dark); font-family: var(--font-serif); font-size: 1.8rem; font-weight: 600; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { padding-block: 12px; border-bottom: 1px solid var(--line-dark); }
  .nav__search { justify-content: flex-start; }
  .section-head--split { grid-template-columns: 1fr; }
  .section-head--split > .textlink { justify-self: start; }
  .start__inner { grid-template-columns: 1fr; }
  .start__head { position: static; }
  .writing__grid { grid-template-columns: 1fr; }
}

/* MOBILE: vertical magazine */
@media (max-width: 760px) {
  .hero { align-items: flex-end; }
  .hero__photo { width: 100%; top: 0; }
  .hero__photo img { object-position: 50% 8%; }
  .hero__photo::after { background: linear-gradient(180deg, rgba(13,13,13,.35) 0%, rgba(13,13,13,0) 14%, rgba(13,13,13,0) 34%, rgba(13,13,13,.82) 60%, var(--ink) 100%); }
  .hero__inner { padding-top: calc(var(--nav-h) + 22vh); padding-bottom: 18px; }
  .hero__copy { max-width: 100%; gap: 14px; }
  .hero__title { font-size: min(clamp(2.3rem, 10.5vw, 3.6rem), 7vh); }
  .hero__sub p { font-size: 1rem; }
  .hero__actions .btn { flex: 1 1 auto; }
  .pressband__inner { gap: 6px; }
  .pressband__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 14px; align-items: center; justify-items: center; }
  .pressband__list img { height: auto; width: 100%; max-width: 110px; }
  .pressband__list img.tall { width: 66%; }
  .latest { grid-template-columns: 1fr; }
  .latest__photo { margin-inline: calc(var(--gutter) * -1); }

  .formats { width: 100%; }
  .formats a { flex: 1 1 auto; padding: 0 12px; }
  .essentials a { grid-template-columns: 36px minmax(0, 1fr) auto; }
  .people__grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; scrollbar-width: none; }
  .people__grid li { flex: 0 0 78%; scroll-snap-align: start; }
  .collections__grid { grid-template-columns: 1fr; }
  .search__suggest { flex-direction: column; align-items: stretch; }
  .signup__row { flex-direction: column; }
  .archive__years { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive__years li:not(:nth-child(4n+1)) { border-left: 0; }
  .archive__years li:nth-child(even) { border-left: 1px solid var(--line-dark); }
  .archive__years li:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .host__inner { grid-template-columns: 1fr; }
  .bp { margin-left: 0; }
}
