@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;
}
