/* ============================================================
   brienwood.css  —  shared stylesheet for brienwood.com
   ------------------------------------------------------------
   Jeff: this single file replaces the ~100 lines of inline CSS
   that were in each page. Every page links it in the <head>:
       <link rel="stylesheet" href="/brienwood.css">
   Class names are reconciled across all pages, so there are no
   collisions. Where a page needed a variant (e.g. the tan CTA
   button on the Clinicians page) it's a modifier class, noted
   below. Design tokens live in :root so a color/font change is
   made once, here.
   ============================================================ */

:root {
  --cream:        #FBF8F2;   /* page background */
  --tan-band:     #F2EBDB;   /* accent section background */
  --tan:          #b8956d;   /* accent / overlines / dividers */
  --tan-deep:     #6b5640;   /* secondary accent text */
  --charcoal:     #1a1816;   /* dark sections / hero */
  --ink:          #1f1f1d;   /* primary text */
  --ink-soft:     #3a3a37;   /* body text */
  --rule:         #d8d2c0;   /* light hairline rules */
  --rule-soft:    #e2dcca;   /* lighter hairline rules */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.5; font-weight: 400; }
.page { max-width: 100%; background: var(--cream); overflow: hidden; }

/* ===================== NAVIGATION ===================== */
.nav { position: absolute; top: 0; left: 0; right: 0; z-index: 100; padding: 32px 56px; display: flex; justify-content: space-between; align-items: center; }
.nav-name { font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: 1px; color: #fff; text-transform: uppercase; text-decoration: none; }

/* Desktop links */
.nav-links { font-size: 11px; color: rgba(255,255,255,0.85); letter-spacing: 2px; font-weight: 400; text-transform: uppercase; display: flex; align-items: center; }
.nav-links .nav-item { margin: 0 14px; cursor: pointer; position: relative; padding: 28px 0; color: rgba(255,255,255,0.85); text-decoration: none; }
.nav-links .nav-item:hover { color: #fff; }
.nav-item-parent { display: inline-flex; align-items: baseline; gap: 6px; }
.nav-chevron { font-size: 9px; opacity: 0.7; transform: translateY(-1px); transition: opacity 0.2s; }
.nav-item:hover .nav-chevron { opacity: 1; }
.nav-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-4px); background: rgba(20,18,16,0.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 18px 0; min-width: 240px; opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease; border-top: 0.5px solid rgba(184,149,109,0.3); }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: block; padding: 11px 28px; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 10.5px; letter-spacing: 2.5px; white-space: nowrap; transition: color 0.15s, background 0.15s; }
.nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,0.04); }

