/* =========================================================================
   Dugan's Legendary Den — v2 Stylesheet
   "Ye olde card shop" — warm, family-friendly, letterpress + general-store
   =========================================================================

   Design tokens
   -----------------------------------------------------------------------
   Colors are organized by role; never hardcode hex values in components.
   ========================================================================= */

:root {
    /* ── Backgrounds (warm wood/parchment palette) ── */
    --dld-bg-deep:       #2A1810;   /* deepest brown — page bg, hero shadows */
    --dld-bg-base:       #3E2723;   /* original dark brown — secondary surfaces */
    --dld-bg-warm:       #5D4037;   /* medium brown — panel fills */
    --dld-bg-orange:     #AD581E;   /* signature burnt orange — accents, hero highlights */
    --dld-bg-orange-dk:  #78370C;   /* darker orange for depth */
    --dld-bg-parchment:  #F2E8D5;   /* aged paper — light surfaces */
    --dld-bg-cream:      #FFF8F0;   /* primary cream */

    /* ── Foregrounds (text) ── */
    --dld-fg:            #FFF8F0;   /* primary cream text */
    --dld-fg-soft:       rgba(255, 248, 240, 0.85);
    --dld-fg-muted:      rgba(255, 248, 240, 0.65);
    --dld-fg-dim:        rgba(255, 248, 240, 0.52);
    --dld-fg-ink:        #2A1810;   /* dark ink — for use on cream surfaces */

    /* ── Brand accents ── */
    --dld-gold:          #C9A84C;   /* primary gold — section accents, CTAs */
    --dld-gold-bright:   #E3BD4D;   /* luminous gold — print/poster, hero */
    --dld-gold-dim:      #8A7330;   /* muted gold — secondary trim */
    --dld-burnt:         #8B4513;   /* burnt umber — buttons, borders */

    /* ── Accent palette (added in v2) ── */
    --dld-crimson:       #7A2018;   /* felt-table maroon — open/hot/sold accents */
    --dld-crimson-bright:#A52A1F;   /* brighter crimson for fills */
    --dld-patina:        #3D6960;   /* oxidized teal — authentication, special badges */

    /* ── Shadows / effects ── */
    --dld-shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.2);
    --dld-shadow-md:     0 6px 20px rgba(0, 0, 0, 0.35);
    --dld-shadow-lg:     0 10px 40px rgba(0, 0, 0, 0.5);
    --dld-shadow-card:   0 4px 14px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.15);
    --dld-glow-gold:     0 0 14px rgba(201, 168, 76, 0.4);

    /* ── Layout ── */
    --dld-content-max:   1100px;
    --dld-content-wide:  1280px;
    --dld-pad-x:         clamp(1rem, 4vw, 2rem);
    --dld-nav-h:         64px;
    --dld-nav-h-mobile:  56px;
    --dld-bottom-nav-h:  62px;

    /* ── Type ── */
    --dld-font-serif:    'Cinzel', 'Cormorant Garamond', Georgia, serif;
    --dld-font-display:  'IM Fell English SC', 'Cinzel', Georgia, serif;
    --dld-font-poster:   'Alfa Slab One', 'Bebas Neue', Impact, sans-serif;
    --dld-font-body:     'Lato', system-ui, sans-serif;
}

/* =========================================================================
   Reset & base
   ========================================================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--dld-font-body);
    background-color: var(--dld-bg-deep);
    color: var(--dld-fg);
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    line-height: 1.6;
    /* Padding-bottom on mobile for the bottom tab bar */
    padding-bottom: 0;
}

@media (max-width: 768px) {
    body.has-bottom-nav {
        padding-bottom: var(--dld-bottom-nav-h);
    }
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--dld-gold);
    text-decoration: none;
    transition: color 0.18s;
}

a:hover {
    color: var(--dld-gold-bright);
}

::selection {
    background: var(--dld-gold);
    color: var(--dld-fg-ink);
}

/* =========================================================================
   Background atmosphere — wood grain + stamped tile + ambient radial
   ========================================================================= */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    /* Layered radials for warm gas-lamp glow */
    background:
        radial-gradient(ellipse at 20% 30%, rgba(173, 88, 30, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 60%, rgba(139, 69, 19, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(227, 189, 77, 0.06) 0%, transparent 45%),
        /* Subtle wood-grain via repeating linear gradient */
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 2px,
            rgba(0, 0, 0, 0.025) 2px,
            rgba(0, 0, 0, 0.025) 3px,
            transparent 3px,
            transparent 6px
        );
    pointer-events: none;
    z-index: 0;
}

