/* Low Impact Dumpster — site-wide stylesheet
   Used by all static HTML pages.  Mobile-first responsive. */

:root {
  /* Palette */
  --parchment: #f4f1e8;
  --paper:     #ece7d6;
  --paper-warm:#e6dfc8;
  --ink:       #1a241a;
  --ink-soft:  #3a463a;
  --ink-mute:  #6b7068;
  --forest:    #2a3d2a;
  --moss:      #5a6b3a;
  --moss-soft: #7a8a55;
  --moss-light:#a8b88a;
  --line:      #d4cdb8;
  --line-dark: #b8b09a;
  --paper-deep:#1f2a22;
  --cream:     #faf7ef;
  --rust:      #a8542a;

  /* Type */
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --sans:  "Geist", "Söhne", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Spacing scale (4px baseline) */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 20px;  --s-6: 24px;  --s-8: 32px;  --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;
  --s-30: 120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--parchment);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: "ss01", "cv11";
  letter-spacing: -0.005em;
  /* Reserve space at bottom for mobile sticky call bar */
  padding-bottom: 0;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: inherit; }

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

/* === Common building blocks === */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--moss);
  display: inline-block;
}

.mono {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

/* Photo placeholder — diagonal stripes + caption */
.photo {
  position: relative;
  background-color: var(--paper-warm);
  background-image:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(42,61,42,0.05) 14px 15px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.photo .caption {
  padding: var(--s-3) var(--s-4);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--forest);
  text-transform: uppercase;
  background: rgba(244,241,232,0.85);
}
.photo.dark {
  background-color: var(--paper-deep);
  background-image:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,0.04) 14px 15px);
}
.photo.dark .caption {
  background: rgba(31,42,34,0.7);
  color: var(--cream);
}

/* === Buttons & CTAs === */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover, .btn-primary:focus { background: var(--ink); outline: 2px solid var(--moss); outline-offset: 2px; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-dark); }
.btn-ghost:hover { background: var(--paper); border-color: var(--ink); }

.phone-cta {
  display: inline-flex;
  align-items: baseline;
  gap: var(--s-3);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 16px 22px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 4px;
  text-decoration: none;
  transition: background .18s ease;
}
.phone-cta:hover, .phone-cta:focus { background: var(--ink); outline: 2px solid var(--moss-light); outline-offset: 2px; }
.phone-cta .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.phone-cta.lg { padding: 20px 28px; font-size: 19px; }
.phone-cta.lg .label { font-size: 11px; }
.phone-cta.sm { padding: 11px 16px; font-size: 14px; }
.phone-cta.sm .label { font-size: 9px; }

/* Editorial inline link */
.elink {
  color: var(--forest);
  border-bottom: 1px solid var(--moss);
  text-decoration: none;
  transition: background .14s;
}
.elink:hover, .elink:focus { background: var(--paper-warm); border-bottom-color: var(--ink); }

/* Hairline rule */
hr.rule { border: 0; height: 1px; background: var(--line); margin: 0; }

::selection { background: var(--moss); color: var(--cream); }

/* === Layout === */

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 56px; }

.section { padding: var(--s-30) 0; }
.section.sm { padding: var(--s-24) 0; }
.section.tight { padding: var(--s-20) 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: end;
  margin-bottom: var(--s-16);
}
.section-head .head-lead { max-width: 760px; }
.section-head h2 { font-size: 64px; line-height: 1.02; letter-spacing: -0.025em; }
.section-head p { font-size: 18px; line-height: 1.6; color: var(--ink-soft); max-width: 540px; justify-self: end; }

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header.dark {
  background: transparent;
  border-bottom-color: rgba(250,247,239,0.12);
  position: relative;
}
.site-header.dark .nav-link { color: #e8e2d2; }
.site-header.dark .wordmark .name { color: var(--cream); }
.site-header.dark .wordmark .em { color: var(--moss-light); }
.site-header.dark .wordmark .sub { color: var(--moss-light); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .14s;
}
.nav-link:hover, .nav-link.active { border-bottom-color: var(--moss); }
.site-header.dark .nav-link:hover, .site-header.dark .nav-link.active { border-bottom-color: var(--moss-light); }

/* === Wordmark === */

.wordmark { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.wordmark svg { flex-shrink: 0; }
.wordmark .name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
}
.wordmark .em { font-style: italic; color: var(--moss); }
.wordmark .sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 5px;
}