/* Mobile hamburger button */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 34px; height: 34px; background: none; border: none; cursor: pointer; z-index: 110; }
.nav-toggle span { display: block; height: 1.5px; width: 26px; background: #fff; transition: transform .3s ease, opacity .25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu { position: fixed; inset: 0; z-index: 105; background: var(--charcoal); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease; padding: 80px 24px; overflow-y: auto; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { text-decoration: none; }
.mm-group-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--tan); margin: 0 0 4px; }
.mobile-menu .mm-link { display: block; font-family: var(--serif); font-size: 30px; color: #f5ecd8; padding: 11px 0; text-align: center; line-height: 1.2; transition: color .2s ease; }
.mobile-menu .mm-link.sub { font-size: 24px; color: #d4cdb8; }
.mobile-menu .mm-link:active, .mobile-menu .mm-link:hover { color: var(--tan); }
.mm-divider { width: 40px; height: .5px; background: rgba(184,149,109,.3); margin: 22px 0; }
.mm-cta { margin-top: 28px; display: inline-block; background: var(--tan); color: var(--charcoal); padding: 18px 44px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; border-radius: 1px; }
body.menu-open { overflow: hidden; }

/* Mobile menu close (X) button */
.mm-close { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 0; }
.mm-close::before, .mm-close::after { content: ''; position: absolute; top: 50%; left: 50%; width: 24px; height: 1.5px; background: #f5ecd8; }
.mm-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.mm-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.mm-close:hover::before, .mm-close:hover::after { background: var(--tan); }

/* Active / current-page indicator */
.nav-links .nav-item.active { color: #fff; }
.nav-links .nav-item.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: 20px; height: 1px; background: var(--tan); }
.mobile-menu .mm-link.active { color: var(--tan); }
.nav-dropdown a.active { color: #fff; }

/* ===================== SUBPAGE HERO ===================== */
.subhero { position: relative; background: var(--charcoal); color: #f5ecd8; padding: 220px 56px 120px; text-align: center; overflow: hidden; }
.subhero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(184,149,109,0.10) 0%, rgba(26,24,22,0) 60%); pointer-events: none; }
.subhero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.subhero-overline { font-size: 11px; color: var(--tan); letter-spacing: 4px; font-weight: 500; text-transform: uppercase; margin-bottom: 32px; }
.subhero-title { font-family: var(--serif); font-size: 64px; line-height: 1.08; font-weight: 400; letter-spacing: -1.2px; color: #fff; margin-bottom: 28px; }
.subhero-sub { font-family: var(--serif); font-size: 25px; font-style: italic; color: #d4cdb8; line-height: 1.4; font-weight: 400; }

/* ===================== SHARED SECTION HEADERS ===================== */
.section-overline { font-size: 11px; color: var(--tan-deep); letter-spacing: 4px; font-weight: 500; text-transform: uppercase; margin-bottom: 24px; }
.section-overline.center { text-align: center; }
.section-title { font-family: var(--serif); font-size: 52px; font-weight: 400; color: var(--ink); line-height: 1.08; letter-spacing: -0.8px; text-align: center; margin-bottom: 64px; }

/* ===================== OPENING (large type) ===================== */
.opening { padding: 150px 56px 120px; max-width: 980px; margin: 0 auto; }
.opening-statement { font-family: var(--serif); font-size: 38px; line-height: 1.3; font-weight: 400; color: var(--ink); letter-spacing: -0.4px; margin-bottom: 32px; }
.opening-statement:last-of-type { margin-bottom: 0; }
.opening-statement em { font-style: italic; color: var(--tan-deep); }

/* ===================== GENERIC PROSE ===================== */
.prose { max-width: 760px; margin: 0 auto; padding: 0 56px 120px; }
.prose p { font-size: 18px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 28px; }
.prose p:last-child { margin-bottom: 0; }
.prose .lead-em { font-style: italic; color: var(--tan-deep); }

/* ===================== TAN BANDS (questions / expect) ===================== */
.questions { background: var(--tan-band); padding: 150px 56px; }
.questions-inner { max-width: 980px; margin: 0 auto; }
.questions-intro { font-size: 18px; line-height: 1.8; color: var(--ink-soft); text-align: center; max-width: 720px; margin: 0 auto 80px; }
.questions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.question-cluster { text-align: center; border-top: 0.5px solid #c9bfa3; padding-top: 36px; }
.question-cluster p { font-family: var(--serif); font-style: italic; font-size: 25px; line-height: 1.5; color: var(--ink); }
.questions-close { font-size: 18px; line-height: 1.8; color: var(--ink-soft); text-align: center; max-width: 760px; margin: 80px auto 0; }

.expect { background: var(--tan-band); padding: 150px 56px; }
.expect-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.expect-body { font-family: var(--serif); font-size: 27px; line-height: 1.5; color: var(--ink); font-weight: 400; }
.expect-body em { font-style: italic; color: var(--tan-deep); }

/* ===================== MODES (how the work works) ===================== */
.modes { padding: 150px 56px; max-width: 1100px; margin: 0 auto; }
.modes-grid { display: grid; gap: 0; }
.mode { display: grid; grid-template-columns: 220px 1fr; gap: 56px; padding: 56px 0; border-bottom: 0.5px solid var(--rule); align-items: start; }
.mode:first-of-type { border-top: 0.5px solid var(--rule); }
.mode-label { font-family: var(--serif); font-size: 30px; font-style: italic; color: var(--tan-deep); line-height: 1.2; }
.mode-body { font-size: 18px; line-height: 1.8; color: var(--ink-soft); }

/* ===================== DARK "APPROACH" BAND ===================== */
.approach { background: var(--charcoal); color: #d4cdb8; padding: 150px 56px; }
.approach-inner { max-width: 820px; margin: 0 auto; }
.approach .section-overline { color: var(--tan); text-align: center; }
.approach .section-title { color: #f5ecd8; }
.approach p { font-size: 18px; line-height: 1.85; color: #d4cdb8; margin-bottom: 28px; font-weight: 300; }
.approach p:last-child { margin-bottom: 0; }
.approach p em { color: #e8dcc4; font-style: italic; }

/* ===================== AUDIENCE (who this is for) ===================== */
.audience { padding: 150px 56px; max-width: 820px; margin: 0 auto; }
.audience .section-overline { text-align: center; }
.audience-lead { font-size: 18px; line-height: 1.8; color: var(--ink-soft); text-align: center; max-width: 680px; margin: 0 auto 48px; }
.audience-list { list-style: none; max-width: 720px; margin: 0 auto 48px; }
.audience-list li { font-family: var(--serif); font-size: 23px; line-height: 1.4; color: var(--ink); padding: 22px 0 22px 40px; border-bottom: 0.5px solid var(--rule-soft); position: relative; }
.audience-list li:first-child { border-top: 0.5px solid var(--rule-soft); }
.audience-list li::before { content: '—'; position: absolute; left: 0; color: var(--tan); font-style: normal; }
.audience-close { font-size: 18px; line-height: 1.8; color: var(--ink-soft); text-align: center; max-width: 720px; margin: 0 auto; }

/* ===================== CTA ===================== */
.cta-section { padding: 160px 56px; background: var(--cream); text-align: center; }
.cta-section.tan { background: var(--tan-band); }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-overline { font-size: 11px; color: var(--tan-deep); letter-spacing: 4px; font-weight: 500; text-transform: uppercase; margin-bottom: 36px; }
.cta-display { font-family: var(--serif); font-size: 58px; font-weight: 400; color: var(--ink); margin-bottom: 36px; line-height: 1.06; letter-spacing: -1px; font-style: italic; }
.cta-text { font-size: 18px; line-height: 1.75; color: var(--ink-soft); margin: 0 auto 56px; max-width: 580px; }

/* Buttons — base is dark (the common case). .tan = Clinicians cohort button. */
.cta-button { display: inline-block; background: var(--ink); color: #fff; padding: 22px 56px; font-size: 11px; letter-spacing: 3px; text-decoration: none; font-weight: 500; text-transform: uppercase; border-radius: 1px; transition: background 0.2s; }
.cta-button:hover { background: #2a2826; }
.cta-button.tan { background: var(--tan); color: var(--charcoal); }
.cta-button.tan:hover { background: #c9a87f; }

/* ===================== FAQ ===================== */
.faq { padding: 40px 56px 160px; max-width: 820px; margin: 0 auto; }
.faq .section-overline { text-align: center; }
.faq-item { border-bottom: 0.5px solid var(--rule); padding: 36px 0; }
.faq-item:first-of-type { border-top: 0.5px solid var(--rule); }
.faq-q { font-family: var(--serif); font-size: 27px; font-weight: 500; color: var(--ink); line-height: 1.25; margin-bottom: 18px; }
.faq-a { font-size: 17px; line-height: 1.75; color: var(--ink-soft); }
.faq-a a { color: var(--tan-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ===================== ABOUT-PAGE COMPONENTS ===================== */
.bio { max-width: 1080px; margin: 0 auto; padding: 0 56px 140px; display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: start; }
.bio-photo { width: 100%; }
.bio-photo img { width: 100%; height: auto; display: block; border-radius: 2px; filter: grayscale(8%); box-shadow: 0 20px 50px rgba(31,31,29,0.16); }
.bio-caption { text-align: center; margin-top: 20px; font-family: var(--serif); font-size: 19px; color: var(--ink); letter-spacing: 0.5px; }
.bio-caption span { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--tan-deep); margin-top: 8px; font-weight: 400; }
.bio-text p { font-size: 18px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 28px; }
.bio-text p:last-child { margin-bottom: 0; }
.bio-text em { font-style: italic; color: var(--tan-deep); }

.experience { background: var(--charcoal); color: #d4cdb8; padding: 130px 56px; }
.experience-inner { max-width: 880px; margin: 0 auto; }
.experience .section-overline { color: var(--tan); text-align: center; }
.experience-title { font-family: var(--serif); font-size: 46px; font-weight: 400; color: #f5ecd8; text-align: center; line-height: 1.1; letter-spacing: -0.6px; margin-bottom: 72px; }
.exp-item { padding: 32px 0; border-bottom: 0.5px solid rgba(184,149,109,0.22); }
.exp-item:first-of-type { border-top: 0.5px solid rgba(184,149,109,0.22); }
.exp-role { font-family: var(--serif); font-size: 26px; color: #f5ecd8; font-weight: 500; margin-bottom: 10px; line-height: 1.25; }
.exp-desc { font-size: 16.5px; line-height: 1.7; color: #b6ae99; font-weight: 300; }

.creds { max-width: 920px; margin: 0 auto; padding: 130px 56px 40px; }
.creds-title { font-family: var(--serif); font-size: 46px; font-weight: 400; color: var(--ink); text-align: center; line-height: 1.1; letter-spacing: -0.6px; margin-bottom: 64px; }
.cred-row { display: grid; grid-template-columns: 1fr; gap: 6px; padding: 28px 0; border-bottom: 0.5px solid var(--rule-soft); }
.cred-row:first-of-type { border-top: 0.5px solid var(--rule-soft); }
.cred-name { font-family: var(--serif); font-size: 24px; color: var(--ink); font-weight: 500; line-height: 1.3; }
.cred-desc { font-size: 16px; line-height: 1.65; color: #5a5a55; }

.training { max-width: 920px; margin: 0 auto; padding: 90px 56px 140px; }
.train-block { padding: 30px 0; border-bottom: 0.5px solid var(--rule-soft); }
.train-block:first-of-type { border-top: 0.5px solid var(--rule-soft); }
.train-head { font-family: var(--serif); font-size: 23px; color: var(--tan-deep); font-weight: 500; margin-bottom: 12px; font-style: italic; }
.train-list { font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); }

/* ===================== CLINICIANS-PAGE COMPONENTS ===================== */
.program { background: var(--charcoal); color: #d4cdb8; padding: 130px 56px; }
.program-inner { max-width: 980px; margin: 0 auto; }
.program .section-overline { color: var(--tan); text-align: center; }
.program-title { font-family: var(--serif); font-size: 52px; font-weight: 400; color: #fff; text-align: center; line-height: 1.08; letter-spacing: -0.8px; margin-bottom: 28px; }
.program-lead { font-size: 19px; line-height: 1.7; color: #d4cdb8; text-align: center; max-width: 740px; margin: 0 auto 16px; font-weight: 300; }
.program-lead strong { color: #f5ecd8; font-weight: 500; }
.program-tag { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--tan); text-align: center; margin: 0 auto 80px; }
.sub-overline { font-size: 11px; color: var(--tan); letter-spacing: 3px; font-weight: 500; text-transform: uppercase; margin-bottom: 36px; text-align: center; }
.develop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; margin-bottom: 24px; }
.develop-item { padding: 26px 0; border-bottom: 0.5px solid rgba(184,149,109,0.22); }
.develop-name { font-family: var(--serif); font-size: 23px; color: #f5ecd8; font-weight: 500; margin-bottom: 8px; line-height: 1.3; }
.develop-desc { font-size: 15.5px; line-height: 1.65; color: #b6ae99; font-weight: 300; }
.develop-note { text-align: center; font-style: italic; font-family: var(--serif); font-size: 19px; color: var(--tan); margin: 36px 0 0; }
.program-divider { height: 0.5px; background: rgba(184,149,109,0.22); margin: 80px 0; }
.culture-lead { font-size: 17.5px; line-height: 1.8; color: #c9c1ac; max-width: 800px; margin: 0 auto; text-align: center; font-weight: 300; }
.culture-lead em { color: #e8dcc4; font-style: italic; }
.shape { max-width: 760px; margin: 80px auto 0; background: rgba(245,236,216,0.05); border: 0.5px solid rgba(184,149,109,0.25); border-radius: 3px; padding: 48px 52px; text-align: center; }
.shape-head { font-family: var(--serif); font-size: 26px; color: #f5ecd8; font-weight: 500; margin-bottom: 20px; }
.shape-body { font-size: 16.5px; line-height: 1.8; color: #c9c1ac; font-weight: 300; margin-bottom: 28px; }
.shape-facts { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; padding-top: 28px; border-top: 0.5px solid rgba(184,149,109,0.22); }
.shape-fact { text-align: center; }
.shape-fact .num { font-family: var(--serif); font-size: 34px; color: #fff; line-height: 1; margin-bottom: 8px; }
.shape-fact .lbl { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--tan); }
.program-cta-line { text-align: center; font-family: var(--serif); font-style: italic; font-size: 21px; color: #d4cdb8; max-width: 640px; margin: 64px auto 40px; line-height: 1.5; }
.program-cta-wrap { text-align: center; }
.oneonone { max-width: 920px; margin: 0 auto; padding: 140px 56px; }
.oneonone .section-overline { text-align: center; }
.oneonone-title { font-family: var(--serif); font-size: 48px; font-weight: 400; color: var(--ink); text-align: center; line-height: 1.1; letter-spacing: -0.6px; margin-bottom: 28px; }
.oneonone-lead { font-size: 18px; line-height: 1.7; color: var(--ink-soft); text-align: center; max-width: 640px; margin: 0 auto 72px; }
.offer { padding: 40px 0; border-bottom: 0.5px solid var(--rule-soft); }
.offer:first-of-type { border-top: 0.5px solid var(--rule-soft); }
.offer-name { font-family: var(--serif); font-size: 28px; color: var(--ink); font-weight: 500; margin-bottom: 8px; }
.offer-for { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--tan-deep); margin-bottom: 16px; }
.offer-desc { font-size: 17px; line-height: 1.75; color: var(--ink-soft); }

/* ===================== CONTACT-PAGE COMPONENTS ===================== */
.contact { max-width: 840px; margin: 0 auto; padding: 130px 56px 60px; text-align: center; }
.contact-lead { font-family: var(--serif); font-size: 30px; line-height: 1.4; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.3px; }
.contact-sub { font-size: 18px; line-height: 1.75; color: var(--ink-soft); max-width: 560px; margin: 0 auto 56px; }
.details { max-width: 720px; margin: 0 auto; padding: 60px 56px 140px; }
.details-rule { height: 0.5px; background: var(--rule); max-width: 80px; margin: 0 auto 60px; }
.detail-row { padding: 30px 0; border-bottom: 0.5px solid var(--rule-soft); text-align: center; }
.detail-row:first-of-type { border-top: 0.5px solid var(--rule-soft); }
.detail-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--tan-deep); margin-bottom: 14px; }
.detail-value { font-family: var(--serif); font-size: 27px; color: var(--ink); line-height: 1.4; }
.detail-value a { color: var(--ink); text-decoration: none; transition: color 0.15s; }
.detail-value a:hover { color: var(--tan-deep); }
.detail-note { font-size: 14px; color: var(--tan-deep); margin-top: 10px; font-family: var(--sans); }

/* ===================== FOOTER ===================== */
.footer { border-top: 0.5px solid var(--rule); padding: 56px; text-align: center; background: var(--cream); }
.footer-name { font-family: var(--serif); font-size: 22px; color: var(--ink); letter-spacing: 1px; text-transform: uppercase; font-weight: 500; margin-bottom: 24px; }
.footer-info { font-size: 12px; color: var(--tan-deep); line-height: 1.8; margin-bottom: 8px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 880px) {
  .nav { padding: 22px 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .subhero { padding: 140px 24px 80px; }
  .subhero-title { font-size: 40px; }
  .subhero-sub { font-size: 19px; }

  .section-title { font-size: 36px; margin-bottom: 48px; }

  .opening { padding: 80px 24px; }
  .opening-statement { font-size: 24px; }
  .prose { padding: 0 24px 80px; }
  .prose p { font-size: 17px; }

  .questions { padding: 80px 24px; }
  .questions-grid { grid-template-columns: 1fr; gap: 8px; }
  .question-cluster { padding-top: 28px; }
  .question-cluster p { font-size: 22px; }

  .expect { padding: 80px 24px; }
  .expect-body { font-size: 22px; }

  .modes { padding: 80px 24px; }
  .mode { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .mode-label { font-size: 26px; }

  .approach { padding: 80px 24px; }
  .audience { padding: 80px 24px; }
  .audience-list li { font-size: 20px; }

  .cta-section { padding: 90px 24px; }
  .cta-display { font-size: 34px; }

  .faq { padding: 24px 24px 90px; }
  .faq-q { font-size: 23px; }

  .bio { grid-template-columns: 1fr; gap: 40px; padding: 0 24px 80px; }
  .bio-photo { max-width: 320px; margin: 0 auto; }
  .bio-text p { font-size: 17px; }
  .experience { padding: 80px 24px; }
  .experience-title { font-size: 34px; margin-bottom: 48px; }
  .exp-role { font-size: 23px; }
  .creds { padding: 80px 24px 30px; }
  .creds-title { font-size: 34px; margin-bottom: 48px; }
  .cred-name { font-size: 21px; }
  .training { padding: 60px 24px 90px; }

  .program { padding: 80px 24px; }
  .program-title { font-size: 36px; }
  .program-tag { margin-bottom: 56px; }
  .develop-grid { grid-template-columns: 1fr; gap: 0; }
  .program-divider { margin: 56px 0; }
  .shape { padding: 36px 28px; }
  .shape-facts { gap: 28px; }
  .oneonone { padding: 80px 24px; }
  .oneonone-title { font-size: 34px; }
  .offer-name { font-size: 25px; }

  .contact { padding: 80px 24px 40px; }
  .contact-lead { font-size: 25px; }
  .details { padding: 40px 24px 90px; }
  .detail-value { font-size: 23px; }

  .footer { padding: 32px 24px; }
}

/* ============================================================
   SAFE HARBOR  —  page-specific components (namespaced .sh-)
   ------------------------------------------------------------
   The retreat page, brought into the shared system. Reuses the
   design tokens above, plus shared .page, the nav include,
   .cta-button and .footer. Every component here is prefixed
   .sh- so it can never collide with a shared class.
   ============================================================ */

/* Hero — Lake Washington at dusk (the page's signature) */
.sh-hero {
  position: relative;
  height: 680px;
  overflow: hidden;
  /* "Still Water" — a dark dusk wash: deep blue-grey sky, a bright warm
     amber band low at the horizon (the harbor light), and a wide, dark,
     still water expanse below with a faint reflection. Warmer and moodier
     than the blue set. Top scrim keeps the nav legible. Pure CSS — no image. */
  background:
    radial-gradient(90% 42% at 34% 64%, rgba(214,175,132,0.16) 0%, rgba(214,175,132,0) 48%),
    linear-gradient(180deg,
      #1e2732 0%, #2b3644 35%, #47535f 53%, #79828c 60%, #c7a079 63%, #dab88f 63.8%, #4a545f 64.8%, #2a333d 78%, #151b23 100%);
}
.sh-reflect { position: absolute; left: 22%; width: 24%; top: 64.5%; bottom: 6%; z-index: 1;
  background: linear-gradient(180deg, rgba(216,184,143,0.18) 0%, rgba(216,184,143,0) 70%); filter: blur(6px); }
.sh-horizon { position: absolute; left: 0; right: 0; top: 63.9%; height: 1px; z-index: 2; background: rgba(255,255,255,0.26); }

.sh-hero-content { position: relative; z-index: 2; padding: 128px 64px 0; max-width: 720px; }
.sh-hero-kicker { font-size: 11px; color: rgba(255,255,255,0.85); letter-spacing: 3px; font-weight: 500; margin-bottom: 24px; }
.sh-hero-title { font-family: var(--serif); font-size: 84px; line-height: 0.95; font-weight: 400; color: #fff; margin-bottom: 28px; letter-spacing: -1.5px; }
.sh-hero-tagline { font-family: var(--serif); font-style: italic; font-size: 24px; color: rgba(255,255,255,0.92); line-height: 1.45; font-weight: 400; max-width: 520px; }
.sh-venue { position: absolute; bottom: 16px; right: 24px; font-size: 10px; color: rgba(255,255,255,0.7); letter-spacing: 1.5px; z-index: 2; }

/* Section frames */
.sh-section { padding: 80px 64px; max-width: 768px; margin: 0 auto; }
.sh-section-narrow { max-width: 640px; }
.sh-opening { padding: 88px 64px 72px; max-width: 640px; margin: 0 auto; }
.sh-section-cream { background: var(--tan-band); padding: 80px 64px; }
.sh-section-cream-inner { max-width: 640px; margin: 0 auto; }
.sh-section-dark { background: var(--charcoal); padding: 88px 64px; }
.sh-section-dark-inner { max-width: 640px; margin: 0 auto; }
.sh-next-step { padding: 96px 64px; max-width: 640px; margin: 0 auto; text-align: center; }
.sh-next-step .sh-body { text-align: left; margin-bottom: 44px; }

/* Kickers & headings */
.sh-kicker { font-size: 11px; color: var(--tan); letter-spacing: 3px; font-weight: 500; margin-bottom: 20px; }
.sh-kicker-dark { color: var(--tan); }
.sh-section-title { font-family: var(--serif); font-size: 42px; font-weight: 400; color: var(--ink); margin-bottom: 32px; line-height: 1.1; letter-spacing: -0.5px; }
.sh-section-title-light { color: #fff; margin-bottom: 48px; }

/* Body copy */
.sh-opening-lead { font-family: var(--serif); font-size: 28px; line-height: 1.4; color: var(--ink); margin-bottom: 32px; font-weight: 400; }
.sh-body { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 22px; }
.sh-body:last-child { margin-bottom: 0; }
.sh-italic-lead { font-family: var(--serif); font-style: italic; font-size: 20px; color: #5f5e5a; margin-bottom: 32px; line-height: 1.5; }

/* Divider */
.sh-divider { text-align: center; }
.sh-divider span { display: inline-block; width: 60px; border-top: 0.5px solid var(--tan); }

/* Three-mode teaching block */
.sh-modes { margin: 40px 0; }
.sh-mode { margin-bottom: 32px; }
.sh-modes .sh-mode:last-child { margin-bottom: 0; }
.sh-mode-title { font-family: var(--serif); font-size: 22px; color: var(--tan); margin-bottom: 12px; font-weight: 500; letter-spacing: 0.3px; }
.sh-mode-text { font-size: 16px; line-height: 1.75; color: var(--ink-soft); }

/* Pull quote */
.sh-pull-quote { border-left: 2px solid var(--tan); padding: 4px 0 4px 24px; margin-top: 36px; font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ink); font-weight: 400; }

/* Bio split */
.sh-bio { display: flex; gap: 40px; align-items: flex-start; max-width: 720px; }
.sh-photo { width: 180px; height: 224px; object-fit: cover; border-radius: 2px; flex-shrink: 0; display: block; }
.sh-bio-text { flex: 1; }

/* Who this is for */
.sh-whofor { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }
.sh-whofor-note { border-top: 0.5px solid var(--rule); padding-top: 28px; margin-top: 36px; font-size: 15px; line-height: 1.7; color: #5f5e5a; }

/* Logistics panel (on dark) */
.sh-logistics { display: grid; grid-template-columns: 120px 1fr; gap: 28px 32px; font-size: 16px; line-height: 1.65; }
.sh-logistics-label { color: var(--tan); font-weight: 500; letter-spacing: 1.5px; font-size: 11px; padding-top: 4px; }
.sh-logistics-value { color: #d3d1c7; padding-bottom: 24px; border-bottom: 0.5px solid #3a3a37; }
.sh-logistics-value:last-child { border-bottom: none; padding-bottom: 0; }
.sh-logistics-sub { color: #888780; font-size: 14px; }
.sh-price { font-family: var(--serif); color: #fff; font-size: 36px; font-weight: 400; line-height: 1; margin-bottom: 8px; }
.sh-price-unit { font-size: 16px; color: #888780; font-family: var(--sans); margin-left: 8px; }
.sh-price-includes { color: #888780; font-size: 14px; line-height: 1.7; margin-top: 12px; }

/* Safe Harbor — mobile (shares the site's single 880px breakpoint) */
@media (max-width: 880px) {
  .sh-hero { height: 500px; }
  .sh-hero-content { padding: 120px 24px 0; }
  .sh-hero-title { font-size: 56px; }
  .sh-hero-tagline { font-size: 20px; }
  .sh-opening, .sh-section, .sh-section-narrow, .sh-section-cream, .sh-section-dark, .sh-next-step { padding: 56px 24px; }
  .sh-section-cream-inner, .sh-section-dark-inner { padding: 0; }
  .sh-section-title { font-size: 32px; }
  .sh-opening-lead { font-size: 22px; }
  .sh-bio { flex-direction: column; gap: 24px; }
  .sh-photo { width: 100%; max-width: 280px; height: auto; }
  .sh-logistics { grid-template-columns: 1fr; gap: 8px; }
  .sh-logistics-value { padding-bottom: 16px; }
}

/* ============================================================
   HOMEPAGE  —  page-specific components (namespaced .home-)
   ------------------------------------------------------------
   The v4 homepage brought into the shared system. Reuses the
   design tokens, shared .page, the nav include, .cta-button and
   .footer. Everything here is prefixed .home- so it can't collide
   with a shared class. Hero image: brien-piano-hero.jpg, loaded
   relative to this stylesheet (site root).
   ============================================================ */

.home-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 26%),
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.5) 100%),
    url('brien-piano-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-color: var(--charcoal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* (hero scrim now lives in .home-hero's background-image stack above,
   layered over the photo — more reliable than a pseudo-element on a
   flex container) */
.home-hero-content { position: relative; z-index: 2; padding: 0 56px 80px; max-width: 1100px; }
.home-hero-name { font-family: var(--serif); font-size: 14px; color: rgba(255,255,255,0.85); letter-spacing: 4px; font-weight: 500; margin-bottom: 24px; text-transform: uppercase; }
.home-hero-statement { font-family: var(--serif); font-size: 76px; line-height: 1.05; font-weight: 400; color: #ffffff; letter-spacing: -1.5px; max-width: 880px; font-style: italic; }
.home-hero-statement em { font-style: normal; }
.home-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 3px; text-transform: uppercase; }

.home-opening { padding: 160px 56px 140px; max-width: 980px; margin: 0 auto; }
.home-opening-statement { font-family: var(--serif); font-size: 38px; line-height: 1.3; font-weight: 400; color: var(--ink); letter-spacing: -0.4px; margin-bottom: 32px; }
.home-opening-statement:last-of-type { margin-bottom: 64px; }
.home-opening-statement em { font-style: italic; color: var(--tan-deep); }
.home-opening-meta { display: grid; grid-template-columns: 240px 1fr; gap: 60px; border-top: 0.5px solid var(--ink); padding-top: 32px; }
.home-opening-meta-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--tan-deep); font-weight: 500; padding-top: 4px; }
.home-opening-meta-text { font-size: 17px; line-height: 1.75; color: var(--ink-soft); }

.home-work { padding: 160px 56px 80px; max-width: 1200px; margin: 0 auto; }
.home-overline { font-size: 11px; color: var(--tan-deep); letter-spacing: 4px; font-weight: 500; text-transform: uppercase; text-align: center; margin-bottom: 32px; }
.home-display-title { font-family: var(--serif); font-size: 64px; font-weight: 400; color: var(--ink); margin-bottom: 32px; line-height: 1.05; letter-spacing: -1px; text-align: center; }
.home-display-intro { font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--tan-deep); line-height: 1.45; text-align: center; max-width: 640px; margin: 0 auto 100px; }
.home-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; padding-bottom: 100px; border-bottom: 0.5px solid var(--rule); }
.home-feature:last-of-type { border-bottom: none; margin-bottom: 60px; padding-bottom: 0; }
.home-feature.reverse .home-feature-image { order: 2; }
.home-feature.reverse .home-feature-content { order: 1; }
.home-feature-image { aspect-ratio: 4/5; background: linear-gradient(135deg, #c5b89e 0%, #8a7560 100%); border-radius: 1px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 2px; overflow: hidden; position: relative; }
.home-feature-image.training { background: linear-gradient(135deg, #5a4a3a 0%, #2a2520 100%); }
.home-feature-image.artwork { background: #f0e9d8; display: block; }
.home-feature-image.artwork svg,
.home-feature-image.artwork img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-feature-content { padding: 20px 0; }
.home-feature-label { font-size: 11px; color: var(--tan-deep); letter-spacing: 3px; font-weight: 500; text-transform: uppercase; margin-bottom: 20px; }
.home-feature-title { font-family: var(--serif); font-size: 44px; font-weight: 400; color: var(--ink); margin-bottom: 24px; line-height: 1.1; letter-spacing: -0.5px; }
.home-feature-text { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 32px; }
.home-feature-link { font-size: 12px; color: var(--ink); letter-spacing: 2.5px; font-weight: 500; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

.home-philosophy { background: var(--tan-band); padding: 180px 56px; }
.home-philosophy-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.home-philosophy-quote { font-family: var(--serif); font-size: 52px; line-height: 1.2; font-weight: 400; font-style: italic; color: var(--ink); letter-spacing: -0.5px; margin-bottom: 36px; }
.home-philosophy-subtitle { font-family: var(--serif); font-size: 18px; font-style: italic; color: var(--tan-deep); line-height: 1.5; letter-spacing: 0.2px; font-weight: 400; }

.home-writing { padding: 200px 56px 180px; max-width: 1200px; margin: 0 auto; }
.home-writing .home-display-intro { margin-bottom: 0; }
.home-essay-featured { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; margin-top: 100px; padding-bottom: 100px; border-bottom: 0.5px solid var(--rule); }
.home-essay-featured-image { aspect-ratio: 4/5; width: 100%; background: #f0e9d8; border-radius: 1px; overflow: hidden; }
.home-essay-featured-image svg { width: 100%; height: 100%; display: block; }
.home-essay-featured-content { padding: 16px 0; }
.home-essay-featured-meta { font-size: 11px; color: var(--tan-deep); letter-spacing: 3px; font-weight: 500; text-transform: uppercase; margin-bottom: 24px; }
.home-essay-featured-title { font-family: var(--serif); font-size: 52px; line-height: 1.1; color: var(--ink); margin-bottom: 32px; font-weight: 400; letter-spacing: -0.6px; }
.home-essay-featured-summary { font-family: var(--serif); font-size: 22px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 36px; font-style: italic; font-weight: 400; }
.home-essay-featured-link { font-size: 12px; color: var(--ink); letter-spacing: 2.5px; font-weight: 500; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }
.home-essay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px; margin-top: 100px; }
.home-essay-card { cursor: pointer; }
.home-essay-card-image { width: 100%; aspect-ratio: 5/4; background: #f0e9d8; margin-bottom: 32px; border-radius: 1px; overflow: hidden; }
.home-essay-card-image svg { width: 100%; height: 100%; display: block; }
.home-essay-card-meta { font-size: 11px; color: var(--tan-deep); letter-spacing: 3px; font-weight: 500; text-transform: uppercase; margin-bottom: 16px; }
.home-essay-card-title { font-family: var(--serif); font-size: 32px; line-height: 1.15; color: var(--ink); margin-bottom: 20px; font-weight: 400; letter-spacing: -0.3px; }
.home-essay-card-summary { font-size: 16px; color: #5a5450; line-height: 1.65; }
.home-writing-cta { text-align: center; margin-top: 120px; }
.home-writing-cta a { font-size: 12px; color: var(--ink); letter-spacing: 2.5px; font-weight: 500; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

.home-about { background: var(--charcoal); padding: 180px 56px; color: #d4cdb8; }
.home-about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; align-items: center; }
.home-about-photo { aspect-ratio: 3/4; border-radius: 1px; overflow: hidden; position: relative; background: linear-gradient(135deg, #5a4a3a 0%, #2a2520 100%); }
.home-about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; filter: brightness(0.96) contrast(1.02) saturate(0.95); }
.home-about-photo::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(26, 24, 22, 0.35); pointer-events: none; }
.home-about-content { padding: 40px 0; }
.home-about-kicker { font-size: 11px; color: var(--tan); letter-spacing: 4px; font-weight: 500; text-transform: uppercase; margin-bottom: 24px; }
.home-about-title { font-family: var(--serif); font-size: 52px; font-weight: 400; color: #f5ecd8; margin-bottom: 36px; line-height: 1.1; letter-spacing: -0.5px; }
.home-about-text { font-size: 17px; line-height: 1.8; color: #d4cdb8; margin-bottom: 24px; font-weight: 300; }
.home-about-link { display: inline-block; margin-top: 16px; font-size: 12px; color: var(--tan); letter-spacing: 2.5px; font-weight: 500; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid var(--tan); padding-bottom: 4px; }

.home-contact { padding: 180px 56px; background: var(--cream); text-align: center; }
.home-contact-inner { max-width: 760px; margin: 0 auto; }
.home-contact-overline { font-size: 11px; color: var(--tan-deep); letter-spacing: 4px; font-weight: 500; text-transform: uppercase; margin-bottom: 40px; }
.home-contact-display { font-family: var(--serif); font-size: 64px; font-weight: 400; color: var(--ink); margin-bottom: 40px; line-height: 1.05; letter-spacing: -1px; font-style: italic; }
.home-contact-text { font-size: 18px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto; }

@media (max-width: 880px) {
  .home-hero { min-height: 600px; height: 100svh; }
  .home-hero-content { padding: 0 24px 104px; }
  .home-hero-statement { font-size: 38px; }
  .home-opening { padding: 80px 24px; }
  .home-opening-statement { font-size: 24px; }
  .home-opening-meta { grid-template-columns: 1fr; gap: 16px; }
  .home-work { padding: 80px 24px 40px; }
  .home-display-title { font-size: 40px; }
  .home-display-intro { font-size: 18px; }
  .home-feature { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; padding-bottom: 64px; }
  .home-feature.reverse .home-feature-image { order: 1; }
  .home-feature.reverse .home-feature-content { order: 2; }
  .home-feature-title { font-size: 30px; }
  .home-philosophy { padding: 80px 24px; }
  .home-philosophy-quote { font-size: 28px; }
  .home-writing { padding: 80px 24px; }
  .home-essay-featured { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; padding-bottom: 64px; }
  .home-essay-featured-title { font-size: 34px; }
  .home-essay-featured-summary { font-size: 18px; }
  .home-essay-grid { grid-template-columns: 1fr; gap: 56px; margin-top: 64px; }
  .home-essay-card-title { font-size: 26px; }
  .home-writing-cta { margin-top: 72px; }
  .home-about { padding: 80px 24px; }
  .home-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .home-about-title { font-size: 32px; }
  .home-contact { padding: 80px 24px; }
  .home-contact-display { font-size: 36px; }
}
/* ============================================================
   WRITING INDEX  —  page-specific components (namespaced .writing-)
   ------------------------------------------------------------
   The reading library. Reuses .subhero for the dark hero band and
   the shared nav/footer. The featured + card layout mirrors the
   homepage .home-essay- row so the two read as one identity; the
   three line-motif SVGs are the same artwork used on the homepage.
   ============================================================ */
.writing-index { padding: 120px 56px 40px; max-width: 1200px; margin: 0 auto; }

.writing-featured { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; padding-bottom: 100px; margin-bottom: 100px; border-bottom: 0.5px solid var(--rule); }
.writing-featured-image { aspect-ratio: 4/5; width: 100%; background: #f0e9d8; border-radius: 1px; overflow: hidden; }
.writing-featured-image svg { width: 100%; height: 100%; display: block; }
.writing-featured-content { padding: 16px 0; }
.writing-featured-overline { font-size: 11px; color: var(--tan-deep); letter-spacing: 3px; font-weight: 500; text-transform: uppercase; margin-bottom: 24px; }
.writing-featured-title { font-family: var(--serif); font-size: 48px; line-height: 1.1; color: var(--ink); margin-bottom: 32px; font-weight: 400; letter-spacing: -0.6px; }
.writing-featured-summary { font-family: var(--serif); font-size: 21px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 36px; font-style: italic; font-weight: 400; }
.writing-featured-link { font-size: 12px; color: var(--ink); letter-spacing: 2.5px; font-weight: 500; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

.writing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px; }
/* Card-as-link: the whole card is clickable; keep the text unstyled (no underline / link colour). Applies to the homepage essay cards too, which are now links. */
a.writing-card, a.home-essay-card { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.writing-card { }
.writing-card-image { width: 100%; aspect-ratio: 5/4; background: #f0e9d8; margin-bottom: 32px; border-radius: 1px; overflow: hidden; }
.writing-card-image svg { width: 100%; height: 100%; display: block; }
.writing-card-overline { font-size: 11px; color: var(--tan-deep); letter-spacing: 3px; font-weight: 500; text-transform: uppercase; margin-bottom: 16px; }
.writing-card-title { font-family: var(--serif); font-size: 30px; line-height: 1.15; color: var(--ink); margin-bottom: 20px; font-weight: 400; letter-spacing: -0.3px; }
.writing-card-summary { font-size: 16px; color: #5a5450; line-height: 1.65; }
.writing-card-link { display: inline-block; margin-top: 20px; font-size: 12px; color: var(--ink); letter-spacing: 2.5px; font-weight: 500; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

/* Optional "more writing" foot (Ghost link) — left in place, commented out in markup for launch */
.writing-more { text-align: center; margin-top: 120px; }
.writing-more-note { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--tan-deep); margin-bottom: 14px; }
.writing-more a { font-size: 12px; color: var(--ink); letter-spacing: 2.5px; font-weight: 500; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

/* ============================================================
   READING PAGES  —  long-form article components (namespaced .reading-)
   ------------------------------------------------------------
   The three reading pieces. Reuses .subhero for the dark hero band
   and the shared nav/footer. Everything below is prefixed .reading-
   so it can never collide with a shared or page class.
   ============================================================ */
.reading { max-width: 720px; margin: 0 auto; padding: 96px 56px 24px; }
.reading-p { font-size: 18px; line-height: 1.85; color: var(--ink-soft); margin-bottom: 28px; }
.reading-body:last-child .reading-p:last-child { margin-bottom: 0; }

/* Section headings */
.reading-h2 { font-family: var(--serif); font-size: 34px; font-weight: 400; color: var(--ink); line-height: 1.15; letter-spacing: -0.4px; margin: 76px 0 28px; }
.reading-h2-sub { font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--tan-deep); line-height: 1.4; margin: -16px 0 30px; }
.reading-h3 { font-family: var(--serif); font-size: 23px; font-weight: 500; color: var(--ink); letter-spacing: -0.2px; margin: 46px 0 16px; }

/* Story (literary narrative blocks) */
.reading-story-title { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--tan-deep); margin: 20px 0 30px; letter-spacing: -0.3px; }
.reading-story .reading-p { line-height: 1.9; }

/* Emphasis line — a line the author set apart, lifted lightly in place */
.reading-emphasis { font-family: var(--serif); font-size: 27px; line-height: 1.35; color: var(--ink); text-align: center; letter-spacing: -0.4px; margin: 52px auto; max-width: 560px; }

/* Set-apart block quote */
.reading-quote { border-left: 2px solid var(--tan); padding: 4px 0 4px 28px; margin: 40px 0; }
.reading-quote p { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.6; color: var(--ink); margin-bottom: 20px; font-weight: 400; }
.reading-quote p:last-child { margin-bottom: 0; }

/* Definitional / equation lines */
.reading-define-group { margin: 30px 0; }
.reading-define { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--tan-deep); text-align: center; margin: 10px 0; }

/* Dividers */
.reading-divider { text-align: center; margin: 56px 0; }
.reading-divider span { display: inline-block; width: 60px; border-top: 0.5px solid var(--tan); }
.reading-scene { text-align: center; color: var(--tan); font-family: var(--serif); font-size: 22px; margin: 34px 0; }

/* References */
.reading-refs { max-width: 720px; margin: 0 auto; padding: 24px 56px 8px; }
.reading-refs .reading-h2 { margin-top: 40px; }
.reading-refs-sub { font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--tan); font-weight: 500; margin: 28px 0 12px; }
.reading-refs-body { font-family: var(--sans); font-size: 14px; line-height: 1.7; color: var(--ink-soft); }
.reading-refs-body p { margin-bottom: 12px; }
.reading-ref { font-size: 14px; line-height: 1.7; color: var(--tan-deep); margin-bottom: 12px; }

/* Article foot — colophon, copyright, return link */
.reading-foot { max-width: 720px; margin: 0 auto; padding: 44px 56px 40px; border-top: 0.5px solid var(--rule); text-align: center; }
.reading-colophon { font-size: 13px; color: var(--tan-deep); line-height: 1.6; margin-bottom: 14px; }
.reading-copyright { font-size: 12px; color: var(--tan-deep); letter-spacing: 0.3px; margin-bottom: 26px; }
.reading-back { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

/* Writing + reading — mobile (shares the site's single 880px breakpoint) */
@media (max-width: 880px) {
  .writing-index { padding: 80px 24px 24px; }
  .writing-featured { grid-template-columns: 1fr; gap: 32px; padding-bottom: 64px; margin-bottom: 64px; }
  .writing-featured-title { font-size: 34px; }
  .writing-featured-summary { font-size: 18px; }
  .writing-grid { grid-template-columns: 1fr; gap: 56px; }
  .writing-card-title { font-size: 26px; }
  .writing-more { margin-top: 72px; }

  .reading { padding: 56px 24px 16px; }
  .reading-p { font-size: 17px; line-height: 1.8; }
  .reading-h2 { font-size: 28px; margin: 56px 0 22px; }
  .reading-h2-sub { font-size: 20px; }
  .reading-h3 { font-size: 21px; }
  .reading-story-title { font-size: 26px; }
  .reading-emphasis { font-size: 23px; margin: 40px auto; }
  .reading-quote p { font-size: 18px; }
  .reading-define { font-size: 20px; }
  .reading-refs { padding: 16px 24px 8px; }
  .reading-foot { padding: 36px 24px; }
}
