/* ==========================================================================
   Investigative Health — investigativehealth.org
   Design system: warm editorial, feminine-luxe wellness (Knightsbridge style)
   Kristin Brust · Certified Functional Nutrition Counselor · BCHHP
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Sacramento&display=swap");

:root {
  /* --- Gold (metallic brand accent, from the logo) --- */
  --gold-100: #F3E7C9;
  --gold-300: #DCC189;
  --gold-500: #C6A059;
  --gold-600: #AD8848;

  /* --- Ink (warm near-black) --- */
  --ink-900: #131110;
  --ink-800: #1F1B18;
  --ink-500: #766C60;
  --ink-400: #988D7E;
  --ink-300: #B9AF9F;
  --ink-200: #D5CCBC;
  --ink-100: #E8E1D3;

  /* --- Clay / Blush accents --- */
  --clay-500: #B27F5E;
  --clay-600: #96684A;
  --blush-100: #EFDBD2;

  /* --- Oat (bone/ivory + greige tan surfaces — never white) --- */
  --oat-50:  #F2EFE7;
  --oat-100: #EAE5D7;
  --oat-200: #DCD4C2;
  --oat-300: #C9BFA9;
  --white:   #F7F4EC; /* bone card surface */

  --state-error: #9A4234;

  /* Semantic */
  --surface-page: var(--oat-50);
  --surface-dark: var(--ink-900);
  --text-secondary: var(--ink-500);
  --text-on-dark: var(--oat-50);
  --text-on-dark-muted: var(--ink-200);

  --border-subtle:  rgba(42, 32, 24, 0.09);
  --border-default: rgba(42, 32, 24, 0.16);
  --border-strong:  rgba(42, 32, 24, 0.30);
  --border-on-dark: rgba(251, 247, 240, 0.20);

  /* Type */
  --font-display: "Spectral", "Iowan Old Style", Georgia, serif;
  --font-body: "Work Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-script: "Sacramento", "Snell Roundhand", cursive;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --fast: 120ms;
  --base: 200ms;

  --content-max: 1120px;
  --content-narrow: 720px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ==========================================================================
   Building blocks
   ========================================================================== */

.container { max-width: var(--content-max); margin: 0 auto; }
.container--narrow { max-width: var(--content-narrow); margin: 0 auto; }

/* Handwritten script eyebrow */
.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--ink-800);
}
.script--dark { color: var(--oat-100); }
.script--gold { color: var(--gold-300); }

/* Uppercase serif display headline */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--ink-900);
}
.display--on-dark { color: var(--oat-50); }

/* Tiny uppercase eyebrow label */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-500);
}

.body-copy {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
}
.body-copy + .body-copy { margin-top: 18px; }

/* Moody photo placeholder — swap for real imagery */
.photo {
  background: linear-gradient(135deg, #362a20 0%, #1a130d 55%, #0b0806 100%);
  position: relative;
  overflow: hidden;
}
.photo--light { background: linear-gradient(135deg, var(--oat-100) 0%, var(--oat-300) 100%); }
.photo__label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(242, 239, 231, 0.32);
  white-space: nowrap;
}
.photo--light .photo__label { color: rgba(19, 17, 16, 0.30); }
/* Real photography dropped into a .photo container fills it edge-to-edge */
.photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Buttons — sharp, uppercase, wide-tracked. No rounding, no shadow.
   ========================================================================== */

.btn {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 15px 34px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--base) var(--ease), color var(--base) var(--ease), border-color var(--base) var(--ease);
}
.btn--sm { padding: 10px 22px; font-size: 10px; }
.btn--lg { padding: 18px 44px; font-size: 12px; }

.btn--primary { background: var(--ink-900); color: var(--oat-50); border-color: var(--ink-900); }
.btn--primary:hover { background: transparent; color: var(--ink-900); }

.btn--light { background: var(--oat-50); color: var(--ink-900); border-color: var(--oat-50); }
.btn--light:hover { background: transparent; color: var(--oat-50); }

.btn--outline { background: transparent; color: var(--ink-900); border-color: var(--ink-900); }
.btn--outline:hover { background: var(--ink-900); color: var(--oat-50); }

