/* ============================================================
   thewisdommethod.com — Brand system
   Palette: deep forest + bone + ink, clay/ochre accents
   Type:   Instrument Serif (display) + DM Sans (body)
   ============================================================ */

:root {
  /* ── Brand palette (locked in brand concept) ─────────────── */
  --c-forest: #1f3a2e;
  --c-forest-dark: #152821;
  --c-moss: #3f5d4a;
  --c-sage: #7a8f7a;
  --c-clay: #9c6b4e;
  --c-ochre: #b8923a;
  --c-bone: #f4f1e8;
  --c-bone-dark: #e8e3d2;
  --c-ink: #1a1a1a;
  --c-ink-muted: #4a4842;
  --c-rule: #c7c1ae;

  /* ── Semantic ────────────────────────────────────────────── */
  --bg: var(--c-bone);
  --bg-alt: var(--c-bone-dark);
  --text: var(--c-ink);
  --text-muted: var(--c-ink-muted);
  --rule: var(--c-rule);
  --accent: var(--c-forest);
  --accent-warm: var(--c-ochre);

  /* ── Type scale (fluid) ──────────────────────────────────── */
  --t-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.875rem);
  --t-sm: clamp(0.875rem, 0.82rem + 0.25vw, 1rem);
  --t-base: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem); /* 17–19 */
  --t-lede: clamp(1.25rem, 1.05rem + 0.9vw, 1.625rem); /* 20–26 */
  --t-h3: clamp(1.5rem, 1.2rem + 1.5vw, 2.125rem);
  --t-display: clamp(2.25rem, 1.4rem + 4vw, 4.5rem); /* 36–72 */
  --t-hero: clamp(3rem, 1.5rem + 7.2vw, 8rem); /* 48–128 */

  /* ── Spacing ─────────────────────────────────────────────── */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 192px;

  /* ── Fonts ───────────────────────────────────────────────── */
  --f-display: "Instrument Serif", "Georgia", serif;
  --f-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial,
    sans-serif;

  /* ── Layout ──────────────────────────────────────────────── */
  --rail-max: 1180px;
  --rail-narrow: 720px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ───────────────── Reset & base ───────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: var(--t-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--c-forest);
  color: var(--c-bone);
}

sup {
  /* IMPORTANT: do NOT use font-feature-settings: 'sups' here — it overrides our
     explicit sizing and pushes the ™ back to near-cap-height. */
  font-feature-settings: normal;
  font-variant-position: normal;
  font-size: 0.48em;
  vertical-align: super;
  line-height: 0;
  margin-left: 0.06em;
  letter-spacing: 0;
  font-weight: 500;
}
.display sup,
.hero__heading sup,
.framework__title sup,
.program__title sup,
.foot__mark sup {
  font-size: 0.36em;
  font-weight: 400;
  margin-left: 0.04em;
}

