/* ============================================================
   Homepage — bespoke styles only.
   Everything else comes from css/bcm.css.
   ============================================================ */

/* ---------- hero ---------- */
.home-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: max(640px, 88vh);
    padding: calc(var(--nav-h) + 48px) 0 72px;
    background: var(--ink-950);
    color: var(--text-on-dark-muted);
    overflow: hidden;
}
.home-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 14, 26, 0.62) 0%, rgba(8, 14, 26, 0.25) 65%),
        linear-gradient(180deg, rgba(8, 14, 26, 0.55) 0%, rgba(8, 14, 26, 0.35) 45%, rgba(8, 14, 26, 0.92) 100%);
}
.home-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(77, 195, 247, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 195, 247, 0.05) 1px, transparent 1px);
    background-size: 36px 36px;
    -webkit-mask-image: radial-gradient(ellipse 70% 90% at 30% 100%, #000 20%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 90% at 30% 100%, #000 20%, transparent 100%);
    pointer-events: none;
}
.home-hero .wrap { position: relative; z-index: 1; }
.home-hero .ornament { z-index: 0; }

.home-hero__content { max-width: 720px; }
.home-hero h1 {
    color: #fff;
    margin: 0 0 22px;
}
.home-hero h1 span { color: var(--azure-400); }
.home-hero .lead {
    color: var(--text-on-dark-muted);
    max-width: 46ch;
}
.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}
.home-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: clamp(40px, 6vh, 64px);
}
.chip-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 11px 18px;
    border-radius: var(--r-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.chip-stat .num {
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: -0.01em;
}
.chip-stat span:last-child {
    font-size: 0.8125rem;
    color: var(--text-on-dark-muted);
}

/* ---------- ticker strip ---------- */
.ticker-strip__label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 26px;
}

/* ---------- service splits ---------- */
.svc { display: grid; gap: clamp(56px, 7vw, 96px); }
.svc .split__media { aspect-ratio: 4 / 3; }
.svc .split__media img { height: 100%; }

.btn--soft-amber { background: var(--amber-050); color: var(--amber-600); }
.btn--soft-amber:hover { background: #FBE8CC; transform: translateY(-1px); }
.btn--soft-gold { background: var(--gold-050); color: var(--gold-600); }
.btn--soft-gold:hover { background: #F6EBC4; transform: translateY(-1px); }

/* ---------- about ---------- */
.about-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: clamp(32px, 4vw, 48px);
    border-radius: var(--r-xl);
    background: var(--paper);
    border: 1px solid var(--border);
}
.about-quote__mark {
    color: var(--azure-500);
    margin-bottom: 18px;
}
.about-quote__text {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.35rem, 1.15rem + 0.9vw, 1.75rem);
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: var(--text-strong);
    max-width: 24ch;
}
.about-quote__attr {
    margin-top: 26px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}
.about-quote__attr strong {
    display: block;
    color: var(--text-strong);
}
.about-story p + p { margin-top: 16px; }
.about-story h3 { margin-bottom: 16px; }

/* ---------- milestones ---------- */
.milestones__foot {
    margin-top: 40px;
    font-size: 0.9375rem;
    color: var(--text-on-dark-faint);
}

/* ---------- testimonials header row ---------- */
.quotes-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.quotes-head .section-head { margin-bottom: 0; }
.quotes-head + .quotes__track { margin-top: 36px; }

/* ---------- pricing teaser ---------- */
.plan--compact { padding: 30px 28px; }
.plan--compact .plan__amount { font-size: 2.3rem; }
.teaser-grid {
    max-width: 880px;
    margin-inline: auto;
}
.teaser-foot {
    margin-top: 22px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-faint);
}

/* ---------- contact ---------- */
.contact-note {
    margin-top: 14px;
    font-size: 0.8125rem;
    color: var(--text-faint);
}
.interests-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-strong);
}