/* Stamped brand tile — cream-on-transparent so pokeballs face up.
   Explicitly resets every property the legacy styles.css body::after sets,
   so pages loading both stylesheets (Cases, Apothecary) get the identical
   tile as pages loading only styles-v2.css (Counter, Roster). */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('brand/bg_tile_cream.png');
    background-repeat: repeat;
    background-size: 200px 200px;
    background-position: 0 0;
    filter: none;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

/* =========================================================================
   Accessibility — focus rings + skip link
   ========================================================================= */
:focus-visible {
    outline: 2px solid var(--dld-gold);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.6rem 1rem;
    background: var(--dld-gold);
    color: var(--dld-fg-ink);
    font-family: var(--dld-font-body);
    font-weight: 700;
    text-decoration: none;
    z-index: 1000;
    transform: translateY(-200%);
    transition: transform 0.15s;
}

.skip-link:focus {
    transform: translateY(0);
    outline: 2px solid var(--dld-fg);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================================
   Top accent bar (gold ribbon)
   ========================================================================= */
.top-accent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dld-burnt), var(--dld-gold-bright), var(--dld-burnt));
    z-index: 100;
}

/* =========================================================================
   Top navigation (desktop) — labeled "chambers"
   ========================================================================= */
.den-nav {
    position: sticky;
    top: 4px;
    z-index: 80;
    background: linear-gradient(180deg, rgba(42, 24, 16, 0.97) 0%, rgba(42, 24, 16, 0.94) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    padding: 0.65rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.den-nav-inner {
    max-width: var(--dld-content-wide);
    margin: 0 auto;
    padding: 0 var(--dld-pad-x);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.den-nav-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--dld-fg);
    flex-shrink: 0;
}

.den-nav-brand:hover {
    color: var(--dld-gold-bright);
}

.den-nav-logo {
    height: 44px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(227, 189, 77, 0.35));
}

.den-nav-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.den-nav-wordmark .name {
    font-family: var(--dld-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--dld-gold-bright);
}

.den-nav-wordmark .tag {
    font-family: var(--dld-font-body);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dld-fg-dim);
}

.den-nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
}

.den-nav-link {
    position: relative;
    padding: 0.55rem 1rem;
    border-radius: 6px;
    font-family: var(--dld-font-serif);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--dld-fg-soft);
    text-decoration: none;
    transition: all 0.18s;
    white-space: nowrap;
}

.den-nav-link:hover {
    color: var(--dld-gold-bright);
    background-color: rgba(201, 168, 76, 0.08);
}

.den-nav-link[aria-current="page"] {
    color: var(--dld-gold-bright);
    background-color: rgba(201, 168, 76, 0.12);
}

.den-nav-link[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--dld-gold-bright);
    border-radius: 50%;
}

/* =========================================================================
   Bottom tab bar (mobile only)
   ========================================================================= */
.den-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .den-nav-links {
        display: none;
    }

    .den-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        background: linear-gradient(180deg, rgba(42, 24, 16, 0.97), rgba(42, 24, 16, 1));
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(201, 168, 76, 0.3);
        padding: 0.35rem 0 max(0.35rem, env(safe-area-inset-bottom));
        height: var(--dld-bottom-nav-h);
    }

    .den-bottom-link {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        padding: 0.25rem 0.2rem;
        font-family: var(--dld-font-body);
        font-size: 0.66rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--dld-fg-dim);
        text-decoration: none;
        min-height: 44px;
        transition: color 0.15s;
    }

    .den-bottom-link svg {
        width: 22px;
        height: 22px;
    }

    .den-bottom-link:hover,
    .den-bottom-link[aria-current="page"] {
        color: var(--dld-gold-bright);
    }
}

/* =========================================================================
   Common layout — content containers
   ========================================================================= */
.den-section {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0;
}

.den-section-inner {
    max-width: var(--dld-content-max);
    margin: 0 auto;
    padding: 0 var(--dld-pad-x);
}

