:root {
    --color-bg: #000000;
    --color-bg-alt: #1a1a1a;
    --color-gold: #C1A651;
    --color-gold-light: #dec77d;
    --color-text: #ffffff;
    --color-text-dim: #cccccc;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.container--fluid {
    width: 100%;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.section-title--center {
    text-align: center;
}

.highlight {
    color: var(--color-gold);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 166, 81, 0.3);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text);
}

.btn--outline:hover {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn--gold {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn--gold:hover {
    background: var(--color-gold-light);
}

.btn--full {
    width: 100%;
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 100px;
}

.logo__text {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
}

.menu__list {
    display: flex;
    gap: 30px;
}

.menu__list a {
    font-size: 14px;
    font-weight: 400;
}

.menu__list a:hover {
    color: var(--color-gold);
}

/* Hero */
.hero {
    padding-top: 180px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero__content {
    flex: 1;
}

.hero__title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.hero__subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero__list {
    margin-bottom: 40px;
}

.hero__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 18px;
}

.hero__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.hero__btns {
    display: flex;
    gap: 20px;
}

.hero__image {
    flex: 1;
    position: relative;
}

.hero__image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero__image-text {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--color-gold);
    max-width: 300px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* About */
.about {
    background-color: var(--color-bg-alt);
}

.about__inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about__content {
    flex: 1;
}

.about__text p {
    margin-bottom: 20px;
    font-size: 18px;
}

.about__image {
    flex: 1;
}

.about__image img {
    border-radius: 20px;
}

/* Advantages */
.advantages__inner {
    display: flex;
    gap: 80px;
}

.advantages__content {
    flex: 1;
}

.advantages__desc {
    font-size: 20px;
    margin-bottom: 40px;
}

.advantages__list {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.advantage-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.advantage-item__icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.advantage-item__icon img {
    width: 100%;
    filter: brightness(0) invert(1);
}

.advantage-item__info h3 {
    font-size: 24px;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.advantage-item__info p {
    color: var(--color-text-dim);
}

/* Delivery */
.delivery {
    padding: 0;
}

.delivery__inner {
    display: flex;
    align-items: stretch;
}

.delivery__image {
    flex: 1;
}

.delivery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery__content {
    flex: 1;
    padding: 100px 80px;
    background-color: var(--color-bg-alt);
}

.delivery__text p {
    margin-bottom: 25px;
    font-size: 18px;
}

/* Order/Form */
.order {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.order__inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.order__image {
    flex: 1;
}

.order__image img {
    border-radius: 20px;
}

.order__content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order__desc {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.order__subdesc {
    font-size: 16px;
    color: var(--color-text-dim);
    margin-bottom: 30px;
}

.form__group {
    margin-bottom: 20px;
}

.form__group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form__group input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form__group input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.15);
}

.form__privacy {
    margin-bottom: 30px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.checkbox a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
    border-top: 2px solid var(--color-gold);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.footer__contacts h3, .footer__hours h3 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer__contacts p, .footer__hours p {
    margin-bottom: 10px;
    color: var(--color-text-dim);
}

.scroll-top {
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover {
    background: var(--color-gold);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .section-title { font-size: 36px; }
    .hero__title { font-size: 48px; }
    .hero__inner, .about__inner, .advantages__inner, .order__inner {
        flex-direction: column;
        gap: 40px;
    }
    .delivery__inner { flex-direction: column-reverse; }
    .delivery__content { padding: 40px 20px; }
    .hero__image, .about__image, .order__image { width: 100%; max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    .logo img {
        height: 60px;
    }
    .logo__text {
        font-size: 10px;
    }
    .menu { display: none; } 
    .header__btns { display: none; } 
    .hero { padding-top: 120px; text-align: center; }
    .hero__title { font-size: 32px; }
    .hero__subtitle { font-size: 20px; }
    .hero__list li { font-size: 16px; text-align: left; }
    .hero__btns { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .footer__inner { flex-direction: column; gap: 40px; text-align: center; }
    .scroll-top { align-self: center; }
    
    .advantage-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .advantage-item__icon {
        width: 60px;
        height: 60px;
    }
    
    .section-title {
        font-size: 28px;
        text-align: center;
    }
}
