/*
Design philosophy for this file: clean black-and-white editorial minimalism inspired by origin.shiflett.org. The CSS uses a pure white page, a fixed vertical identity strip, a narrow quote rail, monochrome image panel, compact type scale, thin rules, restrained blue-gray accent, and dense above-the-fold proportions rather than a generic centered landing page.
*/

:root {
  --paper: #ffffff;
  --ink: #1c1c1c;
  --soft-ink: #525252;
  --muted-ink: #8a8a8a;
  --line: rgba(28, 28, 28, 0.10);
  --line-strong: rgba(28, 28, 28, 0.20);
  --wash: #fafafa;
  --wash-2: #f4f4f4;
  --accent: #315f7a;
  --accent-pale: #e8eff3;
  --strip: #090909;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Cascadia Code", Menlo, Monaco, "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 3.5rem;
  top: 0.7rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

.identity-strip {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: 2.85rem;
  background: linear-gradient(180deg, var(--strip) 0, var(--strip) 22vh, var(--paper) 22vh, var(--paper) 100%);
  color: var(--paper);
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.identity-strip .strip-name {
  position: absolute;
  left: 50%;
  top: 1.2rem;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

.identity-strip .strip-quote-zone {
  position: absolute;
  left: 0;
  right: 0;
  top: 22vh;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  background: var(--paper);
}

.identity-strip .strip-quote {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 100%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--soft-ink);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.03em;
  line-height: 1.55;
  white-space: nowrap;
  animation: stripQuoteScroll 28s linear infinite;
}

@keyframes stripQuoteScroll {
  0% { transform: translate(-50%, 100%); }
  100% { transform: translate(-50%, -100%); }
}

.view[hidden],
[hidden] {
  display: none !important;
}

.mobile-top,
.mobile-nav {
  display: none;
}

.home-grid {
  display: grid;
  min-height: 100vh;
  padding-left: 2.85rem;
  grid-template-columns: minmax(400px, 1fr) minmax(400px, 1fr);
  background: var(--paper);
}

.image-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--wash-2);
}

.image-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: transparent;
  pointer-events: none;
}

.image-panel img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: grayscale(1) contrast(1.02) brightness(0.97);
}

.image-panel figcaption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 2;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.content-panel {
  min-height: 100vh;
  border-left: 1px solid var(--line);
  background: var(--paper);
}

.topbar,
.article-header-bar {
  position: sticky;
  top: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 3.85rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 0 2.6rem;
  backdrop-filter: blur(14px);
}

.topbar {
  justify-content: center;
}

.topbar .brand {
  display: none;
}

.brand {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
}

.topbar nav,
.article-header-bar nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.28rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar nav a,
.article-header-bar nav a {
  border-bottom: 1px solid transparent;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 0.15rem;
  transition: border-color 180ms ease, color 180ms ease;
}

.topbar nav a:hover,
.article-header-bar nav a:hover {
  color: var(--accent);
}

.topbar nav a.active,
.article-header-bar nav a.active {
  border-bottom-color: var(--ink);
}

