@font-face{
    font-family:"Hanshand";
    src:
        url("hanshand.woff2") format("woff2"),
        url("hanshand.ttf") format("truetype");
    font-display:swap;
}

/* ==========================================================
   ========================================================== */
/* ------------------------------
   RESET
------------------------------ */
*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}
img{
    display:block;
    width:100%;
    height:auto;
}
a{
    color:inherit;
    text-decoration:none;
}
ul,
ol{
    list-style:none;
}
/* ------------------------------
   VARIABLES
------------------------------ */
:root{
    --bg:#faf8f5;
    --surface:#ffffff;
    --text:#111111;
    --muted:#6b6b6b;
    --border:#e7e7e7;
    --max-width:1320px;

    --narrow-width:760px;
    --section-space:180px;
    --transition:.35s ease;
}
/* ------------------------------
   BODY
------------------------------ */
body{
    background:var(--bg);
    color:var(--text);
    font-family:"Inter",sans-serif;
    font-size:18px;
    line-height:1.85;
    font-weight:400;
}
/* ------------------------------
   TYPOGRAPHY
------------------------------ */
h1,
h2,
h3,
h4{
    font-family:"Cormorant Garamond",serif;
    font-weight:500;
    letter-spacing:-.03em;
    color:var(--text);
}
h1{
    font-family:"Hanshand", serif;
    font-weight:400;
    letter-spacing:-0.015em;
    line-height:1.02;
    text-transform:uppercase;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    font-size:clamp(4.2rem,10vw,7.3rem);
    line-height:.95;
}
h2{
    font-size:clamp(2.6rem,6vw,4.5rem);

    margin-bottom:3rem;
    line-height:1;
}
h3{
    font-size:2rem;
    margin-bottom:.8rem;
}
h4{
    font-size:1.4rem;
    margin-bottom:1.2rem;
    letter-spacing:.05em;
}
p{
    margin-bottom:1.6rem;
}
.section-label{
    text-transform:uppercase;
    font-size:.78rem;
    letter-spacing:.25em;
    color:var(--muted);
    margin-bottom:2rem;
}
.large-copy{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2rem,4vw,3.2rem);
    line-height:1.35;
    max-width:900px;
}
.chapter-intro{
    font-weight:600;

}
/* ------------------------------
   LAYOUT
------------------------------ */
.container{
    width:min(92%,var(--max-width));
    margin-inline:auto;
}
.container.narrow{
    max-width:var(--narrow-width);
}
.section{
    padding:var(--section-space) 0;
}
/* ------------------------------
   SKIP LINK
------------------------------ */
.skip-link{
    position:absolute;
    left:-9999px;
}
.skip-link:focus{
    left:2rem;
    top:2rem;
    background:#fff;
    padding:1rem;
    z-index:999;
}
/* ------------------------------
   HERO
------------------------------ */
.hero{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:5rem 2rem;
    background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.92) 0%, rgba(255,255,255,0) 42%),
        radial-gradient(circle at 15% 20%, rgba(250,246,239,.75) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(244,239,231,.75) 0%, transparent 48%),
        linear-gradient(180deg,#fcfbf9 0%, #f8f4ee 55%, #ffffff 100%);
    }
.hero__inner{
    max-width:980px;
    animation:heroFade 1.4s ease forwards;
}
.eyebrow{
    text-transform:uppercase;
    letter-spacing:.35em;
    font-size:.78rem;
    color: #6d6d6d;
    margin-bottom:1.25rem;
}
.category{
    font-size:1rem;
    color:var(--muted);
    margin-bottom:2rem;
}
.artist{
    font-family:"Inter",sans-serif;
    font-size:1.15rem;
    font-weight:400;
    color:#707070;
    letter-spacing:0;
    margin-top:2rem;
    margin-bottom:.7rem;
}
.release-date{
    color:var(--muted);

    margin-bottom:4rem;
}
.scroll-indicator{
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    font-size:.9rem;
    letter-spacing:.15em;
    text-transform:uppercase;
    color:var(--muted);
    transition:var(--transition);
    animation:scrollFloat 2.8s ease-in-out infinite;
}
.scroll-indicator:hover{
    opacity:.6;
}

