/* Muse website designs for ministry-sites-studio. Owned by Muse.
   Three visual systems on the shared renderer markup (docs/CONTRACT.md).
   Fonts (Fraunces, DM Sans, Cormorant Garamond, Manrope, Libre Baskerville,
   Space Grotesk) are loaded by index.html; stacks below degrade gracefully.
   No images: all art motifs are pure CSS. No portraits, no invented facts. */

/* ============ 1. STILLWATER — quiet lakeside clarity (light) ============ */
.theme-muse-stillwater {
  --paper: #edf1ec;
  --paper-2: #ffffff;
  --ink: #1e2e2a;
  --muted: #4f665f;
  --accent: #2f6f6a;
  --accent-deep: #1e4c48;
  --line: #c4d1c9;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 18px;
  background:
    radial-gradient(1200px 500px at 85% -5%, #dde8e1 0%, transparent 60%),
    radial-gradient(900px 480px at -10% 20%, #e2ebe6 0%, transparent 55%),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
}
.theme-muse-stillwater .site {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
}
/* Header: airy bar, ripple wordmark, underline nav */
.theme-muse-stillwater .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.theme-muse-stillwater .wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-decoration: none;
}
.theme-muse-stillwater .wordmark::before {
  content: "";
  width: 30px;
  height: 30px;
  flex: none;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--accent) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 50%, transparent 7px, var(--accent) 8px, transparent 9px);
}
.theme-muse-stillwater .site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
}
.theme-muse-stillwater .site-nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  padding: 6px 2px;
}
.theme-muse-stillwater .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 0.25s ease;
}
.theme-muse-stillwater .site-nav a:hover::after { right: 0; }
.theme-muse-stillwater .site-nav a:last-child {
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  padding: 8px 20px;
  color: var(--accent-deep);
}
.theme-muse-stillwater .site-nav a:last-child::after { display: none; }
.theme-muse-stillwater .site-nav a:last-child:hover {
  background: var(--accent);
  color: #fff;
}
/* Hero: narrow copy column + tall arched lake window */
.theme-muse-stillwater .block-hero { padding: clamp(36px, 6vw, 84px) 0; }
.theme-muse-stillwater .hero-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.theme-muse-stillwater .hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.theme-muse-stillwater .hero-copy .eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}
.theme-muse-stillwater .hero-copy h1 {
  font-family: var(--display);
  font-weight: 560;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.theme-muse-stillwater .hero-body {
  font-size: 18.5px;
  color: var(--muted);
  max-width: 44ch;
  margin: 0 0 28px;
}
.theme-muse-stillwater .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.theme-muse-stillwater .button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
}
.theme-muse-stillwater .button:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.theme-muse-stillwater .hero-actions .button + .button {
  background: transparent;
  color: var(--accent-deep);
}
.theme-muse-stillwater .hero-actions .button + .button:hover {
  background: #dce7e1;
  border-color: var(--accent);
}
.theme-muse-stillwater .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--muted);
}
.theme-muse-stillwater .hero-art { min-width: 0; }
.theme-muse-stillwater .art-window {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--radius) var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 26%, #fdf6df 0 34px, rgba(253, 246, 223, 0) 70px),
    linear-gradient(180deg, #bcd3d4 0%, #cfdccf 34%, #8fa5a0 34.5%, #6e8783 52%, #4c6a66 52.5%, #33524e 100%);
}
.theme-muse-stillwater .art-window::before {
  /* mountain silhouette */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 46%, #5d7a76 46.5% 58%, transparent 58.5%),
    linear-gradient(245deg, transparent 52%, #47635f 52.5% 66%, transparent 66.5%);
}
.theme-muse-stillwater .art-window::after {
  /* water light lines */
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 60%;
  bottom: 10%;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0 2px,
    transparent 2px 14px
  );
  mask: linear-gradient(180deg, black, transparent 95%);
}
.theme-muse-stillwater .art-orbit {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 62%;
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.16),
    0 0 0 30px rgba(255, 255, 255, 0.08);
}
.theme-muse-stillwater .art-caption {
  margin-top: 12px;
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  text-align: center;
}
/* Sections */
.theme-muse-stillwater .site-main .block { padding: clamp(40px, 6vw, 80px) 0; }
.theme-muse-stillwater .site-main .block + .block { border-top: 1px solid var(--line); }
.theme-muse-stillwater .section-heading .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.theme-muse-stillwater .section-heading h2 {
  font-family: var(--display);
  font-weight: 560;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  text-wrap: balance;
}
.theme-muse-stillwater .about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 4fr) 7fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.theme-muse-stillwater .prose { max-width: 68ch; font-size: 17.5px; }
.theme-muse-stillwater .prose p { margin: 0 0 1.1em; }
/* Sermons: horizontal cards, visual left */
.theme-muse-stillwater .sermon-list {
  display: grid;
  gap: 22px;
}
.theme-muse-stillwater .sermon-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(18px, 3vw, 32px);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  align-items: center;
}
.theme-muse-stillwater .sermon-visual {
  position: relative;
  min-height: 150px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.5), transparent 55%),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  overflow: hidden;
}
.theme-muse-stillwater .sermon-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.14) 0 2px, transparent 2px 12px);
}
.theme-muse-stillwater .video-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.theme-muse-stillwater .video-link::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
.theme-muse-stillwater .sermon-content .eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.theme-muse-stillwater .sermon-content h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px;
}
.theme-muse-stillwater .sermon-content p { color: var(--muted); margin: 0 0 12px; }
.theme-muse-stillwater .text-link {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.theme-muse-stillwater .text-link:hover { color: var(--accent); }
/* Generic optional blocks */
.theme-muse-stillwater .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.theme-muse-stillwater .content-grid > * {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
/* Footer: deep pine band */
.theme-muse-stillwater .site-footer {
  margin-top: 20px;
  background: var(--ink);
  color: #dce7e1;
  border-radius: var(--radius) var(--radius) 0 0;
  padding: clamp(30px, 4vw, 52px) clamp(20px, 4vw, 44px);
  font-size: 15.5px;
}
.theme-muse-stillwater .site-footer a { color: #fff; }
.theme-muse-stillwater a:focus-visible,
.theme-muse-stillwater button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}
@media (max-width: 900px) {
  .theme-muse-stillwater .hero-grid { grid-template-columns: 1fr; }
  .theme-muse-stillwater .art-window { aspect-ratio: 16 / 10; min-height: 300px; }
  .theme-muse-stillwater .about-grid { grid-template-columns: 1fr; }
  .theme-muse-stillwater .sermon-card { grid-template-columns: 1fr; }
  .theme-muse-stillwater .site-header { flex-wrap: wrap; }
}
@media (max-width: 420px) {
  .theme-muse-stillwater { font-size: 16px; }
  .theme-muse-stillwater .hero-copy h1 { font-size: 36px; }
  .theme-muse-stillwater .hero-body { font-size: 16.5px; }
  .theme-muse-stillwater .site-nav { flex-wrap: wrap; gap: 10px 16px; }
  .theme-muse-stillwater .sermon-card { padding: 16px; }
}

/* ============ 2. COMMON GROUND — gathered-table warmth (earthy) ============ */
.theme-muse-common-ground {
  --paper: #ece0c6;
  --paper-2: #f7f0df;
  --ink: #3a2c1e;
  --muted: #6d5c46;
  --accent: #b3541e;
  --accent-deep: #7e3a12;
  --gold: #8a6d2f;
  --line: #cfb98f;
  --dark: #2e2318;
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius: 10px;
  background-color: var(--paper);
  background-image: repeating-linear-gradient(
    0deg,
    rgba(58, 44, 30, 0.025) 0 2px,
    transparent 2px 5px
  );
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
}
.theme-muse-common-ground .site {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
}
/* Header: dark umber band, parchment type */
.theme-muse-common-ground .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--dark);
  color: #f3e9d2;
  margin: 0 calc(clamp(20px, 4vw, 44px) * -1);
  padding: 16px clamp(20px, 4vw, 44px);
  border-bottom: 4px solid var(--accent);
}
.theme-muse-common-ground .wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 26px;
  color: #f7efdc;
  text-decoration: none;
}
.theme-muse-common-ground .wordmark::before {
  /* gathered-table mark: three arcs */
  content: "";
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--accent) 0 4px, transparent 5px),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 5px, #d8a05a 5px 7px);
}
.theme-muse-common-ground .site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 22px;
}
.theme-muse-common-ground .site-nav a {
  color: #efe3c8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.theme-muse-common-ground .site-nav a:hover { border-bottom-color: #d8a05a; color: #fff; }
/* Hero: terracotta band, overlapping paper card + round table motif */
.theme-muse-common-ground .block-hero {
  background:
    linear-gradient(160deg, #c05f24 0%, #a34a18 55%, #8a3d12 100%);
  margin: 0 calc(clamp(20px, 4vw, 44px) * -1);
  padding: clamp(44px, 6vw, 88px) clamp(20px, 4vw, 44px) 0;
}
.theme-muse-common-ground .hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}
.theme-muse-common-ground .hero-copy {
  background: var(--paper-2);
  border-radius: var(--radius) var(--radius) 0 0;
  border: 1px solid var(--line);
  border-bottom: none;
  padding: clamp(28px, 4vw, 52px);
  box-shadow: 0 -18px 50px rgba(46, 35, 24, 0.25);
}
.theme-muse-common-ground .hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.theme-muse-common-ground .hero-copy .eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.theme-muse-common-ground .hero-copy h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: 1.02;
  margin: 0 0 18px;
  text-wrap: balance;
}
.theme-muse-common-ground .hero-body { font-size: 18px; color: #4c3d2a; margin: 0 0 26px; max-width: 46ch; }
.theme-muse-common-ground .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.theme-muse-common-ground .button {
  display: inline-block;
  background: var(--accent);
  color: #fff8ec;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: var(--radius);
}
.theme-muse-common-ground .button:hover { background: var(--accent-deep); }
.theme-muse-common-ground .hero-actions .button + .button {
  background: transparent;
  color: var(--accent-deep);
  border: 2px solid var(--accent);
}
.theme-muse-common-ground .hero-actions .button + .button:hover {
  background: var(--accent);
  color: #fff8ec;
}
.theme-muse-common-ground .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 2px dashed var(--line);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}
.theme-muse-common-ground .hero-art { padding-bottom: clamp(28px, 4vw, 52px); min-width: 0; }
.theme-muse-common-ground .art-window {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin-left: auto;
  border-radius: 50%;
  border: 6px solid #f3e6c9;
  box-shadow: 0 24px 60px rgba(46, 35, 24, 0.35);
  background:
    radial-gradient(circle at 50% 118%, #7a4a1f 0 26%, #a8712f 27% 40%, #d8a05a 41% 52%, #e8b96f 53% 60%, #8c5a2b 61% 100%),
    linear-gradient(180deg, #e9c886 0%, #dfa960 60%, #b57a35 100%);
}
.theme-muse-common-ground .art-window::before {
  /* sun + hills */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 34%, #fdf3d8 0 11%, rgba(253, 243, 216, 0) 24%),
    radial-gradient(ellipse 90% 30% at 50% 108%, #5d3a1a 0 55%, transparent 56%),
    radial-gradient(ellipse 70% 24% at 50% 110%, #7a4a1f 0 55%, transparent 57%);
}
.theme-muse-common-ground .art-orbit {
  position: absolute;
  inset: 9%;
  border: 2px dashed rgba(253, 243, 216, 0.8);
  border-radius: 50%;
}
.theme-muse-common-ground .art-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 600;
  color: #f3e2c0;
}
/* Sections */
.theme-muse-common-ground .site-main .block { padding: clamp(40px, 6vw, 76px) 0; }
.theme-muse-common-ground .section-heading .eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.theme-muse-common-ground .section-heading h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 24px;
  text-wrap: balance;
}
.theme-muse-common-ground .about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 48px);
}
.theme-muse-common-ground .prose { max-width: 70ch; font-size: 17.5px; }
.theme-muse-common-ground .prose p { margin: 0 0 1.1em; }
/* Sermons: ledger rows with big numerals */
.theme-muse-common-ground .sermon-list {
  counter-reset: sermon;
  border-top: 2px solid var(--ink);
}
.theme-muse-common-ground .sermon-card {
  counter-increment: sermon;
  position: relative;
  display: grid;
  grid-template-columns: auto 150px 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
}
.theme-muse-common-ground .sermon-card::before {
  content: counter(sermon, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
  min-width: 76px;
}
.theme-muse-common-ground .sermon-visual {
  width: 150px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.12) 0 6px, transparent 6px 12px),
    linear-gradient(150deg, #c05f24, #7e3a12);
}
.theme-muse-common-ground .video-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.theme-muse-common-ground .video-link::before {
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(247, 240, 223, 0.94);
}
.theme-muse-common-ground .video-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 16px solid var(--accent-deep);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 5px;
}
.theme-muse-common-ground .sermon-content .eyebrow {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.theme-muse-common-ground .sermon-content h3 {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 700;
  margin: 0 0 6px;
}
.theme-muse-common-ground .sermon-content p { color: var(--muted); margin: 0 0 10px; }
.theme-muse-common-ground .text-link {
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
/* Generic optional blocks */
.theme-muse-common-ground .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.theme-muse-common-ground .content-grid > * {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
}
/* Footer: dark umber colophon */
.theme-muse-common-ground .site-footer {
  background: var(--dark);
  color: #e9dcc2;
  margin: 24px calc(clamp(20px, 4vw, 44px) * -1) 0;
  padding: clamp(30px, 4vw, 52px) clamp(20px, 4vw, 44px);
  border-top: 4px solid var(--accent);
  font-size: 15.5px;
}
.theme-muse-common-ground .site-footer a { color: #f7efdc; }
.theme-muse-common-ground a:focus-visible,
.theme-muse-common-ground button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .theme-muse-common-ground .hero-grid { grid-template-columns: 1fr; }
  .theme-muse-common-ground .art-window { margin: 0 auto; }
  .theme-muse-common-ground .sermon-card { grid-template-columns: auto 1fr; }
  .theme-muse-common-ground .sermon-visual { display: none; }
}
@media (max-width: 420px) {
  .theme-muse-common-ground { font-size: 16px; }
  .theme-muse-common-ground .hero-copy h1 { font-size: 38px; }
  .theme-muse-common-ground .hero-body { font-size: 16.5px; }
  .theme-muse-common-ground .sermon-card { grid-template-columns: 1fr; }
  .theme-muse-common-ground .sermon-card::before { font-size: 34px; }
}

/* ============ 3. MANUSCRIPT — dramatic editorial broadsheet (dark) ============ */
.theme-muse-manuscript {
  --paper: #17130e;
  --paper-2: #221b12;
  --ink: #f2e9d8;
  --muted: #b3a586;
  --accent: #c9a227;
  --accent-soft: #e3c964;
  --line: #3d3323;
  --display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --body: "Libre Baskerville", Georgia, serif;
  --meta: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --radius: 2px;
  background:
    radial-gradient(1000px 420px at 50% -8%, #2b2314 0%, transparent 60%),
    var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.8;
}
.theme-muse-manuscript .site {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 44px);
}
/* Masthead header: double rules, centred nameplate, small-caps nav */
.theme-muse-manuscript .site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 26px 0 20px;
  border-top: 4px double var(--accent);
  border-bottom: 4px double var(--accent);
  margin-top: 18px;
  text-align: center;
}
.theme-muse-manuscript .wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 46px);
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
}
.theme-muse-manuscript .site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 0;
  font-family: var(--meta);
}
.theme-muse-manuscript .site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 16px;
}
.theme-muse-manuscript .site-nav a + a { border-left: 1px solid var(--line); }
.theme-muse-manuscript .site-nav a:hover { color: var(--accent-soft); }
/* Hero: full-width broadsheet headline, drop cap, engraved plate */
.theme-muse-manuscript .block-hero { padding: clamp(36px, 5vw, 72px) 0; }
.theme-muse-manuscript .hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.theme-muse-manuscript .hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--meta);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}
.theme-muse-manuscript .hero-copy .eyebrow::before,
.theme-muse-manuscript .hero-copy .eyebrow::after {
  content: "";
  height: 1px;
  background: var(--line);
}
.theme-muse-manuscript .hero-copy .eyebrow::before { width: 44px; }
.theme-muse-manuscript .hero-copy .eyebrow::after { flex: 1; }
.theme-muse-manuscript .hero-copy h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.06;
  margin: 0 0 22px;
  text-wrap: balance;
}
.theme-muse-manuscript .hero-body { font-size: 18px; color: #ddd0b4; max-width: 52ch; }
.theme-muse-manuscript .hero-body::first-letter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 3.4em;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--accent);
}
.theme-muse-manuscript .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.theme-muse-manuscript .button {
  display: inline-block;
  font-family: var(--meta);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--accent-soft);
  border: 1px solid var(--accent);
  padding: 14px 30px;
  border-radius: var(--radius);
}
.theme-muse-manuscript .button:hover { background: var(--accent); color: #17130e; }
.theme-muse-manuscript .hero-actions .button + .button {
  border-color: var(--line);
  color: var(--muted);
}
.theme-muse-manuscript .hero-actions .button + .button:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
  background: transparent;
}
.theme-muse-manuscript .hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--meta);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.theme-muse-manuscript .hero-meta > * + *::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 14px;
  background: var(--accent);
  transform: rotate(45deg) translateY(-1px);
}
.theme-muse-manuscript .hero-art { min-width: 0; }
.theme-muse-manuscript .art-window {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 380px;
  border: 1px solid var(--accent);
  outline: 1px solid var(--line);
  outline-offset: 8px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 30%, rgba(227, 201, 100, 0.5) 0 8%, transparent 26%),
    repeating-linear-gradient(45deg, rgba(201, 162, 39, 0.1) 0 3px, transparent 3px 9px),
    linear-gradient(180deg, #3a2d17 0%, #241c0e 55%, #120e07 100%);
}
.theme-muse-manuscript .art-window::before {
  /* engraved colonnade */
  content: "";
  position: absolute;
  inset: 12% 14% 22%;
  background:
    linear-gradient(90deg, var(--accent) 0 6%, transparent 6% 19%, var(--accent) 19% 25%, transparent 25% 44%, var(--accent) 44% 50%, transparent 50% 56%, var(--accent) 56% 62%, transparent 62% 75%, var(--accent) 75% 81%, transparent 81% 94%, var(--accent) 94% 100%),
    linear-gradient(180deg, transparent 0 12%, var(--accent) 12% 18%, transparent 18%),
    linear-gradient(0deg, transparent 0 8%, var(--accent) 8% 16%, transparent 16%);
  opacity: 0.75;
}
.theme-muse-manuscript .art-window::after {
  /* pediment triangle */
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 4%;
  height: 9%;
  background: linear-gradient(90deg, transparent 8%, var(--accent) 8% 92%, transparent 92%);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  opacity: 0.85;
}
.theme-muse-manuscript .art-orbit {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid var(--accent);
  transform: translateX(-50%) rotate(45deg);
}
.theme-muse-manuscript .art-orbit::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--accent);
}
.theme-muse-manuscript .art-caption {
  margin-top: 20px;
  font-family: var(--meta);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
/* Sections with ruled headings */
.theme-muse-manuscript .site-main .block { padding: clamp(40px, 6vw, 76px) 0; }
.theme-muse-manuscript .site-main .block + .block { border-top: 1px solid var(--line); }
.theme-muse-manuscript .section-heading .eyebrow {
  font-family: var(--meta);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.theme-muse-manuscript .section-heading h2 {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.15;
  margin: 0 0 26px;
  text-wrap: balance;
}
.theme-muse-manuscript .section-heading h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.theme-muse-manuscript .about-grid {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
.theme-muse-manuscript .prose { font-size: 17.5px; color: #e2d6ba; }
.theme-muse-manuscript .prose > p:first-child::first-letter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 3.2em;
  line-height: 0.85;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--accent);
}
.theme-muse-manuscript .prose p { margin: 0 0 1.2em; }
/* Sermons: two-column broadsheet with column rule */
.theme-muse-manuscript .sermon-list {
  column-count: 2;
  column-gap: 56px;
  column-rule: 1px solid var(--line);
}
.theme-muse-manuscript .sermon-card {
  break-inside: avoid;
  margin-bottom: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.theme-muse-manuscript .sermon-visual {
  height: 150px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(-45deg, rgba(201, 162, 39, 0.14) 0 4px, transparent 4px 10px),
    linear-gradient(150deg, #2c2313, #14100a);
}
.theme-muse-manuscript .video-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: var(--meta);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-soft);
  text-decoration: none;
}
.theme-muse-manuscript .video-link::before {
  content: "";
  width: 0;
  height: 0;
  margin-right: 12px;
  border-left: 13px solid var(--accent);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.theme-muse-manuscript .sermon-content .eyebrow {
  font-family: var(--meta);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.theme-muse-manuscript .sermon-content h3 {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}
.theme-muse-manuscript .sermon-content p { color: var(--muted); margin: 0 0 12px; font-size: 16px; }
.theme-muse-manuscript .text-link {
  font-family: var(--meta);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
}
.theme-muse-manuscript .text-link:hover { color: #fff; border-bottom-color: #fff; }
/* Generic optional blocks */
.theme-muse-manuscript .content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.theme-muse-manuscript .content-grid > * { background: var(--paper-2); padding: 26px; }
/* Footer colophon */
.theme-muse-manuscript .site-footer {
  margin-top: 24px;
  border-top: 4px double var(--accent);
  padding: 34px 0 46px;
  text-align: center;
  font-family: var(--meta);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.theme-muse-manuscript .site-footer a { color: var(--accent-soft); }
.theme-muse-manuscript a:focus-visible,
.theme-muse-manuscript button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
/* Shared motion safety across all three Muse designs */
@media (prefers-reduced-motion: reduce) {
  .theme-muse-stillwater *,
  .theme-muse-common-ground *,
  .theme-muse-manuscript * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 900px) {
  .theme-muse-manuscript .hero-grid { grid-template-columns: 1fr; }
  .theme-muse-manuscript .art-window { aspect-ratio: 16 / 10; min-height: 280px; }
  .theme-muse-manuscript .about-grid { grid-template-columns: 1fr; }
  .theme-muse-manuscript .sermon-list { column-count: 1; }
}
@media (max-width: 420px) {
  .theme-muse-manuscript { font-size: 16px; }
  .theme-muse-manuscript .hero-copy h1 { font-size: 36px; }
  .theme-muse-manuscript .hero-body { font-size: 16.5px; }
  .theme-muse-manuscript .site-nav a { padding: 6px 10px; }
  .theme-muse-manuscript .section-heading h2 { font-size: 28px; }
}
