/* ═══════════════════════════════════════════════════════════════
   COFFEEMANCERS · temple.css
   An illuminated codex in a candlelit temple.
   Palette drawn from the temple art:
     roast   #140E0A  — espresso-dark temple walls
     umber   #241811  — raised panels & niches
     vellum  #EFE3C6  — manuscript folio surfaces
     ink     #2B1D12  — scribe's ink on vellum
     gilt    #C9953E  — gold leaf
     ember   #E8A34C  — candle glow
     rubric  #8E3B2C  — liturgical red ink
   ═══════════════════════════════════════════════════════════════ */

:root {
  --roast:  #140e0a;
  --umber:  #241811;
  --umber-2:#2f2015;
  --vellum: #efe3c6;
  --vellum-2:#e6d5ac;
  --ink:    #2b1d12;
  --ink-soft:#54402c;
  --gilt:   #c9953e;
  --gilt-2: #a87a2e;
  --ember:  #e8a34c;
  --rubric: #8e3b2c;
  --rubric-bright:#b0492f;
  --bone:   #efe4cf;
  --bone-dim:#c7b492;

  --display: "Cinzel", "Times New Roman", serif;
  --body:    "EB Garamond", Georgia, serif;
  --fell:    "IM Fell English", Georgia, serif;

  --measure: 66ch;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--body);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--bone);
  background-color: var(--roast);
  min-height: 100vh;
}
/* Ambient candlelight, fixed behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(232,163,76,0.09), transparent 65%),
    radial-gradient(900px 900px at 85% 110%, rgba(142,59,44,0.07), transparent 60%),
    radial-gradient(700px 800px at 8% 60%, rgba(201,149,62,0.045), transparent 60%);
}

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

a { color: var(--ember); text-decoration: none; }
a:hover { color: var(--gilt); }
:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--rubric); color: var(--vellum); }

/* ── Header ─────────────────────────────────────────────────── */

.temple-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 14, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,149,62,0.35);
  box-shadow: 0 1px 0 rgba(201,149,62,0.12), 0 8px 24px rgba(0,0,0,0.45);
}

.temple-header .inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.85rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1.75rem;
}

.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gilt);
  white-space: nowrap;
}
.wordmark .cross { color: var(--rubric-bright); font-weight: 400; }
.wordmark:hover { color: var(--ember); }

.temple-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 1.15rem;
  margin-left: auto;
}
.temple-nav a {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}
.temple-nav a:hover { color: var(--ember); }
.temple-nav a[aria-current="page"] {
  color: var(--gilt);
  border-bottom-color: var(--rubric-bright);
}

/* On narrow screens the nav wraps tall — let it scroll away instead of pinning */
@media (max-width: 46rem) {
  .temple-header { position: static; }
}

/* ── Shared structure ───────────────────────────────────────── */

main { display: block; }

.shell {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.rubric {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--rubric-bright);
}
.rubric.on-vellum { color: var(--rubric); }

h1, h2, h3 { font-family: var(--display); font-weight: 600; color: var(--vellum); }

.gilt-rule {
  border: none;
  height: 7px;
  margin: 0 auto;
  width: min(22rem, 60%);
  background:
    linear-gradient(90deg, transparent, var(--gilt) 20%, var(--gilt) 80%, transparent) 0 0 / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(201,149,62,0.5) 30%, rgba(201,149,62,0.5) 70%, transparent) 0 6px / 100% 1px no-repeat;
  position: relative;
}
.gilt-rule::after {
  content: "❧";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -58%);
  color: var(--gilt);
  font-size: 0.8rem;
  background: transparent;
}

.fleuron { color: var(--gilt); text-align: center; font-size: 1.1rem; letter-spacing: 0.75em; padding-left: 0.75em; }

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) var(--pad) clamp(3.5rem, 9vw, 7rem);
}
.hero .halo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 50% 42%, rgba(232,163,76,0.16), transparent 72%);
  pointer-events: none;
}
.hero-eyebrow { margin-bottom: 1.4rem; }
.hero h1 {
  font-size: clamp(2.1rem, 5.6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.12;
  color: var(--vellum);
  text-shadow: 0 0 42px rgba(232,163,76,0.28);
  max-width: 22ch;
  margin: 0 auto;
}
.hero h1 .gilded { color: var(--gilt); }
.hero .creed {
  font-family: var(--fell);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--bone-dim);
  max-width: 46ch;
  margin: 1.6rem auto 0;
}
.hero .gilt-rule { margin-top: 2.4rem; }

