/* ===== Hell Page Styles ===== */

/* --- Ember Color System --- */
:root {
    --ember-1: #8b1a1a;
    --ember-2: #b22222;
    --ember-3: #c0392b;
    --ember-4: #e74c3c;
    --ember-glow: rgba(183, 28, 28, 0.18);
    --ember-glow-soft: rgba(183, 28, 28, 0.08);
    --gold: #c9a227;
    --gold-2: #f4d35e;
    --text-primary: #f0e6d3;
    --text-body: #d4c9b8;
    --text-muted: #a09888;
    --bg-card: rgba(255,255,255,0.03);
    --border-ember: rgba(183, 28, 28, 0.22);
    --border-gold: rgba(244, 211, 94, 0.15);
}

/* --- Hero Section --- */
.hell-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(183,28,28,0.12) 0%, rgba(183,28,28,0.05) 35%, transparent 70%);
    pointer-events: none;
    animation: hellPulse 6s ease-in-out infinite;
}

@keyframes hellPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes emberShimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

@keyframes goldShimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* --- Stats --- */
.hell-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hell-stat {
    text-align: center;
}

.hell-stat-number {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #b22222 0%, #e74c3c 40%, #ff6b6b 60%, #e74c3c 80%, #b22222 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: emberShimmer 4s linear infinite;
    line-height: 1;
}

.hell-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 6px;
}

/* --- Section Divider --- */
.ember-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--ember-3) 40%, var(--ember-4) 50%, var(--ember-3) 60%, transparent 100%);
    opacity: 0.4;
    margin: 0;
}

.gold-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-2) 50%, var(--gold) 60%, transparent 100%);
    opacity: 0.3;
    margin: 0;
}

/* --- Section Container --- */
.hell-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hell-section-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

/* --- Section Label --- */
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ember-4);
    margin-bottom: 12px;
    display: block;
}

.section-label-gold {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

/* --- Section Heading --- */
.hell-h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin: 0 0 24px;
    line-height: 1.3;
}

/* --- Prose --- */
.hell-prose {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.05rem, 2.2vw, 1.22rem);
    color: var(--text-body);
    line-height: 1.95;
    margin: 0 0 20px;
}

.hell-prose:last-child { margin-bottom: 0; }

/* --- Opening Card --- */
.hell-opening-card {
    background: rgba(183,28,28,0.04);
    border: 1px solid var(--border-ember);
    border-radius: 20px;
    padding: 52px 48px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(183,28,28,0.08), inset 0 1px 0 rgba(255,255,255,0.04);
}

.hell-opening-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at top center, rgba(183,28,28,0.06) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 600px) {
    .hell-opening-card { padding: 32px 24px; }
}

/* --- Core Realities List --- */
.realities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.reality-card {
    background: var(--bg-card);
    border: 1px solid var(--border-ember);
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color 0.3s ease, background 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}

.reality-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.reality-card:hover {
    border-color: rgba(183,28,28,0.5);
    background: rgba(183,28,28,0.05);
}

.reality-num {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ember-4);
    min-width: 28px;
    line-height: 1.4;
}

.reality-content strong {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    display: block;
    margin-bottom: 6px;
}

.reality-content p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* --- Misconceptions Accordion --- */
.misconception-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.misconception-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.misconception-item.open {
    border-color: var(--border-ember);
}

.misconception-header {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.misconception-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ember-4);
    margin-bottom: 4px;
}

.misconception-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.4;
}

.misconception-chevron {
    color: var(--ember-4);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.misconception-item.open .misconception-chevron {
    transform: rotate(180deg);
}

.misconception-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.misconception-item.open .misconception-body {
    max-height: 600px;
}

.misconception-inner {
    padding: 0 28px 28px;
    border-top: 1px solid rgba(183,28,28,0.15);
}

.correction-label {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 20px 0 10px;
    display: block;
}

.misconception-inner p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
    margin: 0 0 12px;
}

.misconception-inner p:last-child { margin-bottom: 0; }

.misconception-inner .scripture-inline {
    font-style: italic;
    color: var(--gold);
}

/* --- Testimony Quotes --- */
.testimony-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.testimony-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-left: 3px solid var(--ember-3);
    border-radius: 0 14px 14px 0;
    padding: 28px;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimony-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.testimony-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.08rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.85;
    margin: 0 0 16px;
}

.testimony-attr {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.testimony-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    margin-top: 24px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.02);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
}

/* --- Scripture Block --- */
.scripture-block {
    background: rgba(201,162,39,0.05);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 32px 36px;
    margin: 40px 0;
    text-align: center;
}

.scripture-block blockquote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--text-body);
    line-height: 1.9;
    margin: 0 0 12px;
}

.scripture-ref {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
}

/* --- Pull Quote --- */
.pull-quote {
    border-left: 3px solid var(--ember-3);
    padding: 20px 28px;
    margin: 32px 0;
}

.pull-quote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
}

/* --- CTA Section --- */
.hell-cta {
    background: linear-gradient(135deg, rgba(201,162,39,0.07) 0%, rgba(201,162,39,0.03) 100%);
    border: 1px solid var(--border-gold);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hell-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(ellipse at center, rgba(201,162,39,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.cta-body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-body);
    line-height: 1.9;
    max-width: 580px;
    margin: 0 auto 36px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #0a0a0c;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 24px rgba(201,162,39,0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,162,39,0.45);
}

.cta-prayer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.cta-prayer-label {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.cta-prayer-text {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-body);
    line-height: 1.9;
    max-width: 560px;
    margin: 0 auto;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 640px) {
    .hell-cta { padding: 44px 24px; }
    .realities-grid { grid-template-columns: 1fr; }
    .testimony-grid { grid-template-columns: 1fr; }
    .misconception-header { padding: 18px 20px; }
    .misconception-inner { padding: 0 20px 20px; }
}
