/* ============================================================
   custom-carhartt.css — /custom-carhartt brand landing page.
   Loads AFTER nwca-2026-core.css; page-specific layout only.
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.cch-hero { padding: 44px 0 36px; }
.cch-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 44px;
    align-items: center;
}
.cch-eyebrow {
    color: var(--rush-deep);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.cch-hero h1 {
    font-size: clamp(30px, 4.4vw, 46px);
    line-height: 1.06;
    margin: 0 0 14px;
}
.cch-lede { font-size: 16.5px; color: var(--ink-soft); max-width: 56ch; }
.cch-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 14px; }
.cch-ticks {
    display: flex; gap: 18px; flex-wrap: wrap;
    list-style: none; margin: 0; padding: 0;
    font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
}
.cch-hero-media { margin: 0; }
.cch-hero-media img {
    width: 100%; height: auto; display: block;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    background: var(--card);
}
.cch-hero-media figcaption {
    font-size: 12.5px; color: var(--ink-faint); margin-top: 8px; text-align: center;
}

/* ── Sections ──────────────────────────────────────────────── */
.cch-section { padding: 40px 0; }
.cch-section + .cch-section { border-top: 1px solid var(--line); }
.cch-section-alt { background: var(--paper-deep); }
.cch-section h2 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 18px; }
.cch-section-lede { color: var(--ink-soft); max-width: 70ch; margin: -6px 0 10px; }

/* Why cards */
.cch-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}
.cch-why-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 20px;
}
.cch-why-card h3 { font-size: 16.5px; margin: 0 0 8px; }
.cch-why-card p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

/* ── Product grid ──────────────────────────────────────────── */
.cch-family {
    font-size: 15px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--green-900);
    margin: 26px 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px dashed var(--line-strong);
}
.cch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
}
.cch-tile {
    display: flex; flex-direction: column; gap: 3px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 12px 12px 14px;
    text-decoration: none;
    color: var(--ink);
}
.cch-tile:hover { border-color: var(--green-700); }
.cch-tile img {
    width: 100%; height: auto; aspect-ratio: 5 / 6; object-fit: contain;
    background: #fff; border-radius: var(--radius-sm); margin-bottom: 8px;
}
.cch-tile-name { font-weight: 700; font-size: 14.5px; line-height: 1.3; }
.cch-tile-style { font-size: 12.5px; font-weight: 700; color: var(--green-700); }
.cch-tile-stat { font-size: 12.5px; color: var(--ink-soft); }
.cch-browse-all { margin: 26px 0 0; text-align: center; }

/* ── Steps + note ──────────────────────────────────────────── */
.cch-steps {
    margin: 0; padding-left: 22px;
    font-size: 15px; line-height: 1.9; color: var(--ink-soft);
    max-width: 72ch;
}
.cch-steps strong { color: var(--ink); }
.cch-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 12px; max-width: 76ch; }

/* ── FAQ ───────────────────────────────────────────────────── */
.cch-faq { max-width: 80ch; margin: 0; }
.cch-faq dt { font-weight: 800; font-size: 15.5px; margin: 18px 0 6px; }
.cch-faq dt:first-child { margin-top: 0; }
.cch-faq dd { margin: 0; font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

/* ── CTA band ──────────────────────────────────────────────── */
.cch-cta-band {
    background: var(--green-950); color: #fff;
    padding: 44px 0;
}
.cch-cta-inner { text-align: center; }
.cch-cta-band h2 { font-size: clamp(22px, 3vw, 30px); margin: 0 0 8px; color: #fff; }
.cch-cta-band p { color: #cfe0cf; margin: 0 0 18px; }
.cch-cta-band .cch-hero-ctas { justify-content: center; margin: 0; }
.cch-cta-ghost { color: #e6efe6; border-color: rgba(230, 239, 230, 0.5); }
.cch-cta-ghost:hover { color: #fff; border-color: #fff; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .cch-hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .cch-hero-media { max-width: 420px; margin: 0 auto; }
}
