/* ===== subpage layout — pairs with style.css tokens =====
   Landing/legal/about pages reuse the site's classes and add only
   these page-specific pieces. Colour still flows from style.css. */

.page-hero {
    position: relative;
    padding: 128px 0 68px;
    overflow: hidden;
    background: var(--black);
    border-bottom: 1px solid var(--line-soft)
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(920px 460px at 80% 0%, rgba(var(--accent-rgb), .16), transparent 60%);
    pointer-events: none
}

.page-hero .wrap {
    position: relative;
    max-width: 940px
}

.page-hero h1 {
    font-family: var(--disp);
    font-weight: 400;
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.1;
    letter-spacing: .01em;
    margin: 16px 0 16px
}

.page-hero h1 em {
    font-family: var(--si);
    font-style: italic;
    font-weight: 500;
    color: var(--gold-soft)
}

.page-hero .lead {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.7;
    color: var(--ivory-dim);
    max-width: 700px
}

.page-hero .hero-ctas {
    margin-top: 30px
}

.crumb {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--slate);
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    align-items: center
}

.crumb a {
    color: var(--slate);
    transition: color .2s
}

.crumb a:hover {
    color: var(--gold-soft)
}

.crumb .sep {
    opacity: .5
}

.crumb .here {
    color: var(--ivory-dim)
}

/* long-form article body */
.prose {
    max-width: 820px
}

.prose>p {
    color: var(--ivory-dim);
    margin-bottom: 20px;
    font-size: 16.5px;
    line-height: 1.78
}

.prose h2 {
    font-family: var(--disp);
    font-weight: 400;
    font-size: clamp(24px, 3.4vw, 34px);
    line-height: 1.16;
    letter-spacing: .01em;
    margin: 46px 0 16px
}

.prose h3 {
    font-family: var(--disp);
    font-weight: 400;
    font-size: 21px;
    margin: 30px 0 10px
}

.prose strong {
    color: var(--ivory);
    font-weight: 600
}

.prose a {
    color: var(--gold);
    border-bottom: 1px solid rgba(var(--accent-rgb), .32);
    transition: color .2s, border-color .2s
}

.prose a:hover {
    color: var(--gold-soft);
    border-color: var(--gold-soft)
}

.prose ul {
    margin: 0 0 22px;
    padding: 0;
    list-style: none
}

.prose li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 11px;
    color: var(--ivory-dim);
    line-height: 1.7
}

.prose li::before {
    content: "\25C6";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--gold);
    font-size: 11px
}

/* feature / inclusion cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 38px 0 6px
}

.info {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 26px 24px;
    background: var(--carbon);
    transition: border-color .25s, transform .25s
}

.info:hover {
    border-color: var(--line);
    transform: translateY(-3px)
}

.info .ic {
    color: var(--gold);
    font-size: 19px;
    margin-bottom: 12px
}

.info h3 {
    font-family: var(--disp);
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 8px
}

.info p {
    color: var(--ivory-dim);
    font-size: 14.5px;
    line-height: 1.66
}

/* image + text split */
.pg-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 46px;
    align-items: center
}

.pg-split .ph {
    border-radius: var(--radius);
    aspect-ratio: 4/3
}

/* related pages */
.related {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px
}

.related a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line-soft);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--ivory-dim);
    transition: border-color .25s, color .25s, background .25s
}

.related a:hover {
    border-color: var(--gold);
    color: var(--gold-soft);
    background: rgba(var(--accent-rgb), .06)
}

@media(max-width:900px) {
    .info-grid {
        grid-template-columns: 1fr
    }

    .pg-split {
        grid-template-columns: 1fr;
        gap: 28px
    }
}