.btn--outline-light { background: transparent; color: var(--oat-50); border-color: var(--border-on-dark); }
.btn--outline-light:hover { background: var(--oat-50); color: var(--ink-900); border-color: var(--oat-50); }

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 26px 48px;
  background: var(--surface-page);
  border-bottom: 1px solid var(--border-default);
}
.site-header nav { display: flex; gap: 36px; }
.site-header nav:first-child { justify-self: start; }
.site-header nav:last-child { justify-self: end; }
.site-header nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-800);
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--base) var(--ease);
}
.site-header nav a:hover { border-color: var(--ink-800); }
.site-header nav a.is-active { border-color: var(--gold-500); }
.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  justify-self: center;
}
.brand-lockup img { height: 30px; }
.brand-lockup .wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-900);
  white-space: nowrap;
}

/* ==========================================================================
   Bands (full-bleed alternating sections — band changes ARE the separators)
   ========================================================================== */

.band { padding: 120px 48px; }
.band--tan { background: var(--oat-200); padding: 110px 48px; }
.band--dark { background: var(--ink-900); color: var(--text-on-dark); }
.band--tight { padding: 56px 48px; }

/* Hero — full-bleed photo bleeding into a black headline panel */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 82vh;
}
.hero .photo { height: 100%; min-height: 520px; }
.hero__panel {
  background: var(--ink-900);
  display: flex;
  align-items: center;
  padding: 72px 6vw;
}
.hero__panel h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.16;
  font-size: clamp(34px, 3.6vw, 58px);
  color: var(--oat-50);
}

/* Page hero (interior pages) — centered on tan */
.page-hero {
  background: var(--oat-200);
  padding: 96px 24px 88px;
  text-align: center;
}
.page-hero .script { margin-bottom: 20px; font-size: 44px; }
.page-hero h1 { font-size: clamp(30px, 3.4vw, 52px); }
.page-hero p { max-width: 560px; margin: 26px auto 0; }

/* Centered intro statement */
.intro { text-align: center; padding: 120px 24px; }
.intro .script { font-size: 44px; margin-bottom: 26px; }
.intro h2 {
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.28;
  letter-spacing: 0.05em;
  max-width: 820px;
  margin: 0 auto 32px;
}
.intro p { max-width: 560px; margin: 0 auto 40px; }

/* Split layouts */
.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.split--even { grid-template-columns: 1fr 1fr; }
/* Let grid columns shrink below their content's intrinsic width so a wide
   child (e.g. a <select> with long options) can't blow the track past the screen. */
.split > * { min-width: 0; }

/* Feature split — half photo, half text, edge-to-edge */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; }
.feature-split__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 96px 6vw;
}
.feature-split__text .script { font-size: 34px; margin-bottom: 18px; }
.feature-split__text h2 { font-size: 36px; margin-bottom: 22px; }
.feature-split__text p { max-width: 420px; margin-bottom: 34px; }
.feature-split .photo { min-height: 540px; height: 100%; }

/* Numbered offer list (dark band) */
.offer-list { border-top: 1px solid var(--border-on-dark); }
.offer-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--border-on-dark);
  color: var(--oat-50);
  transition: opacity var(--base) var(--ease);
}
.offer-list a:hover { opacity: 0.72; }
.offer-list .num { font-family: var(--font-display); font-size: 18px; color: var(--gold-300); }
.offer-list .name {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}
.offer-list .note {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.offer-list .arrow { font-size: 18px; color: var(--gold-300); }

/* Quote band — full-bleed photo with overlay */
.quote-band {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  overflow: hidden;
}
.quote-band .photo { position: absolute; inset: 0; }
.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 8, 6, 0.5);
}
.quote-band__content { position: relative; z-index: 1; max-width: 820px; }
.quote-band__content .script { font-size: 42px; margin-bottom: 22px; }
.quote-band__content h2 {
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.3;
}
.quote-band__content .btn { margin-top: 38px; }

/* Credentials / press band */
.cred-band {
  background: var(--ink-900);
  padding: 56px 48px;
  border-top: 1px solid var(--border-on-dark);
  border-bottom: 1px solid var(--border-on-dark);
}
.cred-band .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 56px;
  justify-content: space-between;
  align-items: center;
}
.cred-band span {
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--oat-100);
  opacity: 0.8;
}

