
:root {
    --black: #050505;
    --black-soft: #111111;
    --gold: #d69a00;
    --gold-light: #ffc21a;
    --white: #f7f7f4;
    --muted: #a7a7a0;
    --line: rgba(255, 194, 26, .28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 45%, rgba(214,154,0,.10), transparent 28rem),
        linear-gradient(180deg, #030303 0%, #090909 100%);
    color: var(--white);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 88%);
}

a {
    color: inherit;
}

.site-header {
    position: relative;
    z-index: 30;
    min-height: 92px;
    max-width: 1420px;
    margin: 0 auto;
    padding: 18px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.mini-logo {
    width: 86px;
    height: 58px;
    display: grid;
    place-items: center;
    background: #000;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}

.mini-logo:hover {
    transform: translateY(-2px);
    border-color: var(--gold-light);
}

.mini-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.navbar a {
    text-decoration: none;
    color: #bdbdb7;
    font-weight: 700;
    font-size: .93rem;
    padding: 10px 15px;
    border-radius: 999px;
    transition: .2s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--black);
    background: var(--gold-light);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #111;
    color: var(--white);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
}

.hero {
    min-height: calc(100vh - 150px);
    max-width: 1480px;
    margin: 0 auto;
    padding: 32px 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-heading {
    text-align: center;
    position: relative;
    z-index: 5;
    margin-bottom: 12px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold-light);
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 800;
}

.title {
    margin: 0;
    font-family: "Bowlby One", sans-serif;
    font-size: clamp(3rem, 7.8vw, 8rem);
    line-height: .95;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
    text-shadow:
        0 0 20px rgba(214,154,0,.08),
        0 12px 36px rgba(0,0,0,.5);
}

.hero-stage {
    position: relative;
    min-height: 545px;
    display: grid;
    grid-template-columns: minmax(220px, .75fr) minmax(420px, 1.2fr) minmax(220px, .75fr);
    align-items: center;
    gap: 20px;
}

.image-wrap {
    position: relative;
    height: 420px;
    display: grid;
    place-items: center;
    z-index: 4;
}

.image-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255,194,26,.14);
    filter: blur(90px);
    animation: glow 4s ease-in-out infinite alternate;
}

.mainImage {
   position: relative;
    z-index: 2;

    width: 800px;
    max-width: 100%;
    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(0 16px 28px rgba(0,0,0,.55))
        drop-shadow(0 0 26px rgba(214,154,0,.12));

    transition: transform .25s ease;
    transform: translate3d(0,0,0);
}

.image-caption {
    position: absolute;
    z-index: 5;
    bottom: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 9px 15px;
    background: rgba(0,0,0,.72);
    border: 1px solid var(--line);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    color: #e7e7e2;
    font-size: .78rem;
    font-weight: 700;
}

.image-caption span:nth-child(even) {
    color: var(--gold);
}

.star-button {
    position: relative;
    z-index: 6;
    width: 270px;
    aspect-ratio: 1 / 1;
    justify-self: center;
    text-decoration: none;
    display: grid;
    place-items: center;
    transition: transform .25s ease;
}

.star-button:hover {
    transform: translateY(-10px) scale(1.03);
}

.star-button:hover .star-shape {
    filter:
        drop-shadow(0 0 16px rgba(255,194,26,.40))
        drop-shadow(0 18px 24px rgba(0,0,0,.45));
}

.star-shape {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--gold-light), #9d6900);
    clip-path: polygon(
        50% 0%,
        61% 34%,
        98% 35%,
        68% 56%,
        79% 93%,
        50% 71%,
        21% 93%,
        32% 56%,
        2% 35%,
        39% 34%
    );
    transition: filter .25s ease;
}

.star-inner {
    width: 92%;
    height: 92%;
    display: grid;
    place-items: center;
    background: var(--black);
    clip-path: inherit;
}

.star-label {
    width: 118px;
    height: 118px;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 50%;
    background: rgba(9,9,9,.90);
    border: 1px solid rgba(255,194,26,.34);
}

.star-label strong {
    display: block;
    color: var(--gold-light);
    font-size: 1.15rem;
}

.star-label small {
    color: #c5c5bf;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 3px;
}

.star-left {
    transform: rotate(-8deg);
}

.star-right {
    transform: rotate(8deg);
}

.star-left:hover {
    transform: rotate(-3deg) translateY(-10px) scale(1.03);
}

.star-right:hover {
    transform: rotate(3deg) translateY(-10px) scale(1.03);
}

.quick-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 17px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    text-decoration: none;
    color: #d4d4ce;
    font-size: .86rem;
    font-weight: 700;
    transition: .2s ease;
}

.quick-link span {
    color: var(--gold-light);
    font-size: 1rem;
}

.quick-link:hover {
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    background: rgba(214,154,0,.07);
}

footer {
    text-align: center;
    color: #6f6f6a;
    font-size: .78rem;
    padding: 0 20px 24px;
}

@keyframes glow {
    from {
        transform: scale(.86);
        opacity: .52;
    }
    to {
        transform: scale(1.08);
        opacity: .85;
    }
}

@media (max-width: 1050px) {

    .hero-stage {
        grid-template-columns: 220px minmax(350px, 1fr) 220px;
        min-height: 500px;
    }

    .star-button {
        width: 215px;
    }

    .image-wrap {
        height: 465px;
    }
}

@media (max-width: 820px) {

    .site-header {
        padding: 14px 18px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .navbar {
        display: none;
        position: absolute;
        left: 18px;
        right: 18px;
        top: 80px;
        z-index: 50;
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding: 12px;
        background: rgba(10,10,10,.96);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: 0 24px 60px rgba(0,0,0,.48);
    }

    .navbar.open {
        display: flex;
    }

    .navbar a {
        border-radius: 12px;
    }

    .hero {
        padding-inline: 18px;
    }

    .hero-stage {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "image image"
            "left right";
        gap: 0 18px;
        min-height: auto;
        margin-top: 18px;
    }

    .image-wrap {
        grid-area: image;
        height: 430px;
    }

    .star-left {
        grid-area: left;
    }

    .star-right {
        grid-area: right;
    }

    .star-button {
        width: min(230px, 100%);
    }
}

@media (max-width: 520px) {

    .mini-logo {
        width: 74px;
        height: 50px;
    }

    .hero {
        padding-top: 20px;
    }

    .title {
        -webkit-text-stroke-width: 1px;
    }

    .eyebrow {
        font-size: .62rem;
        line-height: 1.7;
        letter-spacing: .15em;
    }

    .hero-stage {
        grid-template-columns: 1fr 1fr;
        gap: 0 10px;
    }

    .image-wrap {
        height: 335px;
    }

    .image-caption {
        display: none;
    }

    .star-button {
        width: min(175px, 100%);
    }

    .star-label {
        width: 86px;
        height: 86px;
    }

    .star-label strong {
        font-size: .92rem;
    }

    .star-label small {
        font-size: .60rem;
    }

    .quick-actions {
        margin-top: 18px;
    }

    .quick-link {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
