/* ===================================================================
   Cory Legendre — corylegendre.com
   Visual spectacle, single-page scroll.
   Theme palette: deep cinematic black w/ warm copper accent
   Fonts: Playfair Display (display) · Inter (body) · Quicksand (brand) · Crimson Pro (italic accents)
   =================================================================== */

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

:root {
    /* CORE PALETTE — dark cinematic, warm */
    --ink:          #07070a;
    --ink-deep:     #030305;
    --ink-soft:     #11111a;
    --paper:        #faf8f3;
    --paper-dim:    #d6d1c4;
    --text:         #f0ece2;
    --text-dim:     #9a958a;
    --text-faint:   #5e5a52;

    /* ACCENTS — copper, ember, sage-green-on-night */
    --copper:       #c78a4a;   /* hero accent — Cory's warmth */
    --copper-light: #e6b078;
    --ember:        #d65a2c;   /* deeper red-orange for emphasis */
    --sage:         #7faa86;   /* nod to me */
    --gold-glow:    #f0c98a;

    /* TYPE */
    --display:    'Playfair Display', serif;
    --display-it: 'Playfair Display', serif;
    --body:       'Inter', sans-serif;
    --brand:      'Quicksand', sans-serif;
    --serif:      'Crimson Pro', serif;

    /* SPACING + MOTION */
    --sp-1: .25rem;
    --sp-2: .5rem;
    --sp-3: 1rem;
    --sp-4: 1.5rem;
    --sp-5: 2rem;
    --sp-6: 3rem;
    --sp-8: 5rem;
    --sp-10: 8rem;
    --sp-12: 12rem;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out-soft: cubic-bezier(.16, 1, .3, 1);

    --container: 1280px;
    --gutter: max(1rem, 4vw);
}

html { scroll-behavior: smooth; }
html, body { background: var(--ink-deep); color: var(--text); }
body {
    font-family: var(--body);
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color .3s var(--ease), opacity .3s var(--ease); }
a:hover { color: var(--copper-light); }
img { display: block; max-width: 100%; height: auto; }

::selection { background: var(--copper); color: var(--ink); }

/* ===================================================================
   AMBIENT BACKGROUND — runs behind everything
   =================================================================== */
.ambient {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
}
.ambient__gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%,   rgba(199, 138, 74, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%,  rgba(214, 90, 44, 0.06)  0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(127, 170, 134, 0.05) 0%, transparent 60%),
        var(--ink-deep);
}
.ambient__grain {
    position: absolute; 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.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .35;
    mix-blend-mode: overlay;
}
.ambient__particles {
    position: absolute; inset: 0;
    /* will be populated by JS — tiny floating dust */
}
.particle {
    position: absolute;
    width: 2px; height: 2px;
    border-radius: 50%;
    background: var(--copper);
    opacity: .15;
    box-shadow: 0 0 4px var(--copper);
    pointer-events: none;
    will-change: transform, opacity;
}

/* ===================================================================
   TOP NAV
   =================================================================== */
.topnav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: var(--sp-3) var(--gutter);
    backdrop-filter: blur(20px);
    background: rgba(7, 7, 10, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: opacity .6s var(--ease);
    opacity: 0;
    pointer-events: none;
}
.topnav.visible { opacity: 1; pointer-events: auto; }