.den-section-inner--wide {
    max-width: var(--dld-content-wide);
}

/* Section eyebrow + heading combo */
.den-eyebrow {
    display: block;
    text-align: center;
    font-family: var(--dld-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--dld-gold-bright);
    margin-bottom: 0.65rem;
}

.den-heading {
    text-align: center;
    font-family: var(--dld-font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--dld-fg);
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.den-subheading {
    text-align: center;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    color: var(--dld-fg-soft);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Decorative divider with diamond + dots */
.den-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin: 0 auto 2rem;
    max-width: 320px;
}

.den-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dld-gold-dim), transparent);
}

.den-divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--dld-gold-bright);
    transform: rotate(45deg);
    box-shadow: var(--dld-glow-gold);
}

/* =========================================================================
   Buttons — primary / secondary / ghost / poster
   ========================================================================= */
.den-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    border: 2px solid transparent;
    font-family: var(--dld-font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s;
    white-space: nowrap;
    min-height: 44px;
}

.den-btn--primary {
    background: var(--dld-gold);
    color: var(--dld-fg-ink);
    border-color: var(--dld-gold);
    font-family: var(--dld-font-serif);
    letter-spacing: 0.08em;
    box-shadow: var(--dld-shadow-sm);
}

.den-btn--primary:hover {
    background: var(--dld-gold-bright);
    border-color: var(--dld-gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.45);
    color: var(--dld-fg-ink);
}

.den-btn--secondary {
    background: transparent;
    color: var(--dld-gold);
    border-color: var(--dld-gold);
}

.den-btn--secondary:hover {
    background: var(--dld-gold);
    color: var(--dld-fg-ink);
    transform: translateY(-2px);
}

.den-btn--ghost {
    background: transparent;
    color: var(--dld-fg-soft);
    border-color: rgba(255, 248, 240, 0.25);
    font-weight: 600;
}

.den-btn--ghost:hover {
    border-color: var(--dld-gold-bright);
    color: var(--dld-gold-bright);
}

.den-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* =========================================================================
   Footer (sitewide)
   ========================================================================= */
.den-footer {
    position: relative;
    z-index: 1;
    padding: 3rem 0 2.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    background: linear-gradient(180deg, transparent 0%, rgba(42, 24, 16, 0.4) 100%);
    margin-top: 2rem;
}

.den-footer-inner {
    max-width: var(--dld-content-max);
    margin: 0 auto;
    padding: 0 var(--dld-pad-x);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .den-footer-inner {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

.den-footer-col h4 {
    font-family: var(--dld-font-serif);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dld-gold-bright);
    margin-bottom: 0.85rem;
}

.den-footer-col p,
.den-footer-col li {
    font-size: 0.88rem;
    color: var(--dld-fg-soft);
    line-height: 1.7;
}

.den-footer-col ul {
    list-style: none;
}

.den-footer-col li a {
    color: var(--dld-fg-soft);
    transition: color 0.15s;
}

.den-footer-col li a:hover {
    color: var(--dld-gold-bright);
}

.den-footer-baseline {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    font-size: 0.78rem;
    color: var(--dld-fg-dim);
    letter-spacing: 0.06em;
}

.den-footer-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.85rem;
}

.den-footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--dld-fg-soft);
    transition: all 0.18s;
}

.den-footer-socials a:hover {
    border-color: var(--dld-gold-bright);
    color: var(--dld-gold-bright);
    transform: translateY(-2px);
}

.den-footer-socials svg {
    width: 18px;
    height: 18px;
}

/* =========================================================================
   HERO — the shop sign
   ========================================================================= */
.den-hero {
    position: relative;
    z-index: 1;
    padding: 3rem 0 4rem;
    overflow: hidden;
}

/* Wooden-plank backdrop behind the sign (subtle texture, layered gradients) */
.den-hero-plank {
    position: absolute;
    inset: -10% 0 0 0;
    background:
        radial-gradient(ellipse at top, rgba(227, 189, 77, 0.08) 0%, transparent 60%),
        repeating-linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04) 0px,
            transparent 1px,
            transparent 80px,
            rgba(0, 0, 0, 0.04) 81px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0,
            transparent 3px,
            rgba(0, 0, 0, 0.03) 3px,
            rgba(0, 0, 0, 0.03) 4px
        );
    z-index: -1;
    pointer-events: none;
}