@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero > .shell > * { animation: rise-in 0.9s ease both; }
.hero > .shell > *:nth-child(2) { animation-delay: 0.12s; }
.hero > .shell > *:nth-child(3) { animation-delay: 0.24s; }
.hero > .shell > *:nth-child(4) { animation-delay: 0.36s; }

/* ── Arched images (cathedral windows) ──────────────────────── */

.arch {
  border-radius: 42% 42% 6px 6px / 30% 30% 6px 6px;
  overflow: hidden;
  border: 1px solid rgba(201,149,62,0.65);
  box-shadow:
    0 0 0 5px var(--roast),
    0 0 0 6px rgba(201,149,62,0.35),
    0 22px 50px rgba(0,0,0,0.6);
  position: relative;
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -70px 90px -30px rgba(20,14,10,0.75);
  pointer-events: none;
}

figure.shrine { max-width: 30rem; margin: 0 auto; }
figure.shrine figcaption {
  margin-top: 0.9rem;
  text-align: center;
  font-family: var(--fell);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--bone-dim);
}

/* ── Vellum folio (manuscript panel) ────────────────────────── */

.folio {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,252,240,0.5), transparent 55%),
    linear-gradient(175deg, var(--vellum) 0%, var(--vellum-2) 100%);
  color: var(--ink);
  border-radius: 4px;
  border: 1px solid rgba(120, 84, 30, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(255,250,235,0.55),
    inset 0 0 60px rgba(148, 104, 44, 0.16),
    0 1px 0 rgba(201,149,62,0.5),
    0 24px 60px rgba(0,0,0,0.55);
  padding: clamp(1.75rem, 5vw, 3.5rem);
  position: relative;
}
.folio::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(142, 59, 44, 0.28);
  border-radius: 2px;
  pointer-events: none;
}

.folio h2, .folio h3 { color: var(--ink); }
.folio a { color: var(--rubric); text-decoration: underline; text-decoration-color: rgba(142,59,44,0.4); text-underline-offset: 3px; }
.folio a:hover { color: var(--rubric-bright); }

.folio .folio-no {
  position: absolute;
  top: 1rem; right: 1.3rem;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(84, 64, 44, 0.65);
}

/* ── Scripture / chapters ───────────────────────────────────── */

.chapter { scroll-margin-top: 6rem; }
.chapter + .chapter { margin-top: clamp(2.5rem, 6vw, 4.5rem); }

.chapter-head { text-align: center; margin-bottom: 2rem; }
.chapter-head .numeral {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--rubric);
  line-height: 1;
  display: block;
}
.chapter-head .numeral::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 1px;
  margin: 0.9rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gilt-2), transparent);
}
.chapter-head h2, .chapter-head h3 {
  margin-top: 0.9rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.chapter-head .rubric { display: block; margin-bottom: 0.8rem; }

.scripture { max-width: var(--measure); margin: 0 auto; }
.scripture p + p { margin-top: 1.1em; }

.scripture .lead-verse::first-letter {
  font-family: var(--display);
  font-weight: 700;
  font-size: 3.4em;
  line-height: 0.82;
  float: left;
  padding: 0.06em 0.12em 0 0;
  color: var(--rubric);
  text-shadow: 1px 1px 0 rgba(201,149,62,0.55);
}

.prayer {
  margin: 2rem auto 0;
  max-width: 54ch;
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
  position: relative;
  padding-top: 1.6rem;
}
.prayer::before {
  content: "℣";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  font-style: normal;
  font-family: var(--display);
  color: var(--rubric);
  font-size: 1rem;
}
.prayer .amen {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rubric);
}

/* Verse (poem) setting */
.verse {
  font-family: var(--fell);
  font-style: italic;
  text-align: center;
  line-height: 1.85;
  font-size: 1.08em;
}
.verse .stanza + .stanza { margin-top: 1.4em; }

/* ── Sections ───────────────────────────────────────────────── */

.rite {  padding: clamp(3rem, 7vw, 5.5rem) 0; }
.rite-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.rite-head h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.8rem;
}
.rite-head .whisper {
  font-family: var(--fell);
  font-style: italic;
  color: var(--bone-dim);
  max-width: 52ch;
  margin: 0.9rem auto 0;
}

/* ── The Affirmation Altar (signature) ──────────────────────── */

.altar {
  display: grid;
  grid-template-columns: minmax(15rem, 24rem) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 62rem;
  margin: 0 auto;
}
@media (max-width: 46rem) {
  .altar { grid-template-columns: 1fr; }
  .altar .arch { max-width: 20rem; margin: 0 auto; }
}

