/* Home page specific styles */

.home-hero {
    min-height: calc(100vh - var(--header-h) - var(--footer-h));
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.home-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--ink);
    margin: 1.5rem 0;
    letter-spacing: -0.01em;
}
.home-hero__title em {
    font-style: italic;
    color: var(--gold);
}

.home-hero__sub {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 540px;
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.4rem;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.home-hero__stats {
    display: flex;
    gap: 0;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.home-stat {
    padding-right: 2.5rem;
    margin-right: 2.5rem;
    border-right: 1px solid var(--border-light);
}
.home-stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.home-stat__num {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}
.home-stat__num--text { font-size: 2rem; }
.home-stat__num sup {
    font-size: 1.1rem;
    color: var(--gold);
    vertical-align: super;
}
.home-stat__label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.4rem;
    font-weight: 400;
}

@media (max-width: 900px) {
    .home-hero__stats { gap: 0; }
    .home-stat {
        padding: 1rem 0;
        margin: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
    }
    .home-stat:last-child { border-bottom: none; }
}
