/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2332;
    --accent-color: #c9a961;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #d4d4d4;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Section Frame - широкая рамка */
.section-frame {
    border: 3px solid var(--border-color);
    border-radius: 4px;
    padding: 80px 60px;
    margin: 40px 0;
    background: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

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

.top-bar__info {
    display: flex;
    gap: 30px;
}

.top-bar__info span,
.top-bar__hours span {
    opacity: 0.9;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

.logo__icon {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo__tagline {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav__link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--accent-color);
}

.nav__link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.header__burger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 91px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    z-index: 99;
    transform: translateY(-100%);
    transition: var(--transition);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-menu__link {
    padding: 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: var(--white);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255,255,255,0.02) 50px,
            rgba(255,255,255,0.02) 100px
        );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(201, 169, 97, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 25px;
    border-radius: 2px;
}

.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero__title-highlight {
    color: var(--accent-color);
}

.hero__subtitle {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 2px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn--primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn--primary:hover {
    background-color: #b8955a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn--secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

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

/* Info Bar - разделенные карточки с рамками */
.info-bar {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.info-bar__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 2px;
    transition: var(--transition);
    overflow: hidden;
}

.info-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card__inner {
    padding: 40px 30px;
    text-align: center;
}

.info-card__number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 15px;
}

.info-card__label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-card__desc {
    font-size: 14px;
    color: var(--text-light);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 60px 0;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about__text {
    font-size: 16px;
    line-height: 1.8;
}

.about__text .lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.about__text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about__values-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-item__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.value-item__content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.value-item__content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 2px;
    padding: 40px;
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-card__header {
    margin-bottom: 20px;
}

.product-card__number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -20px;
}

.product-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 15px;
}

.product-card__description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-card__features li {
    font-size: 14px;
    color: var(--text-dark);
    padding-left: 25px;
    position: relative;
}

.product-card__features li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 10px;
}

/* Advantages Section */
.advantages {
    padding: 60px 0;
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.advantage-item {
    text-align: center;
}

.advantage-item__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    color: var(--accent-color);
}

.advantage-item__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.advantage-item__text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 2px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--accent-color);
}

.contact-card__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: var(--accent-color);
}

.contact-card__title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-card__value {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Form */
.contact__form-wrapper {
    background: var(--white);
    padding: 40px;
    border: 2px solid var(--border-color);
    border-radius: 2px;
}

.contact__form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form__group {
    margin-bottom: 25px;
}

.form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form__input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 2px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background-color: var(--white);
}

.form__input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 2px;
    font-size: 15px;
    display: none;
}

.form__result.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form__result.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer__logo .logo__icon {
    width: 45px;
    height: 45px;
    color: var(--accent-color);
}

.footer__logo .logo__name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer__description {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 14px;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container-wide {
        padding: 0 40px;
    }

    .section-frame {
        padding: 60px 40px;
        margin: 30px 0;
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero__title {
        font-size: 42px;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact__content {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

    .section-frame {
        padding: 40px 20px;
        margin: 20px 0;
        border-width: 2px;
    }

    .top-bar__content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar__info {
        flex-direction: column;
        gap: 8px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__subtitle {
        font-size: 17px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .info-bar__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .products__grid {
        grid-template-columns: 1fr;
    }

    .advantages__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .section-frame {
        padding: 30px 15px;
    }

    .hero__title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }
}