/* ───────────────── Topbar ───────────────── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  padding: var(--s-4) var(--gutter);
  background: rgba(31, 58, 46, 0); /* transparent at top */
  color: var(--c-bone);
  transition:
    background 0.4s ease,
    color 0.4s ease,
    backdrop-filter 0.4s ease,
    padding 0.4s ease,
    border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.topbar.is-scrolled {
  background: rgba(244, 241, 232, 0.92);
  color: var(--c-ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom-color: var(--rule);
}

.topbar__mark {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.25rem);
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: var(--t-sm);
}
.topbar__nav a {
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.topbar__nav a:hover {
  opacity: 1;
}
.topbar__cta {
  border: 1px solid currentColor;
  padding: 6px 14px;
  border-radius: 999px;
  opacity: 1 !important;
}
.topbar.is-scrolled .topbar__cta {
  background: var(--c-forest);
  color: var(--c-bone);
  border-color: var(--c-forest);
}
/* Burger button (mobile only) */
.topbar__burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: inherit;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.topbar__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.topbar__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.topbar__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.topbar__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 720px) {
  .topbar__nav a:not(.topbar__cta) {
    display: none;
  }
  .topbar__burger {
    display: flex;
  }
  .topbar__nav {
    gap: 8px;
  }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(21, 40, 33, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 88px var(--gutter) var(--s-7);
  display: none;
  flex-direction: column;
  gap: var(--s-2);
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu[data-open="true"] {
  display: flex;
  transform: none;
  opacity: 1;
}
.mobile-menu a {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 1.1rem + 2.5vw, 2.25rem);
  color: var(--c-bone);
  text-decoration: none;
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(244, 241, 232, 0.12);
  line-height: 1.2;
}
.mobile-menu a:last-child {
  border-bottom: 0;
  color: var(--c-ochre);
}

/* ───────────────── Generic section ───────────────── */
.section {
  padding-block: clamp(72px, 12vw, 160px);
}
.section--bone {
  background: var(--c-bone);
  color: var(--c-ink);
}
.section--bone-dark {
  background: var(--c-bone-dark);
  color: var(--c-ink);
}
.section--forest {
  background: var(--c-forest-dark);
  color: var(--c-bone);
}

.rail {
  max-width: var(--rail-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.rail--narrow {
  max-width: var(--rail-narrow);
}

/* ───────────────── Typography building blocks ───────────────── */
.eyebrow {
  font-family: var(--f-body);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-moss);
  margin: 0 0 var(--s-6);
}
.eyebrow--light {
  color: var(--c-sage);
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--t-display);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-forest-dark);
  margin: 0 0 var(--s-7);
  max-width: 22ch;
}
.section--bone-dark .display {
  color: var(--c-forest-dark);
}
.display--light {
  color: var(--c-bone);
}
.display__rule {
  color: var(--c-ochre);
  font-style: italic;
  padding-inline: 0.05em;
}

.lede {
  font-family: var(--f-body);
  font-size: var(--t-lede);
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 36ch;
  margin: 0 0 var(--s-8);
  font-weight: 400;
}
.lede--light {
  color: rgba(244, 241, 232, 0.78);
}

.prose p {
  margin: 0 0 var(--s-5);
  max-width: 60ch;
}
.prose__lead {
  font-size: var(--t-lede);
  line-height: 1.5;
  max-width: 36ch;
  margin: 0 0 var(--s-7);
  color: var(--c-ink);
  font-weight: 400;
}

.pullquote {
  font-family: var(--f-display);
  font-size: clamp(1.625rem, 1.2rem + 1.8vw, 2.25rem);
  line-height: 1.25;
  color: var(--c-forest);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: var(--s-8) 0;
  padding: var(--s-7) 0;
  max-width: 28ch;
}
.pullquote em {
  color: var(--c-ochre);
  font-style: italic;
}

/* ───────────────── Hero ───────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--c-bone);
  overflow: hidden;
  isolation: isolate;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 40, 33, 0.45) 0%, rgba(21, 40, 33, 0.2) 35%, rgba(21, 40, 33, 0.85) 100%),
    radial-gradient(120% 80% at 30% 70%, rgba(21, 40, 33, 0.55) 0%, transparent 70%);
}
.hero__inner {
  max-width: var(--rail-max);
  width: 100%;
  margin-inline: auto;
  padding: var(--s-11) var(--gutter) clamp(72px, 10vw, 128px);
}
.hero__heading {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--t-hero);
  line-height: 0.97;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-6);
  max-width: 14ch;
}
.hero__heading span {
  display: block;
}
.hero__sub {
  font-size: var(--t-lede);
  margin: 0 0 var(--s-7);
  color: rgba(244, 241, 232, 0.85);
  max-width: 28ch;
  font-style: italic;
  font-family: var(--f-display);
  letter-spacing: 0;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.hero__scroll {
  font-size: var(--t-sm);
  letter-spacing: 0.06em;
  text-decoration: none;
  color: rgba(244, 241, 232, 0.7);
  border-bottom: 1px solid rgba(244, 241, 232, 0.3);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.hero__scroll:hover {
  color: var(--c-bone);
  border-bottom-color: var(--c-bone);
}

/* ───────────────── Buttons ───────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid currentColor;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  cursor: pointer;
}
.btn--ghost-light {
  color: var(--c-bone);
  background: transparent;
}
.btn--ghost-light:hover {
  background: var(--c-bone);
  color: var(--c-forest-dark);
}
.btn--solid-light {
  background: var(--c-bone);
  color: var(--c-forest-dark);
  border: 1px solid var(--c-bone);
}
.btn--solid-light:hover {
  background: var(--c-ochre);
  border-color: var(--c-ochre);
  color: var(--c-forest-dark);
}

/* ───────────────── Two-column (asymmetric) ───────────────── */
.two-col {
  display: grid;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.two-col--asym {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}
@media (max-width: 820px) {
  .two-col--asym {
    grid-template-columns: 1fr;
  }
}

/* ───────────────── Callout (capacity card) ───────────────── */
.callout {
  background: var(--c-bone-dark);
  border-radius: 4px;
  padding: var(--s-6) var(--s-6);
  border-left: 0; /* no AI-side-stripe */
}
.callout__label {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-moss);
  margin: 0 0 var(--s-4);
  font-weight: 600;
}
.callout__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.callout__list li {
  font-family: var(--f-display);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  line-height: 1.35;
  color: var(--c-forest-dark);
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(31, 58, 46, 0.12);
}
.callout__list li:last-child {
  border-bottom: 0;
}

