:root {
  --bg: #111014;
  --bg-alt: #1c181f;
  --panel: #151218;
  --panel-soft: rgba(255, 255, 255, 0.02);
  --muted: #b5aebf;
  --accent: #f9f6ee;
  --accent-2: #d4af37;
  --line: rgba(212, 175, 55, 0.25);
  --glow: rgba(212, 175, 55, 0.35);
  --stroke-soft: rgba(255, 255, 255, 0.05);
  --stroke-faint: rgba(255, 255, 255, 0.025);
}

html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--accent);
  font-family: 'Spectral', 'Playfair Display', serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, var(--glow), transparent 55%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(140, 92, 33, 0.25), transparent 45%);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 26px 18px 68px;
}

.content {
  display: block;
}

.content-shell {
  position: relative;
  display: flex;
  justify-content: center;
}

.ad-slot {
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 14px 12px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ad-slot ins.adsbygoogle {
  display: block;
  width: 100%;
  min-height: 250px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  margin-top: 6px;
}

.ad-slot-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--accent-2);
}

.ad-slot small {
  line-height: 1.4;
}

.ad-slot--side {
  position: absolute;
  top: var(--ad-slot-side-top, clamp(140px, 24vh, 260px));
  width: 200px;
  min-height: 260px;
  backdrop-filter: blur(6px);
}

.ad-slot--left {
  left: calc(-1 * clamp(120px, ((100vw - 900px) / 2), 320px));
  height: 780px;
  min-height: 780px;
}

.ad-slot--left ins.adsbygoogle {
  min-height: calc(780px - 48px);
}

.ad-slot--right {
  right: calc(-1 * clamp(120px, ((100vw - 900px) / 2), 320px));
}

.ad-slot--bottom {
  margin: 28px auto 0;
  max-width: 660px;
  width: 100%;
  position: relative;
}

.ad-slot.has-ad {
  border-style: solid;
}

.ad-slot.has-ad .ad-slot-label,
.ad-slot.has-ad small {
  display: none;
}

@media (max-width: 1300px) {
  .ad-slot--side {
    display: none;
  }
}

.main-panel {
  background: linear-gradient(135deg, #1d1821 0%, #0f0e11 70%);
  border: 1px solid var(--stroke-soft);
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: visible;
  max-width: 840px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--muted);
  letter-spacing: 0.35em;
  font-size: 0.68rem;
  text-transform: uppercase;
  margin: 0 0 6px;
}

.title-stack {
  margin-bottom: 12px;
  text-align: center;
}

.page-heading {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.85rem;
  margin: 0;
  color: var(--accent);
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
  padding-bottom: 9px;
}

.page-heading::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), rgba(212, 175, 55, 0));
  opacity: 0.85;
}

.page-subheading {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: var(--accent-2);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page-subheading::before,
.page-subheading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.35), transparent);
}

@media (max-width: 640px) {
  .page-heading {
    font-size: 1.7rem;
  }
}

.hero-info {
  position: relative;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid var(--stroke-soft);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.45));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-info > * {
  position: relative;
  z-index: 1;
}

.hero-summary {
  margin: 12px auto 20px;
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--stroke-faint);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  max-width: 580px;
}

.hero-summary p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(249, 246, 238, 0.88);
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.hero-media {
  padding: 12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

.hero-media-grid {
  display: block;
}

.video-and-suggestions {
  position: relative;
  margin-bottom: 34px;
}

.video-area {
  min-width: 0;
  display: grid;
  gap: 18px;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
}

.suggestions-column {
  position: absolute;
  top: 0;
  width: 230px;
  border: 1px solid var(--stroke-soft);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(175deg, rgba(244, 241, 234, 0.03), rgba(0, 0, 0, 0.55));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  right: calc(-1 * clamp(60px, ((100vw - 840px) / 2), 220px));
}

.support-qr {
  width: 215px;
  border: 1px solid var(--stroke-soft);
  border-radius: 18px;
  padding: 14px 16px 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.65));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.support-qr--theology {
  position: absolute;
  top: calc(var(--ad-slot-side-top, clamp(140px, 24vh, 260px)) + var(--ad-slot-right-height, 300px) + 24px);
  right: calc(-1 * clamp(50px, ((100vw - 840px) / 2), 210px));
}

