:root {
    --home-navy: #102a43;
    --home-ink: #17324d;
    --home-burgundy: #8f2437;
    --home-cream: #f6f2ea;
    --home-mist: #edf3f7;
    --home-line: #d8e0e6;
    --home-muted: #536878;
    --home-white: #ffffff;
}

.home-main {
    color: var(--home-ink);
}

.home-main *,
.home-main *::before,
.home-main *::after {
    box-sizing: border-box;
}

.home-main a:focus-visible {
    outline: 3px solid rgba(143, 36, 55, 0.32);
    outline-offset: 4px;
    border-radius: 3px;
}

.home-hero {
    position: relative;
    overflow: hidden;
    background: var(--home-cream);
    border-bottom: 1px solid #e3ddd2;
}

.home-hero::after {
    position: absolute;
    top: 0;
    right: max(4vw, 32px);
    width: 7px;
    height: 38%;
    background: var(--home-burgundy);
    content: "";
}

.home-hero-inner {
    padding-top: clamp(76px, 10vw, 132px);
    padding-bottom: clamp(74px, 9vw, 116px);
}

.home-eyebrow,
.home-section-label,
.home-path-role {
    margin: 0;
    color: var(--home-burgundy);
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.3rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 980px;
    margin: 22px 0 0;
    color: var(--home-navy);
    font-family: var(--gh-font-heading, var(--font-serif));
    font-size: clamp(5rem, 8.4vw, 10.4rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.92;
}

.home-hero h1 span {
    display: block;
    color: var(--home-burgundy);
    font-size: 0.72em;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.home-deck {
    max-width: 790px;
    margin: 30px 0 0;
    color: var(--home-ink);
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: clamp(1.9rem, 2.2vw, 2.35rem);
    line-height: 1.58;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 22px;
    margin-top: 34px;
}

.home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.5rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.home-button-primary {
    background: var(--home-burgundy);
    color: var(--home-white);
}

.home-button-primary:hover {
    background: var(--home-navy);
    color: var(--home-white);
}

.home-button-secondary {
    border-color: #bfcbd3;
    background: rgba(255, 255, 255, 0.5);
    color: var(--home-navy);
}

.home-button-secondary:hover {
    border-color: var(--home-navy);
    background: var(--home-white);
    color: var(--home-navy);
}

.home-paths {
    padding-top: clamp(68px, 8vw, 104px);
    padding-bottom: clamp(72px, 9vw, 116px);
    background: var(--home-white);
}

.home-section-heading h2,
.home-latest-heading h2,
.home-subscribe h2 {
    margin: 10px 0 0;
    color: var(--home-navy);
    font-family: var(--gh-font-heading, var(--font-serif));
    font-size: clamp(3.2rem, 4.7vw, 5.6rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.home-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
    border-top: 2px solid var(--home-navy);
    border-bottom: 1px solid var(--home-line);
}

.home-path {
    position: relative;
    min-width: 0;
    padding: 34px clamp(22px, 3vw, 42px) 38px;
}

.home-path + .home-path {
    border-left: 1px solid var(--home-line);
}

.home-path::before {
    position: absolute;
    top: -2px;
    left: 0;
    width: 72px;
    height: 5px;
    background: var(--home-burgundy);
    content: "";
}

.home-path h3 {
    margin: 15px 0 0;
    color: var(--home-navy);
    font-family: var(--gh-font-heading, var(--font-serif));
    font-size: clamp(2.3rem, 2.6vw, 3.1rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.home-path > p:not(.home-path-role) {
    margin: 18px 0 22px;
    color: var(--home-muted);
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.6rem;
    line-height: 1.62;
}

.home-path a,
.home-all-writing a {
    color: var(--home-burgundy);
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.5rem;
    font-weight: 750;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.home-path a:hover,
.home-all-writing a:hover {
    color: var(--home-navy);
}

.home-latest {
    padding-top: clamp(70px, 9vw, 118px);
    padding-bottom: clamp(76px, 9vw, 118px);
    background: var(--home-mist);
    border-top: 1px solid #d5e0e7;
}

.home-latest-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: end;
    gap: 36px;
}

.home-latest-heading > p {
    max-width: 500px;
    margin: 0 0 4px;
    color: var(--home-muted);
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.7rem;
    line-height: 1.6;
}

.home-article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 46px);
    margin-top: 48px;
}

.home-article {
    min-width: 0;
    background: var(--home-white);
    border: 1px solid var(--home-line);
}

.home-article-image-link {
    position: relative;
    overflow: hidden;
    display: block;
    aspect-ratio: 16 / 9;
    background: #dfe7ec;
}

.home-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.home-article:hover .home-article-image {
    transform: scale(1.018);
}

.home-article-content {
    padding: clamp(24px, 3vw, 34px);
}

.home-article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 18px;
    color: var(--home-muted);
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.25rem;
    font-weight: 650;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.home-article-meta span {
    color: var(--home-burgundy);
}

.home-article h3 {
    margin: 16px 0 0;
    font-family: var(--gh-font-heading, var(--font-serif));
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.home-article h3 a {
    color: var(--home-navy);
    text-decoration: none;
}

.home-article h3 a:hover {
    color: var(--home-burgundy);
}

.home-article-content > p {
    margin: 17px 0 0;
    color: var(--home-muted);
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.55rem;
    line-height: 1.58;
}

.home-reading-time {
    display: block;
    margin-top: 20px;
    color: var(--home-muted);
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.3rem;
}

.home-all-writing {
    margin: 38px 0 0;
}

.home-subscribe {
    background: var(--home-navy);
    color: var(--home-white);
}

.home-subscribe-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    padding-top: clamp(62px, 8vw, 92px);
    padding-bottom: clamp(62px, 8vw, 92px);
}

.home-subscribe .home-section-label {
    color: #e3aab5;
}

.home-subscribe h2 {
    color: var(--home-white);
}

.home-subscribe p:not(.home-section-label) {
    max-width: 690px;
    margin: 18px 0 0;
    color: #dce6ee;
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.7rem;
    line-height: 1.6;
}

.home-button-light {
    min-width: 126px;
    background: var(--home-white);
    color: var(--home-navy);
}

.home-button-light:hover {
    background: var(--home-cream);
    color: var(--home-burgundy);
}

@media (max-width: 767px) {
    .home-hero::after {
        right: 24px;
        width: 5px;
        height: 22%;
    }

    .home-hero h1 {
        font-size: clamp(4.6rem, 15vw, 7.2rem);
        line-height: 0.98;
    }

    .home-deck {
        font-size: 1.85rem;
    }

    .home-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-button {
        width: 100%;
    }

    .home-path-grid {
        grid-template-columns: 1fr;
        border-bottom: 0;
    }

    .home-path {
        padding: 30px 0 34px;
        border-bottom: 1px solid var(--home-line);
    }

    .home-path + .home-path {
        border-left: 0;
    }

    .home-latest-heading,
    .home-article-grid,
    .home-subscribe-inner {
        grid-template-columns: 1fr;
    }

    .home-latest-heading {
        align-items: start;
        gap: 20px;
    }

    .home-article-grid {
        gap: 24px;
        margin-top: 34px;
    }

    .home-subscribe-inner {
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-button,
    .home-article-image {
        transition: none;
    }

    .home-article:hover .home-article-image {
        transform: none;
    }
}