.topnav__brand-mark {
    font-family: var(--brand);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: .25em;
    color: var(--copper-light);
}
.topnav__links {
    display: flex; gap: var(--sp-5);
    font-family: var(--brand);
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.topnav__links a {
    color: var(--text-dim);
    position: relative;
    padding-bottom: 2px;
}
.topnav__links a::after {
    content: ''; position: absolute; left: 0; bottom: -2px;
    width: 0; height: 1px; background: var(--copper);
    transition: width .35s var(--ease);
}
.topnav__links a:hover::after,
.topnav__links a.active::after { width: 100%; }
.topnav__links a:hover { color: var(--copper-light); }

@media (max-width: 768px) {
    .topnav__links { gap: var(--sp-3); font-size: .7rem; }
}

/* ===================================================================
   GENERIC SCENE
   =================================================================== */
.scene {
    position: relative;
    min-height: 100vh;
    padding: var(--sp-10) var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scene__num {
    font-family: var(--display-it);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--copper);
    letter-spacing: .1em;
    margin-bottom: var(--sp-2);
}
.scene__num--light { color: var(--copper-light); }

.scene__title {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    color: var(--text);
    margin-bottom: var(--sp-5);
    letter-spacing: -0.02em;
}
.scene__title--light { color: var(--paper); }

.scene__lede {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    line-height: 1.6;
    color: var(--text-dim);
    max-width: 38em;
    margin-bottom: var(--sp-4);
}
.scene__lede--sub { font-size: 1rem; color: var(--text-faint); font-style: italic; }

.emph { color: var(--copper-light); font-weight: 500; }

/* ===================================================================
   SCENE 1: HERO
   =================================================================== */
.scene--hero {
    min-height: 100vh;
    padding: 0 var(--gutter);
    overflow: hidden;
    text-align: center;
    align-items: center;
}

.hero__starfield {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, .4), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(199, 138, 74, .5), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, .3), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(255, 255, 255, .2), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(199, 138, 74, .4), transparent),
        radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, .3), transparent);
    background-size: 800px 800px;
    animation: starDrift 80s linear infinite;
    opacity: .8;
}
@keyframes starDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(-100px, 50px); }
}

.hero__inner {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    gap: var(--sp-4);
    animation: heroRise 1.4s var(--ease-out-soft) both;
}

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

.hero__sig-wrap {
    margin-bottom: var(--sp-3);
    filter: drop-shadow(0 4px 32px rgba(199, 138, 74, .35));
}
.hero__sig {
    height: clamp(70px, 12vw, 130px);
    width: auto;
    opacity: .95;
}

.hero__name {
    font-family: var(--display);
    font-weight: 900;
    font-size: clamp(3.5rem, 12vw, 9rem);
    line-height: 0.88;
    letter-spacing: -0.03em;
    color: var(--text);
    text-shadow: 0 0 60px rgba(199, 138, 74, .2);
}
.hero__name-line { display: block; }
.hero__name-line--last {
    font-style: italic;
    color: var(--copper-light);
}

.hero__roles {
    font-family: var(--brand);
    font-weight: 400;
    font-size: clamp(.85rem, 1.2vw, 1.1rem);
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--text-dim);
    display: flex; gap: var(--sp-4);
    margin-top: var(--sp-3);
}
.hero__sep { color: var(--copper); }

.hero__lede {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    color: var(--copper-light);
    margin-top: var(--sp-5);
    opacity: .9;
}

.hero__scroll {
    position: absolute; bottom: var(--sp-5); left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
    font-family: var(--brand);
    font-size: .7rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--text-faint);
    z-index: 2;
}
.hero__scroll-arrow {
    width: 1px; height: 38px;
    background: linear-gradient(to bottom, var(--copper), transparent);
    animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50%      { transform: scaleY(0.5) translateY(20px); opacity: 0.3; }
}

/* ===================================================================
   SCENE 2: PAUSE — the biographical heart
   =================================================================== */
.scene--pause {
    background: linear-gradient(180deg, transparent 0%, rgba(7, 7, 10, .9) 50%, transparent 100%);
}
.pause__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}
.pause__tag {
    font-family: var(--brand);
    font-size: .8rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: var(--sp-5);
}
.pause__story {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    line-height: 1.85;
    color: var(--text);
}
.pause__story p { margin-bottom: var(--sp-3); }
.pause__story .pause__beat {
    color: var(--text-dim);
    font-style: italic;
    padding-left: var(--sp-3);
    border-left: 1px solid var(--copper);
    margin: var(--sp-4) 0;
}
.pause__story .pause__release {
    font-size: 1.3em;
    color: var(--copper-light);
    font-style: italic;
    margin-top: var(--sp-5);
}

