/* pages/home.css: homepage only. Linked from Home.razor. */

.home-hero {
    position: relative;
    background: var(--ink-900);
    color: var(--white);
    overflow: hidden;
}

.home-hero picture,
.home-hero .photo-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero .photo-hero-bg {
    object-fit: cover;
    opacity: .42;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, .78) 0%, rgba(20, 20, 20, .5) 40%, rgba(20, 20, 20, .9) 100%);
}

/* Sits on a .container element: top and bottom only (a shorthand would wipe
   the container's horizontal gutter). */
.home-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 56px;
    padding-bottom: 52px;
}

@media (min-width: 768px) {
    .home-hero-inner {
        padding-top: 104px;
        padding-bottom: 92px;
    }
}

.home-hero-inner h1 {
    color: var(--white);
    max-width: 24ch;
}

.home-hero-eyebrow {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--leaf-300);
    margin-bottom: 12px;
}

.home-hero-note {
    margin-top: 18px;
    color: var(--stone-200);
    font-size: 0.92rem;
}

/* ---------- why us ---------- */

.why-card {
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-radius: var(--radius);
    padding: 22px;
    height: 100%;
    position: relative;
}

.why-card h3 {
    text-transform: none;
    font-size: 1.08rem;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bark-600);
    display: inline-block;
}

.why-card p {
    font-size: 0.96rem;
}

/* ---------- pricing teaser ---------- */

.price-teaser-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.price-teaser-list li {
    background: var(--white);
    border: 1px solid var(--stone-200);
    border-left: 4px solid var(--leaf-500);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    color: var(--stone-700);
    font-size: 0.96rem;
}