.hero__inner > *{
    opacity:0;
    animation:heroFade .9s ease forwards;
}
.hero__inner > *:nth-child(1){animation-delay:.05s;}
.hero__inner > *:nth-child(2){animation-delay:.15s;}
.hero__inner > *:nth-child(3){animation-delay:.3s;}
.hero__inner > *:nth-child(4){animation-delay:.45s;}
.hero__inner > *:nth-child(5){animation-delay:.6s;}
.hero__inner > *:nth-child(6){animation-delay:.75s;}

/* ------------------------------
   IMAGES
------------------------------ */
.image-section{
    width:100%;
}
.fullscreen-image{
    width:100%;
    line-height:0;
    overflow:hidden;
}

.fullscreen-image img{
    display:block;
    width:100%;
    height:min(80vh,900px);
    object-fit:cover;
}
/* ------------------------------
   EDITORIAL COPY
------------------------------ */

.editorial-copy p{
    font-size:1.12rem;
    color:#202020;
}
.signature{
    margin-top:3rem;
    font-style:italic;
}
/* ------------------------------
   THEMES
------------------------------ */
.themes{
    margin-top:5rem;
}
.themes h3{
    margin-bottom:2rem;
}
.themes ul{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1rem;
}
.themes li{
    padding-bottom:.9rem;
    border-bottom:1px solid var(--border);
}
/* ==========================================================
  
========================================================== */
/* ------------------------------
   JOURNEY
------------------------------ */
.tracklist{

    display:grid;
    gap:5rem;
    margin-top:5rem;
}
.tracklist li{
    border-top:1px solid var(--border);
    padding-top:3rem;
}
.tracklist h3{
    color:var(--muted);
    font-size:.95rem;
    text-transform:uppercase;
    letter-spacing:.22em;
    margin-bottom:.75rem;
    font-family:"Inter",sans-serif;
}
.tracklist h4{
    font-family:"Hanshand", serif;
    font-size:2.25rem;
    font-weight:400;
    letter-spacing:-0.01em;
    line-height:1.05;
    margin-bottom:1.5rem;
}
.tracklist p:last-child{
    margin-bottom:0;
}
/* ------------------------------
   VISUAL WORLD
------------------------------ */
.editorial-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2rem;
    margin-top:5rem;

}
.editorial-gallery figure{
    overflow:hidden;
    background:#f4f4f4;
}

.editorial-gallery figure{
    opacity:0;
    transform:translateY(22px);
    transition:
        opacity .8s ease,
        transform .9s cubic-bezier(.19,1,.22,1);
}
.editorial-gallery figure.visible{
    opacity:1;
    transform:translateY(0);
}

.editorial-gallery img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    transition:transform 1.4s cubic-bezier(.22,.61,.36,1), filter .8s ease;
}
.editorial-gallery figure:hover img{
    transform:scale(1.04);
}
/* ------------------------------
   PRESS
------------------------------ */
.press-list{
    margin-top:4rem;
    display:grid;
    gap:1rem;
}
.press-list li{
    border-bottom:1px solid var(--border);
}
.press-list a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1.4rem 0;
    transition:var(--transition);

}
.press-list a:hover{
    padding-left:.75rem;
    color:#000;
}
/* ------------------------------
   OFFICIAL LINKS
------------------------------ */
.links{
    display:grid;
    gap:1rem;
    margin-top:4rem;
}
.links a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1.2rem 0;
    border-bottom:1px solid var(--border);
    transition:var(--transition);
}
.links a:hover{
    padding-left:.75rem;
}
/* ------------------------------
   CREDITS
------------------------------ */
.credits-list{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:2rem 3rem;
    margin-top:4rem;

}
.credits-list dt{
    font-weight:600;
}
.credits-list dd{
    color:#333;
}
/* ------------------------------
   HIGHLIGHT SECTION
------------------------------ */
.section-highlight{
    background:#fff;
}
.section-highlight .editorial-copy{
    margin-top:2rem;
}
/* ------------------------------
   BLOCKQUOTE
------------------------------ */
blockquote{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(2rem,4vw,3.25rem);
    line-height:1.35;
    text-align:center;
    max-width:900px;
    margin-inline:auto;
}
/* ------------------------------
   FOOTER
------------------------------ */
.site-footer{
    padding:10rem 0 5rem;
    border-top:1px solid var(--border);

    background:#fff;
}
.footer-credit{
    margin-top:4rem;
    text-align:center;
    color:var(--muted);
    text-transform:uppercase;
    letter-spacing:.18em;
    font-size:.82rem;
}
/* ------------------------------
   LINKS
------------------------------ */
a{
    transition:var(--transition);
}
a:hover{
    opacity:.8;
}
/* ------------------------------
   EDITORIAL FADE
------------------------------ */
.fade-in{
    opacity:0;
    transform:translateY(18px) scale(.992);
    transition:
        opacity .85s cubic-bezier(.19,1,.22,1),
        transform .85s cubic-bezier(.19,1,.22,1);
    will-change:opacity,transform;
}

