:root {
  --ink: #151512;
  --ink-soft: #3c3b35;
  --paper: #f4efe6;
  --paper-2: #ebe2d3;
  --paper-3: #fbf8f2;
  --night: #11110f;
  --night-2: #1a1915;
  --night-3: #25231d;
  --gold: #d9b879;
  --gold-2: #b88e4a;
  --sage: #7c8877;
  --line: rgba(21, 21, 18, .14);
  --line-dark: rgba(255, 255, 255, .12);
  --muted: #6f6c62;
  --white: #fffdfa;
  --success: #2c6b4f;
  --warning: #8a5a18;
  --danger: #8a3e3e;
  --shadow-sm: 0 12px 28px rgba(26, 22, 15, .08);
  --shadow: 0 24px 70px rgba(26, 22, 15, .13);
  --shadow-deep: 0 35px 100px rgba(0, 0, 0, .26);
  --radius: 24px;
  --radius-sm: 14px;
  --shell: min(1180px, calc(100vw - 40px));
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper-3);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 999;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.8) 0 1px, transparent 1.4px),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.25) 0 .8px, transparent 1.2px);
  background-size: 9px 9px, 11px 11px;
  mix-blend-mode: soft-light;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--gold); color: var(--night); }

.shell { width: var(--shell); margin-inline: auto; }
.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; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; background: var(--white); color: var(--night); padding: 10px 14px; transform: translateY(-150%); border-radius: 8px; }
.skip-link:focus { transform: none; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(17,17,15,.9);
  backdrop-filter: blur(18px);
  color: var(--white);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: 255px; }
.brand-mark {
  display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(217,184,121,.65);
  color: var(--gold); font-family: var(--serif); font-size: 16px; letter-spacing: .08em; border-radius: 50%;
}
.brand-text { display: grid; line-height: 1.15; gap: 4px; }
.brand-text strong { font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: .01em; }
.brand-text small { color: #b8b5aa; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav > a { color: #d7d4ca; font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; padding: 10px 11px; border-radius: 999px; transition: .2s ease; }
.site-nav > a:hover, .site-nav > a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,.08); }
.site-nav .nav-cta { background: var(--gold); color: var(--night); padding-inline: 16px; }
.site-nav .nav-cta:hover { background: #e6c98f; color: var(--night); }
.nav-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; }

/* TYPE */
.eyebrow { margin: 0 0 16px; color: var(--gold-2); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 850; }
.eyebrow.light { color: var(--gold); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.03; font-weight: 500; letter-spacing: -.025em; }
h1 { font-size: clamp(50px, 7vw, 94px); margin: 0; }
h2 { font-size: clamp(38px, 5vw, 66px); margin: 0; }
h3 { font-size: 28px; margin: 0; }
.lede { font-size: clamp(18px, 2vw, 23px); line-height: 1.55; color: var(--ink-soft); max-width: 780px; }
.muted { color: var(--muted); }

/* BUTTONS */
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 49px; padding: 0 19px; border-radius: 999px;
  font-size: 12px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; border: 1px solid transparent; transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--night); }
.button-primary:hover { background: #e4c58a; }
.button-dark { background: var(--night); color: var(--white); }
.button-dark:hover { background: #27251f; }
.button-ghost { border-color: rgba(255,255,255,.3); color: var(--white); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.button-outline { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.35); }
.button-outline:hover { border-color: var(--ink); }
.button-danger { background: rgba(138,62,62,.09); border-color: rgba(138,62,62,.22); color: var(--danger); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 13px; border-bottom: 1px solid rgba(21,21,18,.35); padding-bottom: 3px; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(3px); }

/* HERO */
.hero { position: relative; overflow: hidden; background: var(--night); color: var(--white); min-height: 760px; display: grid; align-items: center; }
.hero::before {
  content: ""; position: absolute; inset: -10% -10% auto auto; width: 72vw; height: 72vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,184,121,.17), rgba(217,184,121,.05) 30%, transparent 68%);
  filter: blur(2px);
}
.hero::after {
  content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(217,184,121,.16); border-radius: 50%; right: 4vw; top: 120px; box-shadow: 0 0 0 80px rgba(217,184,121,.025), 0 0 0 160px rgba(217,184,121,.018);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.72fr); gap: clamp(44px, 8vw, 110px); align-items: center; padding: 96px 0 110px; }
