:root {
  color-scheme: light;
  --paper: #f7f3ea;
  --ink: #1f1814;
  --muted: #675b51;
  --cedar: #4b1611;
  --blue: #294761;
  --sage: #53695d;
  --line: rgba(52, 30, 22, 0.16);
  --panel: #fffdf7;
  --serif: "Fraunces", Georgia, serif;
  --ui: "DM Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--paper); color: var(--ink); font-family: var(--ui); font-size: 17px; line-height: 1.55; letter-spacing: 0; }
a { color: inherit; }
.prayer-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.prayer-top, .prayer-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.prayer-footer { border-top: 1px solid var(--line); border-bottom: 0; margin-top: 72px; color: var(--muted); }
.prayer-brand, .prayer-nav, .prayer-footer nav { display: flex; align-items: center; gap: 14px; }
.prayer-brand { font-family: var(--serif); font-weight: 700; text-decoration: none; color: var(--cedar); }
.prayer-brand img { width: 32px; height: 32px; border-radius: 8px; }
.prayer-nav a, .prayer-footer a { font-family: var(--mono); font-size: 12px; text-decoration: none; color: var(--muted); }
.prayer-nav a[aria-current="page"] { color: var(--cedar); text-decoration: underline; text-underline-offset: 6px; }
.prayer-app, .button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; border: 1px solid var(--cedar); border-radius: 6px; padding: 10px 14px; color: var(--cedar); text-decoration: none; font-weight: 800; }
.button-dark { background: var(--cedar); color: white; }
.prayer-hero { display: grid; grid-template-columns: minmax(0, 1fr) 120px; gap: 28px; align-items: end; padding: 72px 0 36px; border-bottom: 1px solid var(--line); }
.prayer-hero__icon { width: 112px; height: 112px; border-radius: 24px; }
.eyebrow { margin: 0 0 12px; font-family: var(--mono); font-size: 12px; color: var(--blue); text-transform: uppercase; letter-spacing: 0; font-weight: 800; }
h1, h2, h3 { font-family: var(--serif); color: var(--cedar); letter-spacing: 0; }
h1 { margin: 0; font-size: 4rem; line-height: 1; max-width: 760px; }
.lede { margin: 18px 0 0; max-width: 720px; color: var(--muted); font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; }
.prayer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; padding: 34px 0 56px; }
.prayer-card { min-height: 280px; display: grid; align-content: start; gap: 12px; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--panel); color: inherit; text-decoration: none; }
.prayer-card span, .prayer-card small { color: var(--sage); font-family: var(--mono); font-size: 12px; font-weight: 700; }
.prayer-card h2 { margin: 0; font-size: 1.65rem; line-height: 1.1; }
.prayer-card p { margin: 0; color: var(--muted); }
.breadcrumb { display: flex; gap: 8px; padding: 28px 0 0; color: var(--muted); font-family: var(--mono); font-size: 12px; }
.prayer-article { max-width: 820px; padding: 64px 0 24px; }
.prayer-article__head { border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 30px; }
.review-line { margin: 18px 0 0; color: var(--sage); font-family: var(--mono); font-size: 12px; }
.prayer-prose h2 { margin: 34px 0 10px; font-size: 2rem; line-height: 1.1; }
.prayer-prose p, .prayer-prose li { color: var(--muted); }
.prayer-prose p:first-of-type { font-family: var(--serif); font-size: 1.35rem; line-height: 1.65; color: var(--ink); }
.scripture-box, .prayer-cta { border: 1px solid var(--line); border-radius: 8px; background: var(--panel); padding: 24px; }
.scripture-box { margin-top: 34px; }
.scripture-box h2, .prayer-cta h2 { margin: 0 0 10px; font-size: 1.8rem; }
.prayer-cta { margin-top: 38px; }
@media (max-width: 900px) {
  .prayer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  h1 { font-size: 3rem; }
}
@media (max-width: 640px) {
  .prayer-shell { width: min(100% - 24px, 1180px); }
  .prayer-top, .prayer-footer { align-items: flex-start; flex-direction: column; }
  .prayer-nav { flex-wrap: wrap; }
  .prayer-hero { grid-template-columns: 1fr; padding-top: 46px; }
  .prayer-hero__icon { width: 76px; height: 76px; }
  .prayer-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.5rem; }
  .lede { font-size: 1.15rem; }
}