.fade-in.visible{
    opacity:1;
    transform:translateY(0) scale(1);
}

/* Cinematic reveal for full-width images */
.image-section .fullscreen-image{
    overflow:hidden;
}

.image-section .fullscreen-image img{
    transform:scale(1.12);
    opacity:0;
    transition:
        transform 2.2s cubic-bezier(.19,1,.22,1),
        opacity 1.1s ease;
    will-change:transform,opacity;
}

.image-section.visible .fullscreen-image img{
    transform:scale(1);
    opacity:1;
}


/* ==========================================================
  
========================================================== */
/* ------------------------------
   TABLET
------------------------------ */
@media (max-width:1024px){
    :root{
        --section-space:140px;
    }
    body{
        font-size:17px;
    }
    .container{
        width:min(94%,var(--max-width));
    }
    .editorial-gallery{
        gap:1.5rem;
    }
    .credits-list{
        grid-template-columns:180px 1fr;
        gap:1.5rem 2rem;
    }
}
/* ------------------------------
   MOBILE
------------------------------ */
@media (max-width:768px){
    :root{
        --section-space:100px;
    }
    body{
        font-size:16px;

        line-height:1.75;
    }
    h1{
        font-size:3.5rem;
    }
    h2{
        font-size:2.5rem;
    }
    h3{
        font-size:1.4rem;
    }
    .hero{
        min-height:90vh;
        padding:4rem 1.5rem;
    }
    .artist{
        font-size:1.18rem;
    }
    .release-date{
        margin-bottom:3rem;
    }
    .section{
        padding:var(--section-space) 0;
    }
    .themes ul{
        grid-template-columns:1fr;
    }
    .editorial-gallery{
        grid-template-columns:1fr;
    }

    .credits-list{
        grid-template-columns:1fr;
        gap:.75rem;
    }
    .credits-list dt{
        margin-top:1.5rem;
    }
    .links a{
        flex-direction:column;
        align-items:flex-start;
        gap:.3rem;
    }
    .press-list a{
        flex-direction:column;
        align-items:flex-start;
        gap:.3rem;
    }
    blockquote{
        font-size:2rem;
    }
}
/* ------------------------------
   SMALL PHONES
------------------------------ */
@media (max-width:480px){
    h1{
        font-size:2.8rem;
    }
    h2{
        font-size:2rem;
    }

    .hero{
        padding-inline:1.25rem;
    }
    .container{
        width:92%;
    }
    .scroll-indicator{
        font-size:.8rem;
    }
}
/* ------------------------------
   LARGE SCREENS
------------------------------ */
@media (min-width:1600px){
    :root{
        --max-width:1500px;
    }
    body{
        font-size:19px;
    }
}
/* ------------------------------
   IMAGE LOADING
------------------------------ */
img{
    background:#f7f5f2;
    transition:opacity .35s ease;
}
/* ------------------------------
   TEXT SELECTION
------------------------------ */
::selection{
    background:#111;
    color:#fff;

}
/* ------------------------------
   KEYBOARD FOCUS
------------------------------ */
a:focus-visible{
    outline:2px solid #111;
    outline-offset:4px;
}
/* ------------------------------
   REDUCED MOTION
------------------------------ */
@media (prefers-reduced-motion:reduce){
    html{
        scroll-behavior:auto;
    }
    *{
        animation:none !important;
        transition:none !important;
    }
}
/* ------------------------------
   PRINT
------------------------------ */
@media print{
    body{
        background:#fff;
        color:#000;
    }
    .scroll-indicator{
        display:none;
    }
    .fade-in{
        opacity:1;

        transform:none;
    }
    a::after{
        content:" (" attr(href) ")";
        font-size:.8em;
    }
}
/* ------------------------------
   UTILITIES
------------------------------ */
.hidden{
    display:none !important;
}
.center{
    text-align:center;
}
.mt-0{
    margin-top:0 !important;
}
.mb-0{
    margin-bottom:0 !important;
}
.mt-lg{
    margin-top:6rem;
}
.mb-lg{
    margin-bottom:6rem;
}
/* ==========================================================
   END OF FILE
========================================================== */

