/* Fouz Hero Styles */
.fouz-hero {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.fouz-hero-left {
    background: #FAF6EF;
    display: flex;
    align-items: center;
    padding: 4rem 4vw 4rem 6vw;
    position: relative;
    box-sizing: border-box;
}

.fouz-hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.fouz-hero-left-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.fouz-hero .fouz-hero-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #C9A96E;
    margin-bottom: 1.5rem;
}

.fouz-hero h1.fouz-hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 1.05;
    color: #1C1008;
    margin: 0 0 1.5rem 0;
}

.fouz-hero-line2 {
    font-style: italic;
    display: block;
}

.fouz-hero-rule {
    width: 60px;
    height: 1px;
    background: #6B1E2E;
    margin-bottom: 1.5rem;
}

.fouz-hero-body {
    font-family: 'EB Garamond', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #4A3728;
    max-width: 400px;
    margin-bottom: 2rem;
}

.fouz-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.fouz-hero-btn {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
}

.fouz-hero-btn-primary {
    background: #6B1E2E;
    color: #FAF6EF;
    border-color: #6B1E2E;
}

.fouz-hero-btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(107, 30, 46, 0.3);
}

.fouz-hero-btn-outline {
    background: transparent;
    color: #6B1E2E;
    border-color: #6B1E2E;
}

.fouz-hero-btn-outline:hover {
    background: #6B1E2E;
    color: #FAF6EF;
}

.fouz-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    color: #7A6357;
    letter-spacing: 0.05em;
}

.fouz-hero-right {
    position: relative;
    overflow: hidden;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    width: 100%;
}

.fouz-hero-img-wrap {
    width: 100%;
    height: 100%;
}

.fouz-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.fouz-anim-slide {
    opacity: 0;
    transform: translateX(-30px);
    animation: fouzSlideIn 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
    animation-delay: var(--d, 0s);
}

@keyframes fouzSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fouz-anim-fade-scale {
    opacity: 0;
    transform: scale(1.03);
    animation: fouzFadeScale 1s ease 0.3s forwards;
}

@keyframes fouzFadeScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media(max-width: 1024px) {
    .fouz-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .fouz-hero-left {
        padding: 6rem 4vw 3rem;
    }
    .fouz-hero-right {
        height: 60vh;
        clip-path: none;
    }
}
