
/* ============================================================
   GENERIC LANDING PAGE COMPONENTS (.vz-*)  — Aug 2026
   Appended so nothing above this block changes and every other
   page renders exactly as before. Layout primitives only: hero,
   section rhythm, card grid, timeline, list, honeypot.
   Forms reuse the existing .contact-form / .form-group system.
   ============================================================ */

/* --- Hero ---
   The site header is position:fixed and ~86px tall, so the first section
   on the page must clear it with top padding. 8.5rem matches the
   .page-hero convention used by every other interior page. */
.vz-hero {
    padding: 8.5rem 0 3.25rem;
    border-bottom: 1px solid var(--border);
}

.vz-eyebrow {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.1rem;
}

.vz-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 1.25rem + 3.1vw, 3rem);
    line-height: 1.14;
    color: var(--secondary);
    max-width: 18ch;
    margin-bottom: 1rem;
}

.vz-sub {
    font-size: clamp(1.02rem, 0.96rem + 0.35vw, 1.18rem);
    line-height: 1.6;
    color: var(--text-light);
    max-width: 62ch;
}

.vz-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.85rem;
}

/* --- Section rhythm --- */
.vz-section {
    padding: 3.75rem 0;
    border-bottom: 1px solid var(--border);
}

.vz-section.vz-tint {
    background: var(--bg-alt);
}

.vz-section > .container > h2 {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 1.3rem + 1.3vw, 2.05rem);
    color: var(--secondary);
    margin-bottom: 2rem;
    max-width: 28ch;
}

/* --- Card grid --- */
.vz-cards {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    counter-reset: vzc;
}

.vz-cards > li {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
    counter-increment: vzc;
}

.vz-cards > li h3 {
    font-size: 1.02rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    padding-top: 1.85rem;
    position: relative;
}

.vz-cards > li h3::before {
    content: counter(vzc, decimal-leading-zero);
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--primary);
}

.vz-cards > li p {
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* --- Vertical timeline --- */
.vz-timeline {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.85rem;
    position: relative;
    max-width: 60ch;
}

.vz-timeline::before {
    content: "";
    position: absolute;
    left: 0.32rem;
    top: 0.6rem;
    bottom: 0.6rem;
    width: 1px;
    background: var(--border);
}

.vz-timeline > li {
    position: relative;
    padding-bottom: 1.5rem;
}

.vz-timeline > li:last-child {
    padding-bottom: 0;
}

.vz-timeline > li::before {
    content: "";
    position: absolute;
    left: -1.85rem;
    top: 0.4rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--primary);
}

.vz-section.vz-tint .vz-timeline > li::before {
    background: var(--bg-alt);
}

.vz-step-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.vz-step-text {
    display: block;
    font-size: 0.97rem;
    line-height: 1.55;
    color: var(--text);
}

/* --- Plain list --- */
.vz-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    max-width: 62ch;
}

.vz-list li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.vz-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 0.5rem;
    height: 1px;
    background: var(--primary);
}

/* --- Form section wrapper --- */
.vz-form-section {
    padding: 3.75rem 0;
}

.vz-form-section > .container > h2 {
    font-family: var(--serif);
    font-size: clamp(1.55rem, 1.3rem + 1.3vw, 2.05rem);
    color: var(--secondary);
    margin-bottom: 1.75rem;
    text-align: center;
}

.vz-form-section .contact-form-wrapper {
    max-width: 760px;
    margin: 0 auto;
}

/* Honeypot: off-screen for sighted users; the input itself carries
   tabindex="-1" and aria-hidden so assistive tech skips it too. */
.vz-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    /* Header stays ~86px tall on small screens, so keep enough top
       padding to clear it while tightening the rest of the hero. */
    .vz-hero {
        padding: 7rem 0 2.5rem;
    }

    .vz-section,
    .vz-form-section {
        padding: 2.75rem 0;
    }
}

@media (max-width: 520px) {
    .vz-cta-row .btn {
        width: 100%;
        justify-content: center;
    }
}
