/* Основные стили и сброс */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c1810;
    max-width: 1090px;
    margin: 0 auto;
    background: #f5f0eb;
}

.container {
    padding: 0 20px;
}

/* Стиль "Ковер" - богатые орнаментальные паттерны */
h1, h2, h3 {
    font-family: Georgia, serif;
    font-weight: bold;
    color: #8b1a1a;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 15px;
}

h2 {
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #8b1a1a, #d4af37, #8b1a1a);
}

h3 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #5c2e1a;
}

/* Блок 1: Hero Section - Богатый бордовый с золотым акцентом */
.hero-section {
    background: linear-gradient(135deg, #8b1a1a 0%, #5c0a0a 100%);
    color: #f5e6d3;
    padding: 60px 20px;
    min-height: 470px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.05) 10px, rgba(212, 175, 55, 0.05) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.05) 10px, rgba(212, 175, 55, 0.05) 20px);
    opacity: 0.4;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: #f5e6d3;
    border-bottom-color: #d4af37;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 20px;
    font-style: italic;
    color: #ffd700;
}

.hero-description {
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.8;
}

/* Кнопка CTA - Золотая с орнаментом */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #2c1810;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    border: 3px solid #8b7355;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* Блок специалистов - Теплый терракотовый */
.specialists-section {
    background: linear-gradient(to bottom, #e8dcc8 0%, #d4c4a8 100%);
    padding: 60px 20px;
    position: relative;
}

.specialists-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: repeating-linear-gradient(90deg, #8b1a1a, #8b1a1a 20px, #d4af37 20px, #d4af37 40px);
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.specialist-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 2px solid #8b7355;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.specialist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #8b1a1a, #d4af37);
}

.specialist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 26, 26, 0.25);
}

.specialist-title {
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 1.05em;
}

.specialist-description {
    color: #4a3728;
    line-height: 1.7;
}

/* Блок отзывов - Глубокий синий с золотом */
.reviews-section {
    background: linear-gradient(135deg, #1a3a52 0%, #0f2537 100%);
    color: #e8dcc8;
    padding: 60px 20px;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.reviews-section .container {
    position: relative;
    z-index: 1;
}

.reviews-section h2,
.reviews-section h3 {
    color: #f5e6d3;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #d4af37;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateX(5px);
}

.review-text {
    color: #2c1810;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.review-author {
    color: #8b1a1a;
    font-weight: bold;
    text-align: right;
}

/* Форма отзывов */
.review-form-wrapper {
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 8px;
    border: 3px solid #d4af37;
}

.review-form-wrapper h3 {
    color: #8b1a1a;
    margin-bottom: 25px;
    text-align: center;
}

/* Блок продуктов - Богатый зеленый */
.products-section {
    background: linear-gradient(to bottom, #2d5016 0%, #1a3010 100%);
    color: #e8f5e8;
    padding: 60px 20px;
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(212, 175, 55, 0.03) 50px, rgba(212, 175, 55, 0.03) 100px);
}

.products-section .container {
    position: relative;
    z-index: 1;
}

.products-section h2 {
    color: #f5e6d3;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 28px;
    border-radius: 8px;
    border: 2px solid #8b7355;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: linear-gradient(to right, #2d5016, #d4af37, #2d5016);
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.product-card h3 {
    color: #2d5016;
    margin-top: 10px;
}

.product-description {
    color: #2c1810;
    line-height: 1.8;
}

/* Выделение статьи */
.featured-article {
    background: linear-gradient(135deg, #f5e6d3 0%, #e8dcc8 100%);
    padding: 40px;
    border-radius: 12px;
    border: 4px double #8b1a1a;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25), inset 0 0 30px rgba(212, 175, 55, 0.1);
    position: relative;
    margin-top: 40px;
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    pointer-events: none;
}

.featured-article h2 {
    color: #8b1a1a;
    text-align: left;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.featured-article h2::after {
    display: none;
}

.featured-article p {
    margin-bottom: 18px;
    color: #2c1810;
    line-height: 1.9;
    text-align: justify;
}

.featured-article strong {
    color: #8b1a1a;
    font-weight: bold;
}

/* Блок подписки - Теплый оранжевый */
.subscription-section {
    background: linear-gradient(to right, #d4691a 0%, #a04a0a 100%);
    color: #fff;
    padding: 60px 20px;
    position: relative;
}

.subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255,255,255,0.05) 15px, rgba(255,255,255,0.05) 30px);
}

.subscription-section .container {
    position: relative;
    z-index: 1;
}

.subscription-section h2 {
    color: #fff;
}

.subscription-description {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 35px;
    line-height: 1.7;
}

/* Общие стили форм */
.subscription-form,
.review-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c1810;
    font-size: 1.05em;
}

.subscription-form label {
    color: #fff;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #8b7355;
    border-radius: 6px;
    font-size: 1em;
    font-family: Georgia, serif;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Кнопки отправки форм */
.subscribe-button,
.submit-button {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #2c1810;
    padding: 15px 40px;
    border: 3px solid #8b7355;
    border-radius: 6px;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: block;
    margin: 0 auto;
}

.subscribe-button:hover,
.submit-button:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.subscribe-button:active,
.submit-button:active {
    transform: translateY(0);
}

/* Блок медиа - Фиолетовый с золотом */
.media-section {
    background: linear-gradient(135deg, #4a1a4a 0%, #2d0a2d 100%);
    color: #f0e6f5;
    padding: 60px 20px;
    position: relative;
}

.media-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.media-section .container {
    p
