/* Hero секция */
.hero {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    color: #2E2E2E;
    margin-bottom: 18px;
}

.hero-content h1 .line1 {
    display: block;
    font-size: 0.9em;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 8px;
}

.hero-content h1 .line2 {
    display: block;
    font-size: 0.65em;
    font-weight: 400;
    color: #C6A43F;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-content .subtitle {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 28px;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2E2E2E;
    background-color: rgba(198, 164, 63, 0.04);
    padding: 6px 12px;
    border-radius: 40px;
}

.hero-features .feature i {
    color: #C6A43F;
    font-size: 14px;
}

.hero-image {
    flex: 1;
    max-width: 700px;
    height: 540px;
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s ease-out;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    outline: 2px solid rgba(198, 164, 63, 0.3);
    outline-offset: 8px;
    transition: outline-offset 0.3s ease;
    background-size: cover;
    background-position: center;
}

.hero-image:hover {
    outline-offset: 12px;
}

.hero-image::before {
    content: '✧';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 24px;
    color: #C6A43F;
    background-color: #FDF8F2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hero-image::after {
    content: '✧';
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 24px;
    color: #C6A43F;
    background-color: #FDF8F2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transform: rotate(90deg);
}

.hero-content::before {
    content: '✧';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 50px;
    color: rgba(198,164,63,0.15);
    transform: rotate(15deg);
    pointer-events: none;
}

.hero-content::after {
    content: '✧';
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 70px;
    color: rgba(201,104,59,0.08);
    transform: rotate(-10deg);
    pointer-events: none;
}

/* Адаптивность Hero */
@media screen and (max-width: 1024px) {
    .hero { padding: 50px 0 30px; gap: 40px; }
    .hero-content h1 { font-size: 56px; }
    .hero-image { height: 480px; }
}

@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 0 20px;
        gap: 30px;
        text-align: center;
    }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 48px; }
    .hero-content h1 .line2 { white-space: normal; }
    .hero-content .subtitle { margin-left: auto; margin-right: auto; }
    .hero-features { justify-content: center; }
    .hero-image { width: 100%; height: 380px; }
}

@media screen and (max-width: 480px) {
    .hero-content h1 { font-size: 42px; }
    .hero-content h1 .line1 { font-size: 0.85em; }
    .hero-content h1 .line2 { font-size: 0.55em; }
    .hero-image { height: 280px; }
}