:root{
    --white:#ffffff;
    --black:#000000;
    --gold:#AA8A3C;
    --purple:#92278A;
    --ink:#111111;
    --muted:#6e6e6e;
    --line:#e7e3db;
    --soft:#f7f5f0;
    --max:1440px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    color:var(--ink);
    background:var(--white);
    font-family:Arial,Helvetica,sans-serif;
    -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input{font:inherit}

.announcement-bar{
    min-height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:5px 16px;
    background:#000;
    color:#fff;
    font-size:10px;
    font-weight:800;
    letter-spacing:.16em;
    text-align:center;
}

.site-header{
    position:relative;
    z-index:20;
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,.08);
}
.header-inner{
    width:min(calc(100% - 48px),var(--max));
    min-height:82px;
    margin:0 auto;
    display:grid;
    grid-template-columns:260px 1fr 160px;
    align-items:center;
    gap:24px;
}
.brand img{width:320px;height:auto}
.main-nav{display:flex;justify-content:center;gap:34px}
.main-nav a{
    position:relative;
    padding:30px 0 27px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.07em;
    text-transform:uppercase;
}
.main-nav a::after{
    content:"";
    position:absolute;
    left:0;right:0;bottom:20px;
    height:2px;
    background:var(--purple);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .2s ease;
}
.main-nav a:hover::after{transform:scaleX(1)}
.header-actions{display:flex;justify-content:flex-end;gap:14px;align-items:center}
.icon-link{
    position:relative;
    width:40px;height:40px;
    display:grid;place-items:center;
}
.icon-link img{width:23px;height:23px;object-fit:contain}
.cart-count{
    position:absolute;
    top:1px;right:-2px;
    min-width:16px;height:16px;
    padding:0 4px;
    display:grid;place-items:center;
    border-radius:999px;
    background:var(--purple);
    color:#fff;
    font-size:9px;
    font-weight:800;
}
.menu-button{display:none;border:0;background:transparent;padding:8px}
.menu-button span{display:block;width:23px;height:2px;background:#000;margin:5px 0}

.hero{
    position:relative;
    min-height:clamp(520px,58vw,790px);
    overflow:hidden;
    background:#111;
}
.hero-image{
    position:absolute;
    inset:0;
    width:100%;height:100%;
    object-fit:cover;
    object-position:center;
}
.hero-shade{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.42) 38%,rgba(0,0,0,.08) 68%,rgba(0,0,0,.18) 100%);
}
.hero-content{
    position:relative;
    z-index:2;
    width:min(calc(100% - 48px),var(--max));
    min-height:inherit;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    color:#fff;
}
.eyebrow{
    margin:0 0 14px;
    font-size:11px;
    font-weight:900;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#fff;
}
.eyebrow.dark{color:var(--purple)}
.hero h1{
    max-width:780px;
    margin:0;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(50px,6.3vw,94px);
    line-height:.93;
    font-weight:500;
    letter-spacing:-.045em;
}
.hero-copy{
    max-width:560px;
    margin:24px 0 28px;
    font-size:17px;
    line-height:1.6;
    color:rgba(255,255,255,.88);
}
.button{
    min-height:50px;
    padding:0 24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid transparent;
    font-size:11px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
    transition:all .2s ease;
}
.button-light{background:#fff;color:#000}
.button-light:hover{background:var(--gold);color:#000}
.button-dark{background:#000;color:#fff}
.button-dark:hover{background:var(--purple)}

.section{padding:86px max(24px,calc((100vw - var(--max))/2)) 96px}
.section-heading{
    margin-bottom:34px;
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:28px;
}
.section-heading h2,
.why-copy h2{
    margin:0;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(38px,4.8vw,66px);
    line-height:1;
    font-weight:500;
    letter-spacing:-.035em;
}
.text-link{
    padding-bottom:5px;
    border-bottom:1px solid #000;
    font-size:11px;
    font-weight:900;
    letter-spacing:.1em;
    text-transform:uppercase;
}
.text-link span{margin-left:8px}
.text-link.light{color:#fff;border-color:#fff}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px;
}
.product-image-wrap{
    position:relative;
    display:block;
    aspect-ratio:1/1;
    overflow:hidden;
    background:var(--soft);
}
.product-image-wrap img{
    width:100%;height:100%;
    object-fit:cover;
    transition:transform .45s ease;
}
.product-card:hover .product-image-wrap img{transform:scale(1.025)}
.product-badge{
    position:absolute;
    left:12px;bottom:12px;
    padding:8px 10px;
    background:#fff;
    color:#000;
    font-size:8px;
    font-weight:900;
    letter-spacing:.12em;
}
.product-meta{
    padding:16px 1px 0;
    display:flex;
    justify-content:space-between;
    gap:16px;
}
.product-artist{margin-bottom:5px;color:var(--muted);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.product-meta h3{margin:0;font-size:16px;line-height:1.2}
.product-price{font-size:13px;font-weight:800;white-space:nowrap}

.genre-section{
    padding:86px max(24px,calc((100vw - var(--max))/2)) 96px;
    background:#000;
    color:#fff;
}
.genre-heading .eyebrow{color:var(--gold)}
.genre-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:2px;
    background:rgba(255,255,255,.15);
}
.genre-card{
    min-height:210px;
    padding:24px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    position:relative;
    overflow:hidden;
    isolation:isolate;
}
.genre-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    opacity:.94;
    transition:transform .35s ease,opacity .35s ease;
}
.genre-card:hover::before{transform:scale(1.04);opacity:1}
.genre-1::before{background:linear-gradient(135deg,#AA8A3C,#6c5620)}
.genre-2::before{background:linear-gradient(135deg,#92278A,#4d1248)}
.genre-3::before{background:linear-gradient(135deg,#343434,#050505)}
.genre-4::before{background:linear-gradient(135deg,#c7ae72,#92278A)}
.genre-card span{
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(28px,3vw,45px);
    letter-spacing:-.03em;
}
.genre-card b{font-size:10px;letter-spacing:.1em;text-transform:uppercase}

.why-section{
    display:grid;
    grid-template-columns:1.04fr .96fr;
    min-height:690px;
}
.why-image{min-height:620px;overflow:hidden;background:#111}
.why-image img{width:100%;height:100%;object-fit:cover}
.why-copy{
    padding:70px clamp(36px,6vw,96px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    background:var(--soft);
}
.why-copy .lead{
    margin:26px 0 14px;
    font-family:Georgia,'Times New Roman',serif;
    font-size:24px;
    line-height:1.4;
}
.why-copy > p:not(.eyebrow):not(.lead){max-width:650px;color:#4f4f4f;font-size:15px;line-height:1.75}
.benefits{
    margin:28px 0 32px;
    display:grid;
    gap:0;
    border-top:1px solid #d9d3c7;
}
.benefits div{
    padding:16px 0;
    display:grid;
    grid-template-columns:150px 1fr;
    gap:20px;
    border-bottom:1px solid #d9d3c7;
}
.benefits strong{font-size:13px}
.benefits span{font-size:13px;color:#696969}

.statement-section{
    padding:110px 24px 120px;
    background:var(--purple);
    color:#fff;
    text-align:center;
}
.statement-section .eyebrow{color:#e7cf91}
.statement-section h2{
    max-width:1100px;
    margin:0 auto;
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(42px,5.6vw,82px);
    line-height:1.02;
    font-weight:500;
    letter-spacing:-.04em;
}

.site-footer{background:#0b0b0b;color:#fff;padding:70px max(24px,calc((100vw - var(--max))/2)) 28px}
.footer-top{display:grid;grid-template-columns:1.6fr .75fr .75fr 1.1fr;gap:54px;padding-bottom:55px}
.footer-brand img{width:260px;filter:brightness(0) invert(1)}
.footer-brand p,.newsletter p{max-width:350px;color:#aaa;font-size:13px;line-height:1.65}
.footer-column h3{margin:0 0 18px;font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--gold)}
.footer-column a{display:block;margin:10px 0;color:#d7d7d7;font-size:13px}
.newsletter form{display:flex;margin-top:18px;border-bottom:1px solid #777}
.newsletter input{flex:1;min-width:0;padding:12px 0;border:0;outline:0;background:transparent;color:#fff}
.newsletter button{border:0;background:transparent;color:#fff;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.1em;cursor:pointer}
.footer-bottom{padding-top:24px;border-top:1px solid #242424;display:flex;justify-content:space-between;color:#777;font-size:11px}
.footer-bottom div{display:flex;gap:20px}
.footer-bottom a{color:#aaa}
.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}

@media(max-width:1050px){
    .header-inner{grid-template-columns:220px 1fr 110px}
    .brand img{width:210px}
    .main-nav{gap:20px}
    .product-grid{grid-template-columns:repeat(2,1fr);row-gap:42px}
    .genre-grid{grid-template-columns:repeat(2,1fr)}
    .footer-top{grid-template-columns:1.4fr 1fr 1fr;gap:38px}
    .newsletter{grid-column:1/-1;max-width:520px}
}

@media(max-width:760px){
    .announcement-bar{font-size:9px}
    .header-inner{width:calc(100% - 28px);min-height:68px;grid-template-columns:42px 1fr 86px;gap:8px}
    .brand{justify-self:center}.brand img{width:min(210px,52vw)}
    .menu-button{display:block}
    .main-nav{
        position:absolute;
        top:68px;left:0;right:0;
        display:none;
        padding:12px 20px 22px;
        background:#fff;
        border-top:1px solid #eee;
        box-shadow:0 14px 26px rgba(0,0,0,.08);
    }
    .main-nav.open{display:block}
    .main-nav a{display:block;padding:14px 0;border-bottom:1px solid #eee}
    .main-nav a::after{display:none}
    .header-actions{gap:4px}.icon-link{width:36px;height:36px}.icon-link img{width:21px;height:21px}
    .hero{min-height:600px}
    .hero-image{object-position:center}
    .hero-shade{background:linear-gradient(0deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.35) 58%,rgba(0,0,0,.12) 100%)}
    .hero-content{width:calc(100% - 36px);justify-content:flex-end;padding-bottom:52px}
    .hero h1{font-size:clamp(46px,14vw,72px)}
    .hero-copy{font-size:15px;margin:18px 0 23px}
    .section,.genre-section{padding:62px 18px 68px}
    .section-heading{align-items:flex-start;margin-bottom:26px}
    .section-heading h2,.why-copy h2{font-size:42px}
    .section-heading .text-link{display:none}
    .product-grid{grid-template-columns:1fr 1fr;gap:12px;row-gap:34px}
    .product-meta{display:block}.product-price{margin-top:7px}
    .product-meta h3{font-size:14px}
    .product-badge{font-size:7px;left:8px;bottom:8px;padding:6px 7px}
    .genre-grid{grid-template-columns:1fr 1fr}
    .genre-card{min-height:150px;padding:18px}
    .genre-card span{font-size:28px}
    .why-section{grid-template-columns:1fr}
    .why-image{min-height:390px;max-height:500px}
    .why-copy{padding:54px 22px 62px}
    .why-copy .lead{font-size:21px}
    .benefits div{grid-template-columns:1fr;gap:4px}
    .statement-section{padding:80px 20px 88px}
    .statement-section h2{font-size:46px}
    .site-footer{padding:52px 20px 24px}
    .footer-top{grid-template-columns:1fr 1fr;gap:34px 22px}
    .footer-brand,.newsletter{grid-column:1/-1}
    .footer-brand img{width:230px}
    .footer-bottom{display:block}.footer-bottom div{margin-top:12px}
}

@media(max-width:430px){
    .product-grid{grid-template-columns:1fr}
    .genre-grid{grid-template-columns:1fr 1fr}
}
