/* Hero Section */
.hero {
    margin-top: 90px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream-medium) 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(200, 120, 85, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-text h1 strong {
    font-weight: 600;
    color: var(--accent-deep);
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.hero-image {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