/* Version 2 polish */
.hero{background:#faf8f5;}
#letter{background:#f5f2ec;}
#journey{background:#ffffff;}
#visual-world{background:#171717;color:#f5f5f5;}
#visual-world h2,#visual-world .section-label,#visual-world .large-copy{color:#f5f5f5;}
#creative-process{background:#f6f3ee;}
#about{background:#fcfbf9;}
#press{background:#f5f5f3;}
#listen{background:#111;color:#fff;}
#listen h2,#listen .section-label,#listen a{color:#fff;}
#credits{background:#f7f4ef;}
#fyc,.site-footer{background:#faf8f5;}
.hero__inner{max-width:980px;}
h1{letter-spacing:-.04em;}
.editorial-copy p{line-height:1.95;}
.section{padding:120px 0;}
@media (max-width:768px){.section{padding:70px 0;}}


/* ------------------------------
   HERO INTRO
------------------------------ */
@keyframes heroFade{
    from{opacity:0;}
    to{opacity:1;}
}

/* ------------------------------
   SCROLL INDICATOR
------------------------------ */
@keyframes scrollFloat{
    0%{transform:translateY(0);}
    50%{transform:translateY(8px);}
    100%{transform:translateY(0);}
}

/* Mobile keeps subtle fade (no translateY to avoid Safari bug) */

/* ==========================================================
   VERSION 4 FINAL POLISH
========================================================== */

/* Softer editorial rhythm */
body{
    line-height:1.9;
}

h1{
    letter-spacing:-0.05em;
}

h2{
    margin-bottom:2.5rem;
}

.section-label{
    opacity:.75;
}

/* Premium link interactions */
.links a,
.press-list a{
    transition:
        color .3s ease,
        padding-left .35s ease,
        opacity .35s ease;
}

.links a:hover,
.press-list a:hover{
    opacity:1;
}

/* Editorial gallery */
.editorial-gallery figure{
    border-radius:2px;
}


.editorial-gallery figure{
    opacity:0;
    transform:translateY(22px);
    transition:
        opacity .8s ease,
        transform .9s cubic-bezier(.19,1,.22,1);
}
.editorial-gallery figure.visible{
    opacity:1;
    transform:translateY(0);
}

.editorial-gallery img{
    filter:saturate(1) contrast(1);
}

.release-date{
    letter-spacing:.03em;
}

/* Better reading width */
.editorial-copy{
    max-width:720px;
}

/* Mobile polish */
@media (max-width:768px){

    .editorial-copy{
        max-width:100%;
    }

    .editorial-copy p{
        font-size:1.05rem;
    }

    .tracklist{
        gap:4rem;
    }

    .editorial-gallery{
        gap:1.25rem;
    }

}


/* Hanshand final refinement */

@media (max-width:768px){
    h1{
        font-size:clamp(3.2rem,12vw,4.8rem);
        line-height:1.18;
        letter-spacing:-0.03em;
        text-align:center;
        text-wrap:balance;
    }

    .tracklist h4{
        font-size:2rem;
    }
}


/* Final hero light */
.hero{
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(255,255,255,.65) 0%,
            rgba(255,255,255,0) 58%
        );
}


/* Production image polish */
.fullscreen-image{
    background:#f7f5f2;
}
.editorial-gallery figure{
    background:#f7f5f2;
}


