:root{
    --black:#080808;
    --charcoal:#151515;
    --gold:#d7b46a;
    --cream:#f5efe2;
    --muted:#a8a8a8;
    --white:#ffffff;
    --line:#282828;
}

*{
    box-sizing:border-box;
}

html{
    background:var(--black);
}

body{
    margin:0;
    color:var(--white);
    background:var(--black);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.site-header{
    border-bottom:1px solid var(--line);
    background:#0d0d0d;
}

.wrap,
.hero-inner,
.products-section,
.footer-inner{
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
}

.wrap{
    min-height:84px;
    display:flex;
    align-items:center;
    gap:18px;
}

.brand-mark{
    width:54px;
    height:54px;
    border:2px solid var(--gold);
    display:grid;
    place-items:center;
    font-weight:800;
    color:var(--gold);
    border-radius:14px;
}

h1,
h2,
h3,
p{
    margin-top:0;
}

h1{
    font-size:24px;
    margin-bottom:0;
}

.eyebrow{
    margin:0 0 3px;
    font-size:11px;
    letter-spacing:.18em;
    font-weight:800;
    color:var(--gold);
}

.eyebrow.dark{
    color:#796238;
}

.hero{
    background:
        radial-gradient(circle at 70% 25%,rgba(215,180,106,.14),transparent 34%),
        linear-gradient(180deg,#101010,#070707);
}

.hero-inner{
    min-height:410px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:70px 0;
}

.hero-kicker{
    margin-bottom:10px;
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:.16em;
    font-weight:800;
    font-size:13px;
}

.hero h2{
    font-size:clamp(46px,7vw,86px);
    line-height:.95;
    letter-spacing:-.045em;
    margin-bottom:22px;
}

.hero p:not(.hero-kicker){
    max-width:620px;
    color:#c9c9c9;
    font-size:19px;
    line-height:1.6;
}

.dev-badge{
    width:max-content;
    margin-top:18px;
    padding:9px 12px;
    border:1px solid #554728;
    color:#cdb172;
    font-size:11px;
    letter-spacing:.12em;
    font-weight:800;
    border-radius:999px;
}

.products-section{
    padding:72px 0 90px;
}

.section-heading{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:end;
    margin-bottom:32px;
}

.section-heading h2{
    margin-bottom:0;
    color:var(--cream);
    font-size:38px;
}

.section-copy{
    margin-bottom:0;
    color:#8f8f8f;
    line-height:1.65;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.product-card{
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:18px;
    background:#111;
}

.image-placeholder{
    aspect-ratio:1 / 1;
    display:grid;
    place-items:center;
    padding:30px;
    background:
        radial-gradient(circle at center,rgba(215,180,106,.16),transparent 50%),
        #0b0b0b;
    color:#6d5c38;
    text-align:center;
    text-transform:uppercase;
    letter-spacing:.14em;
    font-size:11px;
    font-weight:800;
}

.product-body{
    padding:22px;
}

.product-type{
    margin-bottom:8px;
    color:var(--gold);
    font-size:11px;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.product-body h3{
    min-height:54px;
    margin-bottom:18px;
    font-size:20px;
    line-height:1.35;
}

.coming-soon{
    padding-top:16px;
    border-top:1px solid var(--line);
    color:#7f7f7f;
    font-size:13px;
}

footer{
    border-top:1px solid var(--line);
}

.footer-inner{
    min-height:100px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    color:#737373;
    font-size:13px;
}

.footer-inner strong{
    color:#b9b9b9;
}

@media (max-width:900px){
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-heading{
        grid-template-columns:1fr;
    }
}

@media (max-width:600px){
    .wrap,
    .hero-inner,
    .products-section,
    .footer-inner{
        width:min(100% - 26px,1180px);
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .hero-inner{
        min-height:360px;
        padding:55px 0;
    }

    .footer-inner{
        flex-direction:column;
        justify-content:center;
    }
}

.product-card-image{
    width:100%;
    display:block;
    aspect-ratio:1 / 1;
    object-fit:contain;
    background:#0b0b0b;
}

.shop-product-link{
    display:inline-block;
    color:#d7b46a;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
}

.shop-product-link:hover{
    color:#fff;
}
