html {
    scroll-behavior: smooth;
}

body {
    background-image:
        radial-gradient(circle at 15% 0%, rgba(241, 90, 36, 0.24), transparent 30rem),
        linear-gradient(180deg, #15100d 0%, #1d1511 100%);
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background:
        radial-gradient(circle, #f6a21a 0 38%, #f15a24 39% 63%, transparent 64%),
        repeating-conic-gradient(from 0deg, #f15a24 0deg 8deg, transparent 8deg 16deg);
    box-shadow: 0 0 0 2px rgba(255, 241, 207, 0.18), 0 0 2rem rgba(241, 90, 36, 0.45);
    flex: 0 0 auto;
}

.site-menu.is-open {
    display: grid;
    position: absolute;
    inset: 100% 1rem auto 1rem;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #15100d;
}

.hero-band {
    background:
        linear-gradient(90deg, rgba(21, 16, 13, 0.98), rgba(21, 16, 13, 0.74)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 14px);
}

.hero-photo-wrap {
    position: relative;
}

.hero-photo-wrap::before {
    content: "";
    position: absolute;
    inset: 8% -4% -5% 10%;
    background: #f15a24;
    transform: rotate(-3deg);
}

.hero-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.38);
}

.product-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        #15100d;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.heat-meter {
    display: flex;
    gap: 0.25rem;
    padding-top: 0.3rem;
}

.heat-meter span {
    width: 0.55rem;
    height: 2.1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.heat-meter span.is-lit {
    background: linear-gradient(180deg, #f6a21a, #f15a24);
    border-color: rgba(246, 162, 26, 0.9);
}

.sun-strip {
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.28), transparent 18rem),
        linear-gradient(135deg, #f6a21a, #f15a24);
}

@media (max-width: 767px) {
    .site-menu {
        grid-template-columns: 1fr;
    }

    .font-display {
        overflow-wrap: anywhere;
    }
}