/* ==========================================================
   FYC / GRAMMY HERO (v18)
========================================================== */

.grammy-logo{
    display:block;
    width:72px;
    height:auto;
    margin:0 auto 1.15rem;
    opacity:.92;
}

.hero .section-label:first-of-type{
    margin-bottom:.75rem;
    letter-spacing:.22em;
    font-size:.82rem;
}

.eyebrow{
    margin-top:.35rem;
}

@media (max-width:768px){
    .grammy-logo{
        width:60px;
        margin-bottom:1rem;
    }

    .hero .section-label:first-of-type{
        font-size:.74rem;
        margin-bottom:.6rem;
    }
}


/* ==========================================================
   FINAL FYC EDITORIAL POLISH
========================================================== */

.hero{
    min-height:100svh;
    padding-top:6rem;
    padding-bottom:5rem;
}

.hero__inner{
    max-width:860px;
}

.grammy-logo{
    display:block;
    width:82px;
    height:auto;
    margin:0 auto 1.35rem;

    opacity:.92;

    background:transparent;
    box-shadow:none;
    filter:none;

    mix-blend-mode:normal;

    image-rendering:auto;
    -webkit-user-drag:none;
    user-select:none;
}

.hero .section-label:first-of-type{
    font-size:.76rem;
    text-transform:uppercase;
    letter-spacing:.30em;
    color:#8a7b53;
    margin-bottom:.9rem;
}

.eyebrow{
    font-size:.82rem;
    letter-spacing:.42em;
    color:#7c7c7c;
    margin-bottom:1.8rem;
}

.category{
    font-size:1.15rem;
    margin-bottom:2.8rem;
}

h1{
    line-height:.9;
    letter-spacing:-.06em;
    margin-bottom:2rem;
}

.artist{
    font-size:1.3rem;
    margin-top:2.4rem;
    margin-bottom:.5rem;
}

.release-date{
    font-size:1.02rem;
    margin-bottom:4.8rem;
}

.scroll-indicator{
    letter-spacing:.28em;
}

@media (max-width:768px){
    .hero{
        padding-top:5rem;
        padding-bottom:4rem;
    }

    .hero__inner{
        max-width:100%;
    }

    .grammy-logo{
        width:64px;
        margin-bottom:1rem;
    }

    .eyebrow{
        letter-spacing:.32em;
        margin-bottom:1.4rem;
    }

    .category{
        font-size:1.05rem;
        margin-bottom:2rem;
    }

    .artist{
        font-size:1.15rem;
    }

    .release-date{
        margin-bottom:3.6rem;
    }
}


/* ==========================================================
   FINAL LOCKED POLISH (v20)
========================================================== */

/* Hero title breathes more */
h1{
    line-height:1.08;
    margin-bottom:2.6rem;
}

/* Slightly tighter personal note */
#letter .editorial-copy{
    max-width:640px;
}
#letter .editorial-copy p{
    font-size:1.04rem;
    line-height:1.8;
    margin-bottom:1.25rem;
}
#letter .signature{
    margin-top:2rem;
}

/* Smoother ending */
#fyc{
    padding-bottom:5rem;
}
.site-footer{
    padding-top:5rem;
    padding-bottom:4rem;
}
.footer-credit{
    margin-top:0;
}

/* Mobile refinements */
@media (max-width:768px){
    h1{
        line-height:1.12;
        margin-bottom:2.2rem;
    }

    #letter .editorial-copy p{
        font-size:1rem;
        line-height:1.75;
    }

    #fyc{
        padding-bottom:4rem;
    }

    .site-footer{
        padding-top:4rem;
        padding-bottom:3rem;
    }
}


/* ==========================================================
   FYC ONE-SHEET OPTIMIZATION (v21)
========================================================== */

/* Hero is cleaner without Grammy logo */
.hero__inner{
    max-width:780px;
}

.eyebrow{
    margin-top:0;
    margin-bottom:1.2rem;
}

.category{
    margin-bottom:2rem;
}

h1{
    margin-bottom:2.2rem;
}

/* Compact Tracklist */
.tracklist{
    gap:2.2rem;
    margin-top:3rem;
}