/* ===================================================================
   SCENE 3: MUSIC
   =================================================================== */
.music__intro {
    max-width: var(--container);
    margin: 0 auto var(--sp-8);
    text-align: center;
}
.music__wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-4);
    max-width: var(--container);
    margin: 0 auto;
}
.music__card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ink-soft);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.music__card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
    filter: saturate(1.05) brightness(.9);
}
.music__card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(0, 0, 0, .8), 0 0 32px rgba(199, 138, 74, .15); }
.music__card:hover img { transform: scale(1.05); filter: saturate(1.1) brightness(1); }

.music__card-label {
    position: absolute;
    bottom: var(--sp-3); left: var(--sp-3); right: var(--sp-3);
    font-family: var(--brand);
    font-size: .85rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--paper);
    background: rgba(7, 7, 10, .7);
    padding: var(--sp-2) var(--sp-3);
    backdrop-filter: blur(8px);
    border-radius: 2px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.music__card:hover .music__card-label { opacity: 1; transform: translateY(0); }

.music__card--keystone {
    grid-row: span 2;
    grid-column: span 2;
}
@media (max-width: 768px) {
    .music__card--keystone { grid-row: auto; grid-column: span 2; }
}

.music__card-glow {
    position: absolute; inset: -2px;
    background: linear-gradient(45deg, var(--copper), var(--ember), var(--copper));
    z-index: -1;
    border-radius: 6px;
    opacity: .5;
    filter: blur(20px);
}

.music__card-badge {
    position: absolute; top: var(--sp-3); right: var(--sp-3);
    z-index: 3;
    font-family: var(--brand);
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--copper-light);
    background: rgba(0, 0, 0, .8);
    padding: var(--sp-1) var(--sp-3);
    border: 1px solid var(--copper);
    border-radius: 100px;
}

.music__cta-row {
    display: flex; gap: var(--sp-3); justify-content: center;
    margin-top: var(--sp-8);
    flex-wrap: wrap;
}
.music__streaming {
    text-align: center;
    margin-top: var(--sp-5);
    font-family: var(--brand);
    font-size: .9rem;
    color: var(--text-dim);
}
.music__streaming a { color: var(--text); border-bottom: 1px dotted var(--text-faint); padding-bottom: 1px; }
.music__streaming a:hover { color: var(--copper-light); border-color: var(--copper); }
.music__streaming span { color: var(--copper); margin: 0 var(--sp-2); }

/* ===================================================================
   SCENE 4: WORDS
   =================================================================== */
.scene--words {
    background: linear-gradient(180deg, transparent 0%, rgba(199, 138, 74, .03) 50%, transparent 100%);
}
.words__inner { max-width: 920px; margin: 0 auto; }
.words__books {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
    margin-top: var(--sp-8);
    margin-bottom: var(--sp-8);
}
@media (max-width: 760px) {
    .words__books { grid-template-columns: 1fr; }
}
.words__book {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}
.words__book-cover {
    aspect-ratio: 4 / 5;
    background: var(--ink-soft);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .7);
    transition: transform .5s var(--ease);
}
.words__book:hover .words__book-cover { transform: translateY(-4px) rotate(-1deg); }
.words__book-cover img { width: 100%; height: 100%; object-fit: cover; }
.words__book-meta h3 {
    font-family: var(--display);
    font-size: 1.5rem;
    color: var(--paper);
    margin-bottom: var(--sp-2);
}
.words__book-meta p {
    font-family: var(--serif);
    color: var(--text-dim);
    line-height: 1.7;
}
.words__radio {
    font-family: var(--serif);
    font-size: 1.15rem;
    color: var(--text-dim);
    text-align: center;
    padding-top: var(--sp-5);
    border-top: 1px solid rgba(199, 138, 74, .15);
    max-width: 600px;
    margin: 0 auto;
}
.words__radio em { color: var(--copper-light); font-size: 1.3em; display: block; margin-bottom: var(--sp-2); }

