/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 40% 60%;
    padding-top: 72px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 3.5rem 5rem 2rem;
    background: var(--bg-primary);
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--accent-dark);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-style: italic;
    color: var(--text-mid);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-info {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
}

.hero-info-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.6rem;
}

.hero-info-value {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.8;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--text-dark);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.25s ease, transform 0.25s ease;
    align-self: flex-start;
}

.hero-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.hero-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 6s ease;
}

.hero-right:hover img {
    transform: scale(1.03);
}

.hero-right-overlay {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    background: rgba(247, 245, 241, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
}

.hero-right-overlay span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.hero-right-overlay strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .hero-left {
        padding: 3rem 1.25rem 2.5rem;
        order: 2;
    }

    .hero-right {
        order: 1;
        min-height: 55vw;
        max-height: 420px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-info {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