.tracklist li{
    padding-top:1.6rem;
}

.tracklist h3{
    font-size:.78rem;
    margin-bottom:.35rem;
    letter-spacing:.24em;
}

.tracklist h4{
    font-size:1.55rem;
    margin-bottom:.45rem;
}

.tracklist .chapter-intro{
    font-weight:400;
    color:#4a4a4a;
    line-height:1.6;
    margin-bottom:0;
    max-width:42rem;
}

/* Short About section */
#about .editorial-copy{
    max-width:640px;
}

#about .editorial-copy p{
    line-height:1.75;
    margin-bottom:1rem;
}

/* Better flow after shorter content */
#about,
#listen,
#credits,
#fyc{
    padding-top:100px;
    padding-bottom:100px;
}

@media (max-width:768px){
    .tracklist{
        gap:1.6rem;
        margin-top:2rem;
    }

    .tracklist li{
        padding-top:1.25rem;
    }

    .tracklist h4{
        font-size:1.35rem;
        margin-bottom:.3rem;
    }

    .tracklist .chapter-intro{
        font-size:.95rem;
        line-height:1.55;
    }

    #about,
    #listen,
    #credits,
    #fyc{
        padding-top:70px;
        padding-bottom:70px;
    }
}


/* ==========================================================
   FYC ONE-SHEET v22
========================================================== */

/* Compact hero */
.hero.hero--compact{
    min-height:82svh;
    padding-top:3.5rem;
    padding-bottom:2.5rem;
}
.hero.hero--compact .hero__inner{
    max-width:700px;
}
.hero.hero--compact .eyebrow{margin-bottom:.8rem;font-size:.78rem;}
.hero.hero--compact .category{font-size:1.05rem;margin-bottom:1.3rem;}
.hero.hero--compact h1{
    font-size:clamp(3.6rem,8vw,6rem);
    line-height:1.02;
    margin-bottom:1.4rem;
}
.hero.hero--compact .artist{margin-top:1.3rem;font-size:1.15rem;}
.hero.hero--compact .release-date{margin-bottom:2.8rem;font-size:.98rem;}

/* Album artwork */
.album-artwork{
    width:min(88vw,560px);
    aspect-ratio:1/1;
    margin:0 auto;
    overflow:hidden;
    border-radius:6px;
    line-height:0;
}
.album-artwork img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Two-column tracklist */
.tracklist.tracklist-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:1.8rem 3rem;
    margin-top:2.5rem;
}
.tracklist.tracklist-grid li{
    border-top:1px solid var(--border);
    padding-top:1.2rem;
}
.tracklist.tracklist-grid .chapter-intro{
    max-width:none;
}

@media (max-width:768px){
.hero.hero--compact{
 min-height:88svh;
 padding-top:4rem;
 padding-bottom:3rem;
}
.hero.hero--compact h1{
    font-size:clamp(2.65rem,8vw,3.6rem);
    line-height:1;
    letter-spacing:-0.045em;
    max-width:100%;
    white-space:nowrap;
    text-align:center;
    margin-inline:auto;
}
.album-artwork{
 width:min(90vw,420px);
}
.tracklist.tracklist-grid{
 grid-template-columns:1fr;
 gap:1.4rem;
}
}


/* ==========================================================
   FINAL MOBILE POLISH (v24)
========================================================== */

@media (max-width:768px){

.hero.hero--compact h1{
    white-space:normal;
    font-size:clamp(2.55rem,10vw,3.35rem);
    line-height:1.08;
    letter-spacing:-0.04em;
    max-width:100%;
}

.hero.hero--compact h1 br{
    display:block;
}

.hero.hero--compact h1 span{
    display:block;
    margin-top:.12em;
}

.links{
    gap:.35rem;
    margin-top:2rem;
}

.links a{
    padding:.7rem 0;
}

.credits-list{
    margin-top:2rem;
    gap:.35rem 1rem;
}

.credits-list dt{
    margin-top:.8rem;
    font-size:.95rem;
}

.credits-list dd{
    line-height:1.55;
}

.site-footer{
    padding-top:3rem;
    padding-bottom:2.5rem;
}

}



