/* ═══════════════════════════════════════════════════════════════════
   A TRILOGY OF LOVE — Global Stylesheet
   Servants Spiritual Day Companion Website
   ═══════════════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --burgundy:       #5C1A1A;
  --burgundy-mid:   #7B2D2D;
  --burgundy-light: #9B4444;
  --gold:           #B8913A;
  --gold-light:     #D4AA5A;
  --gold-pale:      #EDD9A3;
  --ivory:          #F8F4EE;
  --ivory-mid:      #F0E9DE;
  --ivory-dark:     #E6DDD0;
  --ink:            #1C1410;
  --ink-soft:       #3A3028;
  --muted:          #7A6E62;
  --muted-light:    #A09488;
  --rule:           rgba(92, 26, 26, 0.12);
  --rule-gold:      rgba(184, 145, 58, 0.25);
  --green:          #2D5A3A;
  --blue:           #1A3A5C;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'EB Garamond', Georgia, serif;

  --max-width: 1100px;
  --content-width: 780px;
  --nav-height: 64px;

  --transition: 0.25s ease;
  --shadow-soft: 0 2px 20px rgba(28, 20, 16, 0.08);
  --shadow-card: 0 4px 32px rgba(28, 20, 16, 0.1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.78;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--burgundy); }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.eyebrow.gold { color: var(--gold); }
.eyebrow.ivory { color: rgba(248, 244, 238, 0.65); }

/* ─── CROSS ORNAMENT ─── */
.cross { color: var(--gold); display: inline-block; }
.cross-divider {
  text-align: center;
  color: var(--gold);
  opacity: 0.5;
  font-size: 1rem;
  letter-spacing: 0.6em;
  margin: 56px 0;
  user-select: none;
}
.cross-divider::before { content: '✠ ✠ ✠'; }

/* ─── NAVIGATION ─── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 2px 20px rgba(28, 20, 16, 0.2);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-brand:hover { color: var(--gold-light); }
.nav-brand-cross {
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0.8;
}

.nav-trilogy {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-part {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.55);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.nav-part:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.06);
}

.nav-part.active {
  color: var(--gold-light);
  border-color: rgba(184, 145, 58, 0.35);
  background: rgba(184, 145, 58, 0.08);
}

.nav-part.coming {
  opacity: 0.45;
  cursor: default;
}
.nav-part.coming:hover {
  color: rgba(248, 244, 238, 0.55);
  background: transparent;
  border-color: transparent;
}

.nav-part-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
}

.nav-sep {
  color: rgba(255,255,255,0.15);
  margin: 0 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-about {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.45);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-about:hover { color: var(--gold-light); }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--burgundy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: var(--nav-height);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ivory);
  padding: 12px 0;
  text-decoration: none;
  opacity: 0.9;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--gold-light); }
.mobile-menu a.dim { opacity: 0.4; font-size: 1.1rem; }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  padding: 8px;
}

@media (max-width: 768px) {
  .site-nav { padding: 0 24px; }
  .nav-trilogy, .nav-about { display: none; }
  .nav-hamburger { display: flex; }
}

/* ─── PAGE WRAPPER ─── */
.page-body {
  padding-top: var(--nav-height);
}

/* ─── HERO SECTIONS ─── */
.hero {
  background: var(--burgundy);
  color: var(--ivory);
  padding: 100px 40px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(184,145,58,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(184,145,58,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero-cross {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.5em;
  margin-bottom: 32px;
}

.hero h1 {
  color: var(--ivory);
  margin-bottom: 16px;
}
.hero h1 em { color: var(--gold-light); font-style: italic; }

.hero-verse {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: rgba(248, 244, 238, 0.7);
  margin: 0 auto 16px;
  max-width: 520px;
  line-height: 1.6;
}
.hero-verse-ref {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.8;
  display: block;
  margin-top: 6px;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 28px auto;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(248, 244, 238, 0.65);
  max-width: 480px;
  margin: 0 auto;
}

/* Compact hero variant */
.hero.compact {
  padding: 72px 40px 60px;
}

/* ─── SECTION NAV (within Beloved) ─── */
.section-nav {
  background: var(--ivory-mid);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
}
.section-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.section-nav-inner::-webkit-scrollbar { display: none; }

.section-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--transition);
}
.section-nav a:hover { color: var(--burgundy); }
.section-nav a.active {
  color: var(--burgundy);
  border-bottom-color: var(--gold);
  font-weight: 600;
}
.section-nav-cross {
  color: var(--gold);
  font-size: 0.65rem;
  opacity: 0.6;
}

@media (max-width: 640px) {
  .section-nav-inner { padding: 0 16px; gap: 0; }
  .section-nav a { padding: 12px 12px; font-size: 0.72rem; }
}

/* ─── MAIN CONTENT ─── */
.main-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 72px 40px 96px;
}

