/* ==========================================================================
   Saint Paul's Journeys — Interactive Map
   Integrated with Grace Mission Church "Sacred Scroll" design language
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600&family=IM+Fell+English:ital,wght@0,400;1,400&display=swap');

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

:root {
    --papyrus:        #F4E8C9;
    --papyrus-light:  #FAF1D8;
    --papyrus-dark:   #E8D9B0;
    --papyrus-edge:   #D4C188;
    --papyrus-stain:  #C9B388;

    --ink:            #2A1F12;
    --ink-dark:       #1A1209;
    --ink-soft:       #4A3826;
    --ink-faded:      #6B5840;
    --ink-light:      #8A7659;

    --scarlet:        #8B2A1F;
    --scarlet-dark:   #5C1A12;
    --scarlet-light:  #B8443A;

    --gold:           #B8862B;
    --gold-light:     #D4A852;
    --gold-dark:      #8B6620;

    --phase-conversion: #B8862B;
    --phase-first:      #4A6B8A;
    --phase-second:     #4F7A4A;
    --phase-third:      #A0742F;
    --phase-rome:       #6B4A8A;

    --shadow-sm: 0 2px 6px rgba(74, 56, 38, 0.13), 0 1px 2px rgba(74, 56, 38, 0.08);
    --shadow-md: 0 6px 18px rgba(74, 56, 38, 0.17), 0 2px 6px rgba(74, 56, 38, 0.10);
    --shadow-lg: 0 14px 32px rgba(74, 56, 38, 0.22), 0 4px 12px rgba(74, 56, 38, 0.12);

    --font-serif:   'Cormorant Garamond', 'Crimson Text', Georgia, serif;
    --font-body:    'Crimson Text', Georgia, 'Times New Roman', serif;
    --font-display: 'IM Fell English', 'Cormorant Garamond', Georgia, serif;

    --radius: 5px;
    --radius-md: 8px;
    --radius-pill: 999px;
    --transition: 280ms ease;

    --papyrus-texture:
        radial-gradient(ellipse at 15% 25%, rgba(180, 150, 100, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 65%, rgba(140, 110, 70, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 55% 18%, rgba(200, 170, 120, 0.06) 0%, transparent 38%),
        radial-gradient(circle at 35% 78%, rgba(160, 130, 90, 0.09) 0%, transparent 48%);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    background-color: var(--papyrus);
    background-image: var(--papyrus-texture);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.32 0 0 0 0 0.16 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}

body > * { position: relative; z-index: 1; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.03em; }

::selection { background: rgba(184, 134, 43, 0.28); color: var(--ink-dark); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ink-dark) 0%, #241a10 30%, var(--ink) 60%, var(--ink-dark) 100%);
    overscroll-behavior: none;
    touch-action: none;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 2rem;
    max-width: 860px;
    animation: heroFadeUp 900ms ease-out;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--gold-light);
    text-shadow: 0 2px 0 rgba(0,0,0,0.45), 0 0 28px rgba(212, 168, 82, 0.28);
}

.hero-content h1::before,
.hero-content h1::after {
    content: none;
}

.title-diamonds {
    display: block;
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.7em;
    margin: 1rem auto;
    opacity: 0.85;
    cursor: pointer;
    transition: opacity 0.2s, text-shadow 0.2s;
    position: relative;
    z-index: 5;
}

.title-diamonds:hover {
    opacity: 1;
    text-shadow: 0 0 12px rgba(212, 168, 82, 0.8), 0 0 24px rgba(225, 185, 95, 0.5);
}

.diamond-char {
    display: inline-block;
    transition: opacity 0.4s ease, transform 0.4s ease;
    cursor: pointer;
}

.diamond-char.despawned {
    opacity: 0;
    transform: scale(2);
    pointer-events: none;
}

.hero-content p {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--papyrus-light);
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 640px;
    margin-inline: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-dark) 100%);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    border-radius: var(--radius-pill);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 2px 0 rgba(0,0,0,0.35), inset 0 1px 0 rgba(212, 168, 82, 0.18);
}

.btn-primary:hover {
    background: linear-gradient(180deg, var(--ink-dark) 0%, #0f0a05 100%);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4), 0 0 22px rgba(212, 168, 82, 0.35);
}

.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(212, 168, 82, 0.3);
    border-radius: 12px;
}

.scroll-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 6px; opacity: 1; }
    60% { top: 24px; opacity: 0.3; }
}

/* ===== APP LAYOUT ===== */
.app-section {
    display: grid;
    grid-template-columns: 320px 1fr;
    height: 100vh;
    overflow: hidden;
}