/* Testimonial */
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.35;
  color: var(--oat-50);
}
.testimonial-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oat-100);
  font-weight: 600;
}
.testimonial-role { font-size: 13px; color: var(--text-on-dark-muted); margin-top: 4px; }

/* Testimonial card (light, testimonials page) */
.t-card {
  background: var(--white);
  border: 1px solid var(--border-default);
  padding: 56px 48px;
}
.t-card blockquote {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-800);
}
.t-card .testimonial-name { color: var(--ink-800); }
.t-card .testimonial-role { color: var(--ink-500); }

/* Tool / freebie card */
.tool-card {
  background: var(--white);
  border: 1px solid var(--border-default);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 340px;
}
.tool-card img { height: 40px; margin-bottom: 22px; opacity: 0.85; }
.tool-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.tool-card p { font-size: 13px; line-height: 1.8; color: var(--text-secondary); max-width: 300px; margin-bottom: 28px; }

/* Journal teasers */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-teaser { display: block; color: var(--oat-50); }
.post-teaser .photo { aspect-ratio: 4/3; width: 100%; margin-bottom: 22px; }
.post-teaser .tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 12px;
}
.post-teaser h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.post-teaser .more { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--oat-100); }
.post-teaser:hover h3 { color: var(--gold-300); }

/* Light journal teasers (journal page) */
.post-teaser--light { color: var(--ink-900); }
.post-teaser--light .tag { color: var(--clay-600); }
.post-teaser--light .more { color: var(--ink-500); }
.post-teaser--light:hover h3 { color: var(--clay-600); }

/* Community columns */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-default);
  border: 1px solid var(--border-default);
}
.community-grid > div {
  background: var(--oat-200);
  padding: 56px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.community-grid h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.community-grid p { font-size: 13px; line-height: 1.8; color: var(--text-secondary); max-width: 260px; margin-bottom: 28px; }

/* ==========================================================================
   Certification badges
   ========================================================================== */

.certs { text-align: center; }
.certs__intro { margin-bottom: 56px; }
.certs__intro .script { margin-bottom: 18px; }
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px 64px;
}
.cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 240px;
}
.cert__badge {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.cert__badge img { width: 100%; height: 100%; object-fit: contain; }
.cert h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.cert p {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  line-height: 1.7;
}
.certs--dark .cert h3 { color: var(--oat-50); }
.certs--dark .cert p { color: var(--text-on-dark-muted); }

/* ==========================================================================
   Pricing detail (services page)
   ========================================================================== */

.svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 28px;
}
.svc-meta .tag-pill {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-800);
  border: 1px solid var(--border-default);
  padding: 7px 14px;
}
.svc-meta .tag-pill.price {
  background: var(--ink-900);
  color: var(--oat-50);
  border-color: var(--ink-900);
}
.svc-list {
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
  max-width: 440px;
}
.svc-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.svc-list li::before {
  content: "→";
  color: var(--clay-600);
  font-family: var(--font-display);
}

/* ==========================================================================
   Forms — sharp corners, gold focus
   ========================================================================== */

.field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.field span { font-size: 14px; font-weight: 500; color: var(--ink-900); }
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 11px 14px;
  border-radius: 0;
  border: 1px solid var(--border-default);
  background: var(--white);
  color: var(--ink-900);
  outline: none;
  transition: border-color var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 3px rgba(198, 160, 89, 0.25);
  border-color: var(--clay-500);
}
.field .hint { font-size: 12px; font-weight: 400; color: var(--ink-400); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--ink-900); color: var(--text-on-dark); padding: 90px 48px 40px; }
.site-footer .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-on-dark);
}
.site-footer .top > p {
  max-width: 300px;
  font-size: 13px;
  color: var(--text-on-dark-muted);
  line-height: 1.9;
}
.site-footer .cols { display: flex; gap: 64px; flex-wrap: wrap; }
.site-footer .cols > div { display: flex; flex-direction: column; gap: 12px; }
.site-footer .cols span {
  color: var(--gold-300);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.site-footer .cols a { color: var(--text-on-dark-muted); font-size: 13px; letter-spacing: 0.04em; }
.site-footer .cols a:hover { color: var(--oat-50); }
.site-footer .wordmark-big {
  text-align: center;
  padding: 64px 0 44px;
}
.site-footer .wordmark-big > div:first-child {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 8vw, 108px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oat-100);
  line-height: 1;
}
.site-footer .signature {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--gold-300);
  margin-top: 20px;
}
.site-footer .legal {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-300);
  line-height: 1.8;
}