.support-label {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(249, 246, 238, 0.65);
}

.support-qr h3 {
  margin: 0;
  font-size: 1rem;
  font-family: 'Cinzel', serif;
  color: var(--accent);
}

.support-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.support-qr-code {
  margin: 4px auto 0;
  padding: 10px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 150px;
}

.support-qr-code img {
  display: block;
  width: 100%;
  height: auto;
}

.support-note {
  margin: 2px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.suggestion-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.suggestions-column h3 {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.suggestion-heading p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(249, 246, 238, 0.7);
  letter-spacing: 0.08em;
  font-family: 'Inter', sans-serif;
}

.suggestion-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.suggestion-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 14px;
  text-decoration: none;
  border: 1px solid var(--stroke-soft);
  border-radius: 18px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.55));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.suggestion-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.25), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.suggestion-card:hover,
.suggestion-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent-2);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.suggestion-card:hover::before,
.suggestion-card:focus-visible::before {
  opacity: 1;
}

.suggestion-card:focus-visible {
  outline: none;
}

.suggestion-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  align-items: flex-start;
}

.suggestion-line {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(249, 246, 238, 0.65);
  font-family: 'Inter', sans-serif;
}

.suggestion-title {
  font-size: 0.82rem;
  color: var(--accent);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

.suggestion-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.suggestion-card:hover .suggestion-arrow,
.suggestion-card:focus-visible .suggestion-arrow {
  transform: translateX(2px);
  color: var(--accent);
  border-color: var(--accent-2);
}

.suggestion-card:hover .suggestion-title,
.suggestion-card:focus-visible .suggestion-title {
  color: var(--accent-2);
}

.collection-cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  gap: 6px;
  font-size: 0.85rem;
}

.collection-cta:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

@media (max-width: 1100px) {
  .video-and-suggestions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .suggestions-column {
    position: static;
    width: 100%;
    max-width: 760px;
    margin: 0;
    right: auto;
  }

  .support-qr {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .support-qr--theology {
    position: static;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 20px 14px 56px;
  }

  .main-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .hero-info {
    padding: 18px;
  }

  .hero-summary {
    padding: 14px 16px;
    max-width: 100%;
  }

  .hero-summary p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-media {
    border-radius: 22px;
  }

  .suggestion-card {
    padding: 10px 12px;
  }

  .hero-cta-card {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btn,
  .ghost-btn,
  .btn-outline {
    width: 100%;
  }

  .score-preview {
    padding: 18px;
  }

  .score-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .close-preview {
    width: 100%;
    text-align: center;
  }

  .preview-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .preview-toolbar > .toolbar-btn {
    width: 100%;
    text-align: center;
  }

  .toolbar-group {
    width: 100%;
    justify-content: space-between;
  }

  .theology-section {
    padding: 26px 18px;
  }

  .theology-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-qr {
    margin-top: 18px;
  }
}

@media (max-width: 520px) {
  .page-heading {
    font-size: 1.5rem;
  }

  .page-subheading {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }

  .eyebrow,
  .support-label {
    letter-spacing: 0.28em;
  }

  .video-shell iframe {
    height: 200px;
  }

  .ad-slot--bottom {
    padding: 12px 10px;
  }
}

.hero-cta-card {
  margin: 0;
  padding: 16px 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke-soft);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cta-btn,
.ghost-btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, gap 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.cta-btn {
  background: linear-gradient(135deg, #f6e5c1 0%, #d4af37 45%, #b98f2b 100%);
  color: #1b1206;
  box-shadow: 0 16px 30px rgba(214, 168, 79, 0.3);
  gap: 10px;
}

.cta-btn .btn-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-btn .btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(214, 168, 79, 0.45);
}

.cta-btn.secondary {
  background: linear-gradient(135deg, rgba(246, 229, 193, 0.3), rgba(212, 175, 55, 0.2));
  color: var(--accent);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--accent);
  background: transparent;
}

.ghost-btn:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.score-preview {
  margin-top: 32px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--stroke-soft);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.45);
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.score-preview[hidden] {
  display: none;
}