/* === Breadcrumbs === */

.breadcrumbs {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0 0;
}
.breadcrumbs a { color: var(--ink-mute); text-decoration: none; }
.breadcrumbs a:hover { color: var(--forest); }
.breadcrumbs .sep { color: var(--line-dark); }
.breadcrumbs .current { color: var(--forest); }

/* === Sticky mobile call bar === */

.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 20px;
  z-index: 100;
  border-top: 1px solid var(--moss);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sans);
  text-decoration: none;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
}
.sticky-call .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: 2px;
  display: block;
}
.sticky-call .num {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.sticky-call .arrow {
  background: var(--moss);
  color: var(--cream);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
}

/* === Footer === */

.site-footer { background: var(--ink); color: #c2bda9; padding: 72px 56px 32px; }
.site-footer .ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.site-footer .wordmark .name { color: var(--cream); }
.site-footer .wordmark .em { color: var(--moss-light); }
.site-footer .wordmark .sub { color: var(--moss-light); }
.site-footer .ft-intro { font-size: 14px; line-height: 1.55; color: #a8a294; margin-top: 24px; max-width: 320px; }
.site-footer .ft-nap { margin-top: 28px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; color: #8a8474; line-height: 1.7; }
.site-footer .ft-col-h {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss-light);
  margin-bottom: 20px;
}
.site-footer .ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer .ft-col a { font-size: 14px; color: #d8d2c0; text-decoration: none; transition: color .14s; }
.site-footer .ft-col a:hover { color: var(--cream); }
.site-footer .ft-bottom {
  border-top: 1px solid #2e362e;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: #6e6a5e;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* === CTA Band (reusable) === */

.cta-band { background: var(--paper-deep); color: var(--cream); padding: 96px 56px; }
.cta-band .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
.cta-band .kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--moss-light);
  margin-bottom: 20px;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.cta-band h2 em { font-style: italic; color: #c9d6a8; }
.cta-band .phone-num {
  font-family: var(--serif);
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 2px solid var(--moss);
  padding-bottom: 10px;
  display: inline-block;
}
.cta-band .hours {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--moss-light);
  margin-top: 16px;
  text-align: right;
}

/* === Mobile responsive === */

@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .site-header { padding: 14px 20px; }
  .nav-links { display: none; }
  .site-header .phone-cta { display: none; }
  .site-header { justify-content: space-between; }

  /* Show sticky call bar on mobile */
  .sticky-call { display: flex; }
  body { padding-bottom: 76px; }

  .section { padding: 64px 0; }
  .section.sm { padding: 48px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head h2 { font-size: 36px; }
  .section-head p { justify-self: start; max-width: none; }

  .cta-band { padding: 56px 20px; }
  .cta-band .inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-band h2 { font-size: 32px; }
  .cta-band .phone-num { font-size: 32px; }
  .cta-band .hours { text-align: left; }

  .site-footer { padding: 48px 20px 24px; }
  .site-footer .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer .ft-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .breadcrumbs { padding-top: 20px; font-size: 9.5px; }

  /* ── INLINE-STYLE OVERRIDES (the hero & sections use inline grid/sizes) ── */

  body { overflow-x: hidden; }

  /* All multi-column grids → 1 column on mobile */
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns:repeat(5,1fr)"],
  [style*="grid-template-columns:repeat(6,1fr)"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:1fr 1.4fr"],
  [style*="grid-template-columns:1fr 1.6fr"],
  [style*="grid-template-columns:1fr 2fr"],
  [style*="grid-template-columns:1.1fr 1fr"],
  [style*="grid-template-columns:1.2fr 1fr"],
  [style*="grid-template-columns:1.4fr 1fr"],
  [style*="grid-template-columns:1.6fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"],
  [style*="grid-template-columns:60px 1fr"],
  [style*="grid-template-columns:180px 1fr"],
  .cta-band .inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Inner section grids (under .wrap) */
  .wrap[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* H1: cap large display sizes */
  h1[style*="font-size:160px"],
  h1[style*="font-size:132px"],
  h1[style*="font-size:124px"],
  h1[style*="font-size:112px"],
  h1[style*="font-size:104px"],
  h1[style*="font-size:96px"],
  h1[style*="font-size:80px"],
  h1[style*="font-size:64px"] {
    font-size: 44px !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 20px !important;
  }

  /* H2: cap large display sizes */
  h2[style*="font-size:64px"],
  h2[style*="font-size:56px"],
  h2[style*="font-size:52px"],
  h2[style*="font-size:48px"],
  h2[style*="font-size:44px"],
  h2[style*="font-size:40px"] {
    font-size: 28px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
  }
  h2[style*="font-size:36px"],
  h2[style*="font-size:32px"] {
    font-size: 24px !important;
    line-height: 1.15 !important;
  }

  /* H3: cap */
  h3[style*="font-size:40px"],
  h3[style*="font-size:32px"],
  h3[style*="font-size:28px"] {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }
  h3[style*="font-size:24px"],
  h3[style*="font-size:22px"] {
    font-size: 20px !important;
  }

  /* Italic display em inside hero h1 — inherits h1 cap above */

  /* Body lede paragraphs at hero/intro: cap size */
  p[style*="font-size:22px"],
  p[style*="font-size:20px"],
  p[style*="font-size:19px"] {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  /* Italic serif intro lines (under h1) */
  div[style*="font-size:32px"][style*="font-style:italic"] {
    font-size: 22px !important;
    line-height: 1.25 !important;
    margin-bottom: 20px !important;
  }

  /* Big stat numbers in cards */
  span[style*="font-size:96px"],
  span[style*="font-size:80px"] {
    font-size: 64px !important;
  }
  span[style*="font-size:64px"] {
    font-size: 48px !important;
  }
  div[style*="font-size:80px"],
  div[style*="font-size:64px"] {
    font-size: 48px !important;
  }

  /* Hero phone number (CTA band) */
  a[style*="font-size:72px"],
  a[style*="font-size:54px"],
  a[style*="font-size:48px"] {
    font-size: 32px !important;
    letter-spacing: -0.02em !important;
  }

  /* Section padding — reduce extreme paddings */
  section[style*="padding:120px 0"],
  section[style*="padding:100px 0"],
  section[style*="padding:96px 0"] {
    padding: 56px 0 !important;
  }
  section[style*="padding:48px 0 96px"],
  section[style*="padding:48px 0 80px"],
  section[style*="padding:64px 0"] {
    padding: 32px 0 48px !important;
  }
  /* Hero (homepage) — reduce huge top/bottom */
  .home-hero-inner {
    padding-top: 48px !important;
    padding-bottom: 56px !important;
  }
  /* Hero bottom ticker */
  .home-hero > div[style*="padding:18px 56px"] {
    padding: 14px 20px !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    font-size: 9px !important;
  }
  .home-hero > div[style*="padding:18px 56px"] span { white-space: nowrap; }

  /* Disable sticky for narrow column elements (FAQ sticky pane) */
  [style*="position:sticky"] {
    position: relative !important;
    top: 0 !important;
  }

  /* Trust strip + hero stat card */
  aside[style*="display:flex"][style*="justify-content:flex-end"] {
    width: 100%;
    justify-content: stretch !important;
  }
  aside > div[style*="width:340px"] {
    width: 100% !important;
    max-width: none !important;
  }

  /* Trust strip cells: remove left border + padding */
  section[style*="padding:48px 0"] [style*="padding-left:32px"] {
    padding-left: 0 !important;
    border-left: none !important;
    border-top: 1px solid var(--line) !important;
    padding-top: 16px !important;
    margin-top: 8px !important;
  }

  /* Photo placeholders: cap heights */
  .photo[style*="height:440px"],
  .photo[style*="height:420px"],
  .photo[style*="height:400px"],
  .photo[style*="height:380px"] {
    height: 220px !important;
  }
  .photo[style*="height:220px"] {
    height: 160px !important;
  }

  /* Big diagonal-stripe placeholders (blog covers, etc.) */
  div[style*="height:400px"][style*="repeating-linear-gradient"] {
    height: 220px !important;
  }

  /* Size cards: smaller min-height */
  article[style*="min-height:520px"],
  a[style*="min-height:460px"] {
    min-height: 0 !important;
  }

  /* Phone CTA — full width on mobile + center */
  .phone-cta.lg {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Tables: smaller font + ensure horizontal scroll on container */
  table { font-size: 13px; }
  table th, table td { padding: 12px 10px !important; }
  table td[style*="font-size:48px"],
  table td[style*="font-size:36px"] {
    font-size: 32px !important;
  }

  /* Eyebrow size on mobile */
  .eyebrow { font-size: 10px; }

  /* Prose tweaks */
  .prose blockquote { font-size: 20px !important; margin: 32px 0 !important; padding-left: 18px !important; }

  /* Page hero buffer */
  main > section:first-of-type {
    padding-top: 24px !important;
  }

  /* Wordmark on mobile: drop subline */
  .wordmark .sub { display: none; }
  .wordmark .name { font-size: 18px; }
  .wordmark svg { width: 30px; height: 30px; }
}

@media (max-width: 560px) {
  .site-footer .ft-grid { grid-template-columns: 1fr; }
  /* Even smaller padding on phones */
  section[style*="padding:120px 0"],
  section[style*="padding:96px 0"] {
    padding: 40px 0 !important;
  }
  /* Tables: scroll horizontally */
  table { min-width: 540px; }
  div[style*="overflow-x:auto"] {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* === Visually hidden (screen-reader) === */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* === Prose (blog post body) === */
.prose {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
}
.prose p { margin-bottom: 24px; color: var(--ink-soft); }
.prose p.lead {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 36px;
}
.prose h2 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 56px;
  margin-bottom: 16px;
  color: var(--ink);
}
.prose h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--ink);
}
.prose a { color: var(--forest); border-bottom: 1px solid var(--moss); text-decoration: none; transition: background .14s; }
.prose a:hover { background: var(--paper-warm); border-bottom-color: var(--ink); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose ul, .prose ol {
  margin: 0 0 24px 20px;
  color: var(--ink-soft);
}
.prose li { margin-bottom: 10px; }
.prose blockquote {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  border-left: 3px solid var(--moss);
  padding-left: 28px;
  margin: 48px 0;
  max-width: 600px;
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 48px 0;
  max-width: 80px;
}

/* Blog meta strip */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.post-meta > * { display: inline-flex; align-items: center; gap: 8px; }

/* Blog post card grid item */
.post-card {
  background: var(--paper);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .18s ease;
  border: 1px solid var(--line);
}
.post-card:hover { transform: translateY(-2px); border-color: var(--moss); }
.post-card .post-cover {
  background-color: var(--paper-warm);
  background-image:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(42,61,42,0.05) 14px 15px);
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}
.post-card .post-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.post-card .post-cluster {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 14px;
}
.post-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin-bottom: 14px;
  color: var(--ink);
}
.post-card .post-excerpt { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.post-card .post-date { margin-top: 18px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--ink-mute); }

@media (max-width: 900px) {
  .prose { font-size: 17px; }
  .prose h2 { font-size: 26px; margin-top: 40px; }
  .prose h3 { font-size: 19px; }
  .prose p.lead { font-size: 20px; }
  .prose blockquote { font-size: 22px; padding-left: 20px; margin: 32px 0; }
}