.main-content--wide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 40px 96px;
}

@media (max-width: 640px) {
  .main-content, .main-content--wide {
    padding: 48px 24px 72px;
  }
}

/* ─── PROSE BLOCKS ─── */
.prose h2 {
  font-size: 1.6rem;
  color: var(--burgundy);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.prose h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }

.prose h3 {
  font-size: 1.2rem;
  color: var(--ink);
  margin: 32px 0 12px;
}

.prose p {
  color: var(--ink-soft);
  margin-bottom: 1.2em;
}

/* ─── VERSE BLOCK ─── */
.verse-block {
  text-align: center;
  padding: 40px 32px;
  margin: 40px 0;
  background: var(--ivory-mid);
  border-top: 1px solid var(--rule-gold);
  border-bottom: 1px solid var(--rule-gold);
}
.verse-block .cross { font-size: 0.9rem; opacity: 0.5; margin-bottom: 16px; }
.verse-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.5;
  margin-bottom: 12px;
}
.verse-ref {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── PULL QUOTE ─── */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 28px;
  margin: 36px 0;
  background: rgba(184, 145, 58, 0.05);
}
.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--burgundy);
  margin: 0 0 10px;
  line-height: 1.6;
}
.pull-quote cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* ─── CONTEMPLATION ENTRY ─── */
.contemplation {
  margin: 56px 0;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
}
.contemplation:last-child { border-bottom: none; }

.contemplation-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.contemplation-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  min-width: 48px;
  margin-top: 4px;
}
.contemplation-title-block {}
.contemplation-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contemplation-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--burgundy);
}

.contemplation-bio {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  padding: 10px 16px;
  border-left: 2px solid var(--rule-gold);
  margin-bottom: 24px;
}
.contemplation-bio p { margin: 0; }

.contemplation-prose p {
  color: var(--ink-soft);
  margin-bottom: 1.2em;
}

.pause-prompt {
  text-align: center;
  padding: 28px;
  background: var(--ivory-mid);
  border-radius: 2px;
  margin: 32px 0;
}
.pause-prompt .cross { font-size: 1.1rem; display: block; margin-bottom: 10px; }
.pause-prompt p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

/* ─── TALK CARD ─── */
.talk-block {
  margin: 60px 0;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rule);
}
.talk-block:last-child { border-bottom: none; }

.talk-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.talk-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 28px;
}

.talk-meta-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--ivory-mid);
  border-left: 3px solid var(--burgundy);
}
.talk-meta-item {}
.talk-meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.talk-meta-value {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}

.reflection-prompt {
  margin-top: 36px;
  padding: 24px;
  background: rgba(92, 26, 26, 0.04);
  border: 1px solid var(--rule);
  border-radius: 2px;
}
.reflection-prompt h4 {
  margin-bottom: 10px;
  font-size: 0.72rem;
}
.reflection-prompt p {
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  font-size: 1rem;
}

/* ─── WORKSHOP BLOCKS ─── */
.workshop-block {
  margin: 56px 0;
}
.workshop-header {
  background: var(--burgundy);
  color: var(--ivory);
  padding: 20px 28px;
  margin-bottom: 0;
}
.workshop-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.workshop-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ivory);
}

.workshop-body {
  border: 1px solid var(--rule);
  border-top: none;
  padding: 32px 28px;
  background: white;
}
.workshop-body p {
  color: var(--ink-soft);
  margin-bottom: 1.2em;
}

.practice-item {
  margin: 28px 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.practice-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.question-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.question-list li {
  padding: 14px 0 14px 28px;
  position: relative;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft);
  font-style: italic;
  font-size: 0.95rem;
}
.question-list li:last-child { border-bottom: none; }
.question-list li::before {
  content: '✠';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 18px;
  font-style: normal;
}

.commitment-block {
  background: var(--ivory-mid);
  border: 1px solid var(--rule-gold);
  padding: 32px;
  margin-top: 40px;
  text-align: center;
}
.commitment-block h4 { margin-bottom: 12px; }
.commitment-block p { color: var(--ink-soft); font-style: italic; margin-bottom: 0; }

/* ─── TRILOGY PANELS (homepage) ─── */
.trilogy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 48px 0;
}
@media (max-width: 720px) {
  .trilogy-grid { grid-template-columns: 1fr; }
}

.trilogy-panel {
  background: var(--ivory);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background var(--transition);
}
.trilogy-panel.live:hover { background: rgba(92, 26, 26, 0.04); }
.trilogy-panel.dim { opacity: 0.65; cursor: default; }