/* ===================================================================
   SCENE 5: VELORA — the spectacle
   =================================================================== */
.scene--velora {
    background: var(--ink-deep);
    overflow: hidden;
    text-align: center;
}
.velora__layer--bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(214, 90, 44, .08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(199, 138, 74, .06) 0%, transparent 60%);
    z-index: 0;
}
.velora__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
}

.velora__sub {
    font-family: var(--serif);
    font-style: italic;
    color: var(--copper-light);
    font-size: 1.3rem;
    margin-bottom: var(--sp-8);
}

.velora__hero {
    display: flex; flex-direction: column; align-items: center;
    gap: var(--sp-5);
    margin-bottom: var(--sp-8);
}
.velora__logo {
    width: clamp(180px, 22vw, 280px);
    filter: drop-shadow(0 10px 40px rgba(214, 90, 44, .35));
}
.velora__pitch {
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    line-height: 1.45;
    color: var(--paper);
    font-weight: 400;
}
.velora__pitch br { content: ''; }

.velora__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-5);
    max-width: 880px;
    margin: 0 auto var(--sp-8);
    padding: var(--sp-5) 0;
    border-top: 1px solid rgba(199, 138, 74, .15);
    border-bottom: 1px solid rgba(199, 138, 74, .15);
}
@media (max-width: 760px) {
    .velora__stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
}
.velora__stat { display: flex; flex-direction: column; gap: var(--sp-1); }
.velora__stat-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--copper-light);
    line-height: 1;
}
.velora__stat-label {
    font-family: var(--brand);
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.velora__cta-row {
    display: flex; gap: var(--sp-3); justify-content: center; align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--sp-8);
}

.velora__credo {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}
.velora__credo em { color: var(--copper-light); }

/* ===================================================================
   SCENE 6: VOICE — single quote
   =================================================================== */
.scene--voice {
    background: var(--ink);
    align-items: center;
    text-align: center;
}
.voice__quote {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--sp-6);
    position: relative;
}
.voice__quote p {
    font-family: var(--display-it);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.5;
    color: var(--text);
}
.voice__open, .voice__close {
    font-family: var(--display);
    font-size: 1.6em;
    color: var(--copper);
    line-height: 0;
    position: relative;
    top: 0.15em;
}
.voice__quote footer {
    margin-top: var(--sp-5);
    font-family: var(--brand);
    font-size: .9rem;
    letter-spacing: .2em;
    color: var(--copper-light);
    text-transform: uppercase;
}

/* ===================================================================
   SCENE 7: ALL PATHS
   =================================================================== */
.scene--paths {
    background:
        radial-gradient(ellipse at center top, rgba(199, 138, 74, .08), transparent 60%),
        var(--ink-deep);
    align-items: center;
    text-align: center;
}
.paths__title {
    font-family: var(--display);
    font-weight: 600;
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text);
    margin-bottom: var(--sp-8);
}

.paths__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-4);
    max-width: 1100px;
    margin: 0 auto var(--sp-8);
    width: 100%;
}
.paths__card {
    display: flex; flex-direction: column; gap: var(--sp-2);
    padding: var(--sp-5);
    background: rgba(17, 17, 26, .6);
    border: 1px solid rgba(199, 138, 74, .15);
    border-radius: 4px;
    transition: all .4s var(--ease);
    text-align: left;
    color: var(--text);
}
.paths__card:hover {
    background: rgba(199, 138, 74, .08);
    border-color: var(--copper);
    transform: translateY(-4px);
    color: var(--text);
}
.paths__card-label {
    font-family: var(--brand);
    font-size: .75rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--copper);
}
.paths__card-target {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--paper);
}
.paths__card-sub {
    font-family: var(--serif);
    font-size: .95rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin-top: var(--sp-1);
}

.paths__socials {
    display: flex; gap: var(--sp-4); justify-content: center;
    margin: var(--sp-5) 0;
}
.paths__socials a {
    color: var(--text-dim);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(199, 138, 74, .15);
    transition: all .3s var(--ease);
}
.paths__socials a:hover {
    color: var(--copper-light);
    border-color: var(--copper);
    transform: translateY(-3px);
}