.hero-copy h1 { max-width: 850px; }
.hero-copy h1 em { color: var(--gold); font-style: normal; }
.hero-lead { color: #c9c5b9; max-width: 730px; font-size: clamp(18px, 2vw, 22px); margin: 28px 0 34px; }
.hero-panel {
  position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: 30px; background: linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); box-shadow: var(--shadow-deep); backdrop-filter: blur(8px);
}
.hero-panel::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(217,184,121,.2); border-radius: 22px; pointer-events: none; }
.release-cover { aspect-ratio: 0.69; max-width: 260px; margin: 0 auto 24px; border-radius: 4px 16px 16px 4px; padding: 28px 24px; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(145deg,#211b18,#080807 58%,#35261c); box-shadow: 12px 20px 50px rgba(0,0,0,.48); transform: rotate(1.2deg); border: 1px solid rgba(255,255,255,.12); }
.release-cover .cover-kicker { color: var(--gold); font-size: 9px; letter-spacing: .2em; font-weight: 800; }
.release-cover strong { font-family: var(--serif); font-size: 30px; line-height: .98; letter-spacing: -.04em; }
.release-cover small { font-size: 10px; letter-spacing: .15em; color: #d8d4c9; }
.hero-panel-copy { position: relative; padding: 2px 4px 5px; }
.hero-panel-copy .date { font-size: 11px; color: var(--gold); letter-spacing: .13em; font-weight: 850; text-transform: uppercase; }
.hero-panel-copy h2 { font-size: 29px; margin: 8px 0 12px; }
.hero-panel-copy p { color: #c6c2b8; margin: 0 0 14px; }
.hero-panel .text-link { color: var(--white); border-color: rgba(255,255,255,.24); }

/* SECTIONS */
.section { padding: 110px 0; }
.section-tight { padding: 76px 0; }
.section-dark { background: var(--night); color: var(--white); }
.section-cream { background: var(--paper); }
.section-gold { background: var(--gold); color: var(--night); }
.section-heading { display: grid; grid-template-columns: 1.2fr .75fr; gap: 50px; align-items: end; margin-bottom: 54px; }
.section-heading > p { color: var(--muted); margin: 0; max-width: 520px; justify-self: end; }
.section-dark .section-heading > p { color: #bbb7ad; }

.signature-line { background: #0b0b0a; color: #ded8cc; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.signature-line .shell { padding: 33px 0; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.signature-line p { margin: 0; font-family: var(--serif); font-size: clamp(21px,2.7vw,34px); line-height: 1.2; }
.signature-line strong { color: var(--gold); font-weight: 500; }
.signature-number { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: #8f8a7f; white-space: nowrap; }

/* BOOKS */
.book-showcase { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.book-card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: rgba(255,255,255,.55); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.book-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(184,142,74,.38); }
.book-card.featured { grid-column: span 2; display: grid; grid-template-columns: minmax(210px,.75fr) 1.2fr; gap: 34px; align-items: center; padding: 32px; background: var(--night); color: var(--white); border-color: transparent; }
.book-card.featured .book-copy p { color: #c7c3b8; }
.book-cover { min-height: 360px; border-radius: 3px 16px 16px 3px; padding: 24px 22px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 10px 16px 32px rgba(22,18,11,.2); position: relative; overflow: hidden; }
.book-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(255,255,255,.18),transparent 7%,transparent 92%,rgba(0,0,0,.18)); pointer-events: none; }
.book-cover .book-type { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; font-weight: 850; position: relative; z-index: 1; }
.book-cover strong { font-family: var(--serif); font-size: clamp(26px,3vw,39px); line-height: .95; letter-spacing: -.04em; position: relative; z-index: 1; }
.book-cover small { font-size: 9px; letter-spacing: .15em; text-transform: uppercase; position: relative; z-index: 1; }
.book-cover.house { color:#f8f1e4; background: radial-gradient(circle at 50% 22%,rgba(205,153,93,.25),transparent 24%), linear-gradient(145deg,#37241c,#0f0e0c 56%,#211711); }
.book-cover.margin { color:#f7f2e7; background: linear-gradient(160deg,#112323,#0c1210 55%,#26332b); }
.book-cover.life { color:#1a1713; background: linear-gradient(160deg,#eee1cd,#c6af88 65%,#8f7659); }
.book-cover.truth { color:#f5eee2; background: linear-gradient(145deg,#392b31,#0c0b0d 60%,#1e1619); }
.book-cover.signals { color:#f6f1e7; background: linear-gradient(145deg,#343830,#141610 60%,#22261e); }
.book-cover.last { color:#f6eee2; background: linear-gradient(145deg,#4a2f25,#15100e 65%,#2b1a15); }
.book-copy { padding: 20px 5px 3px; }
.book-copy .meta { display:flex; gap:8px; flex-wrap:wrap; color: var(--gold-2); font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: 850; }
.book-copy h3 { margin: 10px 0 11px; font-size: 31px; }
.book-copy p { margin: 0 0 18px; color: var(--muted); }
.book-card:not(.featured) .book-cover { min-height: 330px; }

/* TRUTH SERIES */
.truth-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.truth-copy p { color: #5f5b50; font-size: 18px; }
.series-stack { display: grid; gap: 13px; }
.series-item { padding: 25px 27px; border: 1px solid #cdc1af; background: rgba(255,255,255,.32); border-radius: 18px; display: grid; grid-template-columns: 90px 1fr auto; gap: 20px; align-items: center; }
.series-item.active { background: var(--night); color: var(--white); border-color: var(--night); box-shadow: var(--shadow); }
.series-item .num { font-family: var(--serif); font-size: 42px; color: var(--gold-2); }
.series-item strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.series-item small { color: var(--muted); }
.series-item.active small { color: #aaa69b; }

/* TTP */
.ttp-intro { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; margin-bottom: 55px; align-items: end; }
.ttp-intro p:last-child { color: #bbb7ad; max-width: 610px; justify-self: end; }
.ttp-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.ttp-card { min-height: 300px; border: 1px solid var(--line-dark); border-radius: 22px; padding: 25px; background: linear-gradient(155deg,rgba(255,255,255,.06),rgba(255,255,255,.015)); position: relative; overflow: hidden; }
.ttp-card::after { content:""; position:absolute; width:150px; height:150px; border:1px solid rgba(217,184,121,.12); border-radius:50%; right:-70px; bottom:-70px; }
.ttp-mark { display:grid; place-items:center; width:50px; height:50px; border-radius:50%; background:var(--gold); color:var(--night); font-weight:900; font-family:var(--serif); font-size:20px; }
.ttp-card h3 { margin: 42px 0 10px; color: var(--white); }
.ttp-card p { color: #b8b4aa; margin: 0; }

/* ARTICLE PREVIEW & LIBRARY */
.article-preview { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.article-card { border-top: 1px solid var(--ink); padding: 24px 0 14px; min-height: 270px; display: flex; flex-direction: column; }
.article-card .article-meta { color: var(--gold-2); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; font-weight: 850; }
.article-card h3 { font-size: 27px; margin: 17px 0 14px; }
.article-card p { color: var(--muted); margin: 0 0 20px; }
.article-card .text-link { margin-top: auto; align-self: flex-start; }
.article-tools { display: grid; grid-template-columns: minmax(260px,1fr) auto; gap: 24px; margin-bottom: 28px; align-items: center; }
.search-box input { width:100%; height:52px; border:1px solid var(--line); border-radius:999px; background:#fffdf8; padding:0 20px; outline:none; }
.search-box input:focus { border-color: var(--gold-2); box-shadow: 0 0 0 3px rgba(184,142,74,.12); }
.filter-row { display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end; }
.filter-button { border:1px solid var(--line); background:transparent; border-radius:999px; padding:10px 13px; font-size:11px; font-weight:800; color:var(--ink-soft); }
.filter-button.active { background:var(--night); color:var(--white); border-color:var(--night); }
.article-list { border-top:1px solid var(--line); }
.article-row { display:grid; grid-template-columns: 180px 1fr auto; gap:28px; align-items:start; padding:28px 0; border-bottom:1px solid var(--line); }
.article-row[hidden] { display:none; }
.article-row .article-meta { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.09em; }
.article-row h3 { font-size:28px; margin-bottom:8px; }
.article-row p { color:var(--muted); margin:0; max-width:760px; }
.article-row .article-tags { display:flex; gap:6px; flex-wrap:wrap; margin-top:13px; }
.article-tag { padding:5px 8px; background:var(--paper); border-radius:999px; font-size:9px; text-transform:uppercase; letter-spacing:.1em; font-weight:800; color:#5f5b50; }
.article-row .read-arrow { width:42px; height:42px; border:1px solid var(--line); border-radius:50%; display:grid; place-items:center; transition:.2s ease; }
.article-row:hover .read-arrow { background:var(--night); color:var(--white); transform:translate(2px,-2px); }
.article-count { margin-top:16px; color:var(--muted); font-size:12px; }

/* COMMUNITY CTA */
.community-band { position: relative; overflow: hidden; background: var(--night); color: var(--white); }
.community-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 75% 30%,rgba(217,184,121,.16),transparent 28%); }
.community-grid { position:relative; display:grid; grid-template-columns:1.05fr .95fr; gap:80px; align-items:center; padding:100px 0; }
.community-copy p { color:#c7c3b8; max-width:620px; font-size:18px; }
.community-process { border:1px solid var(--line-dark); border-radius:24px; overflow:hidden; background:rgba(255,255,255,.035); }
.process-step { display:grid; grid-template-columns:48px 1fr; gap:16px; padding:20px 22px; border-bottom:1px solid var(--line-dark); }
.process-step:last-child { border-bottom:0; }
.process-step span { display:grid; place-items:center; width:34px; height:34px; border:1px solid rgba(217,184,121,.5); color:var(--gold); border-radius:50%; font-size:11px; font-weight:850; }
.process-step strong { display:block; margin-bottom:3px; }
.process-step small { color:#9f9b91; }

/* FREE READING */
.free-reading { background: var(--gold); color: var(--night); }
.free-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:90px; align-items:center; }
.free-reading .eyebrow { color:#6d4f21; }
.free-reading h2 { max-width:660px; }
.free-reading p { font-size:18px; max-width:650px; }
.free-card { background:var(--night); color:var(--white); border-radius:28px; padding:34px; box-shadow:var(--shadow-deep); }
.free-card p { color:#c3beb1; font-size:15px; }

/* ABOUT */
.about-grid { display:grid; grid-template-columns:.7fr 1.3fr; gap:85px; align-items:start; }
.about-monogram { aspect-ratio:1; border-radius:50%; background:var(--night); color:var(--gold); display:grid; place-items:center; font-family:var(--serif); font-size:clamp(70px,9vw,130px); box-shadow:var(--shadow); position:sticky; top:120px; }
.about-copy .lede { max-width:730px; }
.about-copy p { color:var(--muted); }
.about-facts { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:32px; }
.fact { border-top:1px solid var(--ink); padding-top:13px; }
.fact strong { display:block; font-family:var(--serif); font-size:24px; }
.fact span { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.1em; }

/* PAGE HERO */
.page-hero { padding: 105px 0 86px; background:var(--night); color:var(--white); position:relative; overflow:hidden; }
.page-hero::after { content:""; position:absolute; width:520px; height:520px; border-radius:50%; border:1px solid rgba(217,184,121,.12); right:-120px; top:-230px; box-shadow:0 0 0 90px rgba(217,184,121,.02),0 0 0 180px rgba(217,184,121,.015); }
.page-hero .shell { position:relative; z-index:1; }
.page-hero h1 { font-size:clamp(50px,6vw,82px); max-width:900px; }
.page-hero .lede { color:#c6c2b7; margin-top:24px; }
.page-kicker { display:flex; flex-wrap:wrap; gap:9px; margin-top:28px; }
.page-kicker span { border:1px solid rgba(255,255,255,.15); border-radius:999px; padding:7px 10px; color:#b9b5aa; font-size:10px; text-transform:uppercase; letter-spacing:.1em; }

/* FORMS */
.form-shell { max-width:860px; margin:0 auto; }
.form-card { border:1px solid var(--line); border-radius:28px; background:rgba(255,255,255,.62); padding:clamp(24px,4vw,44px); box-shadow:var(--shadow-sm); }
.form-intro { margin-bottom:30px; }
.form-intro h2 { font-size:42px; margin-bottom:12px; }
.form-intro p { color:var(--muted); margin:0; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:grid; gap:7px; }
.field.full { grid-column:1 / -1; }
.field label { font-size:11px; font-weight:850; text-transform:uppercase; letter-spacing:.09em; color:#555147; }
.field input, .field textarea, .field select { width:100%; border:1px solid var(--line); border-radius:13px; background:#fffdfa; color:var(--ink); padding:13px 14px; outline:none; transition:.2s ease; }
.field input { min-height:50px; }
.field textarea { min-height:130px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--gold-2); box-shadow:0 0 0 3px rgba(184,142,74,.12); }
.checkbox { display:grid; grid-template-columns:22px 1fr; gap:10px; align-items:start; color:var(--ink-soft); }
.checkbox input { width:17px; height:17px; margin-top:4px; accent-color:var(--night); }
.checkbox strong { display:block; font-size:13px; }
.checkbox small { color:var(--muted); }
.form-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; align-items:center; }
.form-note { font-size:11px; color:var(--muted); }
.status-message { display:none; margin:18px 0 0; padding:14px 16px; border-radius:12px; font-size:13px; }
.status-message.show { display:block; }
.status-message.success { background:rgba(44,107,79,.09); color:var(--success); border:1px solid rgba(44,107,79,.18); }
.status-message.warning { background:rgba(138,90,24,.08); color:var(--warning); border:1px solid rgba(138,90,24,.16); }
.status-message.error { background:rgba(138,62,62,.08); color:var(--danger); border:1px solid rgba(138,62,62,.18); }
.status-message.info { background:rgba(21,21,18,.06); color:var(--ink-soft); border:1px solid var(--line); }
.honeypot, .honeypot[hidden] { display:none !important; }

/* MEMBER AREA */
.member-shell { display:grid; grid-template-columns:250px minmax(0,1fr); min-height:calc(100vh - 78px); }
.member-sidebar { background:var(--night); color:var(--white); padding:28px 22px; border-top:1px solid rgba(255,255,255,.05); }
.member-sidebar h2 { font-size:26px; margin-bottom:6px; }
.member-sidebar p { color:#99958a; font-size:12px; }
.member-sidebar nav { display:grid; gap:7px; margin-top:28px; }
.member-sidebar nav a, .member-sidebar nav button { width:100%; border:0; text-align:left; color:#d3cfc4; background:transparent; padding:11px 12px; border-radius:10px; font-size:12px; font-weight:750; }
.member-sidebar nav a:hover, .member-sidebar nav button:hover, .member-sidebar nav .active { background:rgba(255,255,255,.07); color:var(--white); }
.member-main { background:#f7f3ec; padding:38px clamp(22px,5vw,70px) 60px; }
.member-topbar { display:flex; justify-content:space-between; gap:22px; align-items:center; margin-bottom:30px; }
.member-topbar h1 { font-size:clamp(38px,5vw,58px); }
.member-badge { display:inline-flex; align-items:center; gap:8px; background:#e9e1d3; border:1px solid #d9cebd; padding:8px 11px; border-radius:999px; font-size:10px; text-transform:uppercase; letter-spacing:.1em; font-weight:850; }
.member-badge::before { content:""; width:7px; height:7px; border-radius:50%; background:var(--success); }

.chat-panel { border:1px solid var(--line); border-radius:22px; overflow:hidden; background:#fffdfa; box-shadow:var(--shadow-sm); }
.chat-head { padding:18px 20px; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; gap:20px; align-items:center; }
.chat-head h2 { font-size:25px; }
.chat-head small { color:var(--muted); }
.chat-messages { height:min(56vh,560px); overflow:auto; padding:20px; display:grid; align-content:start; gap:13px; background:linear-gradient(180deg,#fbf8f2,#f4eee5); }
.chat-message { max-width:76%; border:1px solid var(--line); background:#fffdfa; border-radius:16px 16px 16px 4px; padding:11px 13px; box-shadow:0 4px 14px rgba(20,16,10,.04); }
.chat-message.mine { margin-left:auto; background:var(--night); color:var(--white); border-color:var(--night); border-radius:16px 16px 4px 16px; }
.chat-message .chat-author { font-size:10px; text-transform:uppercase; letter-spacing:.09em; font-weight:850; color:var(--gold-2); margin-bottom:4px; }
.chat-message.mine .chat-author { color:var(--gold); }
.chat-message p { margin:0; white-space:pre-wrap; }
.chat-message time { display:block; margin-top:6px; font-size:9px; opacity:.58; }
.chat-compose { display:grid; grid-template-columns:1fr auto; gap:10px; padding:14px; border-top:1px solid var(--line); }
.chat-compose textarea { min-height:48px; max-height:120px; resize:vertical; border:1px solid var(--line); border-radius:13px; padding:12px; outline:none; }
.chat-compose textarea:focus { border-color:var(--gold-2); }
.chat-empty { text-align:center; padding:80px 20px; color:var(--muted); }

/* ADMIN */
.admin-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; margin-bottom:26px; }
.stat-card { border:1px solid var(--line); border-radius:18px; padding:20px; background:#fffdfa; }
.stat-card span { font-size:10px; text-transform:uppercase; letter-spacing:.1em; color:var(--muted); }
.stat-card strong { display:block; font-family:var(--serif); font-size:40px; margin-top:5px; }
.admin-panel { border:1px solid var(--line); border-radius:20px; background:#fffdfa; overflow:hidden; margin-bottom:24px; }
.admin-panel-head { padding:18px 20px; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; gap:18px; }
.admin-panel-head h2 { font-size:28px; }
.admin-list { display:grid; }
.application-card { padding:20px; border-bottom:1px solid var(--line); display:grid; grid-template-columns:1fr auto; gap:24px; align-items:start; }
.application-card:last-child { border-bottom:0; }
.application-card h3 { font-size:23px; margin-bottom:5px; }
.application-card .app-meta { font-size:11px; color:var(--muted); }
.application-card .reason { color:var(--ink-soft); margin:12px 0 0; max-width:750px; }
.application-actions { display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end; }
.small-button { border:1px solid var(--line); background:#fff; border-radius:999px; padding:8px 11px; font-size:10px; font-weight:850; text-transform:uppercase; letter-spacing:.08em; }
.small-button.approve { color:var(--success); border-color:rgba(44,107,79,.25); }
.small-button.decline { color:var(--danger); border-color:rgba(138,62,62,.25); }
.empty-admin { padding:35px 20px; color:var(--muted); text-align:center; }

/* LEGAL */
.prose { max-width:820px; margin:0 auto; }
.prose h2 { font-size:36px; margin:45px 0 15px; }
.prose h3 { font-size:27px; margin:30px 0 12px; }
.prose p, .prose li { color:var(--ink-soft); }
.prose ul { padding-left:22px; }
.prose a { text-decoration:underline; text-decoration-color:rgba(21,21,18,.35); text-underline-offset:3px; }

/* FOOTER */
.site-footer { background:#0b0b0a; color:var(--white); border-top:1px solid rgba(255,255,255,.06); padding:48px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:40px; }
.footer-brand strong { font-family:var(--serif); font-size:27px; font-weight:500; }
.footer-brand p { color:#8f8b81; margin:7px 0 0; }
.footer-nav { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:9px 18px; align-content:start; }
.footer-nav a { color:#b4b0a5; font-size:11px; text-transform:uppercase; letter-spacing:.1em; }
.footer-nav a:hover { color:var(--gold); }
.footer-bottom { grid-column:1/-1; display:flex; justify-content:space-between; gap:20px; border-top:1px solid rgba(255,255,255,.08); margin-top:10px; padding-top:20px; color:#77736b; font-size:10px; }
.footer-bottom nav { display:flex; gap:14px; }

/* REVEAL */
.reveal { opacity:0; transform:translateY(14px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

/* RESPONSIVE */
@media (max-width: 1040px) {
  .site-nav { position:absolute; top:78px; left:0; right:0; display:none; padding:14px 20px 22px; background:rgba(17,17,15,.98); border-bottom:1px solid rgba(255,255,255,.08); flex-wrap:wrap; }
  .site-nav.open { display:flex; }
  .nav-toggle { display:block; }
  .hero-grid, .community-grid, .free-grid, .truth-layout, .about-grid { grid-template-columns:1fr; }
  .hero { min-height:auto; }
  .hero-panel { max-width:650px; }
  .book-showcase { grid-template-columns:1fr 1fr; }
  .book-card.featured { grid-column:1 / -1; }
  .ttp-grid { grid-template-columns:1fr 1fr; }
  .ttp-intro { grid-template-columns:1fr; gap:22px; }
  .ttp-intro p:last-child { justify-self:start; }
  .about-monogram { max-width:340px; position:static; }
  .member-shell { grid-template-columns:1fr; }
  .member-sidebar { display:none; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .nav-wrap { min-height:70px; }
  .brand { min-width:auto; }
  .brand-text small { display:none; }
  .brand-mark { width:40px; height:40px; }
  .site-nav { top:70px; display:none; flex-direction:column; align-items:stretch; }
  .site-nav.open { display:flex; }
  .site-nav > a { padding:11px 12px; }
  .hero-grid { padding:72px 0 80px; gap:52px; }
  .hero::after { right:-230px; top:200px; }
  .section { padding:78px 0; }
  .section-heading { grid-template-columns:1fr; gap:18px; margin-bottom:36px; }
  .section-heading > p { justify-self:start; }
  .signature-line .shell { align-items:flex-start; flex-direction:column; gap:8px; }
  .book-showcase { grid-template-columns:1fr; }
  .book-card.featured { grid-template-columns:1fr; padding:22px; }
  .book-card.featured .book-cover { max-width:330px; width:100%; }
  .book-card:not(.featured) { display:grid; grid-template-columns:130px 1fr; gap:17px; align-items:start; }
  .book-card:not(.featured) .book-cover { min-height:205px; padding:15px 12px; }
  .book-card:not(.featured) .book-cover strong { font-size:20px; }
  .book-card:not(.featured) .book-copy { padding-top:4px; }
  .book-card:not(.featured) .book-copy h3 { font-size:24px; }
  .series-item { grid-template-columns:50px 1fr; gap:12px; }
  .series-item small { grid-column:2; }
  .series-item .num { font-size:30px; }
  .ttp-grid { grid-template-columns:1fr; }
  .ttp-card { min-height:230px; }
  .article-preview { grid-template-columns:1fr; }
  .article-card { min-height:auto; }
  .article-tools { grid-template-columns:1fr; }
  .filter-row { justify-content:flex-start; }
  .article-row { grid-template-columns:1fr auto; gap:18px; }
  .article-row .article-meta { grid-column:1 / -1; }
  .about-facts { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .member-main { padding:26px 14px 48px; }
  .member-topbar { align-items:flex-start; flex-direction:column; }
  .chat-message { max-width:90%; }
  .chat-compose { grid-template-columns:1fr; }
  .admin-grid { grid-template-columns:1fr; }
  .application-card { grid-template-columns:1fr; }
  .application-actions { justify-content:flex-start; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-nav { justify-content:flex-start; }
  .footer-bottom { flex-direction:column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}

/* Reader List / Kit integration */
.reader-list-card{overflow:visible}
.reader-consent-note{margin:1.25rem 0 1.5rem;padding:1rem 1.1rem;border:1px solid rgba(17,17,15,.12);border-radius:14px;background:rgba(255,255,255,.56)}
.reader-consent-note strong{display:block;margin-bottom:.25rem}
.reader-consent-note p{margin:0;color:var(--muted);font-size:.95rem;line-height:1.6}
.kit-embed{min-height:82px;margin-top:.35rem}
.reader-list-actions{margin-top:1.25rem}

/* REAL BOOK COVERS */
.book-cover.real-cover { padding:0; background:#111; min-height:0; aspect-ratio: 0.625; border-radius:3px 16px 16px 3px; }
.book-cover.real-cover::after { background:linear-gradient(90deg,rgba(255,255,255,.12),transparent 6%,transparent 94%,rgba(0,0,0,.12)); }
.book-cover.real-cover img { width:100%; height:100%; object-fit:cover; display:block; }
.book-card.featured .book-cover.real-cover { width:min(100%,310px); justify-self:center; }
.release-cover.real-release-cover { padding:0; overflow:hidden; background:#111; }
.release-cover.real-release-cover img { width:100%; height:100%; display:block; object-fit:cover; }


/* =========================================================
   PREMIUM PUBLIC SITE PASS
   ========================================================= */
.premium-hero{position:relative;overflow:hidden;background:#0d0e0d;color:var(--white);min-height:820px;display:grid;align-items:center;border-bottom:1px solid rgba(255,255,255,.06)}
.hero-ambient{position:absolute;inset:0;background:radial-gradient(circle at 75% 42%,rgba(217,184,121,.18),transparent 23%),radial-gradient(circle at 77% 42%,rgba(97,120,111,.12),transparent 42%),linear-gradient(110deg,#0b0c0b 0%,#11120f 52%,#15130f 100%)}
.hero-ambient::before,.hero-ambient::after{content:"";position:absolute;border:1px solid rgba(217,184,121,.12);border-radius:50%;width:520px;height:520px;right:8%;top:15%;box-shadow:0 0 0 90px rgba(217,184,121,.025),0 0 0 180px rgba(217,184,121,.012)}
.hero-ambient::after{width:900px;height:900px;right:-20%;top:-10%;border-color:rgba(255,255,255,.035);box-shadow:none}
.premium-hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:1.08fr .92fr;gap:clamp(50px,8vw,120px);align-items:center;padding:95px 0 112px}
.premium-hero-copy h1{max-width:820px;font-size:clamp(54px,6.7vw,92px);line-height:.96}.premium-hero-copy h1 span{color:var(--gold)}
.premium-hero-copy .hero-lead{max-width:760px}
.hero-proof{display:flex;flex-wrap:wrap;gap:10px 22px;margin-top:42px;color:#918e85;font-size:10px;letter-spacing:.14em;text-transform:uppercase}.hero-proof span{position:relative}.hero-proof span+span::before{content:"";position:absolute;left:-12px;top:50%;width:3px;height:3px;background:var(--gold);border-radius:50%}
.hero-book-stage{position:relative;justify-self:center;width:min(100%,470px);padding:20px 0 0}.hero-book-halo{position:absolute;width:370px;height:370px;border-radius:50%;background:radial-gradient(circle,rgba(217,184,121,.25),transparent 68%);filter:blur(24px);left:50%;top:28%;transform:translate(-50%,-50%)}
.hero-book-link{position:relative;display:block;width:min(76%,330px);margin:0 auto;transform:perspective(1200px) rotateY(-7deg) rotateZ(1deg);transform-origin:center;transition:transform .35s ease}.hero-book-link:hover{transform:perspective(1200px) rotateY(-2deg) rotateZ(0) translateY(-5px)}.hero-book-link img{width:100%;border-radius:4px 14px 14px 4px;box-shadow:26px 34px 80px rgba(0,0,0,.56);border:1px solid rgba(255,255,255,.12)}
.book-spine-glow{position:absolute;left:0;top:1%;bottom:1%;width:7%;background:linear-gradient(90deg,rgba(0,0,0,.55),rgba(255,255,255,.08),transparent);border-radius:4px 0 0 4px;pointer-events:none}
.hero-book-caption{position:relative;margin:30px auto 0;max-width:420px;text-align:center}.launch-chip{display:inline-flex;border:1px solid rgba(217,184,121,.42);color:var(--gold);padding:6px 10px;border-radius:999px;text-transform:uppercase;letter-spacing:.12em;font-size:9px;font-weight:850}.hero-book-caption h2{font-size:34px;margin:13px 0 8px}.hero-book-caption p{color:#b9b6ad;margin:0 auto 14px;max-width:390px}.hero-mini-links{display:flex;justify-content:center;flex-wrap:wrap;gap:10px 22px}.hero-mini-links a{font-size:11px;font-weight:800;border-bottom:1px solid rgba(255,255,255,.2);padding-bottom:2px;color:#e5e1d8}

.new-book-spotlight{background:#fbf8f2;position:relative;overflow:hidden}.new-book-spotlight::after{content:"NEW";position:absolute;right:-30px;top:20px;font-family:var(--serif);font-size:220px;line-height:1;color:rgba(21,21,18,.025);pointer-events:none}.spotlight-grid{display:grid;grid-template-columns:.72fr 1.28fr;gap:clamp(55px,9vw,120px);align-items:center}.spotlight-cover-wrap{position:relative;justify-self:center;width:min(100%,360px)}.spotlight-label{position:absolute;z-index:2;top:20px;left:-28px;background:var(--night);color:var(--gold);font-size:9px;text-transform:uppercase;letter-spacing:.15em;font-weight:850;padding:10px 12px;border-radius:999px;box-shadow:var(--shadow-sm)}.spotlight-cover{display:block;transform:rotate(-2deg);transition:transform .3s ease}.spotlight-cover:hover{transform:rotate(0) translateY(-5px)}.spotlight-cover img{width:100%;border-radius:4px 15px 15px 4px;box-shadow:22px 28px 70px rgba(40,31,18,.2)}.spotlight-copy h2{max-width:760px}.spotlight-subtitle{font-family:var(--serif);font-size:clamp(20px,2.2vw,30px);line-height:1.25;color:#5e5549;max-width:780px}.spotlight-points{display:grid;grid-template-columns:1fr 1fr;gap:10px 24px;margin:28px 0 30px}.spotlight-points span{border-top:1px solid var(--line);padding-top:9px;color:#4e4b44;font-size:13px}

.center-action{display:flex;justify-content:center;margin-top:44px}.premium-book-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}.premium-book-card{position:relative;display:flex;flex-direction:column;min-width:0}.premium-cover-shell{position:relative;width:min(100%,280px);margin:0 auto 24px;transition:transform .3s ease}.premium-book-card:hover .premium-cover-shell{transform:translateY(-7px)}.premium-cover-shell img{width:100%;aspect-ratio:.625;object-fit:cover;border-radius:3px 13px 13px 3px;box-shadow:16px 22px 45px rgba(26,22,15,.18);border:1px solid rgba(21,21,18,.08)}.premium-cover-edge{position:absolute;left:0;top:1%;bottom:1%;width:7%;background:linear-gradient(90deg,rgba(0,0,0,.32),rgba(255,255,255,.14),transparent);border-radius:3px 0 0 3px;pointer-events:none}.premium-book-copy{flex:1;padding:0 4px 4px}.premium-book-copy .meta{display:flex;gap:8px 13px;flex-wrap:wrap;color:var(--gold-2);font-size:9px;text-transform:uppercase;letter-spacing:.12em;font-weight:850}.premium-book-copy h3{font-size:30px;margin:9px 0}.premium-book-copy h3 a:hover{color:#6d531f}.book-card-subtitle{font-family:var(--serif);font-size:16px;line-height:1.3;color:#575248!important;margin-bottom:10px!important}.premium-book-copy>p:last-of-type{color:var(--muted);margin:0 0 18px}.book-card-actions{display:flex;flex-wrap:wrap;gap:10px 18px;align-items:center;margin-top:auto}.book-action-secondary{font-size:10px;text-transform:uppercase;letter-spacing:.08em;font-weight:850;color:#746e63}.book-action-secondary:hover{color:var(--ink)}

.truth-cinematic{position:relative;overflow:hidden;background:#0d0e0d;color:white}.truth-cinematic::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 20% 45%,rgba(217,184,121,.14),transparent 34%),linear-gradient(90deg,transparent,rgba(255,255,255,.02));pointer-events:none}.truth-cinematic-grid{position:relative;display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:center;padding:110px 0}.truth-cinematic-copy p{color:#bbb7ad;font-size:18px;max-width:620px}.truth-series-visual{position:relative;padding:10px 0 10px 48px}.series-line{position:absolute;left:18px;top:28px;bottom:28px;width:1px;background:linear-gradient(var(--gold),rgba(217,184,121,.12))}.series-node{position:relative;display:grid;grid-template-columns:60px 1fr;gap:18px;padding:20px 0;border-bottom:1px solid rgba(255,255,255,.09)}.series-node:last-child{border-bottom:0}.series-node::before{content:"";position:absolute;left:-35px;top:32px;width:9px;height:9px;border-radius:50%;background:#47443c;border:2px solid #777268}.series-node.active::before{background:var(--gold);border-color:var(--gold);box-shadow:0 0 0 7px rgba(217,184,121,.08)}.series-node>span{font-family:var(--serif);font-size:35px;color:var(--gold)}.series-node strong{display:block;font-family:var(--serif);font-size:24px;font-weight:500}.series-node small{color:#8e8a80;text-transform:uppercase;letter-spacing:.1em;font-size:9px}

.ttp-premium{display:grid;grid-template-columns:.9fr 1.1fr;gap:90px;align-items:center}.ttp-premium-copy p{color:#bdb8ad;font-size:18px;max-width:620px}.ttp-orbit{position:relative;min-height:500px;display:grid;place-items:center}.ttp-orbit::before,.ttp-orbit::after{content:"";position:absolute;border:1px solid rgba(217,184,121,.16);border-radius:50%}.ttp-orbit::before{width:350px;height:350px}.ttp-orbit::after{width:485px;height:485px;border-color:rgba(255,255,255,.07)}.ttp-core{position:relative;z-index:3;width:120px;height:120px;border-radius:50%;display:grid;place-items:center;background:var(--gold);color:var(--night);font-family:var(--serif);font-size:34px;box-shadow:0 0 60px rgba(217,184,121,.2)}.ttp-orbit-item{position:absolute;z-index:4;width:165px;padding:14px 15px;background:#181814;border:1px solid rgba(255,255,255,.1);border-radius:16px;box-shadow:0 18px 40px rgba(0,0,0,.2)}.ttp-orbit-item strong{display:block;color:var(--gold);font-family:var(--serif);font-size:20px}.ttp-orbit-item span{display:block;color:#99958c;font-size:10px;margin-top:3px}.ttp-orbit-item.i1{top:25px;left:50%;transform:translateX(-50%)}.ttp-orbit-item.i2{right:0;top:50%;transform:translateY(-50%)}.ttp-orbit-item.i3{bottom:25px;left:50%;transform:translateX(-50%)}.ttp-orbit-item.i4{left:0;top:50%;transform:translateY(-50%)}
.reader-list-premium{background:var(--gold)}.reader-list-banner{display:flex;align-items:center;justify-content:space-between;gap:60px}.reader-list-banner h2{max-width:700px}.reader-list-banner p{max-width:720px;margin-bottom:0}

.books-hero{background:#0d0e0d;color:white;overflow:hidden}.books-hero-grid{display:grid;grid-template-columns:1.08fr .92fr;gap:70px;align-items:center;padding:105px 0 100px}.books-hero h1{font-size:clamp(52px,6.4vw,86px)}.books-hero .lede{color:#bbb7ad}.books-cover-fan{height:470px;position:relative;justify-self:center;width:440px}.books-cover-fan img{position:absolute;width:245px;aspect-ratio:.625;object-fit:cover;border-radius:4px 12px 12px 4px;box-shadow:20px 25px 60px rgba(0,0,0,.55);top:60px}.fan-one{left:5px;transform:rotate(-9deg)}.fan-two{left:98px;top:20px!important;z-index:3;transform:rotate(1deg)}.fan-three{right:0;transform:rotate(10deg)}.genre-heading{margin-bottom:55px}.genre-heading h2{max-width:850px}

.book-detail-hero{position:relative;overflow:hidden;background:#0d0e0d;color:white}.book-detail-hero::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 25% 45%,rgba(217,184,121,.17),transparent 28%),radial-gradient(circle at 85% 25%,rgba(99,116,107,.08),transparent 34%)}.book-detail-grid{position:relative;display:grid;grid-template-columns:.72fr 1.28fr;gap:clamp(65px,9vw,130px);align-items:center;padding:105px 0 115px}.book-detail-cover{position:relative;justify-self:center;width:min(100%,350px)}.book-detail-cover img{position:relative;z-index:2;width:100%;border-radius:4px 15px 15px 4px;box-shadow:30px 40px 90px rgba(0,0,0,.55);transform:perspective(1200px) rotateY(-5deg)}.book-detail-shadow{position:absolute;z-index:1;inset:15% -10% -8% 16%;background:rgba(0,0,0,.42);filter:blur(35px);transform:skewY(-6deg)}.book-detail-copy h1{font-size:clamp(52px,6.2vw,84px);max-width:850px}.book-status{display:inline-block;color:var(--gold);font-size:10px;text-transform:uppercase;letter-spacing:.14em;font-weight:850;margin-bottom:12px}.book-detail-subtitle{font-family:var(--serif);font-size:clamp(22px,2.6vw,34px);line-height:1.25;color:#d2cdc1;max-width:850px}.book-detail-hook{font-family:var(--serif);font-style:italic;font-size:20px;color:var(--gold);border-left:2px solid var(--gold);padding-left:18px;margin:28px 0 34px;max-width:760px}.book-story-grid{display:grid;grid-template-columns:1.2fr .55fr;gap:90px;align-items:start}.book-story h2{margin-bottom:28px}.book-story p{color:var(--ink-soft);font-size:18px;max-width:800px}.book-audience{position:sticky;top:110px;border-top:3px solid var(--gold);padding:22px 0;border-bottom:1px solid var(--line)}.book-audience span{display:block;text-transform:uppercase;font-size:9px;letter-spacing:.15em;font-weight:850;color:var(--gold-2)}.book-audience p{font-family:var(--serif);font-size:23px;line-height:1.35;color:#474238}.book-excerpt{max-width:950px}.book-excerpt blockquote{font-family:var(--serif);font-size:clamp(36px,5vw,66px);line-height:1.08;margin:0 0 24px;color:var(--ink)}.book-excerpt>p{font-size:18px;max-width:750px}.book-feature-list{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.book-feature-list>div{background:#fffdfa;border:1px solid var(--line);border-radius:20px;padding:24px}.book-feature-list span{display:block;color:var(--gold-2);font-family:var(--serif);font-size:28px}.book-feature-list strong{font-family:var(--serif);font-size:25px}.book-feature-list p{color:var(--muted);margin-bottom:0}.book-bottom-cta{background:#0d0e0d;color:white}.book-bottom-cta .shell{padding:80px 0;display:flex;justify-content:space-between;align-items:center;gap:60px}.book-bottom-cta h2{font-size:clamp(38px,4vw,58px)}.book-bottom-cta p{color:#aaa69c;max-width:650px}

@media (max-width:1040px){.premium-hero-grid,.spotlight-grid,.truth-cinematic-grid,.ttp-premium,.books-hero-grid,.book-detail-grid,.book-story-grid{grid-template-columns:1fr}.hero-book-stage{margin-top:10px}.spotlight-cover-wrap{max-width:340px}.books-cover-fan{margin:0 auto}.book-audience{position:static}.reader-list-banner,.book-bottom-cta .shell{align-items:flex-start;flex-direction:column}.premium-book-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:760px){.premium-hero{min-height:auto}.premium-hero-grid{padding:70px 0 80px}.premium-hero-copy h1{font-size:clamp(46px,14vw,68px)}.hero-proof span+span::before{display:none}.hero-book-link{width:72%}.new-book-spotlight::after{font-size:120px}.spotlight-grid{gap:45px}.spotlight-points{grid-template-columns:1fr}.premium-book-grid{grid-template-columns:1fr;gap:46px}.premium-cover-shell{width:min(72%,290px)}.truth-cinematic-grid{padding:80px 0;gap:55px}.truth-series-visual{padding-left:42px}.ttp-orbit{min-height:420px;transform:scale(.9)}.ttp-orbit::after{width:410px;height:410px}.ttp-orbit::before{width:300px;height:300px}.ttp-orbit-item{width:135px;padding:10px}.books-hero-grid{padding:75px 0}.books-cover-fan{width:300px;height:350px}.books-cover-fan img{width:175px}.fan-two{left:65px}.book-detail-grid{padding:75px 0;gap:50px}.book-detail-cover{width:min(72%,300px)}.book-detail-copy h1{font-size:clamp(45px,13vw,64px)}.book-story-grid{gap:45px}.book-feature-list{grid-template-columns:1fr}.book-bottom-cta .shell{padding:62px 0}}


/* AUTHOR IDENTITY */
.author-signature{background:linear-gradient(180deg,#fffdf9 0%,#f7f1e7 100%)}
.author-proof-grid .fact strong{font-size:clamp(28px,3vw,42px);color:var(--ink)}
.about-hero .lede{max-width:900px}
.author-lanes{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.author-lane{position:relative;min-height:390px;padding:34px 30px;border:1px solid var(--line);border-radius:24px;background:rgba(255,255,255,.58);display:flex;flex-direction:column;overflow:hidden}
.author-lane::after{content:"";position:absolute;width:180px;height:180px;border:1px solid rgba(184,142,74,.14);border-radius:50%;right:-80px;top:-75px}
.author-lane .lane-number{font-family:var(--serif);font-size:56px;color:#d8c6aa;line-height:1;margin-bottom:50px}
.author-lane h3{font-size:32px;margin:8px 0 16px}
.author-lane p:not(.eyebrow){color:var(--muted)}
.author-lane .text-link{margin-top:auto;align-self:flex-start}
.author-quote-section{background:#0d0e0d;color:var(--white);position:relative;overflow:hidden}
.author-quote-section::before{content:"";position:absolute;width:650px;height:650px;border:1px solid rgba(217,184,121,.11);border-radius:50%;right:-220px;top:-300px;box-shadow:0 0 0 100px rgba(217,184,121,.018),0 0 0 200px rgba(217,184,121,.012)}
.author-quote-wrap{position:relative;z-index:1;max-width:1000px}
.author-quote-wrap blockquote{margin:18px 0 28px;font-family:var(--serif);font-size:clamp(36px,5vw,68px);line-height:1.08;color:#f5efe4}
.quote-credit{margin:0;color:var(--gold);font-size:11px;text-transform:uppercase;letter-spacing:.16em;font-weight:800}
.author-next{display:flex;align-items:flex-end;justify-content:space-between;gap:50px}
.author-next h2{max-width:760px;margin-bottom:0}
@media (max-width:900px){.author-lanes{grid-template-columns:1fr}.author-lane{min-height:300px}.author-lane .lane-number{margin-bottom:25px}.author-next{align-items:flex-start;flex-direction:column}}


/* PREMIUM CONTACT & MEDIA */
.contact-hero{position:relative;overflow:hidden;background:#0d0e0d;color:#fff}.contact-hero::before{content:"";position:absolute;inset:-35% auto auto 55%;width:720px;height:720px;border:1px solid rgba(217,184,121,.12);border-radius:50%;box-shadow:0 0 0 110px rgba(217,184,121,.02),0 0 0 220px rgba(217,184,121,.012)}.contact-hero-grid{position:relative;display:grid;grid-template-columns:1.15fr .65fr;gap:90px;align-items:center;padding:105px 0 110px}.contact-hero h1{font-size:clamp(58px,7vw,92px);max-width:820px}.contact-hero .lede{color:#c5c0b5;max-width:780px;font-size:clamp(18px,2vw,22px)}.contact-hero-panel{border:1px solid rgba(255,255,255,.12);border-top:3px solid var(--gold);border-radius:22px;padding:30px;background:linear-gradient(150deg,rgba(255,255,255,.07),rgba(255,255,255,.025));box-shadow:0 28px 75px rgba(0,0,0,.32)}.contact-hero-panel h2{font-size:34px;margin:8px 0 14px}.contact-hero-panel p{color:#bdb8ad}.contact-hero-panel small{display:block;color:#8f8a80;margin-top:12px}.contact-route-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.contact-route-card{display:flex;flex-direction:column;min-height:310px;border:1px solid var(--line);border-radius:22px;background:#fffdfa;padding:26px;transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}.contact-route-card:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:rgba(184,142,74,.42)}.contact-route-kicker{margin:0;color:var(--gold-2);text-transform:uppercase;letter-spacing:.14em;font-size:10px;font-weight:850}.contact-route-card h3{font-size:28px;margin:18px 0 12px}.contact-route-card>p:not(.contact-route-kicker){color:var(--muted);margin:0 0 26px}.contact-email-button{margin-top:auto;align-self:flex-start}.contact-professional-grid{display:grid;grid-template-columns:1.15fr .75fr;gap:80px;align-items:start}.contact-fact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:34px}.contact-fact-grid>div{border-top:1px solid #bcae98;padding:18px 0 8px}.contact-fact-grid strong{display:block;font-family:var(--serif);font-size:30px;font-weight:500;color:var(--ink)}.contact-fact-grid span{color:var(--muted);font-size:12px;text-transform:uppercase;letter-spacing:.1em}.contact-request-panel{background:#11110f;color:#fff;border-radius:24px;padding:32px;box-shadow:var(--shadow)}.contact-request-panel h3{font-size:32px}.contact-request-list{margin:24px 0 28px}.contact-request-list p{color:#bbb7ad;border-top:1px solid rgba(255,255,255,.1);padding:14px 0;margin:0}.contact-request-list strong{color:var(--gold);font-weight:700}.contact-request-panel .button-dark{background:var(--gold);color:var(--night)}.contact-request-panel .button-dark:hover{background:#e4c58a}.contact-links-section{padding-top:90px}.contact-link-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}.contact-link-grid a{display:grid;grid-template-columns:1fr auto;gap:12px;min-height:150px;border-top:1px solid var(--ink);padding:22px 4px 10px;transition:padding .2s ease}.contact-link-grid a:hover{padding-left:10px}.contact-link-grid span{grid-column:1/-1;color:var(--gold-2);font-size:10px;text-transform:uppercase;letter-spacing:.14em;font-weight:850}.contact-link-grid strong{font-family:var(--serif);font-size:22px;font-weight:500}.contact-link-grid em{font-style:normal;font-size:22px;color:var(--gold-2)}
@media(max-width:1040px){.contact-hero-grid,.contact-professional-grid{grid-template-columns:1fr;gap:55px}.contact-route-grid{grid-template-columns:repeat(2,1fr)}.contact-link-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.contact-hero-grid{padding:76px 0 82px}.contact-route-grid,.contact-fact-grid,.contact-link-grid{grid-template-columns:1fr}.contact-route-card{min-height:0}.contact-professional-grid{gap:42px}.contact-request-panel{padding:25px}}

/* Update 11: privacy and community trust layer */
.checkbox a,.form-note a{color:inherit;text-decoration:underline;text-underline-offset:2px;text-decoration-thickness:1px}
.checkbox a:hover,.form-note a:hover{color:var(--ink)}

.member-control-card,.moderation-card { padding:18px 20px; border-bottom:1px solid var(--line); display:grid; grid-template-columns:1fr auto; gap:20px; align-items:center; }
.member-control-card:last-child,.moderation-card:last-child { border-bottom:0; }
.member-control-card h3,.moderation-card h3 { font-size:20px; margin:0 0 4px; }
.member-control-card .app-meta,.moderation-card .app-meta { font-size:11px; color:var(--muted); }
.member-status { display:inline-flex; align-items:center; border-radius:999px; padding:4px 8px; font-size:9px; font-weight:850; letter-spacing:.08em; text-transform:uppercase; margin-left:6px; border:1px solid var(--line); }
.member-status.approved { color:var(--success); border-color:rgba(44,107,79,.25); background:rgba(44,107,79,.06); }
.member-status.suspended { color:var(--danger); border-color:rgba(138,62,62,.25); background:rgba(138,62,62,.06); }
.member-status.owner { color:var(--gold-2); border-color:rgba(177,132,55,.28); background:rgba(177,132,55,.07); }
.moderation-card .message-copy { color:var(--ink-soft); margin:8px 0 0; white-space:pre-wrap; overflow-wrap:anywhere; }
.small-button.suspend,.small-button.delete-message { color:var(--danger); border-color:rgba(138,62,62,.25); }
.small-button.restore { color:var(--success); border-color:rgba(44,107,79,.25); }
@media (max-width:760px){ .member-control-card,.moderation-card { grid-template-columns:1fr; } }

/* =========================================================
   UPDATE 16 — EXPANDABLE ARTICLE LIBRARY
   ========================================================= */
.article-library-section{background:linear-gradient(180deg,#f8f4ed 0%,#f5efe5 100%)}
.article-library-intro{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:54px;align-items:end;margin-bottom:34px;padding-bottom:30px;border-bottom:1px solid var(--line)}
.article-library-intro h2{font-size:clamp(38px,4vw,58px);margin:5px 0 10px;max-width:720px}
.article-library-intro .muted{max-width:680px;margin:0}
.article-library-stats{display:grid;grid-template-columns:repeat(3,minmax(110px,1fr));gap:9px;min-width:min(100%,420px)}
.article-stat{border:1px solid var(--line);border-radius:18px;background:rgba(255,255,255,.56);padding:17px 18px;box-shadow:0 7px 22px rgba(31,27,20,.035)}
.article-stat strong{display:block;font-family:var(--serif);font-size:30px;font-weight:500;line-height:1;color:var(--ink)}
.article-stat span{display:block;margin-top:8px;color:var(--muted);font-size:9px;text-transform:uppercase;letter-spacing:.1em;font-weight:850}
.article-control-panel{border:1px solid var(--line);border-radius:22px;background:rgba(255,255,255,.68);padding:20px;box-shadow:var(--shadow-sm);margin-bottom:20px}
.article-tools{grid-template-columns:minmax(260px,1fr) 190px;margin-bottom:17px;align-items:end}
.article-control-label{display:block;margin:0 0 7px 3px;color:#5b574e;font-size:9px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}
.search-box{display:block}
.search-box input{background:#fff;min-height:54px}
.article-sort{display:block}
.article-sort select{width:100%;height:54px;border:1px solid var(--line);border-radius:14px;background:#fff;color:var(--ink);padding:0 39px 0 14px;outline:none;font-weight:750;appearance:auto}
.article-sort select:focus{border-color:var(--gold-2);box-shadow:0 0 0 3px rgba(184,142,74,.12)}
.article-filter-block{border-top:1px solid rgba(21,21,18,.08);padding-top:16px}
.article-filter-block .filter-row{justify-content:flex-start}
.filter-button{transition:background .2s ease,color .2s ease,border-color .2s ease,transform .2s ease}
.filter-button:hover{transform:translateY(-1px);border-color:#a99d89}
.article-results-head{display:flex;justify-content:space-between;align-items:center;gap:18px;min-height:34px;margin:3px 0 5px}
.article-count{margin:0}
.article-clear{border:0;background:transparent;color:#6a5a3f;text-decoration:underline;text-underline-offset:3px;font-size:11px;font-weight:800;cursor:pointer}
.article-list{background:rgba(255,255,255,.28);border-radius:18px;overflow:hidden;border:1px solid var(--line)}
.article-row{grid-template-columns:175px minmax(0,1fr) 46px;padding:27px 24px;border-bottom:1px solid var(--line);transition:background .2s ease}
.article-row:last-child{border-bottom:0}
.article-row:hover{background:rgba(255,255,255,.72)}
.article-row .article-meta{display:flex;flex-direction:column;gap:5px;padding-top:3px}
.article-row .article-meta strong{color:#765a2c;font-size:10px;letter-spacing:.11em}
.article-row .article-meta span{color:var(--muted);font-size:10px;letter-spacing:.08em}
.article-row h3{font-size:clamp(24px,2.3vw,31px);line-height:1.08;margin:0 0 9px}
.article-row-copy p{font-size:15px;line-height:1.65}
.article-row .read-arrow{align-self:center;background:rgba(255,255,255,.5)}
.article-empty{text-align:center;border:1px dashed #c7bba9;border-radius:18px;padding:52px 20px;background:rgba(255,255,255,.38)}
.article-empty h3{font-size:30px;margin-bottom:7px}
.article-empty p{color:var(--muted);margin:0}
.article-load-wrap{display:flex;justify-content:center;margin-top:23px}
.article-load-more{min-width:210px;cursor:pointer}
.article-growth-card{margin-top:48px;background:linear-gradient(135deg,rgba(255,255,255,.8),rgba(232,221,201,.55))}
.article-growth-card h3{font-size:clamp(31px,3vw,42px);max-width:820px;margin-bottom:12px}
.article-growth-card p{max-width:880px}
@media (max-width:900px){
  .article-library-intro{grid-template-columns:1fr;gap:24px}
  .article-library-stats{width:100%;min-width:0}
}
@media (max-width:760px){
  .article-library-stats{grid-template-columns:1fr 1fr}
  .article-stat:last-child{grid-column:1/-1}
  .article-tools{grid-template-columns:1fr}
  .article-row{grid-template-columns:1fr 42px;padding:22px 18px}
  .article-row .article-meta{grid-column:1/-1;flex-direction:row;flex-wrap:wrap;gap:8px 12px}
  .article-results-head{align-items:flex-start;flex-direction:column;gap:4px;margin-bottom:12px}
}


/* Update 22: free two-chapter reading page. Isolated selectors only. */
.chapter-preview-hero{position:relative;overflow:hidden;background:#11110f;color:#fff;padding:72px 0 64px}.chapter-preview-grid{display:grid;grid-template-columns:minmax(220px,340px) minmax(0,1fr);gap:64px;align-items:center}.chapter-preview-cover img{display:block;width:100%;height:auto;border-radius:4px;box-shadow:0 30px 70px rgba(0,0,0,.45)}.chapter-preview-copy h1{font-size:clamp(44px,6vw,78px);line-height:.96;max-width:820px;margin:12px 0 22px}.chapter-preview-subtitle{font-family:Georgia,serif;font-size:clamp(20px,2vw,28px);line-height:1.35;max-width:760px;color:#e9e4d9}.chapter-preview-lead{font-size:18px;line-height:1.7;max-width:720px;color:#cfc9bd;margin:24px 0}.chapter-release{margin-top:18px;color:#b9b2a6;font-size:14px}.chapter-choice-bar{position:sticky;top:0;z-index:8;background:#f1eadc;border-bottom:1px solid rgba(17,17,15,.12)}.chapter-choice-bar .shell{display:flex;gap:22px;align-items:center;flex-wrap:wrap;padding-top:13px;padding-bottom:13px}.chapter-choice-bar span{font-weight:700}.chapter-choice-bar a{font-weight:650;text-decoration:none;border-bottom:1px solid rgba(17,17,15,.35)}.chapter-reading-section{background:#fbf8f1}.chapter-reading-shell{max-width:760px;margin:0 auto;padding:10px 28px}.chapter-reading{font-family:Georgia,'Times New Roman',serif;color:#1d1b18;font-size:19px;line-height:1.78}.chapter-reading+.chapter-reading{margin-top:88px;padding-top:72px;border-top:1px solid #d7cfbf}.chapter-label{font-family:Arial,sans-serif!important;letter-spacing:.18em;font-size:12px!important;font-weight:800;text-transform:uppercase;color:#8f5e3a!important;margin-bottom:10px!important}.chapter-reading h2{font-family:Georgia,'Times New Roman',serif;font-size:clamp(34px,5vw,52px);line-height:1.05;margin:0 0 42px}.chapter-reading p{margin:0 0 1.15em}.chapter-reading .chapter-first:first-letter{float:left;font-size:4.2em;line-height:.8;padding:8px 9px 0 0;color:#7d4c2e}.chapter-finish{background:#181714;color:#fff;padding:76px 0}.chapter-finish .shell{max-width:900px}.chapter-finish h2{font-size:clamp(36px,5vw,62px);margin:8px 0 16px}.chapter-finish p:not(.eyebrow){max-width:720px;color:#d7d0c4;font-size:18px;line-height:1.65}.chapter-finish .button-row{margin-top:28px}@media(max-width:760px){.chapter-preview-hero{padding:42px 0}.chapter-preview-grid{grid-template-columns:1fr;gap:32px}.chapter-preview-cover{max-width:250px;margin:0 auto}.chapter-preview-copy{text-align:left}.chapter-choice-bar{position:static}.chapter-choice-bar .shell{gap:12px 18px}.chapter-choice-bar span{width:100%}.chapter-reading-shell{padding:0 22px}.chapter-reading{font-size:18px;line-height:1.72}.chapter-reading+.chapter-reading{margin-top:64px;padding-top:52px}}


/* Update 23: reader reactions. Scoped selectors only; no book-cover rules changed. */
.reader-reaction-intro{max-width:760px;margin-bottom:34px}.reader-reaction-layout{display:grid;grid-template-columns:minmax(0,1fr) 280px;gap:34px;align-items:start}.reader-reaction-form{display:grid;grid-template-columns:1fr 1fr;gap:18px;background:#fffdfa;color:var(--ink);border-radius:24px;padding:28px;box-shadow:0 20px 55px rgba(0,0,0,.22)}.reaction-field{display:grid;gap:8px}.reaction-field-full{grid-column:1/-1}.reaction-field label{font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.1em;color:#5d584e}.reaction-field label span{font-weight:600;color:var(--muted);text-transform:none;letter-spacing:0}.reaction-field input,.reaction-field textarea{width:100%;border:1px solid #d8cfbf;border-radius:12px;background:#fff;padding:13px 14px;font:inherit;color:var(--ink);outline:none}.reaction-field textarea{resize:vertical;min-height:160px}.reaction-field input:focus,.reaction-field textarea:focus{border-color:var(--gold-2);box-shadow:0 0 0 3px rgba(184,142,74,.12)}.reaction-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.reaction-consent{grid-column:1/-1;display:flex;gap:10px;align-items:flex-start;font-size:12px;line-height:1.5;color:#555147}.reaction-consent input{margin-top:3px}.reaction-actions{grid-column:1/-1;display:flex;gap:12px;flex-wrap:wrap;align-items:center}.reader-reaction-form .status-message{grid-column:1/-1;margin-top:0}.reader-reaction-note{border-top:3px solid var(--gold);padding-top:20px}.reader-reaction-note>span{display:block;color:var(--gold);font-size:9px;text-transform:uppercase;letter-spacing:.14em;font-weight:850}.reader-reaction-note strong{display:block;font-family:var(--serif);font-size:28px;line-height:1.15;margin:12px 0}.reader-reaction-note p{color:#cfc8bc!important;font-size:14px!important;line-height:1.65!important}.reader-reaction-note small{color:#9e978a}.reader-reaction-public{background:#f5efe4;padding:82px 0}.reader-reaction-public-head{display:grid;grid-template-columns:1fr minmax(260px,440px);gap:40px;align-items:end;margin-bottom:34px}.reader-reaction-public-head h2{margin:0}.reader-reaction-public-head>p{color:var(--muted);margin:0}.reader-reaction-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.reader-reaction-card{border:1px solid var(--line);border-radius:20px;background:#fffdfa;padding:24px;box-shadow:var(--shadow-sm)}.reader-reaction-card blockquote{font-family:var(--serif);font-size:22px;line-height:1.42;margin:0 0 22px;color:#35312b}.reader-reaction-credit{display:flex;gap:8px;flex-wrap:wrap;color:var(--muted);font-size:11px}.reader-reaction-credit strong{color:var(--ink)}.reader-reaction-empty{grid-column:1/-1;border:1px dashed #cfc4b2;border-radius:18px;padding:26px;color:var(--muted);background:rgba(255,255,255,.45)}.reaction-admin-card{padding:20px;border-bottom:1px solid var(--line);display:grid;grid-template-columns:1fr auto;gap:24px;align-items:start}.reaction-admin-card:last-child{border-bottom:0}.reaction-admin-card h3{font-size:23px;margin-bottom:5px}.reaction-admin-card .reaction-body{color:var(--ink-soft);margin:12px 0 8px;max-width:760px;white-space:pre-wrap}.reaction-admin-card .reaction-consent-line{font-size:11px;color:var(--muted)}.reaction-status-chip{display:inline-flex;margin-left:7px;border-radius:999px;padding:4px 8px;font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.08em;border:1px solid var(--line)}.reaction-status-chip.pending{background:#f8efdb;color:#79531d}.reaction-status-chip.approved{background:#e5f1e9;color:#286548}.reaction-status-chip.declined{background:#f5e6e6;color:#853a3a}.reaction-admin-actions{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}.small-button.delete-reaction{color:var(--danger)}@media(max-width:900px){.reader-reaction-layout{grid-template-columns:1fr}.reader-reaction-note{max-width:650px}.reader-reaction-grid{grid-template-columns:1fr 1fr}.reader-reaction-public-head{grid-template-columns:1fr}.reaction-admin-card{grid-template-columns:1fr}.reaction-admin-actions{justify-content:flex-start}}@media(max-width:620px){.reader-reaction-form{grid-template-columns:1fr;padding:22px}.reaction-field-full,.reaction-consent,.reaction-actions,.reader-reaction-form .status-message{grid-column:1}.reader-reaction-grid{grid-template-columns:1fr}}


/* UPDATE 25: FREE CHAPTER EMAIL CAPTURE */
.chapter-protected[hidden]{display:none!important}
.chapter-access-section{background:#f5efe4;padding:72px 0;border-bottom:1px solid var(--line)}
.chapter-access-grid{display:grid;grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);gap:54px;align-items:start}
.chapter-access-copy h2{font-size:clamp(36px,5vw,58px);line-height:1.02;margin:8px 0 18px}.chapter-access-copy>p:not(.eyebrow){font-size:17px;line-height:1.7;color:var(--ink-soft);max-width:610px}
.chapter-access-points{display:flex;flex-wrap:wrap;gap:9px;margin-top:24px}.chapter-access-points span{border:1px solid #d6ccbc;border-radius:999px;background:#fff9ef;padding:8px 11px;font-size:10px;font-weight:800;letter-spacing:.03em;color:#625b50}
.chapter-access-card{border:1px solid var(--line);border-radius:24px;background:#fffdfa;padding:28px;box-shadow:var(--shadow-sm)}
.chapter-access-form{display:grid;grid-template-columns:1fr 1.35fr;gap:16px}.chapter-access-field{display:grid;gap:7px}.chapter-access-field label{font-size:10px;font-weight:850;text-transform:uppercase;letter-spacing:.1em;color:#5d584e}.chapter-access-field input{width:100%;border:1px solid #d8cfbf;border-radius:12px;background:#fff;padding:13px 14px;font:inherit;color:var(--ink);outline:none}.chapter-access-field input:focus{border-color:var(--gold-2);box-shadow:0 0 0 3px rgba(184,142,74,.12)}
.chapter-access-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}.chapter-access-consent{grid-column:1/-1;display:flex;gap:10px;align-items:flex-start;border-top:1px solid var(--line);padding-top:16px;color:var(--ink-soft)}.chapter-access-consent input{margin-top:4px;width:17px;height:17px;accent-color:var(--night)}.chapter-access-consent strong{display:block;font-size:13px}.chapter-access-consent small{display:block;color:var(--muted);font-size:11px;line-height:1.5;margin-top:3px}
.chapter-access-privacy{grid-column:1/-1;margin:0;color:var(--muted);font-size:11px;line-height:1.55}.chapter-access-privacy a{color:inherit;text-decoration:underline;text-underline-offset:2px}.chapter-access-form>.button{grid-column:1/-1;justify-self:start}.chapter-access-form .status-message{grid-column:1/-1;margin-top:0}
.chapter-access-unlocked h3{font-family:var(--serif);font-size:34px;line-height:1.08;margin:8px 0 12px}.chapter-access-unlocked>p:not(.eyebrow){color:var(--ink-soft)}.chapter-access-check{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:#e5f1e9;color:#286548;font-weight:900;font-size:22px;margin-bottom:18px}
.chapter-reader-admin-card{padding:20px;border-bottom:1px solid var(--line);display:grid;grid-template-columns:1fr auto;gap:24px;align-items:start}.chapter-reader-admin-card:last-child{border-bottom:0}.chapter-reader-admin-card h3{font-size:23px;margin-bottom:5px}.chapter-reader-admin-card .app-meta{font-size:11px;color:var(--muted)}.chapter-reader-consent{display:inline-flex;margin:10px 0 0;border-radius:999px;padding:5px 9px;font-size:9px;font-weight:850;text-transform:uppercase;letter-spacing:.08em}.chapter-reader-consent.yes{background:#e5f1e9;color:#286548}.chapter-reader-consent.no{background:#f1eee7;color:#6b6459}.small-button.delete-chapter-reader{color:var(--danger)}
@media(min-width:761px){.admin-grid{grid-template-columns:repeat(auto-fit,minmax(150px,1fr))}}
@media(max-width:820px){.chapter-access-grid{grid-template-columns:1fr;gap:30px}.chapter-access-card{max-width:650px}.chapter-reader-admin-card{grid-template-columns:1fr}}
@media(max-width:560px){.chapter-access-section{padding:52px 0}.chapter-access-card{padding:22px}.chapter-access-form{grid-template-columns:1fr}.chapter-access-consent,.chapter-access-privacy,.chapter-access-form>.button,.chapter-access-form .status-message{grid-column:1}}


/* Update 26: full on-site article reading pages */
.article-page-hero{padding:96px 0 58px;background:linear-gradient(180deg,#11110f 0%,#1a1915 100%);color:#fff;border-bottom:1px solid rgba(255,255,255,.08)}
.article-reading-shell{max-width:900px}
.article-back{display:inline-flex;align-items:center;gap:.4rem;color:#d8c9a7;text-decoration:none;font-weight:700;margin-bottom:28px}
.article-back:hover{text-decoration:underline}
.article-page-meta{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:18px;color:#d7d2c7;font-size:.93rem}
.article-publication-badge{display:inline-flex;padding:7px 11px;border:1px solid rgba(216,201,167,.42);border-radius:999px;color:#f0dfb8;background:rgba(216,201,167,.07);font-weight:800;letter-spacing:.02em}
.article-page-hero h1{font-size:clamp(2.45rem,6vw,5.2rem);line-height:.98;letter-spacing:-.045em;max-width:13ch;margin:0 0 22px}
.article-deck{font-size:clamp(1.15rem,2vw,1.45rem);line-height:1.55;color:#e7e1d5;max-width:760px;margin:0 0 18px}
.article-byline{margin:0 0 18px;color:#f3efe6}
.article-source-note{margin:0;padding-top:18px;border-top:1px solid rgba(255,255,255,.12);color:#cfc8bc;font-size:.95rem;max-width:760px}
.article-page-body{padding:68px 0 100px;background:#f6f3ec}
.article-prose{font-size:1.08rem;line-height:1.78;color:#27251f}
.article-prose p{margin:0 0 1.22em}
.article-prose h2{font-size:clamp(1.55rem,3vw,2.25rem);line-height:1.12;letter-spacing:-.025em;margin:2.2em 0 .7em;color:#11110f}
.article-prose h3{font-size:1.3rem;line-height:1.25;margin:1.8em 0 .65em;color:#171611}
.article-prose strong{color:#11110f}
.article-prose em{color:#4a463d}
.article-prose blockquote{margin:2em 0;padding:1.2em 1.35em;border-left:4px solid #9f8150;background:#fff;border-radius:0 12px 12px 0;font-size:1.08em}
.article-prose ul,.article-prose ol{margin:1.1em 0 1.5em;padding-left:1.5em}
.article-prose li{margin:.45em 0}
.article-emphasis{font-size:1.26rem!important;line-height:1.5!important;font-weight:800;color:#11110f!important;margin:1.6em 0!important}
.article-inline-image{display:block;max-width:min(100%,760px);height:auto;margin:2.3rem auto;border-radius:14px;box-shadow:0 16px 42px rgba(17,17,15,.12)}
.article-table{width:100%;border-collapse:collapse;margin:2rem 0;background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 10px 30px rgba(17,17,15,.06)}
.article-table th,.article-table td{padding:12px 14px;border:1px solid #ded9cc;text-align:left;vertical-align:top}
.article-table th{background:#eee8dc;color:#11110f}
.article-end-card{margin-top:64px;padding:32px;border:1px solid #ddd5c5;border-radius:18px;background:#fff}
.article-end-card h2{margin:.2em 0 .45em;font-size:1.8rem}
.article-end-card p{max-width:650px}
.article-row .article-meta span:empty{display:none}
@media(max-width:720px){.article-page-hero{padding:76px 0 44px}.article-page-body{padding:48px 0 76px}.article-page-hero h1{max-width:none}.article-prose{font-size:1.02rem}.article-table{display:block;overflow-x:auto}}