.subtle-link,
.back-link {
  border-bottom: 1px solid var(--line);
  color: var(--muted-ink);
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.subtle-link:hover,
.back-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.topbar nav a.consult-cta {
  border: 1px solid var(--accent);
  background: var(--paper);
  color: var(--accent);
  padding: 0.45rem 1rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.topbar nav a.consult-cta:hover {
  background: var(--accent);
  color: var(--paper);
}

.topbar nav a.consult-cta.active {
  border-bottom-color: var(--accent);
}

.panel-scroll {
  height: calc(100vh - 3.85rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.hero-block,
.ruled-section {
  max-width: 720px;
  padding: clamp(2.4rem, 5.8vh, 4.2rem) 2.6rem 3rem 4.2rem;
}

.hero-block h1,
.ruled-section h2,
.article-hero h1,
.article-body h2,
.about-card h3,
.faq-grid h3,
.booking-fallback p,
.article-next a,
.site-footer strong {
  font-family: var(--serif);
}

.hero-block h1 {
  max-width: 680px;
  margin: 0;
  color: var(--soft-ink);
  font-size: clamp(2.15rem, 3.55vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.hero-name {
  color: var(--ink);
  font-weight: 600;
}

.hero-lede {
  margin: 2.2rem 0 0;
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--soft-ink);
  font-weight: 400;
}

.hero-outcome {
  margin: 2.8rem 0 0;
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--soft-ink);
  font-weight: 400;
}

.practice-paragraph p.practice-anchor {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 2.2rem;
}

.about-lede {
  max-width: 600px;
  margin: 1.6rem 0 2.6rem;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.tiny-label {
  margin: 0;
  color: var(--muted-ink);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.meta-grid p:not(.tiny-label),
.compact-copy p,
.copy-block p,
.focus-grid p,
.journal-list p,
.faq-grid p,
.about-card p,
.dek,
.article-body p,
.site-footer p {
  color: var(--soft-ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.meta-grid p:not(.tiny-label) {
  margin: 0.38rem 0 0;
}

.compact-copy {
  margin-top: 1.35rem;
}

.compact-copy p,
.copy-block p,
.about-card p {
  margin: 0;
}

.compact-copy p + p,
.copy-block p + p,
.about-card p + p {
  margin-top: 0.85rem;
}

.lede {
  margin-top: 2.4rem;
  max-width: 560px;
}

.lede p {
  margin: 0 0 1.1rem;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--soft-ink);
  font-weight: 400;
}

.lede p:last-child {
  margin-bottom: 0;
}

.plain-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  max-width: 520px;
}

.plain-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
}

.plain-list li:first-child {
  border-top: 1px solid var(--line);
}

/* ---- Three-column overview block (homepage) ---- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
  margin-top: 4.2rem;
}

.three-col-card {
  display: block;
  text-decoration: none;
  color: var(--soft-ink);
  padding: 0;
  transition: color 180ms ease;
}

.three-col-card:hover,
.three-col-card:focus-visible {
  color: var(--accent);
}

.three-col-card h3 {
  margin: 0 0 1.1rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-ink);
}

.three-col-card:hover h3,
.three-col-card:focus-visible h3 {
  color: var(--accent);
}

.three-col-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.three-col-card li {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--muted-ink);
}

/* ---- Editorial practice paragraph (homepage) ---- */
.practice-paragraph {
  margin-top: 3.8rem;
  max-width: 600px;
}

.practice-paragraph p {
  margin: 0 0 1.4rem;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--soft-ink);
}

.practice-paragraph p:last-child {
  margin-bottom: 0;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration-thickness: 2px;
  color: var(--accent);
}

.inline-link-row {
  margin-top: 1.8rem;
  color: var(--muted-ink);
}

/* ---- Topic markers (interior pages) ---- */
.topic-marker {
  margin-top: 1.4rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.topic-marker:last-of-type {
  border-bottom: 1px solid var(--line);
}

.topic-label {
  margin: 0 0 0.35rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.topic-marker p:not(.topic-label) {
  margin: 0.45rem 0 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--soft-ink);
}

.review-block {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border: 1px dashed var(--line-strong);
  background: var(--wash-2);
}

.review-block p {
  margin: 0;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-ink);
}

/* ---- FAQ list ---- */
.faq-list {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.faq-list article {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-list h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.faq-list p {
  margin: 0.6rem 0 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--soft-ink);
}

/* ---- Steps list (Start page) ---- */
.steps-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.steps-list li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.steps-list li:first-child {
  border-top: 1px solid var(--line);
}

.step-number {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted-ink);
}

.step-text {
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
}

.start-section .copy-block {
  margin-top: 1.6rem;
}

/* ---- Mobile horizontal scrolling strip ---- */
.mobile-strip {
  display: none;
}

.mobile-strip-track {
  display: inline-flex;
  white-space: nowrap;
  animation: mobileStripScroll 38s linear infinite;
}

.mobile-strip-track span {
  display: inline-block;
  padding: 0 2.2rem;
  font-family: var(--mono);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--soft-ink);
}

@keyframes mobileStripScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Day-of-week tint overlay ---- */
body.tint-sage::before,
body.tint-olive::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

body.tint-sage::before {
  background: rgba(201, 210, 192, 0.10);
}

body.tint-olive::before {
  background: rgba(199, 199, 174, 0.10);
}

body.tint-sage .mobile-strip {
  background: rgba(201, 210, 192, 0.22);
}

body.tint-olive .mobile-strip {
  background: rgba(199, 199, 174, 0.22);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.button-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  border: 1px solid var(--accent);
  background: var(--paper);
  color: var(--accent);
  padding: 0.7rem 1.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.button-link:hover,
.button-link:focus-visible {
  background: var(--accent);
  color: var(--paper);
}

.subtle-link,
.back-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
}

.subtle-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.featured-journal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.2rem 1.2rem;
  margin-top: 3.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
  text-decoration: none;
}

.featured-journal .tiny-label {
  grid-column: 1 / -1;
}

.featured-journal strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}

.featured-journal em {
  align-self: end;
  color: var(--muted-ink);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.featured-journal:hover strong,
.featured-journal:focus-visible strong {
  color: var(--accent);
}

.ruled-section {
  border-top: 1px solid var(--line);
}

.ruled-section h2 {
  max-width: 680px;
  margin: 0.55rem 0 0;
  font-size: clamp(2rem, 4.4vw, 4.55rem);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.96;
}

.copy-block {
  margin-top: 1.35rem;
}

.rule-list {
  display: grid;
  margin-top: 1.55rem;
  border-top: 1px solid var(--line);
}

.rule-list span {
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.75rem;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.focus-grid article {
  min-height: 150px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem;
}

.focus-grid span {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.focus-grid h3,
.faq-grid h3,
.about-card h3 {
  margin: 0.7rem 0 0;
  font-size: 1.72rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.focus-grid p,
.faq-grid p {
  margin: 0.75rem 0 0;
}

.journal-list {
  margin-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.journal-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.2rem 1.1rem;
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 0;
  color: var(--ink);
  text-decoration: none;
}

.journal-list span {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.03;
  letter-spacing: -0.034em;
}

.journal-list em {
  align-self: end;
  color: var(--accent);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.journal-list p {
  grid-column: 1 / -1;
  max-width: 620px;
  margin: 0.2rem 0 0;
}

.scheduler {
  min-height: 240px;
  margin-top: 1.55rem;
}

.booking-fallback {
  margin-top: 1.55rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.booking-fallback p {
  margin: 0;
  color: var(--ink);
  font-size: 1.7rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.booking-fallback span {
  display: block;
  margin-top: 0.65rem;
  color: var(--soft-ink);
  line-height: 1.55;
}

.faq-grid,
.about-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 1.45rem;
  border-top: 1px solid var(--line);
  padding-top: 1.35rem;
}

.about-card {
  grid-template-columns: minmax(7rem, 0.75fr) minmax(0, 1.75fr);
}

.portrait-placeholder {
  position: relative;
  min-height: 10.5rem;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(49, 95, 122, 0.1), transparent 46%), linear-gradient(180deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.11));
}

.portrait-placeholder::before,
.portrait-placeholder::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(49, 95, 122, 0.26);
}

.portrait-placeholder::before {
  inset: 0.9rem;
}

.portrait-placeholder::after {
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border-color: var(--line);
}

.portrait-placeholder span {
  position: absolute;
  left: 1rem;
  bottom: 0.95rem;
  color: var(--muted-ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.article-shell {
  min-height: 100vh;
  padding-left: 2.35rem;
  background: var(--paper);
}

.article-header-bar {
  min-height: 4rem;
}

.article-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4.2rem 2rem 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 2.4rem;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.38fr);
  gap: 3rem;
  align-items: start;
}

.article-hero h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(3rem, 7.4vw, 7.3rem);
  font-weight: 500;
  letter-spacing: -0.066em;
  line-height: 0.9;
}

.dek {
  max-width: 760px;
  margin: 1.5rem 0 0;
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  line-height: 1.55;
}

.pullquote {
  border-left: 1px solid var(--accent);
  background: var(--wash);
  padding: 1.55rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  letter-spacing: -0.038em;
  line-height: 1.08;
}

.article-body-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--wash);
}

.article-body-wrap > img {
  height: 100%;
  min-height: 360px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(0.96);
}

.article-body-wrap:not(:has(img)) {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.article-hero:not(:has(aside)) {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}

.article-body {
  background: var(--paper);
  padding: clamp(2rem, 5vw, 4rem);
}

.article-body section {
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.article-body section:first-child {
  padding-top: 0;
}

.article-body section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.article-body p {
  max-width: 760px;
  margin: 1.1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.76;
}

.article-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 3rem 0 4rem;
}

.article-next a {
  display: flex;
  min-height: 150px;
  align-items: end;
  border: 1px solid var(--line);
  padding: 1.35rem;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.article-next a:hover {
  border-color: var(--accent);
  background: var(--accent-pale);
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: 1rem;
  background: var(--strip);
  color: var(--paper);
  padding: 2rem;
}

.site-footer strong {
  font-size: 1.9rem;
  font-weight: 500;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

@media (min-width: 1061px) {
  .hero-block {
    padding-top: 4.4rem;
    padding-bottom: 4.4rem;
  }

  .hero-block h1 {
    font-size: clamp(2.05rem, 3.1vw, 3.15rem);
    line-height: 1.12;
  }

  .meta-grid {
    margin-top: 2rem;
    padding: 1.1rem 0;
    gap: 1.4rem;
  }

  .compact-copy {
    margin-top: 1.6rem;
  }

  .compact-copy p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .action-row {
    margin-top: 2.4rem;
    gap: 1.4rem;
  }

  .featured-journal {
    margin-top: 3.6rem;
    padding-top: 1.1rem;
  }

  .featured-journal strong {
    font-size: 1.05rem;
  }

  .ruled-section {
    padding-top: 4.6rem;
    padding-bottom: 4.6rem;
  }

  .ruled-section h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.7rem);
    line-height: 1.14;
    color: var(--ink);
  }
}

@media (max-width: 1060px) {
  .identity-strip {
    display: none;
  }

  .topbar,
  .article-header-bar {
    display: none;
  }

  .mobile-top {
    display: block;
    background: var(--strip);
    text-align: center;
    padding: 1.5rem 1.2rem;
  }

  .mobile-brand {
    color: var(--paper);
    font-family: var(--mono);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
  }

  .mobile-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-nav a {
    color: var(--ink);
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.2rem 0;
  }

  .mobile-nav a.active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
  }

  .home-grid {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(52vh, 440px) auto auto;
    padding-left: 0;
  }

  .image-panel {
    position: relative;
    height: 52vh;
    min-height: 440px;
  }

  .mobile-strip {
    display: block;
    overflow: hidden;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    background: var(--wash-2);
  }

  .three-col {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2.4rem;
    padding-top: 1.6rem;
  }

  .three-col-card {
    padding: 1.2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .three-col-card:last-child {
    border-bottom: 1px solid var(--line);
  }

  .three-col-card h3 {
    margin-bottom: 0.6rem;
  }

  .practice-paragraph {
    margin-top: 2.4rem;
    max-width: none;
  }

  .practice-paragraph p {
    font-size: 1.02rem;
  }

  .faq-list h3 {
    font-size: 1.02rem;
  }

  .steps-list li {
    grid-template-columns: 2rem 1fr;
  }

  .content-panel {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .panel-scroll {
    height: auto;
    overflow: visible;
  }

  .hero-block,
  .ruled-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.9rem;
    padding-right: 1.9rem;
  }

  .hero-block h1 {
    font-size: clamp(1.65rem, 5vw, 2.1rem);
    line-height: 1.24;
    letter-spacing: -0.005em;
    max-width: 22ch;
  }

  .ruled-section h2 {
    font-size: clamp(1.5rem, 4.4vw, 1.95rem);
    line-height: 1.24;
    margin-bottom: 0.5rem;
    max-width: 22ch;
  }

  .lede {
    margin-top: 2rem;
    max-width: none;
  }

  .lede p {
    font-size: 1.05rem;
    line-height: 1.78;
  }

  .hero-lede,
  .hero-outcome {
    max-width: none;
    font-size: 1rem;
    line-height: 1.85;
  }

  .hero-lede {
    margin-top: 1.9rem;
  }

  .hero-outcome {
    margin-top: 2.4rem;
  }

  .practice-paragraph p.practice-anchor {
    font-size: 1.05rem;
  }

  .about-lede {
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }

  .plain-list {
    margin-top: 1.8rem;
    max-width: none;
  }

  .plain-list li {
    padding: 0.95rem 0;
    font-size: 1.02rem;
  }

  .copy-block p {
    font-size: 1.02rem;
    line-height: 1.78;
  }

  .action-row {
    margin-top: 2.2rem;
    gap: 1.1rem;
  }

  .featured-journal {
    margin-top: 2.6rem;
    padding: 1.3rem 0;
  }

  .article-hero,
  .article-body-wrap,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .article-body-wrap > img {
    max-height: 360px;
  }
}

@media (max-width: 680px) {
  .mobile-top {
    padding: 1.3rem 1rem;
  }

  .mobile-brand {
    font-size: 0.88rem;
    letter-spacing: 0.22em;
  }

  .mobile-nav {
    gap: 1.6rem;
    padding: 1rem 1rem;
  }

  .mobile-nav a {
    font-size: 0.74rem;
    letter-spacing: 0.14em;
  }

  .home-grid,
  .article-shell {
    padding-left: 0;
  }

  .home-grid {
    grid-template-columns: 1fr;
  }

  .meta-grid,
  .focus-grid,
  .faq-grid,
  .about-card,
  .article-next,
  .journal-list a {
    grid-template-columns: 1fr;
  }

  .hero-block,
  .ruled-section {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
    padding-left: 1.65rem;
    padding-right: 1.65rem;
  }

  .hero-block h1 {
    font-size: clamp(1.55rem, 5.6vw, 1.95rem);
    line-height: 1.26;
    max-width: 20ch;
  }

  .ruled-section h2,
  .article-hero h1 {
    font-size: clamp(1.45rem, 5vw, 1.85rem);
    line-height: 1.26;
    max-width: 20ch;
  }

  .lede {
    margin-top: 1.8rem;
  }

  .lede p {
    font-size: 1rem;
    line-height: 1.78;
  }

  .plain-list {
    margin-top: 1.6rem;
  }

  .plain-list li {
    padding: 1rem 0;
  }

  .action-row {
    margin-top: 2rem;
  }

  .featured-journal {
    margin-top: 2.4rem;
  }

  .journal-list em {
    align-self: start;
  }

  .article-layout {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