.altar-cup { position: relative; }
.steam {
  position: absolute;
  left: 50%; top: -1.25rem;
  width: 0; height: 0;
  pointer-events: none;
}
.steam span {
  position: absolute;
  bottom: 0;
  width: 9px; height: 56px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(239,228,207,0.5), transparent 75%);
  filter: blur(4px);
  opacity: 0;
  animation: waft 4.2s ease-in-out infinite;
}
.steam span:nth-child(1) { left: -20px; animation-delay: 0s; }
.steam span:nth-child(2) { left: 0;     animation-delay: 1.4s; height: 72px; }
.steam span:nth-child(3) { left: 18px;  animation-delay: 2.6s; }
@keyframes waft {
  0%   { opacity: 0; transform: translateY(16px) scaleX(1); }
  25%  { opacity: 0.9; }
  60%  { opacity: 0.45; transform: translateY(-34px) scaleX(1.7) rotate(6deg); }
  100% { opacity: 0; transform: translateY(-64px) scaleX(2.4) rotate(-8deg); }
}

.altar-word blockquote {
  font-family: var(--fell);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  line-height: 1.5;
  color: var(--vellum);
  text-shadow: 0 0 30px rgba(232,163,76,0.18);
  min-height: 4.5em;
}
.altar-word blockquote::before { content: "“"; color: var(--gilt); }
.altar-word blockquote::after  { content: "”"; color: var(--gilt); }
.altar-word .altar-day {
  margin-top: 1.1rem;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ── Buttons ────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gilt);
  background: linear-gradient(180deg, rgba(201,149,62,0.14), rgba(201,149,62,0.05));
  border: 1px solid rgba(201,149,62,0.6);
  border-radius: 2px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover {
  color: var(--roast);
  background: linear-gradient(180deg, var(--ember), var(--gilt));
  border-color: var(--ember);
  box-shadow: 0 0 26px rgba(232,163,76,0.35);
}
.btn.on-vellum {
  color: var(--rubric);
  border-color: rgba(142,59,44,0.55);
  background: rgba(142,59,44,0.06);
}
.btn.on-vellum:hover {
  color: var(--vellum);
  background: var(--rubric);
  border-color: var(--rubric);
  box-shadow: 0 6px 18px rgba(142,59,44,0.35);
}

/* ── Table of contents (missal style) ───────────────────────── */

.contents {
  columns: 2;
  column-gap: clamp(2rem, 5vw, 4rem);
  max-width: 58rem;
  margin: 0 auto;
}
@media (max-width: 46rem) { .contents { columns: 1; } }

.book-block { break-inside: avoid; margin-bottom: 1.9rem; }
.book-block .book-name {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rubric-bright);
  margin-bottom: 0.65rem;
}
.book-block ol { list-style: none; }
.book-block li a {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--bone);
  padding: 0.32rem 0;
  border-bottom: 1px dotted rgba(199,180,146,0.3);
}
.book-block li a:hover { color: var(--ember); border-bottom-color: rgba(232,163,76,0.6); }
.book-block li .n {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gilt);
  min-width: 2.2rem;
}
.book-block li .t { flex: 1; }

/* ── Commitments ────────────────────────────────────────────── */

.tablets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.4rem;
  max-width: 66rem;
  margin: 0 auto;
}
.tablet {
  background: linear-gradient(170deg, var(--umber), var(--umber-2));
  border: 1px solid rgba(201,149,62,0.28);
  border-radius: 3px;
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(239,228,207,0.06), 0 10px 26px rgba(0,0,0,0.4);
}
.tablet .n {
  font-family: var(--display);
  font-weight: 700;
  color: var(--rubric-bright);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.tablet h3 {
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  margin: 0.45rem 0 0.6rem;
  color: var(--gilt);
}
.tablet p { font-size: 0.98rem; color: var(--bone-dim); }

/* ── Ordination rite ────────────────────────────────────────── */

.rite-form {
  max-width: 40rem;
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
}
.rite-form label.field-label {
  display: block;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rubric);
  margin-bottom: 0.55rem;
}
.rite-form input[type="text"], .rite-form select {
  width: 100%;
  font-family: var(--body);
  font-size: 1.1rem;
  color: var(--ink);
  background: rgba(255,252,242,0.6);
  border: 1px solid rgba(120,84,30,0.5);
  border-radius: 2px;
  padding: 0.7rem 0.9rem;
}
.rite-form input:focus, .rite-form select:focus {
  outline: 2px solid var(--rubric);
  outline-offset: 1px;
}
.choice-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.choice-row input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-row label.chip {
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(120,84,30,0.5);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s;
}
.choice-row input[type="radio"]:checked + label.chip {
  background: var(--rubric);
  border-color: var(--rubric);
  color: var(--vellum);
}
.choice-row input[type="radio"]:focus-visible + label.chip {
  outline: 2px solid var(--rubric);
  outline-offset: 2px;
}