/* ───────────────── Framework cards (3 column) ───────────────── */
.framework {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: var(--s-7);
  align-items: stretch;
}
@media (max-width: 900px) {
  .framework {
    grid-template-columns: 1fr;
  }
}
.framework__card {
  background: rgba(244, 241, 232, 0.06);
  border: 1px solid rgba(244, 241, 232, 0.18);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.framework__body {
  margin-top: auto;
}
.framework__tag {
  font-size: var(--t-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ochre);
  margin: 0 0 var(--s-5);
  font-weight: 500;
}
.framework__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: var(--t-h3);
  line-height: 1.1;
  color: var(--c-bone);
  margin: 0 0 var(--s-5);
}
.framework__body {
  font-size: var(--t-base);
  color: rgba(244, 241, 232, 0.78);
  margin: 0;
  line-height: 1.55;
}

/* ───────────────── Full-bleed image break ───────────────── */
.bleed {
  background: var(--c-forest-dark);
  overflow: hidden;
}
.bleed img {
  width: 100%;
  height: clamp(280px, 50vw, 560px);
  object-fit: cover;
}
.bleed--bone {
  background: var(--c-bone);
}

/* ───────────────── Programs list ───────────────── */
.programs {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: prog;
  border-top: 1px solid var(--rule);
}
.program {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
@media (max-width: 820px) {
  .program {
    grid-template-columns: 1fr;
    gap: var(--s-5);
  }
}
.program__meta {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-moss);
  margin: 0;
  font-weight: 500;
}
.program__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.875rem, 1.4rem + 2vw, 3rem);
  line-height: 1.05;
  margin: 0 0 var(--s-5);
  color: var(--c-forest-dark);
}
.program__lede {
  font-size: var(--t-lede);
  color: var(--c-ink);
  margin: 0 0 var(--s-5);
  line-height: 1.4;
  max-width: 44ch;
}
.program__points {
  margin: 0;
  padding: 0;
  list-style: none;
}
.program__points li {
  position: relative;
  padding-left: 22px;
  font-size: var(--t-base);
  color: var(--text-muted);
  margin: var(--s-3) 0;
  line-height: 1.5;
}
.program__points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--c-ochre);
}

/* ───────────────── Evidence grid ───────────────── */
.evidence {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  margin-top: var(--s-7);
}
@media (max-width: 900px) {
  .evidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .evidence {
    grid-template-columns: 1fr;
  }
}
.evidence__item {
  background: var(--c-bone);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.evidence__stat {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3rem, 2rem + 4vw, 4.5rem);
  line-height: 1;
  color: var(--c-ochre);
  margin: 0;
  letter-spacing: -0.02em;
}
.evidence__claim {
  font-size: var(--t-base);
  line-height: 1.45;
  color: var(--c-forest-dark);
  margin: 0;
  font-weight: 500;
}
.evidence__cite {
  font-size: var(--t-xs);
  color: var(--text-muted);
  margin: auto 0 0;
  letter-spacing: 0.02em;
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
  line-height: 1.5;
}
.evidence__cite a {
  color: var(--c-forest);
  text-decoration: none;
  border-bottom: 1px solid var(--c-rule);
  transition: border-color 0.2s ease;
}
.evidence__cite a:hover {
  border-bottom-color: var(--c-forest);
}