.trilogy-roman {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}
.trilogy-theme {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.trilogy-when {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.trilogy-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.trilogy-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-family: var(--font-body);
  margin-top: auto;
}
.trilogy-cta-arrow { transition: transform var(--transition); }
.trilogy-panel.live:hover .trilogy-cta-arrow { transform: translateX(4px); }

.trilogy-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 16px;
  align-self: flex-start;
}
.trilogy-badge.live { background: rgba(45,90,58,0.12); color: var(--green); border: 1px solid rgba(45,90,58,0.2); }
.trilogy-badge.june { background: rgba(26,58,92,0.1); color: var(--blue); border: 1px solid rgba(26,58,92,0.2); }
.trilogy-badge.october { background: rgba(92,26,26,0.1); color: var(--burgundy); border: 1px solid rgba(92,26,26,0.2); }

/* ─── DOWNLOAD CTA ─── */
.download-block {
  background: var(--burgundy);
  color: var(--ivory);
  padding: 48px 40px;
  text-align: center;
  margin: 48px 0;
}
.download-block h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: 12px;
}
.download-block p {
  color: rgba(248,244,238,0.7);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-download:hover {
  background: var(--gold-light);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,145,58,0.3);
}

/* ─── CLOSING PAGE ─── */
.burning-question {
  background: var(--burgundy);
  color: var(--ivory);
  padding: 80px 40px;
  text-align: center;
  margin: 0;
}
.burning-question-inner {
  max-width: 680px;
  margin: 0 auto;
}
.burning-question p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.7;
  color: rgba(248, 244, 238, 0.92);
  margin-bottom: 0;
}
.burning-question strong {
  color: var(--gold-light);
  font-style: normal;
}

.benediction {
  text-align: center;
  padding: 64px 40px;
  background: var(--ivory-mid);
}
.benediction .cross { font-size: 1.5rem; display: block; margin-bottom: 20px; }
.benediction p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.7;
  margin: 0;
}

/* ─── PLACEHOLDER (Wounded/Poured) ─── */
.placeholder-body {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  background: var(--ivory);
}
.placeholder-roman {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.placeholder-theme {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 8px;
  opacity: 0.5;
}
.placeholder-when {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}
.placeholder-verse {
  max-width: 520px;
  margin: 0 auto 40px;
}
.placeholder-verse p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 8px;
}
.placeholder-verse .verse-ref { font-size: 0.78rem; }
.placeholder-text {
  max-width: 480px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* Notify form */
.notify-form {
  display: flex;
  gap: 0;
  max-width: 380px;
  margin: 0 auto 32px;
}
.notify-input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--rule);
  border-right: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: white;
  color: var(--ink);
  outline: none;
}
.notify-input:focus { border-color: var(--gold); }
.notify-btn {
  padding: 12px 24px;
  background: var(--burgundy);
  color: var(--ivory);
  border: 1px solid var(--burgundy);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.notify-btn:hover { background: var(--burgundy-mid); }

.placeholder-back {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.placeholder-back:hover { color: var(--burgundy); }

/* ─── ABOUT PAGE ─── */
.source-acknowledgement {
  background: var(--ivory-mid);
  border: 1px solid var(--rule);
  padding: 32px;
  margin-top: 48px;
}
.source-acknowledgement h4 { margin-bottom: 16px; }
.source-list {
  list-style: none;
  padding: 0;
}
.source-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--rule);
}
.source-list li:last-child { border-bottom: none; }
.source-list li::before {
  content: '✠';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 12px;
}

/* ─── SITE FOOTER ─── */
.site-footer {
  background: var(--ink);
  color: rgba(248, 244, 238, 0.45);
  text-align: center;
  padding: 48px 40px;
  font-size: 0.82rem;
  line-height: 1.8;
}
.site-footer .cross { color: var(--gold); opacity: 0.6; font-size: 1rem; display: block; margin-bottom: 16px; }
.site-footer strong { color: rgba(248,244,238,0.8); }
.site-footer a { color: rgba(248,244,238,0.4); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-trilogy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-trilogy span.sep { color: var(--gold); opacity: 0.4; }

/* ─── UTILITY ─── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ─── PRINT (for commitment page) ─── */
@media print {
  .site-nav, .section-nav, .site-footer { display: none; }
  .page-body { padding-top: 0; }
  body { font-size: 14px; background: white; }
  .commitment-block { border: 1px solid #ccc; }
}

/* ─── FADE-IN ANIMATION ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeUp 0.7s ease forwards;
}
.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.35s; opacity: 0; }

/* ─── PARALLAX HERO ─── */
/* GPU-accelerated layer for smooth parallax transforms */
.hero-inner,
.platform-hero-inner {
  will-change: transform;
}
/* Extra padding ensures content never clips at parallax extremes */
.hero {
  padding-top: 120px;
  padding-bottom: 100px;
}
.hero.compact {
  padding-top: 88px;
  padding-bottom: 76px;
}
@media (prefers-reduced-motion: reduce) {
  .hero-inner,
  .platform-hero-inner {
    will-change: auto !important;
    transform: none !important;
  }
}