/* ===== SIDEBAR ===== */
.sidebar {
    background-color: var(--papyrus-light);
    background-image:
        radial-gradient(ellipse at 18% 18%, rgba(180, 150, 100, 0.11) 0%, transparent 52%),
        radial-gradient(ellipse at 82% 78%, rgba(140, 110, 70, 0.09) 0%, transparent 55%),
        linear-gradient(180deg, var(--papyrus-light) 0%, var(--papyrus) 100%);
    border-right: 1px solid var(--papyrus-edge);
    box-shadow: 3px 0 12px rgba(74, 56, 38, 0.12), 1px 0 4px rgba(74, 56, 38, 0.07);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--gold) 8%, var(--gold) 92%, transparent 100%);
    opacity: 0.4;
    pointer-events: none;
}

.sidebar-header {
    padding: 1.2rem 1.2rem 0.8rem;
    border-bottom: 1px solid var(--papyrus-edge);
    background-image: radial-gradient(ellipse at top, rgba(212, 168, 82, 0.07) 0%, transparent 70%);
}

.sidebar-header h2 {
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: 0.1rem;
    letter-spacing: 0.04em;
}

.sidebar-sub {
    font-size: 0.85rem;
    color: var(--scarlet);
    font-style: italic;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.journey-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.8rem 0.8rem 0.5rem;
}

.tab {
    background-color: rgba(244, 232, 201, 0.06);
    color: var(--ink-soft);
    border: 1px solid var(--papyrus-edge);
    padding: 0.4rem 0.7rem;
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: var(--radius-pill);
}

.tab:hover {
    background-color: rgba(212, 168, 82, 0.12);
    color: var(--ink);
    border-color: var(--gold);
}

.tab.active {
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-dark) 100%);
    color: var(--gold-light);
    border-color: var(--gold);
    box-shadow: 0 2px 6px rgba(74, 56, 38, 0.3), inset 0 1px 0 rgba(212, 168, 82, 0.22);
}

.sidebar-controls {
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid var(--papyrus-edge);
}

.btn-play {
    width: 100%;
    padding: 0.55rem 1rem;
    background: radial-gradient(circle at 40% 35%, var(--scarlet-light) 0%, var(--scarlet) 55%, var(--scarlet-dark) 100%);
    color: var(--papyrus-light);
    border: 1px solid var(--scarlet-dark);
    border-radius: var(--radius-pill);
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 2px 6px rgba(92, 26, 18, 0.35), inset 0 1px 2px rgba(255,255,255,0.15);
}

