:root {
    --bg:#0b0f17;
    --panel:#111827;
    --panel2:#151f31;
    --text:#f8fafc;
    --muted:#a7b0c0;
    --gold:#d6a84f;
    --gold2:#f4d27a;
    --line:rgba(255,255,255,.12);
    --shadow:0 22px 80px rgba(0,0,0,.36);
    --radius:26px
}

* {
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    margin:0;
    font-family:Inter,Arial,sans-serif;
    background:linear-gradient(180deg,#08101d 0%,#0b0f17 45%,#070b12 100%);
    color:var(--text);
    line-height:1.6
}

img {
    display:block;
    max-width:100%;
    object-fit:cover
}

.top {
    position:sticky;
    top:0;
    z-index:50;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:20px clamp(18px,5vw,70px);
    background:rgba(8,14,25,.86);
    backdrop-filter:blur(16px);
    border-bottom:1px solid var(--line)
}

.logo {
    font-weight:900;
    font-size:clamp(20px,2vw,28px);
    letter-spacing:-.04em
}

.top nav {
    display:flex;
    gap:10px;
    flex-wrap:wrap
}

.top a {
    color:#dfe7f4;
    text-decoration:none;
    font-weight:750;
    padding:10px 14px;
    border-radius:999px
}

.top a:hover {
    background:rgba(255,255,255,.08);
    color:white
}

main {
    width:min(1180px,92vw);
    margin:auto
}

section {
    padding:75px 0
}

.hero {
    min-height:calc(100vh - 84px);
    display:grid;
    grid-template-columns:minmax(0,1.02fr) minmax(350px,.98fr);
    gap:46px;
    align-items:center
}

.hero>div {
    padding:26px 0
}

.hero img {
    height:min(68vh,620px);
    width:100%;
    border-radius:34px;
    box-shadow:var(--shadow);
    border:1px solid var(--line)
}

.hero.light {
    background:transparent
}

.tag {
    display:inline-flex;
    margin-bottom:16px;
    align-items:center;
    gap:8px;
    color:var(--gold2);
    background:rgba(214,168,79,.12);
    border:1px solid rgba(214,168,79,.28);
    font-weight:900;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-size:12px;
    padding:9px 13px;
    border-radius:999px
}

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

h1 {
    font-size:clamp(40px,6.5vw,82px);
    line-height:.95;
    letter-spacing:-.075em;
    margin-bottom:22px
}

h2 {
    font-size:clamp(30px,4vw,54px);
    line-height:1;
    letter-spacing:-.06em;
    margin-bottom:20px
}

h3 {
    font-size:22px;
    margin-bottom:8px
}

p {
    color:var(--muted);
    font-size:17px
}

.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:14px;
    background:linear-gradient(135deg,var(--gold),var(--gold2));
    color:#111827;
    text-decoration:none;
    font-weight:950;
    padding:15px 22px;
    border-radius:999px;
    box-shadow:0 16px 50px rgba(214,168,79,.22);
    border:0
}

.grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
    margin-top:26px
}

.card {
    background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:18px;
    box-shadow:0 14px 50px rgba(0,0,0,.22);
    overflow:hidden
}

.card img {
    width:100%;
    height:230px;
    border-radius:18px;
    margin-bottom:18px
}

.card b {
    display:inline-flex;
    color:var(--gold2);
    font-size:20px;
    margin-top:5px
}

.price {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:18px 0;
    border-bottom:1px solid var(--line)
}

.price:last-child {
    border-bottom:0
}

.price span {
    font-weight:800
}

.gallery {
    display:grid;
    grid-template-columns:1.35fr .85fr .85fr;
    gap:20px;
    margin-top:28px
}

.gallery img {
    height:350px;
    width:100%;
    border-radius:24px;
    border:1px solid var(--line);
    box-shadow:0 16px 55px rgba(0,0,0,.25)
}

.gallery img:first-child {
    height:350px
}

.cta {
    text-align:center;
    background:radial-gradient(circle at top,rgba(214,168,79,.18),rgba(255,255,255,.04));
    border:1px solid var(--line);
    border-radius:34px;
    padding:58px 26px;
    margin:45px 0 80px
}

.footer {
    display:flex;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
    padding:28px clamp(18px,5vw,70px);
    border-top:1px solid var(--line);
    color:var(--muted);
    background:#080d16
}

@media(max-width:860px) {
    .top {
        align-items:flex-start;
        flex-direction:column
    }

    .hero {
        min-height:auto;
        grid-template-columns:1fr;
        padding-top:55px
    }

    .hero img {
        height:360px
    }

    .grid,.gallery {
        grid-template-columns:1fr
    }

    .gallery img,.gallery img:first-child {
        height:280px
    }

    section {
        padding:52px 0
    }

    h1 {
        font-size:46px
    }

}

@media(max-width:480px) {
    main {
        width:min(100% - 28px,1180px)
    }

    .top {
        padding:16px
    }

    .top nav a {
        padding:8px 10px
    }

    .hero img {
        height:280px
    }

    .card img {
        height:190px
    }

    .cta {
        border-radius:22px
    }

    .footer {
        font-size:14px
    }

}
