 * {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    background: #05070a;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 7, 10, 0.88);
    border-bottom: 1px solid rgba(214, 162, 58, 0.35);
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #f2c766;
}

.desktop-menu {
    display: flex;
    gap: 28px;
    font-size: 15px;
}

.desktop-menu a:hover {
    color: #f2c766;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: 1px solid rgba(242, 199, 102, 0.6);
    color: #f2c766;
    font-size: 24px;
    padding: 4px 10px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(5, 7, 10, 0.96) 0%,
            rgba(5, 7, 10, 0.78) 45%,
            rgba(5, 7, 10, 0.35) 100%
        ),
        radial-gradient(circle at 70% 35%, #513016 0%, #07111c 45%, #05070a 100%);
}

.hero-content {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 150px 24px 80px;
}

.eyebrow {
    color: #f2c766;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

h1 {
    max-width: 720px;
    font-size: clamp(44px, 7vw, 84px);
    line-height: 0.95;
    margin: 0 0 24px;
}

.hero-text {
    max-width: 560px;
    font-size: 21px;
    line-height: 1.5;
    color: #d7dde5;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.button-primary,
.button-secondary {
    display: inline-block;
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.button-primary {
    background: #d6a23a;
    color: #07111c;
}

.button-primary:hover {
    background: #f2c766;
}

.button-secondary {
    border: 1px solid rgba(242, 199, 102, 0.7);
    color: #f2c766;
}

.button-secondary:hover {
    background: rgba(242, 199, 102, 0.1);
}

@media (max-width: 760px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        z-index: 99;
        background: rgba(5, 7, 10, 0.96);
        border-bottom: 1px solid rgba(214, 162, 58, 0.35);
    }

    .mobile-menu.open {
        display: grid;
    }

    .mobile-menu a {
        padding: 18px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-content {
        padding-top: 130px;
    }

    h1 {
        font-size: 46px;
    }

    .hero-text {
        font-size: 18px;
    }
}