.paths__footer {
    margin-top: var(--sp-6);
    padding-top: var(--sp-5);
    border-top: 1px solid rgba(255, 255, 255, .05);
    width: 100%;
    max-width: 600px;
}
.paths__footer-sig img {
    height: 60px;
    margin: 0 auto var(--sp-3);
    opacity: .6;
}
.paths__footer-copy {
    font-family: var(--brand);
    font-size: .8rem;
    color: var(--text-faint);
    letter-spacing: .1em;
}
.paths__footer-tag {
    font-family: var(--serif);
    font-style: italic;
    color: var(--text-faint);
    font-size: .85rem;
    margin-top: var(--sp-2);
}

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
    display: inline-flex; align-items: center;
    padding: var(--sp-3) var(--sp-5);
    font-family: var(--brand);
    font-weight: 500;
    font-size: .9rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all .35s var(--ease);
    border: 1px solid transparent;
    text-align: center;
}
.btn--primary {
    background: var(--copper);
    color: var(--ink);
}
.btn--primary:hover {
    background: var(--copper-light);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(199, 138, 74, .4);
}
.btn--ghost {
    border-color: rgba(255, 255, 255, .15);
    color: var(--text-dim);
}
.btn--ghost:hover {
    border-color: var(--copper);
    color: var(--copper-light);
}
.btn--ghost-light {
    border-color: rgba(255, 255, 255, .25);
    color: var(--paper-dim);
}
.btn--ghost-light:hover {
    border-color: var(--copper-light);
    color: var(--copper-light);
}
.btn--velora {
    background: linear-gradient(135deg, var(--ember), var(--copper));
    color: var(--ink);
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(214, 90, 44, .35);
}
.btn--velora:hover {
    transform: translateY(-3px);
    color: var(--ink);
    box-shadow: 0 16px 52px rgba(214, 90, 44, .5);
}
.btn--accent {
    background: var(--copper);
    color: var(--ink);
}
.btn--small {
    padding: calc(var(--sp-2) - 2px) var(--sp-4);
    font-size: .72rem;
    letter-spacing: .14em;
}

/* ===================================================================
   SCROLL REVEAL
   =================================================================== */
.scene > * { opacity: 1; }
.scene .scene__num,
.scene .scene__title,
.scene .scene__lede,
.scene .music__wall,
.scene .music__cta-row,
.scene .music__streaming,
.scene .words__books,
.scene .words__radio,
.scene .velora__hero,
.scene .velora__stats,
.scene .velora__cta-row,
.scene .velora__credo,
.scene .voice__quote,
.scene .paths__grid,
.scene .paths__socials,
.scene .paths__footer,
.scene .pause__story p {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease-out-soft), transform .9s var(--ease-out-soft);
}
.scene.is-visible .scene__num,
.scene.is-visible .scene__title,
.scene.is-visible .scene__lede,
.scene.is-visible .music__wall,
.scene.is-visible .music__cta-row,
.scene.is-visible .music__streaming,
.scene.is-visible .words__books,
.scene.is-visible .words__radio,
.scene.is-visible .velora__hero,
.scene.is-visible .velora__stats,
.scene.is-visible .velora__cta-row,
.scene.is-visible .velora__credo,
.scene.is-visible .voice__quote,
.scene.is-visible .paths__grid,
.scene.is-visible .paths__socials,
.scene.is-visible .paths__footer,
.scene.is-visible .pause__story p {
    opacity: 1;
    transform: translateY(0);
}
.scene.is-visible .scene__title       { transition-delay: .05s; }
.scene.is-visible .scene__lede        { transition-delay: .15s; }
.scene.is-visible .music__wall        { transition-delay: .25s; }
.scene.is-visible .velora__stats      { transition-delay: .35s; }
.scene.is-visible .velora__cta-row    { transition-delay: .5s; }
.scene.is-visible .velora__credo      { transition-delay: .65s; }
.scene.is-visible .pause__story p:nth-of-type(1) { transition-delay: .05s; }
.scene.is-visible .pause__story p:nth-of-type(2) { transition-delay: .15s; }
.scene.is-visible .pause__story p:nth-of-type(3) { transition-delay: .3s; }
.scene.is-visible .pause__story p:nth-of-type(4) { transition-delay: .45s; }
.scene.is-visible .pause__story p:nth-of-type(5) { transition-delay: .6s; }
.scene.is-visible .pause__story p:nth-of-type(6) { transition-delay: .75s; }
.scene.is-visible .pause__story p:nth-of-type(7) { transition-delay: .95s; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .scene > * { opacity: 1; transform: none; }
}