/* ───────────────── Enroll form ───────────────── */
.enroll-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: 760px;
  margin-top: var(--s-7);
}
@media (max-width: 640px) {
  .enroll-form {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--full {
  grid-column: 1 / -1;
}
.field__label {
  font-size: var(--t-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c5d3c5; /* lighter sage for WCAG AA on forest-dark */
  font-weight: 500;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 480px) {
  .field__label {
    letter-spacing: 0.12em;
    line-height: 1.4;
  }
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: var(--t-base);
  background: transparent;
  color: var(--c-bone);
  border: 0;
  border-bottom: 1px solid rgba(244, 241, 232, 0.35);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
  font-family: var(--f-body);
  border-radius: 0;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--c-ochre);
}
.field select option {
  background: var(--c-forest-dark);
  color: var(--c-bone);
}
.enroll-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: var(--s-3);
}
.enroll-form__note {
  grid-column: 1 / -1;
  font-size: var(--t-xs);
  color: rgba(244, 241, 232, 0.78);
  margin: var(--s-3) 0 0;
  letter-spacing: 0.02em;
  line-height: 1.55;
  max-width: 60ch;
}

/* ───────────────── Footer ───────────────── */
.foot {
  background: var(--c-forest-dark);
  color: rgba(244, 241, 232, 0.7);
  padding-block: var(--s-8);
}
.foot__row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--s-6);
  align-items: start;
}
@media (max-width: 820px) {
  .foot__row {
    grid-template-columns: 1fr;
  }
}
.foot__mark {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 1.05rem + 0.6vw, 1.5rem);
  color: var(--c-bone);
  margin: 0 0 var(--s-2);
}
.foot__addr {
  font-size: var(--t-xs);
  margin: 0;
  letter-spacing: 0.04em;
  color: rgba(244, 241, 232, 0.78); /* WCAG AA on forest-dark */
}
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4) var(--s-5);
  font-size: var(--t-sm);
}
.foot__nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.foot__nav a:hover {
  border-bottom-color: rgba(244, 241, 232, 0.5);
}
.foot__legal {
  font-size: var(--t-xs);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ───────────────── Scroll reveal ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ───────────────── Focus ring ───────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--c-ochre);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ───────────────── Essays scaffold ───────────────── */
.essays-list {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
}
.essays-list__item {
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  padding: 2rem 0;
}
.essays-list__item:last-child {
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}
.essays-list__date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b6c5f;
  margin: 0 0 0.5rem;
}
.essays-list__title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
.essays-list__title a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}
.essays-list__title a:hover {
  border-bottom-color: #c7a85f;
}
.essays-list__dek {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  line-height: 1.55;
  color: #2c2d27;
  margin: 0;
  max-width: 60ch;
}
.essays-rule {
  border: 0;
  border-top: 1px solid rgba(26, 26, 26, 0.18);
  margin: 3rem 0 2rem;
}
.display--sm {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
.prose h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 2.2rem 0 0.6rem;
}
.prose blockquote {
  border-left: 2px solid #c7a85f;
  margin: 1.6rem 0;
  padding: 0.4rem 1.2rem;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #1f3a2e;
}
.prose ul,
.prose ol {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #1a1a1a;
  padding-left: 1.4rem;
  margin: 1rem 0;
}
.prose li {
  margin: 0.4rem 0;
}
.prose a {
  color: #1f3a2e;
  text-decoration: underline;
  text-decoration-color: #c7a85f;
  text-underline-offset: 3px;
}
.refs {
  font-size: 0.92rem;
}

/* Inline form variant for Reading Room signup */
.enroll-form--inline {
  margin-top: 1.5rem;
}
