* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C99432;
    --black: #0B0B0B;
    --white: #ffffff;
    --off-white: #F7F3EB;
    --gold-bg: #F7F3EB;
    --border-light: #e8e3dc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 40px;
    background: #ffffff;
}

.btn-outline-light,
.btn-solid-black,
.btn-primary,
.btn-secondary {
    font-family: 'Inter', sans-serif;
}

.btn-outline-light,
.btn-solid-black {
    transition: all 0.3s ease;
}

.btn-outline-light {
    border: 1px solid #d1d1d1;
    background: transparent;
    color: var(--black);
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
}

.btn-solid-black {
    background: var(--black);
    color: #fff;
    padding: 9px 24px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 38px;
}

.btn-solid-black:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 148, 50, 0.28);
}

.btn-outline-light:hover {
    background: var(--off-white);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.section-label .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.section-label .line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
    margin-left: 4px;
}

.section-shell {
    position: relative;
}

.dots-decor {
    position: absolute;
    top: -10px;
    right: 24px;
    width: 70px;
    height: 70px;
    background-image: radial-gradient(rgba(201, 148, 50, 0.7) 2.5px, transparent 2.5px);
    background-size: 16px 16px;
    opacity: 0.18;
    z-index: 0;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 24px 32px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px 28px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px 24px;
    }

    .btn-outline-light,
    .btn-solid-black {
        font-size: 0.75rem;
        height: 34px;
        padding: 6px 14px;
    }
}

@media (max-width: 400px) {
    .container {
        padding-bottom: 20px;
    }
}