/* ===================================================================
   ADDITIONS / OVERRIDES — refactored to "entertainment-first" framing
   =================================================================== */

/* HERO PROMO PILL — themeable for new releases */
.hero__promo {
    margin-top: var(--sp-5);
    padding: var(--sp-3) var(--sp-5);
    border: 1px solid rgba(199, 138, 74, .25);
    border-radius: 4px;
    background: rgba(199, 138, 74, .03);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    max-width: 560px;
    transition: all .35s var(--ease);
}
.hero__promo:hover {
    background: rgba(199, 138, 74, .08);
    border-color: var(--copper);
    transform: translateY(-2px);
}
.hero__promo-eyebrow {
    font-family: var(--brand);
    font-size: .7rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--copper);
}
.hero__promo-title {
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    color: var(--paper);
    text-align: center;
}
.hero__promo-ctas {
    display: flex;
    gap: var(--sp-2);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--sp-2);
}
.hero__promo-ctas .btn {
    padding: var(--sp-2) var(--sp-4);
    font-size: .8rem;
}

/* STREAMS SECTION */
.scene--streams {
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(127, 170, 134, .03) 50%, transparent 100%);
    align-items: center;
}
.streams__layer-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(127, 170, 134, .06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(199, 138, 74, .04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}
.streams__inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.streams__brand {
    display: flex; flex-direction: column; align-items: center;
    gap: var(--sp-3);
    margin: var(--sp-6) 0;
}
.streams__brand-logo {
    width: clamp(140px, 18vw, 220px);
    filter: drop-shadow(0 8px 32px rgba(199, 138, 74, .25));
    transition: transform .5s var(--ease);
}
.streams__brand-logo:hover { transform: scale(1.04); }
.streams__brand-name {
    font-family: var(--brand);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    letter-spacing: .15em;
    color: var(--copper-light);
}
.streams__cta { margin-bottom: var(--sp-5); }
.streams__sub {
    font-family: var(--serif);
    color: var(--text-dim);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* VELORA PILLARS */
.velora__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
    max-width: 920px;
    margin: 0 auto var(--sp-8);
    padding: var(--sp-5) 0;
    border-top: 1px solid rgba(199, 138, 74, .15);
    border-bottom: 1px solid rgba(199, 138, 74, .15);
}
@media (max-width: 760px) { .velora__pillars { grid-template-columns: 1fr; } }
.velora__pillar {
    display: flex; flex-direction: column; gap: var(--sp-2);
    text-align: left;
    padding: 0 var(--sp-2);
}
.velora__pillar-h {
    font-family: var(--display);
    font-size: 1.15rem;
    color: var(--copper-light);
    font-weight: 600;
}
.velora__pillar-p {
    font-family: var(--serif);
    font-size: .95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* VOICE — civic + philanthropic + personal threads */
.scene--voice { background: transparent; text-align: left; align-items: stretch; }
.voice__inner { max-width: 880px; margin: 0 auto; }
.voice__threads {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    margin-top: var(--sp-6);
}
.voice__thread {
    padding: var(--sp-5);
    background: rgba(7, 7, 10, .4);
    border-left: 2px solid var(--copper);
    border-radius: 2px;
    transition: all .35s var(--ease);
}
.voice__thread:hover {
    background: rgba(199, 138, 74, .04);
    transform: translateX(4px);
}
.voice__thread h3 {
    font-family: var(--display);
    font-size: 1.4rem;
    color: var(--paper);
    margin-bottom: var(--sp-3);
    font-weight: 600;
}
.voice__thread p {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.75;
}
.voice__thread em { color: var(--copper-light); font-style: italic; }

/* Scroll reveal extras for new sections */
.scene .streams__brand,
.scene .streams__cta,
.scene .streams__sub,
.scene .velora__pillars,
.scene .voice__threads .voice__thread,
.scene .hero__promo {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease-out-soft), transform .9s var(--ease-out-soft);
}
.scene.is-visible .streams__brand,
.scene.is-visible .streams__cta,
.scene.is-visible .streams__sub,
.scene.is-visible .velora__pillars,
.scene.is-visible .voice__threads .voice__thread,
.scene.is-visible .hero__promo {
    opacity: 1; transform: translateY(0);
}
.scene.is-visible .streams__brand    { transition-delay: .2s; }
.scene.is-visible .streams__cta      { transition-delay: .35s; }
.scene.is-visible .streams__sub      { transition-delay: .45s; }
.scene.is-visible .velora__pillars   { transition-delay: .3s; }
.scene.is-visible .voice__threads .voice__thread:nth-child(1) { transition-delay: .1s; }
.scene.is-visible .voice__threads .voice__thread:nth-child(2) { transition-delay: .25s; }
.scene.is-visible .voice__threads .voice__thread:nth-child(3) { transition-delay: .4s; }

/* Release-theme hooks: add data-release-theme="album-name" on <body> to swap accent palette per release */
body[data-release-theme="reunited"]   { --copper: #d6a85c; --copper-light: #f0c98a; --ember: #b8642e; }
body[data-release-theme="transparent"]{ --copper: #88c8d8; --copper-light: #b0dde8; --ember: #5a98a8; }
body[data-release-theme="christmas"]  { --copper: #c43a3a; --copper-light: #f08888; --ember: #8a2020; --sage: #5a8e6e; }

/* Streams — career framing tweaks */
.streams__brand-tag {
    font-family: var(--serif);
    font-style: italic;
    color: var(--text-dim);
    font-size: 1rem;
    margin-top: -.5rem;
}
.streams__brand-fn {
    color: var(--copper);
    font-size: .75em;
    font-weight: 500;
    margin-left: 2px;
}
.streams__cta {
    display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap;
    margin-bottom: var(--sp-4);
}
.streams__schedule {
    font-family: var(--serif);
    color: var(--text-faint);
    font-size: 1rem;
    text-align: center;
    margin-bottom: var(--sp-6);
}
.streams__schedule em { color: var(--copper-light); }
.streams__footnote {
    font-family: var(--brand);
    font-size: .85rem;
    color: var(--text-dim);
    max-width: 580px;
    margin: var(--sp-5) auto 0;
    padding-top: var(--sp-3);
    border-top: 1px solid rgba(199, 138, 74, .12);
    line-height: 1.7;
    text-align: center;
}
.streams__footnote sup { color: var(--copper); margin-right: 2px; }
.streams__footnote a {
    color: var(--copper-light);
    border-bottom: 1px dotted var(--copper);
}
.streams__footnote a:hover { color: var(--copper); }

.streams__about {
    max-width: 640px;
    margin: var(--sp-6) auto 0;
    padding-top: var(--sp-4);
    border-top: 1px solid rgba(199, 138, 74, .12);
    text-align: center;
}
.streams__about-copy {
    font-family: var(--brand);
    font-size: .95rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: var(--sp-4);
}
.streams__about-copy a {
    color: var(--copper-light);
    border-bottom: 1px dotted var(--copper);
}
.streams__about-copy a:hover { color: var(--copper); }
.streams__about-cta {
    display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap;
}