.score-preview-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.score-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.score-preview-titles {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.score-preview-titles strong {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.close-preview {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--accent);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.close-preview:hover {
  border-color: var(--accent-2);
  transform: translateY(-2px);
}

.preview-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.toolbar-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.toolbar-btn {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.preview-toolbar > .toolbar-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toolbar-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.toolbar-btn[aria-pressed='true'] {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-2);
}

.toolbar-value {
  font-size: 0.82rem;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

.score-preview-frame {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--stroke-soft);
  background: #080808;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.score-preview-embed {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
  background: #0b0b0c;
}

@media (max-width: 640px) {
  .score-preview-embed {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .score-preview-embed {
    height: 320px;
  }
}

.score-preview.is-fullscreen {
  position: fixed;
  top: 24px;
  bottom: 24px;
  left: 24px;
  right: 24px;
  margin: 0;
  z-index: 900;
  padding: 32px;
  box-shadow: 0 60px 160px rgba(0, 0, 0, 0.75);
  background: rgba(10, 9, 12, 0.96);
  border-color: rgba(255, 255, 255, 0.15);
}

.score-preview.is-fullscreen .score-preview-inner {
  height: 100%;
}

.score-preview.is-fullscreen .score-preview-embed {
  height: calc(100vh - 280px);
}

.score-preview-download {
  align-self: flex-start;
}

.video-shell {
  border: 1px solid var(--stroke-soft);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
  margin: 0;
  position: relative;
}

.video-shell iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
  background: #000;
}

@media (max-width: 640px) {
  .video-shell iframe {
    height: 220px;
  }
}

.section {
  margin-bottom: 36px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  font-family: 'Cinzel', serif;
  color: var(--accent);
}

.section p {
  margin: 0 0 14px;
  line-height: 1.8;
  color: var(--muted);
}

.theology-section {
  margin: 34px auto 0;
  padding: 30px 26px;
  border-radius: 26px;
  border: 1px solid var(--stroke-soft);
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.15), rgba(0, 0, 0, 0.8));
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55);
  max-width: 780px;
  text-align: center;
  position: relative;
  overflow: visible;
}

.theology-section::after {
  content: '';
  position: absolute;
  inset: -20% 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none;
}

.theology-section .section-intro h2 {
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  color: var(--accent-2);
}

.theology-section .section-intro p {
  font-size: 0.95rem;
  color: var(--accent);
  opacity: 0.88;
  font-family: 'Inter', sans-serif;
}

.theology-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
  counter-reset: doctrine;
}

.doctrine-block {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(244, 241, 234, 0.08);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.doctrine-block::before {
  counter-increment: doctrine;
  content: counter(doctrine, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: rgba(244, 241, 234, 0.3);
  font-family: 'Inter', sans-serif;
}

.doctrine-block h3 {
  margin: 0 0 10px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.doctrine-block p {
  margin: 0 0 12px;
  line-height: 1.75;
  color: var(--muted);
}

.doctrine-block p:first-of-type::first-letter {
  font-size: 2.8rem;
  font-family: 'Cinzel Decorative', serif;
  float: left;
  line-height: 1;
  margin-right: 6px;
  color: var(--accent-2);
}

.inline-quote {
  margin: 18px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--accent-2);
  background: rgba(212, 175, 55, 0.08);
  font-style: italic;
  color: #f0d9a1;
  line-height: 1.6;
}

.synthesis-card {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(0, 0, 0, 0.2));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}

.synthesis-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--accent);
}

.synthesis-card p {
  margin: 0;
  color: var(--accent);
  line-height: 1.6;
}

blockquote {
  margin: 0;
  padding: 14px 0 14px 16px;
  border-left: 3px solid var(--accent-2);
  color: #caa96c;
  font-style: italic;
  line-height: 1.7;
}

.liturgical-footer {
  margin-top: 60px;
  padding: 32px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 999px;
  color: var(--accent-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 14px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--accent);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-top: 14px;
}

.footer-cta:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.liturgical-footer a {
  color: var(--accent-2);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .main-panel,
  .hero-media,
  .hero-info,
  .score-preview,
  .theology-section {
    box-shadow: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  body::before {
    opacity: 0.2;
  }

  .hero-info,
  .suggestions-column,
  .theology-section {
    backdrop-filter: none;
    background: #1c181f;
  }
}