/* ==========================================================
   TRACKLIST COMPACT (v25)
========================================================== */

.tracklist.tracklist-grid{
    gap:1.15rem 2.2rem;
    margin-top:1.8rem;
}

.tracklist.tracklist-grid li{
    padding-top:.9rem;
}

.tracklist.tracklist-grid h3{
    margin-bottom:.18rem;
    font-size:.74rem;
    letter-spacing:.22em;
}

.tracklist.tracklist-grid h4{
    font-size:1.42rem;
    margin-bottom:.22rem;
    line-height:1.02;
}

.tracklist.tracklist-grid .chapter-intro{
    font-size:.93rem;
    line-height:1.45;
}

@media (max-width:768px){

.tracklist.tracklist-grid{
    gap:.95rem;
    margin-top:1.4rem;
}

.tracklist.tracklist-grid li{
    padding-top:.75rem;
}

.tracklist.tracklist-grid h3{
    margin-bottom:.1rem;
}

.tracklist.tracklist-grid h4{
    font-size:1.28rem;
    margin-bottom:.15rem;
}

.tracklist.tracklist-grid .chapter-intro{
    font-size:.9rem;
    line-height:1.4;
}

}


/* ==========================================================
   FINAL LOCK (v26)
========================================================== */

@media (max-width:768px){

.hero.hero--compact h1{
    line-height:1.06;
}

.hero.hero--compact h1 span{
    display:block;
    margin-top:.24em; /* more breathing room */
}

.scroll-indicator{
    margin-top:1.2rem;
}

.hero.hero--compact .release-date{
    margin-bottom:2rem; /* reduce empty gap before artwork */
}

}

/* Remove chapter labels completely */
.tracklist.tracklist-grid h3{
    display:none;
}

/* Tighter cards after removing chapter labels */
.tracklist.tracklist-grid{
    margin-top:1.2rem;
}

.tracklist.tracklist-grid li{
    padding-top:.65rem;
}

.tracklist.tracklist-grid h4{
    margin-bottom:.3rem;
}


/* ==========================================================
   FINAL LOCK v27
========================================================== */

/* Hero refinements */
.hero.hero--compact h1{
    color:#2b2b2b;
    font-size:clamp(3.9rem,8.2vw,6.3rem);
    line-height:1.08;
}

.artist{
    margin-bottom:.25rem;
}

.release-date{
    margin-bottom:1.55rem;
}

.scroll-indicator{
    margin-top:.55rem;
}

/* Mobile */
@media (max-width:768px){

.hero.hero--compact h1{
    color:#2b2b2b;
    font-size:clamp(2.8rem,9vw,3.7rem);
    line-height:1.10;
    letter-spacing:-0.035em;
}

.hero.hero--compact h1 span{
    margin-top:.34em;
}

.artist{
    margin-bottom:.18rem;
}

.release-date{
    margin-bottom:1rem;
}

.scroll-indicator{
    margin-top:.35rem;
}

}


/* ==========================================================
   FYC ONE SHEET v28
========================================================== */

/* Compact poster-style tracklist */
.tracklist.tracklist-grid{
    gap:1.35rem 2.6rem;
    margin-top:1.4rem;
}

.tracklist.tracklist-grid li{
    padding-top:.9rem;
}

.tracklist.tracklist-grid .track-row{
    display:flex;
    align-items:baseline;
    gap:.55rem;
    flex-wrap:wrap;
}

.tracklist.tracklist-grid h4{
    flex:0 0 auto;
    margin:0;
    font-size:1.38rem;
    line-height:1;
}

.tracklist.tracklist-grid .chapter-intro{
    flex:1 1 260px;
    margin:0;
    font-size:.92rem;
    line-height:1.55;
    color:#555;
    font-weight:400;
}

.tracklist.tracklist-grid .chapter-intro::before{
    content:"—";
    margin-right:.45rem;
    color:#999;
}

@media (max-width:768px){

.tracklist.tracklist-grid{
    gap:1.1rem;
    margin-top:1.1rem;
}

.tracklist.tracklist-grid .track-row{
    display:block;
}

.tracklist.tracklist-grid h4{
    margin-bottom:.28rem;
    font-size:1.34rem;
}

.tracklist.tracklist-grid .chapter-intro{
    font-size:.92rem;
    line-height:1.48;
}

.tracklist.tracklist-grid .chapter-intro::before{
    content:"";
    margin:0;
}

}