.btn-play:hover {
    background: radial-gradient(circle at 40% 35%, var(--scarlet) 0%, var(--scarlet-dark) 55%, #3e100a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(92, 26, 18, 0.45);
}

.btn-home {
    display: block;
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(180deg, var(--ink) 0%, var(--ink-dark) 100%);
    color: var(--gold-light);
    border: 1px solid var(--gold);
    border-radius: var(--radius-pill);
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 2px 0 rgba(0,0,0,0.3), inset 0 1px 0 rgba(212, 168, 82, 0.18);
}

.btn-home:hover {
    background: linear-gradient(180deg, var(--ink-dark) 0%, #0f0a05 100%);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4), 0 0 16px rgba(212, 168, 82, 0.25);
}

/* Waypoint list */
.waypoint-list {
    list-style: none;
    overflow-y: auto;
    flex: 1;
    padding: 0.4rem 0;
}

.waypoint-list li {
    padding: 0.6rem 0.8rem 0.6rem 0.6rem;
    cursor: pointer;
    border-left: 3px solid transparent;
    transition: all 200ms ease;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 1rem;
    line-height: 1.45;
    font-family: var(--font-body);
    color: var(--ink-soft);
}

.waypoint-list li:hover {
    background-color: var(--papyrus);
    border-left-color: var(--gold);
    transform: translateX(2px);
}

.waypoint-list li.active {
    background-color: var(--papyrus);
    border-left-color: var(--scarlet);
    box-shadow: inset 0 0 0 1px rgba(212, 168, 82, 0.15);
}

.wp-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--papyrus-light);
    margin-top: 1px;
    border: 1px solid var(--gold);
    box-shadow: 0 1px 3px rgba(74, 56, 38, 0.25);
    font-family: var(--font-display);
}

.wp-info { flex: 1; min-width: 0; }

.wp-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    display: block;
    letter-spacing: 0.02em;
}

.wp-ref {
    font-size: 0.88rem;
    color: var(--ink-faded);
    display: block;
    font-style: italic;
}

/* ===== MAP AREA ===== */
.map-area {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #8ba58e;
}

.map-container {
    flex: 1;
    min-height: 0;
}

/* Leaflet — dark green land, aged sea */
.leaflet-container { background: #8ba58e; font-family: var(--font-body); }

.leaflet-tile {
    filter: saturate(1.4) hue-rotate(70deg) contrast(1.1) brightness(0.72);
}

.leaflet-popup-content-wrapper {
    background-color: var(--papyrus-light);
    background-image: radial-gradient(ellipse at 18% 18%, rgba(180, 150, 100, 0.13) 0%, transparent 52%);
    color: var(--ink);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.leaflet-popup-tip { background: var(--papyrus-light); }

.leaflet-popup-content {
    margin: 10px 14px;
    font-size: 1.02rem;
    line-height: 1.6;
    font-family: var(--font-body);
    color: var(--ink-soft);
}

.leaflet-popup-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.leaflet-popup-content .popup-ref {
    font-style: italic;
    color: var(--scarlet);
    font-size: 0.92rem;
    margin-top: 0.4rem;
    font-weight: 600;
}

/* Leaflet controls */
.leaflet-control-zoom a {
    background: var(--papyrus-light) !important;
    color: var(--ink) !important;
    border-color: var(--papyrus-edge) !important;
}
.leaflet-control-zoom a:hover {
    background: var(--ink) !important;
    color: var(--gold-light) !important;
}

/* ===== INFO PANEL ===== */
.info-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--papyrus-light);
    background-image:
        radial-gradient(ellipse at 18% 18%, rgba(180, 150, 100, 0.13) 0%, transparent 52%),
        linear-gradient(180deg, var(--papyrus-light) 0%, var(--papyrus) 100%);
    border-top: 3px solid var(--gold);
    padding: 1.2rem 1.5rem;
    max-height: 45%;
    overflow-y: auto;
    z-index: 800;
    box-shadow: 0 -6px 18px rgba(74, 56, 38, 0.14);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.info-panel.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.panel-inner {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 1.5rem;
}

.panel-tag {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--papyrus-light);
    border: 1px solid var(--gold);
}

.info-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.03em;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--papyrus-edge);
    position: relative;
}

.info-panel h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.panel-event {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--ink-soft);
    font-family: var(--font-body);
}

.panel-right { display: flex; align-items: flex-start; }

.scripture {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--scarlet);
    font-size: 1.05rem;
    font-weight: 600;
    border-left: 2px solid var(--scarlet);
    padding-left: 0.8rem;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.close-btn {
    position: absolute;
    top: 0.6rem;
    right: 0.8rem;
    background: transparent;
    border: 1px solid var(--papyrus-edge);
    color: var(--ink-soft);
    font-size: 1.4rem;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
    font-family: var(--font-serif);
}