/* Bio portrait — normal flow by default (photo, then text) on every width.
   It only pins on true PC/widescreen layouts; see the min-width rule below.
   Keep position:relative (NOT static) so the absolutely-positioned <img> inside
   .photo still has this box as its containing block and fills the 4/5 frame. */
.bio-portrait { position: relative; top: auto; }

/* Pin the portrait while "my story" scrolls — PC / widescreen only.
   Below 1100px the column is too narrow for a pinned image to read well, so the
   section falls back to the stacked photo-then-text flow defined above. */
@media (min-width: 1100px) {
  .bio-portrait {
    position: sticky;
    top: 40px;
    align-self: start;
  }
}

/* Accessible off-screen honeypot that never widens the page */
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 960px) {
  /* Belt-and-suspenders: nothing should push the page wider than the screen */
  html, body { overflow-x: hidden; max-width: 100%; }

  .band, .band--tan { padding-left: 24px; padding-right: 24px; }
  .band { padding-top: 88px; padding-bottom: 88px; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero .photo { min-height: 340px; }
  .hero__panel { padding: 56px 24px; }

  .site-header {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 24px;
  }
  .site-header nav { justify-content: center !important; flex-wrap: wrap; gap: 20px 28px; }
  .site-header nav:first-child, .site-header nav:last-child { justify-self: center; }

  /* Force every split to a single column, even when an inline
     grid-template-columns is set on the element (inline beats the cascade). */
  .split, .split--even { grid-template-columns: 1fr !important; gap: 40px !important; }

  /* Feature bands: stack consistently as photo-on-top, text-below,
     regardless of DOM order (some are reversed on desktop). */
  .feature-split { display: flex; flex-direction: column; }
  .feature-split > .photo { order: 0; min-height: 300px; }
  .feature-split > .feature-split__text { order: 1; padding: 56px 24px; }

  /* Oversized display headline in the dark offers band would overflow at 64px */
  #offers h2 { font-size: 42px !important; line-height: 1.1 !important; }

  /* Portrait scrolls with the page on mobile instead of pinning over the text.
     Keep position:relative (NOT static) so the image still fills its 4/5 frame. */
  .bio-portrait { position: relative; top: auto; }

  /* Footer wordmark must not run past the screen edge on narrow viewports */
  .site-footer { padding-left: 24px; padding-right: 24px; }
  .site-footer .wordmark-big > div:first-child {
    font-size: clamp(24px, 9vw, 40px);
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
  }

  .post-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr !important; }
  .cred-band .container { justify-content: center; text-align: center; }
}


/* ==========================================================================
   Blog post (journal entry) pages
   ========================================================================== */
.post-hero-img { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
.post-body { max-width: 720px; margin: 0 auto; }
.post-body p { font-size: 16px; line-height: 1.85; color: var(--ink-700); margin: 0 0 22px; }
.post-body h2 { font-family: var(--font-display); font-weight: 400; font-size: 26px; letter-spacing: 0.02em; color: var(--ink-900); margin: 46px 0 16px; }
.post-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 20px; letter-spacing: 0.02em; color: var(--ink-900); margin: 34px 0 12px; }
.post-body ul, .post-body ol { margin: 0 0 22px; padding-left: 22px; }
.post-body li { font-size: 16px; line-height: 1.8; color: var(--ink-700); margin-bottom: 10px; }
.post-body li::marker { color: var(--clay-600); }
.post-body strong { color: var(--ink-900); font-weight: 600; }
.post-body em { font-style: italic; }
.post-body code { font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 0.9em; background: var(--oat-100); padding: 1px 5px; }
.post-signature { font-family: var(--font-script); font-size: 34px; color: var(--clay-600); margin: 38px 0 6px; }
.post-disclaimer { font-size: 12.5px; color: var(--ink-400); font-style: italic; border-top: 1px solid var(--border-subtle); padding-top: 20px; margin-top: 30px; }
@media (max-width: 960px) {
  .post-hero-img { aspect-ratio: 4/3; }
}