/* ==========================================================
   FINAL ONE SHEET v29
========================================================== */

/* Overall vertical rhythm */
:root{
  --section-space:88px;
}

.hero.hero--compact{
  min-height:72svh;
  padding-top:2.8rem;
  padding-bottom:1.8rem;
}

.hero.hero--compact .hero__inner{
  max-width:680px;
}

.hero.hero--compact .release-date{
  margin-bottom:.8rem;
}

.scroll-indicator{
  margin-top:.15rem;
}

/* Smaller artwork */
.album-artwork{
  width:min(78vw,460px);
}

/* Tighter sections */
#journey,
#about,
#listen,
#credits,
#fyc{
  padding-top:72px;
  padding-bottom:72px;
}

/* Compact credits */
.credits-list{
  margin-top:2rem;
  gap:.55rem 2rem;
}
.credits-list dt{
  font-size:.95rem;
}
.credits-list dd{
  line-height:1.45;
}

/* Footer */
.site-footer{
  padding-top:2.5rem;
  padding-bottom:2rem;
}

/* Tracklist */
.tracklist.tracklist-grid{
  margin-top:1rem;
  gap:1.2rem 2rem;
}
.tracklist.tracklist-grid li{
  padding-top:.8rem;
}

@media (max-width:768px){
  :root{ --section-space:64px; }

  .hero.hero--compact{
    min-height:68svh;
    padding-top:2.5rem;
    padding-bottom:1.5rem;
  }

  .album-artwork{
    width:min(82vw,340px);
  }

  #journey,
  #about,
  #listen,
  #credits,
  #fyc{
    padding-top:56px;
    padding-bottom:56px;
  }

  .credits-list{
    gap:.35rem;
    margin-top:1.5rem;
  }

  .site-footer{
    padding-top:2rem;
    padding-bottom:1.75rem;
  }
}


/* ==========================================================
   FINAL ONE SHEET v30
========================================================== */

/* Hero title: slightly tighter two-line spacing on mobile */
@media (max-width:768px){
  .hero.hero--compact h1 span{
    margin-top:.22em;
  }

  .release-date{
    margin-bottom:.75rem;
  }
}

/* Tracklist: handwritten titles only */
.tracklist.tracklist-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:.45rem;
  margin-top:1.2rem;
  justify-items:center;
}

.tracklist.tracklist-grid li{
  border:none;
  padding:0;
  text-align:center;
}

.tracklist.tracklist-grid .track-row{
  display:block;
}

.tracklist.tracklist-grid h4{
  font-size:1.18rem;
  margin:0;
  line-height:1.15;
  font-weight:400;
  color:#4a4a4a;
  letter-spacing:-0.01em;
}

.tracklist.tracklist-grid .chapter-intro{
  display:none;
}

/* Official links more compact */
.links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.35rem 2rem;
  margin-top:1.5rem;
}

.links a{
  padding:.55rem 0;
}

@media (max-width:768px){
  .links{
    grid-template-columns:1fr;
    gap:.25rem;
  }

  .links a{
    padding:.45rem 0;
  }
}


/* ==========================================================
   FINAL TRACKLIST POLISH (v32)
========================================================== */

#journey .section-label{
    text-align:center;
    margin-bottom:2.2rem;
}

.tracklist.tracklist-grid{
    justify-items:center;
    text-align:center;
    gap:.85rem;
    margin-top:.4rem;
}

.tracklist.tracklist-grid li{
    border:none;
    padding:0;
}

.tracklist.tracklist-grid h4{
    font-size:1.08rem;
    line-height:1.34;
    letter-spacing:-0.01em;
    color:#555250;
    margin:0;
}

@media (max-width:768px){
    #journey .section-label{
        margin-bottom:1.8rem;
    }

    .tracklist.tracklist-grid{
        gap:.95rem;
    }

    .tracklist.tracklist-grid h4{
        font-size:1.02rem;
        line-height:1.38;
    }
}