.close-btn:hover {
    background: var(--scarlet);
    color: var(--papyrus-light);
    border-color: var(--scarlet-dark);
    transform: rotate(90deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .app-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        height: 100vh;
    }

    .sidebar {
        max-height: 40vh;
        border-right: none;
        border-bottom: 1px solid var(--papyrus-edge);
        box-shadow: 0 6px 18px rgba(74, 56, 38, 0.14);
    }

    .sidebar::after { display: none; }

    .map-area { min-height: 60vh; }

    .panel-inner { grid-template-columns: 1fr; }
    .panel-right { margin-top: 0.5rem; }
}

@media (max-width: 600px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content h1::before, .hero-content h1::after { font-size: 0.8rem; }
    .journey-tabs { gap: 0.2rem; }
    .tab { font-size: 0.72rem; padding: 0.35rem 0.5rem; }
    .sidebar-header h2 { font-size: 1.15rem; }
    .info-panel { padding: 1rem; }
    .info-panel h3 { font-size: 1.25rem; }
}

/* Scrollbar — parchment style */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--papyrus); }
::-webkit-scrollbar-thumb { background: rgba(184, 134, 43, 0.35); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(184, 134, 43, 0.55); }

/* ===== SWORD COUNTDOWN ===== */
.sword-timer {
    position: absolute;
    bottom: calc(200px + 1.2rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.sword-timer.active { display: flex; }

.sword-container {
    position: relative;
    width: 260px;
    height: 48px;
}

/* Sword shape */
.sword-blade {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 20px;
    height: 6px;
    transform: translateY(-50%);
    background: var(--papyrus-edge);
    border-radius: 0 3px 3px 0;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(74, 56, 38, 0.3);
}

.sword-blade::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 12px solid var(--papyrus-edge);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Fire fill */
.sword-fire {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        #8B2A1F 0%,
        #D4520A 20%,
        #F59E0B 45%,
        #FBBF24 65%,
        #FDE68A 85%,
        #FFF7ED 100%);
    transform-origin: left;
    transform: scaleX(0);
    border-radius: 0 3px 3px 0;
    box-shadow:
        0 0 8px rgba(245, 158, 11, 0.6),
        0 0 20px rgba(212, 82, 10, 0.4);
    animation: none;
}

.sword-fire.filling {
    animation: swordFill var(--sword-duration, 9.5s) linear forwards;
}

@keyframes swordFill {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Flame particles on the tip */
.sword-fire::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -8px;
    width: 12px;
    height: 22px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.9) 0%, rgba(245, 158, 11, 0.4) 40%, transparent 70%);
    border-radius: 50% 50% 50% 50%;
    animation: flicker 0.3s ease-in-out infinite alternate;
    opacity: 0;
}

.sword-fire.filling::after {
    opacity: 1;
}

@keyframes flicker {
    0% { transform: scaleY(1) translateY(0); opacity: 0.8; }
    100% { transform: scaleY(1.3) translateY(-2px); opacity: 1; }
}

/* Guard / crossguard */
.sword-guard {
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
    width: 8px;
    height: 28px;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(74, 56, 38, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Pommel */
.sword-pommel {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 22px;
    height: 14px;
    background: linear-gradient(180deg, var(--ink-soft) 0%, var(--ink-dark) 100%);
    border-radius: 4px;
    border: 1px solid var(--gold);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Grip */
.sword-grip {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 14px;
    height: 10px;
    background: repeating-linear-gradient(
        90deg,
        var(--ink-soft) 0px,
        var(--ink-soft) 2px,
        var(--gold-dark) 2px,
        var(--gold-dark) 4px
    );
    border-radius: 1px;
}

/* Glow pulse around whole sword when active */
.sword-container.glowing {
    filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.5));
    animation: swordGlow 1.5s ease-in-out infinite alternate;
}

@keyframes swordGlow {
    0% { filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.3)); }
    100% { filter: drop-shadow(0 0 12px rgba(212, 82, 10, 0.6)); }
}

/* Focus */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
