/* CSS Document */

/* ── VISUAL PLACEHOLDER BLOCK ───────────────────────────────────
   Remove this block and all .vp-* elements before go-live.
   ──────────────────────────────────────────────────────────── */
.vp-block {
     display: none; Hide placeholders  
    border: 2px dashed #b0c4ce;
    background: #f5f9fb;
    border-radius: 4px;
    padding: 18px 20px;
    margin: 20px 0;
    font-size: 0.82rem;
    font-family: monospace;
    line-height: 1.6;
}
.vp-block-label {
    font-family: sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5a7a8c;
    border-bottom: 1px solid #b0c4ce;
    padding-bottom: 8px;
    margin-bottom: 12px;
}
.vp-block table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 0.8rem;
}
.vp-block td {
    padding: 5px 8px 5px 0;
    vertical-align: top;
    color: #444;
    border-top: 1px solid #ddeaf0;
}
.vp-block tr:first-child td { border-top: none; }
.vp-block td:first-child {
    font-weight: 700;
    color: #1f1e1b;
    white-space: nowrap;
    width: 130px;
    padding-right: 14px;
}
.vp-aiprompt {
    margin-top: 10px;
    background: #e8f2f6;
    border-left: 3px solid #5a7a8c;
    padding: 8px 12px;
    font-family: sans-serif;
    font-size: 0.78rem;
    color: #2a4a5a;
    border-radius: 0 3px 3px 0;
}
.vp-aiprompt strong {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5a7a8c;
    margin-bottom: 4px;
}


/* ──  CLD New pages    ──────────────────────────────────────────────────────────── */

/* Eyebrow label above h1 */
.page-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5a7a8c;
    border-left: 3px solid #5a7a8c;
    padding: 2px 0 2px 10px;
    margin-bottom: 10px;
}

/* Intro callout — first strong statement */
.intro-callout {
    border-left: 4px solid #5a7a8c;
    background: #f0f4f6;
    padding: 18px 22px;
    border-radius: 0 3px 3px 0;
    margin-bottom: 1.4rem;
    font-size: 1.05rem;
    line-height: 1.65;
}

/* Timeline stat band */
.timeline-band {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin: 1.4rem 0;
    border-radius: 4px;
    overflow: hidden;
}
.tl-item {
    flex: 1 1 140px;
    background: #1f1e1b;
    padding: 20px 18px;
    text-align: center;
}
.tl-item .tl-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: #5a7a8c;
    line-height: 1;
    margin-bottom: 5px;
}
.tl-item .tl-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    line-height: 1.4;
}

/* Process steps — numbered */
.process { counter-reset: steps; }
.process h3 {
    font-size: 24px;
    counter-increment: steps;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.process h3::before {
    content: counter(steps, decimal-leading-zero);
    font-size: 2rem;
    font-weight: 800;
    color: #ddd;
    line-height: 1;
    flex-shrink: 0;
}

/* FAQ accordion */
.faq-accordion { margin-top: 1rem; }
.faq-accordion details {
    border-bottom: 1px solid #e0dbd4;
}
.faq-accordion details:first-child {
    border-top: 1px solid #e0dbd4;
}
.faq-accordion summary {
    font-size: 1em;
    font-weight: 700;
    padding: 15px 6px 15px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #5a7a8c;
    flex-shrink: 0;
    line-height: 1;
}
details[open] .faq-accordion summary::after,
.faq-accordion details[open] > summary::after { content: '−'; }
.faq-accordion .faq-body {
    padding: 4px 6px 18px 6px;
    color: #444;
    font-size: 0.96rem;
    line-height: 1.7;
}


/* Full-width hero image container (replaces vp-block hero on go-live) */
.hero-img-cont {
    width: 100%;
    height: 365px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid #7c7c7c;
    line-height: 0;
}
.hero-img-cont img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

/* Process steps — responsive (used on backfilling, foundations, etc.) */
@media all and (max-width: 960px) {
    .process { width: 97% !important; margin-left: 10px !important; }
}

@media (max-width: 600px) {
    .tl-item { flex: 1 1 45%; }
    .vp-block td:first-child { width: 90px; }
}