.hero-badge {
    display: inline-block;
    background: #11141a;
    color: #e8c96a;
    border: 1px solid #e8c96a;
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .8rem;
}

/* Global dark theme background/text */
body {
    background-color: #0b0f14;
    color: #ffffff;
}

/* Section label & title */
.section-label {
    display: inline-block;
    color: #e8c96a;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: .85rem;
    margin-bottom: 8px;
}
.section-title {
    color: #ffffff;
    font-weight: 700;
}
.lead-text {
    color: rgba(255, 255, 255, .85);
}

/* Buttons */
.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: #c9a227;
    color: #0b0f14;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
    border: 1px solid #c9a227;
}
.btn-gold:hover {
    background: #b08f1f;
    color: #0b0f14;
}
.btn-outline-gold {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: transparent;
    color: #e8c96a;
    border: 1px solid #e8c96a;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}
.btn-outline-gold:hover {
    background: rgba(232, 201, 106, .12);
    color: #e8c96a;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0b0f14;
    color: #ffffff;
    padding: 16px 24px;
    z-index: 9999;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .4);
    border-top: 1px solid rgba(255, 255, 255, .12);
}
.cookie-banner.show {
    display: flex;
}
.cookie-banner a {
    color: #e8c96a;
}
.btn-cookie {
    background: #c9a227;
    color: #0b0f14;
    border: none;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    margin-left: 8px;
    cursor: pointer;
}
