/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem 4rem;
    gap: 1.25rem;
}

.hero-title {
    font-size: clamp(2rem, 9vw, 5.5rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--terra);
}

.hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 500;
    font-style: italic;
    color: var(--terra);
}

.hero-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.9rem 2.75rem;
    border: 1.5px solid var(--terra);
    border-radius: 100px;
    color: var(--terra);
    background: transparent;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.hero-btn:hover {
    background: var(--terra);
    color: var(--cream);
}

/* ─── Om page ───────────────────────────────────────────────────────────────── */
.om-main {
    flex: 1;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.om-photo {
    display: block;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto;
    border: 3px solid var(--border);
}

.om-section h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 400;
    color: var(--terra);
    margin-bottom: 1.25rem;
}

.om-section h2 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.om-section p {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
}

.om-section p + p {
    margin-top: 1rem;
}

.om-cta {
    text-align: center;
    padding-bottom: 2rem;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .hero {
        padding: 2rem 1.5rem 3rem;
    }

    .om-main {
        padding: 2rem 1.5rem 3rem;
    }
}