.den-hero-inner {
    max-width: var(--dld-content-max);
    margin: 0 auto;
    padding: 0 var(--dld-pad-x);
    text-align: center;
}

.den-hero-sign {
    display: inline-block;
    position: relative;
    padding: 1.5rem 1rem 1rem;
    margin-bottom: 2rem;
    /* Fully transparent — let the body backdrop carry the atmosphere */
}

.den-hero-logo {
    width: clamp(180px, 30vw, 280px);
    height: auto;
    filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.55));
    animation: fadeInDown 0.8s ease-out;
}

.den-hero-tagline {
    font-family: var(--dld-font-display);
    font-size: clamp(1.1rem, 2.6vw, 1.45rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dld-gold-bright);
    margin-top: 1.25rem;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.den-hero-subtitle {
    font-family: var(--dld-font-body);
    font-size: clamp(0.85rem, 1.8vw, 0.98rem);
    color: var(--dld-fg-soft);
    letter-spacing: 0.05em;
    max-width: 460px;
    margin: 0 auto;
    animation: fadeIn 1.2s ease-out 0.5s both;
}

/* Destination tiles row */
.den-destinations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 2.5rem auto 0;
    max-width: 880px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

@media (min-width: 700px) {
    .den-destinations {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.den-destination {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.4rem 1.1rem 1.6rem;
    background: linear-gradient(160deg, rgba(94, 64, 55, 0.5) 0%, rgba(46, 26, 22, 0.85) 100%);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dld-fg);
    transition: all 0.25s;
    box-shadow: var(--dld-shadow-card);
    overflow: hidden;
}

.den-destination::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dld-gold-bright), transparent);
    opacity: 0.65;
    transition: opacity 0.25s;
}

.den-destination:hover {
    border-color: rgba(227, 189, 77, 0.65);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.den-destination:hover::before {
    opacity: 1;
}

.den-destination-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0.85rem;
    color: var(--dld-gold-bright);
}

.den-destination-title {
    font-family: var(--dld-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--dld-gold-bright);
    margin-bottom: 0.3rem;
}

.den-destination-copy {
    font-size: 0.88rem;
    color: var(--dld-fg-soft);
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.den-destination-arrow {
    font-family: var(--dld-font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dld-gold-bright);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.den-destination-arrow::after {
    content: '→';
    transition: transform 0.2s;
}

.den-destination:hover .den-destination-arrow::after {
    transform: translateX(4px);
}

/* =========================================================================
   THE TRIO — next show / cards carousel / apothecary preview
   Three content tiles directly under the hero. Each shows REAL content,
   not just a clickthrough box.
   ========================================================================= */
.den-trio-section {
    padding-top: 0.5rem;
}

.den-trio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    list-style: none;
}

@media (min-width: 900px) {
    .den-trio {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        align-items: stretch;
    }
}

.den-trio-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.25rem 1.35rem;
    background: rgba(46, 26, 22, 0.92);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 10px;
    box-shadow: var(--dld-shadow-card);
    overflow: hidden;
    text-decoration: none;
    color: var(--dld-fg);
    min-height: 360px;
}

.den-trio-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dld-gold-bright), transparent);
    opacity: 0.7;
}

.den-trio-eyebrow {
    font-family: var(--dld-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--dld-gold-bright);
    margin-bottom: 0.85rem;
}