/* Certificate */
.certificate { text-align: center; }
.certificate .ordained-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0.6rem 0 0.4rem;
}
.certificate .ordained-title {
  font-family: var(--fell);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  color: var(--rubric);
}
.certificate .decree {
  max-width: 48ch;
  margin: 1.4rem auto 0;
  font-style: italic;
  color: var(--ink-soft);
}
.wax-seal {
  width: 84px; height: 84px;
  margin: 1.8rem auto 0.4rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #c05a3d, #8e3b2c 55%, #5f2419 100%);
  box-shadow:
    inset 0 0 0 6px rgba(95,36,25,0.5),
    inset 0 0 18px rgba(0,0,0,0.4),
    0 6px 14px rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  color: rgba(239,227,198,0.85);
  font-size: 1.5rem;
  transform: rotate(-6deg);
}

/* ── Store ──────────────────────────────────────────────────── */

.relics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
  gap: 1.6rem;
  max-width: 68rem;
  margin: 0 auto;
}
.relic {
  background: linear-gradient(170deg, var(--umber), var(--umber-2));
  border: 1px solid rgba(201,149,62,0.3);
  border-radius: 3px;
  padding: 1.7rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.relic .glyph { font-size: 1.6rem; color: var(--gilt); }
.relic h3 { font-size: 1.05rem; letter-spacing: 0.06em; color: var(--vellum); }
.relic p { font-size: 0.95rem; color: var(--bone-dim); flex: 1; }
.relic .price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--ember);
}
.relic .btn { align-self: flex-start; margin-top: 0.4rem; }

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  transform: translate(-50%, 140%);
  background: var(--vellum);
  color: var(--ink);
  font-family: var(--fell);
  font-style: italic;
  border: 1px solid var(--gilt-2);
  border-radius: 3px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.55);
  padding: 0.85rem 1.4rem;
  max-width: min(88vw, 34rem);
  text-align: center;
  z-index: 100;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}
.toast.show { transform: translate(-50%, 0); }

/* ── Book page layout ───────────────────────────────────────── */

.codex {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
@media (max-width: 56rem) { .codex { grid-template-columns: minmax(0, 1fr); } }

.codex-nav {
  position: sticky;
  top: 5.5rem;
  font-size: 0.92rem;
  max-height: calc(100vh - 7rem);
  overflow-y: auto;
  padding-right: 0.5rem;
}
@media (max-width: 56rem) { .codex-nav { position: static; max-height: none; } }
.codex-nav .book-name {
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rubric-bright);
  margin: 1.1rem 0 0.35rem;
}
.codex-nav .book-name:first-child { margin-top: 0; }
.codex-nav a {
  display: block;
  color: var(--bone-dim);
  padding: 0.16rem 0;
}
.codex-nav a:hover { color: var(--ember); }
.codex-nav a .n { color: var(--gilt); font-family: var(--display); font-size: 0.72rem; margin-right: 0.45rem; }

/* ── Footer ─────────────────────────────────────────────────── */

.temple-footer {
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 1px solid rgba(201,149,62,0.3);
  padding: 2.5rem var(--pad) 3rem;
  text-align: center;
}
.temple-footer .benediction {
  font-family: var(--fell);
  font-style: italic;
  color: var(--bone-dim);
  max-width: 52ch;
  margin: 0 auto 1rem;
}
.temple-footer .fine {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(199,180,146,0.55);
}
.temple-footer .fine a { color: inherit; }
.temple-footer .fine a:hover { color: var(--ember); }

/* ── Split feature (image + text) ───────────────────────────── */

.duet {
  display: grid;
  grid-template-columns: minmax(15rem, 26rem) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}
.duet.flip { grid-template-columns: 1fr minmax(15rem, 26rem); }
.duet.flip .arch { order: 2; }
@media (max-width: 46rem) {
  .duet, .duet.flip { grid-template-columns: 1fr; }
  .duet.flip .arch { order: 0; }
  .duet .arch { max-width: 22rem; margin: 0 auto; }
}
.duet h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); letter-spacing: 0.08em; margin: 0.8rem 0 1rem; }
.duet p + p { margin-top: 1em; }
.duet .btn { margin-top: 1.6rem; }

/* Center CTA band */
.cta-band {
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
  background:
    radial-gradient(600px 300px at 50% 50%, rgba(142,59,44,0.16), transparent 70%);
}
.cta-band h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0.9rem 0 1rem;
}
.cta-band p {
  font-family: var(--fell);
  font-style: italic;
  color: var(--bone-dim);
  max-width: 48ch;
  margin: 0 auto 1.8rem;
}
