#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--warm-white);
}

#hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55vw;
    height: 75vh;
    background: radial-gradient(ellipse at center, var(--sand) 0%, transparent 70%);
    opacity: 0.6;
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -8%;
    width: 35vw;
    height: 45vh;
    background: radial-gradient(ellipse, rgba(122, 158, 126, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-inner {
    position: relative;
    z-index: 1;
    flex: 1;
}

.hero-photo-wrap {
    flex: 1;
    position: relative;
    opacity: 0;
    animation: fadeIn 1s 0.5s forwards;
}

.hero-eyebrow {
    font-family: var(--font-body), serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1.25rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
    font-family: var(--font-display), serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--brown);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--terracotta);
}

.hero-motto {
    font-family: var(--font-display), serif;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    border-left: 2px solid var(--terracotta);
    padding-left: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

/* Buttons */
.btn-primary-custom {
    background: var(--terracotta);
    color: #fff;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body), serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 127, 90, 0.3);
    color: #fff;
}

.btn-outline-custom {
    background: transparent;
    color: var(--brown);
    border: 2px solid var(--sand);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body), serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-custom:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-2px);
}

/* Hero photo */
.hero-photo-inner {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.hero-photo {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--sand) 0%, #d4bfaa 100%);
    border-radius: 48% 52% 40% 60% / 55% 45% 55% 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-placeholder {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.hero-photo-placeholder .placeholder-icon {
    font-size: 4rem;
    opacity: 0.4;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-photo-placeholder p {
    font-size: 0.8rem;
    opacity: 0.6;
}

.hero-photo-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--terracotta);
    border-radius: 50%;
    opacity: 0.2;
}

.hero-photo-deco2 {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    background: var(--leaf);
    border-radius: 50%;
    opacity: 0.12;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.scroll-hint span {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--terracotta), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

/* Responsive hero */
@media (max-width: 768px) {
    .hero-row {
        flex-direction: column;
        text-align: center;
        padding-top: 5rem;
    }

    .hero-photo-wrap {
        order: -1;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-motto {
        text-align: left;
    }
}