.den-trio-cta {
    margin-top: auto;
    padding-top: 1rem;
    align-self: flex-start;
    color: var(--dld-gold-bright);
    font-family: var(--dld-font-body);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.den-trio-cta:hover {
    color: var(--dld-fg);
}

/* "NEXT UP" red corner banner on the next-show trio tile */
.den-trio-show-tile {
    /* Reserve a little space so the banner doesn't overlap content */
}

.den-trio-banner {
    position: absolute;
    top: 0.85rem;
    right: -2.6rem;
    background: var(--dld-crimson-bright);
    color: var(--dld-fg);
    font-family: var(--dld-font-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.2rem 2.6rem;
    transform: rotate(35deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

/* ── Tile 1: Next Show ── */
.den-trio-show-dates {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.den-trio-show-month {
    font-family: var(--dld-font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--dld-gold-bright);
}

.den-trio-show-days {
    font-family: var(--dld-font-poster);
    font-size: clamp(2rem, 4.5vw, 2.4rem);
    line-height: 1;
    color: var(--dld-fg);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.den-trio-show-name {
    font-family: var(--dld-font-display);
    font-size: 1.1rem;
    color: var(--dld-gold-bright);
    line-height: 1.3;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.den-trio-show-venue {
    font-size: 0.86rem;
    color: var(--dld-fg-soft);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.den-trio-show-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}

.den-trio-empty {
    font-size: 0.9rem;
    color: var(--dld-fg-muted);
    font-style: italic;
    flex: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

/* ── Tile 2: Cases carousel ── */
.den-trio-cases {
    padding-bottom: 1.35rem;
}

.den-trio-carousel {
    position: relative;
    flex: 1;
    min-height: 220px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(201, 168, 76, 0.18);
    margin-bottom: 1rem;
}

.den-trio-card-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    text-decoration: none;
    color: var(--dld-fg);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.den-trio-card-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.den-trio-card-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.den-trio-card-info {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    margin: -1rem;
    padding: 1.5rem 1rem 1rem;
    border-radius: 0 0 8px 8px;
}

.den-trio-card-name {
    font-family: var(--dld-font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dld-fg);
    letter-spacing: 0.02em;
}

.den-trio-card-sub {
    font-size: 0.78rem;
    color: var(--dld-fg-soft);
    margin-top: 0.2rem;
}

.den-trio-card-band {
    display: inline-block;
    margin-top: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dld-gold-bright);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(227, 189, 77, 0.5);
    padding: 0.18em 0.55em;
    border-radius: 4px;
}

/* ── Tile 3: Apothecary preview list ── */
.den-trio-apothecary {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.den-trio-apo-item {
    margin: 0;
}

.den-trio-apo-item a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-left: 3px solid var(--dld-gold);
    text-decoration: none;
    color: var(--dld-fg);
    transition: background 0.15s, border-color 0.15s;
}

.den-trio-apo-item a:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--dld-gold-bright);
    border-left-color: var(--dld-gold-bright);
}

.den-trio-apo-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(139, 69, 19, 0.35));
    color: var(--dld-gold-bright);
}

.den-trio-apo-icon svg {
    width: 22px;
    height: 22px;
}

.den-trio-apo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.den-trio-apo-name {
    font-family: var(--dld-font-body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dld-fg);
    line-height: 1.3;
}

.den-trio-apo-hint {
    font-size: 0.76rem;
    color: var(--dld-fg-muted);
    line-height: 1.4;
    margin-top: 0.15rem;
}

/* =========================================================================
   FEATURED CARDS strip
   ========================================================================= */
.den-featured {
    background: transparent;
    border-block: none;
}

.den-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.den-card-tile {
    display: flex;
    flex-direction: column;
    background: rgba(46, 26, 22, 0.95);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: var(--dld-fg);
    box-shadow: var(--dld-shadow-card);
    transition: all 0.22s;
}

.den-card-tile:hover {
    transform: translateY(-3px);
    border-color: var(--dld-gold-bright);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.den-card-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--dld-bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.den-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}

.den-card-tile:hover .den-card-image img {
    transform: scale(1.05);
}

.den-card-meta {
    padding: 0.75rem 0.85rem 0.9rem;
}

.den-card-name {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.den-card-sub {
    font-size: 0.76rem;
    color: var(--dld-fg-dim);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.den-card-band {
    display: inline-block;
    font-family: var(--dld-font-body);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dld-gold-bright);
    background: rgba(201, 168, 76, 0.13);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 0.15em 0.55em;
    border-radius: 4px;
}

/* =========================================================================
   SHOW BILLINGS (vintage event-poster cards) — used on home + roster
   ========================================================================= */
.den-billing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

@media (min-width: 700px) {
    .den-billing-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

.den-billing {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.25rem 1.35rem;
    background:
        linear-gradient(180deg, rgba(242, 232, 213, 0.06) 0%, rgba(255, 248, 240, 0.02) 100%),
        rgba(46, 26, 22, 0.96);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 6px;
    box-shadow: var(--dld-shadow-card);
    overflow: hidden;
}

.den-billing::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 4px;
    pointer-events: none;
}

.den-billing-month {
    font-family: var(--dld-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--dld-gold-bright);
    margin-bottom: 0.35rem;
    position: relative;
    z-index: 1;
}

.den-billing-dates {
    font-family: var(--dld-font-poster);
    font-size: clamp(2rem, 5vw, 2.6rem);
    line-height: 1;
    color: var(--dld-fg);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.den-billing-name {
    font-family: var(--dld-font-display);
    font-size: 1.1rem;
    line-height: 1.3;
    color: var(--dld-gold-bright);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.den-billing-venue {
    font-size: 0.86rem;
    color: var(--dld-fg-soft);
    margin-bottom: 0.85rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.den-billing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.den-billing-action {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--dld-gold);
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.18s;
}

.den-billing-action:hover {
    background: var(--dld-gold);
    color: var(--dld-fg-ink);
    border-color: var(--dld-gold);
}

.den-billing-action svg {
    width: 12px;
    height: 12px;
}

/* Billing in "next-up" highlight style for first/active show */
.den-billing--featured {
    /* Same solid fill as the regular billings — just stronger border + glow */
    background: rgba(46, 26, 22, 0.97);
    border-color: var(--dld-gold-bright);
    box-shadow: 0 6px 20px rgba(227, 189, 77, 0.22), var(--dld-shadow-card);
}

/* Past show cards: same opacity as upcoming, dimmer text + "Past" pill */
.den-billing--past .den-billing-month,
.den-billing--past .den-billing-dates,
.den-billing--past .den-billing-name {
    color: var(--dld-fg-muted);
}

.den-billing--past .den-billing-venue {
    color: var(--dld-fg-dim);
}

.den-billing-past-pill {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    font-family: var(--dld-font-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dld-fg-dim);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 248, 240, 0.18);
    padding: 0.18rem 0.55rem;
    border-radius: 3px;
    z-index: 2;
}

.den-billing--featured::after {
    content: 'NEXT UP';
    position: absolute;
    top: 0.85rem;
    right: -2.5rem;
    background: var(--dld-crimson-bright);
    color: var(--dld-fg);
    font-family: var(--dld-font-body);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding: 0.18rem 2.5rem;
    transform: rotate(35deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* =========================================================================
   MEET THE DEN block
   ========================================================================= */
.den-meet {
    background: transparent;
}

.den-meet-inner {
    max-width: var(--dld-content-max);
    margin: 0 auto;
    padding: 0 var(--dld-pad-x);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .den-meet-inner {
        grid-template-columns: 1fr 1.4fr;
        gap: 3rem;
    }
}

/* Text-only variant when the portrait is hidden (logo already in nav + hero) */
.den-meet-inner--text-only {
    max-width: 760px;
    grid-template-columns: 1fr;
    text-align: center;
}

@media (min-width: 768px) {
    .den-meet-inner--text-only {
        grid-template-columns: 1fr;
    }
}

.den-meet-inner--text-only .den-eyebrow,
.den-meet-inner--text-only .den-heading {
    text-align: center;
}

.den-meet-portrait {
    text-align: center;
}

.den-meet-portrait img {
    width: clamp(160px, 30vw, 240px);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.den-meet-body p {
    color: var(--dld-fg-soft);
    margin-bottom: 1rem;
    line-height: 1.75;
    font-size: 1.02rem;
}

.den-meet-body p:first-of-type::first-letter {
    font-family: var(--dld-font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--dld-gold-bright);
    float: left;
    line-height: 0.95;
    margin-right: 0.4rem;
    margin-top: 0.15rem;
}

/* =========================================================================
   APOTHECARY FEATURED block (3 items)
   ========================================================================= */
.den-apothecary-feat {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 700px) {
    .den-apothecary-feat {
        grid-template-columns: repeat(3, 1fr);
    }
}

.den-apothecary-item {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.1rem;
    background: rgba(46, 26, 22, 0.78);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-left: 3px solid var(--dld-gold);
    border-radius: 6px;
    transition: all 0.2s;
    box-shadow: var(--dld-shadow-card);
}

.den-apothecary-item:hover {
    border-color: var(--dld-gold-bright);
    background: rgba(46, 26, 22, 0.92);
}

.den-apothecary-pick {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dld-gold-bright);
    background: rgba(227, 189, 77, 0.14);
    border: 1px solid rgba(227, 189, 77, 0.45);
    padding: 0.14em 0.5em;
    border-radius: 3px;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.den-apothecary-pick svg {
    width: 11px;
    height: 11px;
}

.den-apothecary-name {
    font-family: var(--dld-font-body);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dld-fg);
    margin-bottom: 0.45rem;
    line-height: 1.35;
}

.den-apothecary-note {
    font-size: 0.84rem;
    color: var(--dld-fg-soft);
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.den-apothecary-link {
    align-self: flex-start;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dld-gold-bright);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.den-apothecary-link:hover {
    color: var(--dld-fg);
}

/* =========================================================================
   FOLLOW THE DEN — socials + email signup
   ========================================================================= */
.den-follow {
    background: transparent;
}

.den-socials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    max-width: 480px;
    margin: 1.5rem auto 0;
}

@media (min-width: 500px) {
    .den-socials {
        grid-template-columns: repeat(3, 1fr);
    }
}

.den-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1rem;
    border-radius: 50px;
    border: 2px solid;
    font-family: var(--dld-font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.22s;
    min-height: 44px;
}

.den-social svg {
    width: 18px;
    height: 18px;
}

/* All social pills share the same pattern: cream text, burnt-umber border,
   fill on hover. Consistent visual weight across the row. */
.den-social.instagram,
.den-social.tiktok,
.den-social.email {
    background: transparent;
    color: var(--dld-fg);
    border-color: var(--dld-burnt);
}

.den-social.instagram:hover,
.den-social.tiktok:hover,
.den-social.email:hover {
    background: var(--dld-burnt);
    color: var(--dld-fg);
    border-color: var(--dld-burnt);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Newsletter inline form */
.den-newsletter {
    margin: 2rem auto 0;
    max-width: 520px;
    text-align: center;
}

.den-newsletter h3 {
    font-family: var(--dld-font-display);
    font-size: 1.2rem;
    color: var(--dld-gold-bright);
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.den-newsletter p {
    font-size: 0.88rem;
    color: var(--dld-fg-muted);
    margin-bottom: 1rem;
}

.den-newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.den-newsletter input {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    font-size: 16px;
    border-radius: 50px;
    background: rgba(46, 26, 22, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: var(--dld-fg);
    font-family: var(--dld-font-body);
}

.den-newsletter input::placeholder {
    color: var(--dld-fg-dim);
}

.den-newsletter input:focus-visible {
    border-color: var(--dld-gold-bright);
    /* let the global :focus-visible ring coexist for keyboard users */
}

/* =========================================================================
   PAY block (footer-ish row of pay options)
   ========================================================================= */
.den-pay {
    padding: 2.5rem 0;
    background: transparent;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.den-pay-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    max-width: 720px;
    margin: 1rem auto 0;
}

.den-pay-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 2px solid;
    font-family: var(--dld-font-body);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.22s;
    letter-spacing: 0.06em;
    min-height: 44px;
    white-space: nowrap;
    flex: 0 1 auto;
}

@media (max-width: 480px) {
    .den-pay-btn {
        flex: 1 1 100%;
    }
}

.den-pay-btn svg {
    width: 16px;
    height: 16px;
}

.den-pay-btn.venmo  { color: #5BB8E8; border-color: #5BB8E8; }
.den-pay-btn.venmo:hover  { background: #5BB8E8; color: #1B2C3E; }
.den-pay-btn.cashapp { color: #00D632; border-color: #00D632; }
.den-pay-btn.cashapp:hover { background: #00D632; color: var(--dld-fg-ink); }
.den-pay-btn.zelle { color: #B57BEE; border-color: #B57BEE; cursor: default; }

/* =========================================================================
   PAGE-LEVEL OVERRIDES — each chamber tints the body bg subtly
   ========================================================================= */

/* The Counter (home): default bg */

/* The Cases (inventory): a touch warmer, more amber.
   Ensure every inventory surface is fully opaque so cards don't bleed
   into the tile background as the user scrolls. */
body.page-cases {
    --page-tint-1: rgba(173, 88, 30, 0.08);
    --page-tint-2: rgba(120, 55, 12, 0.06);
}

/* Ensure .inv-main and all its contents (tabs, search, table, disclaimer)
   stack above the body::after cream-tile pseudo-element (fixed, z-index:0). */
body.page-cases .inv-main {
    position: relative;
    z-index: 1;
}

/* Every inventory surface gets a fully-opaque dark plate so the tile
   background NEVER bleeds into text. !important is justified here because
   the legacy styles.css inv-* rules are loaded first and have equal-or-higher
   specificity for some selectors. */
body.page-cases .inv-table-wrap {
    background: var(--dld-bg-base) !important;
    border: 1px solid rgba(139, 69, 19, 0.55);
    border-radius: 8px;
    padding: 0;
    box-shadow: var(--dld-shadow-card);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

body.page-cases .inv-table-scroll {
    background: var(--dld-bg-base) !important;
    border: none;
    border-radius: 0;
}

body.page-cases .inv-table {
    background: var(--dld-bg-base);
}

body.page-cases .inv-table thead,
body.page-cases .inv-table thead tr,
body.page-cases .inv-table thead th {
    background-color: var(--dld-bg-deep) !important;
}

body.page-cases .inv-table tbody,
body.page-cases .inv-table tbody tr,
body.page-cases .inv-table tbody td {
    background-color: var(--dld-bg-base);
}

body.page-cases .inv-table tbody tr:hover,
body.page-cases .inv-table tbody tr:hover td {
    background-color: rgba(46, 26, 22, 0.95) !important;
}

/* Card list (mobile) wrapper — give it the same plate */
body.page-cases .inv-card-list {
    background: var(--dld-bg-base);
    border: 1px solid rgba(139, 69, 19, 0.55);
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: var(--dld-shadow-card);
}

body.page-cases .inv-card {
    background-color: var(--dld-bg-base);
    border: 1px solid rgba(139, 69, 19, 0.55);
    border-left: 3px solid var(--dld-gold);
    box-shadow: var(--dld-shadow-card);
}

body.page-cases .inv-search {
    background-color: var(--dld-bg-base);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

body.page-cases .inv-search:focus {
    border-color: var(--dld-gold-bright);
    background-color: var(--dld-bg-base);
}

body.page-cases .band-btn {
    background-color: var(--dld-bg-base);
    border-color: rgba(201, 168, 76, 0.35);
}

body.page-cases .band-btn.active {
    background-color: var(--dld-burnt);
    border-color: var(--dld-gold);
    color: var(--dld-fg);
}

body.page-cases .inv-disclaimer {
    background-color: var(--dld-bg-base);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-left: 3px solid var(--dld-gold);
    box-shadow: var(--dld-shadow-card);
}

body.page-cases .inv-tab {
    background-color: var(--dld-bg-base);
    border-color: rgba(201, 168, 76, 0.35);
}

body.page-cases .inv-tab.active {
    background-color: var(--dld-burnt);
    border-color: var(--dld-gold);
}

/* The Roster (shows): rich crimson undertone for ye-olde poster feel */
body.page-roster {
    --page-tint-1: rgba(122, 32, 24, 0.1);
    --page-tint-2: rgba(173, 88, 30, 0.04);
}

/* The Apothecary (gear): uses the sitewide brown background — no orange override.
   The Vendor Kit and item cards keep their opaque dark plates so the
   sitewide cream-tile texture doesn't bleed through the content. */

/* Lift the entire gear content area above body::after (fixed, z-index:0) */
body.page-apothecary .gear-main {
    position: relative;
    z-index: 1;
}

body.page-apothecary .gear-section--kit {
    background: rgba(46, 26, 22, 0.95);
    border-color: rgba(201, 168, 76, 0.45);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

body.page-apothecary .gear-card--kit {
    background-color: var(--dld-bg-base);
    border-color: rgba(201, 168, 76, 0.35);
    border-left-color: var(--dld-gold);
}

body.page-apothecary .gear-card--row {
    background-color: var(--dld-bg-base);
    border-color: rgba(139, 69, 19, 0.55);
}

body.page-apothecary .gear-card--row:hover {
    background-color: rgba(46, 26, 22, 0.98);
}

body.page-apothecary .gear-disclosure {
    background-color: var(--dld-bg-base);
    border-left-color: var(--dld-gold);
}

/* The Ledger (about): aged-paper warmth */
body.page-ledger {
    --page-tint-1: rgba(242, 232, 213, 0.05);
}

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.6; }
}

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