/* Home page sections. */

/* Editorial design language - reused across all home sections */
    .ed-eyebrow { display:inline-flex; align-items:center; gap:.75rem; font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.25em; color:var(--primary); }
    .ed-eyebrow::before { content:""; display:block; width:2.5rem; height:2px; background:var(--primary-2); }
    .ed-title { font-weight:900; text-transform:uppercase; letter-spacing:-.02em; line-height:.95; color:#0f172a; font-size:clamp(2rem,4.5vw,4rem); }
    .ed-title-light { color:#fff; }
    .ed-cta { display:inline-flex; align-items:center; gap:.6rem; background:var(--accent);color:#fff; padding:1rem 2rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; transition:background .2s; }
    .ed-cta:hover { background:var(--accent-dark); }

/* Mission - full-bleed editorial manifesto on the brand green canvas */
    .hog-mission {
        position: relative;
        margin-inline: calc(50% - 50vw);
        /* margin-top: clamp(3.5rem, 7vw, 6rem); */
        background: var(--hog-green);
        color: var(--hog-canvas);
        overflow: hidden;
        isolation: isolate;
    }
    /* local sketch grain layered over the green (body::before grain is global & fixed) */
    /* .hog-mission__grain {
        position: absolute;
        inset: 0;
        z-index: -1;
        opacity: 0.07;
        background-image: none;
        mix-blend-mode: screen;
        pointer-events: none;
    } */
    /* thin cream rules top & bottom - editorial frame */
    .hog-mission__rule {
        position: absolute;
        inset-inline: 0;
        height: 1px;
        background: rgba(255, 248, 236, 0.14);
    }
    .hog-mission__rule--top { top: 0; }
    .hog-mission__rule--bottom { bottom: 0; }

    .hog-mission__inner {
        width: min(1200px, calc(100% - 2rem));
        margin-inline: auto;
        padding-block: var(--hog-section-space);
    }
    .hog-mission__head { max-width: 46rem; }
    .hog-mission__eyebrow { color: var(--hog-red-soft); }
    .hog-mission__title {
        margin: 1.1rem 0 0;
        font-weight: 800;
        font-size: clamp(2.1rem, 4.8vw, 4rem);
        line-height: 1.02;
        color: var(--hog-canvas);
        max-width: 18ch;
        text-wrap: balance;
    }
    .hog-mission__lede {
        margin-top: 1.4rem;
        max-width: 52ch;
        color: rgba(255, 248, 236, 0.82);
        font-size: clamp(1rem, 1.2vw, 1.125rem);
        line-height: 1.72;
    }

    .hog-mission__pillars {
        list-style: none;
        margin: clamp(2.75rem, 5vw, 4rem) 0 0;
        padding: 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .hog-pillar { position: relative; padding-block: 0.25rem; }
    .hog-pillar + .hog-pillar {
        border-block-start: 1px solid rgba(255, 248, 236, 0.14);
        padding-block-start: 1.75rem;
    }
    .hog-pillar__index {
        display: block;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.3em;
        color: rgba(255, 191, 153, 0.72);
    }
    .hog-pillar__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        margin: 1.1rem 0 1.2rem;
        color: var(--hog-canvas);
        border: 1px solid rgba(255, 248, 236, 0.24);
        border-radius: 999px;
    }
    .hog-pillar__icon svg { width: 1.5rem; height: 1.5rem; }
    .hog-pillar__title {
        margin: 0 0 0.6rem;
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--hog-canvas);
    }
    .hog-pillar__body {
        color: rgba(255, 248, 236, 0.8);
        line-height: 1.72;
        font-size: 0.98rem;
    }

    /* Desktop: three columns divided by vertical cream rules */
    @media (min-width: 860px) {
        .hog-mission__pillars {
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }
        .hog-pillar { padding-inline: clamp(1.5rem, 3vw, 2.5rem); }
        .hog-pillar:first-child { padding-inline-start: 0; }
        .hog-pillar:last-child { padding-inline-end: 0; }
        .hog-pillar + .hog-pillar {
            border-block-start: 0;
            padding-block-start: 0.25rem;
            border-inline-start: 1px solid rgba(255, 248, 236, 0.16);
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .hog-mission__grain { opacity: 0.05; }
    }

/* How It Works - the journey of your giving, on the paper canvas */
    .hog-journey { margin-top: var(--hog-section-space); }
    .hog-journey__inner {
        width: min(1200px, 100%);
        margin-inline: auto;
    }
    .hog-journey__head {
        max-width: 42rem;
        margin-inline: auto;
        text-align: center;
    }
    .hog-journey__title { margin-top: 0.75rem; }
    .hog-journey__lede {
        margin: 1rem auto 0;
        max-width: 46ch;
        color: var(--hog-muted);
        line-height: 1.72;
    }

    .hog-journey__grid {
        position: relative;
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 1.25rem;
        margin-top: clamp(2.5rem, 5vw, 4rem);
    }

    /* Sticky rail holds the path, the traveling token, and the three nodes */
    .hog-journey__rail {
        position: relative;
        width: 40px;
        align-self: start;
    }
    /* The untraveled path */
    .hog-journey__track {
        position: absolute;
        top: 8px;
        bottom: 8px;
        left: 50%;
        width: 2px;
        transform: translateX(-50%);
        background: rgba(47, 93, 80, 0.18);
        border-radius: 2px;
    }
    /* The traveled path, drawn top-down as you scroll */
    .hog-journey__fill {
        position: absolute;
        top: 8px;
        left: 50%;
        width: 2px;
        height: calc(100% - 16px);
        transform: translateX(-50%) scaleY(0);
        transform-origin: top center;
        background: var(--hog-orange);
        border-radius: 2px;
        will-change: transform;
    }
    /* The giving token that travels along the path */
    .hog-journey__marker {
        position: absolute;
        top: calc(8px - 11px);
        left: 50%;
        width: 22px;
        height: 22px;
        transform: translate(-50%, 0);
        will-change: transform;
        z-index: 3;
        pointer-events: none;
    }
    .hog-journey__marker-core {
        position: absolute;
        inset: 4px;
        border-radius: 999px;
        background: var(--hog-orange);
        box-shadow:
            0 0 0 4px oklch(0.541 0.213 24.791 / 0.16),
            0 0 0 1px var(--hog-paper) inset;
    }
    .hog-journey__marker::before {
        /* paper halo so the token reads as sitting on the line */
        content: "";
        position: absolute;
        inset: 1px;
        border-radius: 999px;
        background: var(--hog-paper);
    }
    .hog-journey__marker-core { z-index: 1; }

    /* Waypoint nodes, evenly placed along the rail */
    .hog-journey__node {
        position: absolute;
        left: 50%;
        width: 14px;
        height: 14px;
        transform: translate(-50%, -50%);
        border-radius: 999px;
        background: var(--hog-paper);
        border: 2px solid rgba(47, 93, 80, 0.4);
        transition: background-color 220ms var(--hog-ease), border-color 220ms var(--hog-ease), box-shadow 220ms var(--hog-ease);
        z-index: 2;
    }
    .hog-journey__node[data-journey-node="1"] { top: 8px; }
    .hog-journey__node[data-journey-node="2"] { top: 50%; }
    .hog-journey__node[data-journey-node="3"] { top: calc(100% - 8px); }
    .hog-journey__node.is-active {
        background: var(--hog-orange);
        border-color: var(--hog-orange);
        box-shadow: 0 0 0 4px oklch(0.541 0.213 24.791 / 0.16);
    }

    /* Step content */
    .hog-journey__steps {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: clamp(2rem, 4vw, 3.25rem);
    }
    .hog-step { position: relative; }
    .hog-step__head {
        display: flex;
        align-items: baseline;
        gap: 0.75rem;
        margin-bottom: 0.6rem;
    }
    .hog-step__label {
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--hog-green-mid);
        padding: 0.3rem 0.6rem;
        border: 1px solid rgba(47, 93, 80, 0.25);
        border-radius: 999px;
        background: rgba(47, 93, 80, 0.06);
    }
    .hog-step__label--accent {
        color: var(--hog-orange-dark);
        border-color: oklch(0.541 0.213 24.791 / 0.3);
        background: oklch(0.541 0.213 24.791 / 0.08);
    }
    .hog-step__index {
        font-size: 0.95rem;
        font-weight: 800;
        color: rgba(86, 97, 92, 0.45);
        letter-spacing: 0.15em;
    }
    .hog-step__title {
        margin: 0 0 0.5rem;
        font-size: clamp(1.35rem, 2.4vw, 1.85rem);
        font-weight: 800;
        color: var(--hog-ink);
        line-height: 1.18;
    }
    .hog-step__body {
        color: var(--hog-muted);
        line-height: 1.72;
        font-size: 1rem;
        max-width: 56ch;
    }

    .hog-journey__cta { text-align: center; margin-top: clamp(2.5rem, 4vw, 3.5rem); }
    .hog-press {
        transition: transform 180ms var(--hog-ease), background-color 200ms ease;
    }
    .hog-press:hover { transform: translateY(-2px); }
    .hog-press:active { transform: scale(0.96); }

    /* Mobile: remove the detached decorative rail and let the steps read as
       one compact, full-width sequence. */
    @media (max-width: 767px) {
        .hog-journey__head { max-width: 34rem; }
        .hog-journey__title {
            font-size: clamp(1.85rem, 8.5vw, 2.35rem);
            line-height: 1.12;
            text-wrap: balance;
        }
        .hog-journey__lede {
            font-size: 1rem;
            line-height: 1.62;
            text-wrap: pretty;
        }
        .hog-journey__grid {
            display: block;
            margin-top: 2rem;
        }
        .hog-journey__rail { display: none; }
        .hog-journey__steps { gap: 0; }
        .hog-step {
            padding-block: 1.5rem;
            border-top: 1px solid var(--hog-border);
        }
        .hog-step:last-child { border-bottom: 1px solid var(--hog-border); }
        .hog-step__head {
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.8rem;
        }
        .hog-step__body {
            max-width: none;
            font-size: 0.98rem;
            line-height: 1.65;
        }
        .hog-journey__cta { margin-top: 2rem; }
    }

    /* Desktop: rail becomes sticky so the token travels within the viewport */
    @media (min-width: 860px) {
        .hog-journey__grid {
            grid-template-columns: 80px 1fr;
            gap: 2.5rem;
        }
        .hog-journey__rail {
            position: sticky;
            top: 96px;
            height: calc(100dvh - 140px);
            min-height: 420px;
        }
        .hog-step__title { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
    }

    @media (prefers-reduced-motion: reduce) {
        .hog-journey__fill { transform: translateX(-50%) scaleY(1) !important; }
        .hog-journey__marker { transform: translate(-50%, calc(100% - 30px)) !important; }
        .hog-journey__node { border-color: var(--hog-orange); background: var(--hog-orange); }
        .hog-press:hover, .hog-press:active { transform: none; }
    }

/* Heartbeat Animation for Home Page */
        @keyframes home-heartbeat {
            0%, 100% { transform: scale(1); }
            15% { transform: scale(1.15); }
            30% { transform: scale(1); }
            45% { transform: scale(1.1); }
            60% { transform: scale(1); }
        }
        
        .home-heartbeat {
            animation: home-heartbeat 1.5s ease-in-out infinite;
        }
        
        /* Card Entrance Animation */
        .home-orphan-card {
            opacity: 0;
            transform: translateY(20px);
            animation: home-card-entrance 0.6s ease-out forwards;
        }
        
        .home-orphan-card:nth-child(1) { animation-delay: 0.1s; }
        .home-orphan-card:nth-child(2) { animation-delay: 0.2s; }
        .home-orphan-card:nth-child(3) { animation-delay: 0.3s; }
        
        @keyframes home-card-entrance {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .home-heartbeat,
            .home-orphan-card {
                animation: none;
                opacity: 1;
                transform: none;
            }
        }

/* Family Card Entrance Animation */
        .home-family-card {
            opacity: 0;
            transform: translateY(20px);
            animation: home-family-entrance 0.6s ease-out forwards;
        }
        
        .home-family-card:nth-child(1) { animation-delay: 0.1s; }
        .home-family-card:nth-child(2) { animation-delay: 0.2s; }
        .home-family-card:nth-child(3) { animation-delay: 0.3s; }
        
        @keyframes home-family-entrance {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .home-family-card {
                animation: none;
                opacity: 1;
                transform: none;
            }
        }

/* Floating Particles */
    @keyframes float-particle {

        0%,
        100% {
            transform: translateY(0) translateX(0);
            opacity: 0.3;
        }

        25% {
            transform: translateY(-20px) translateX(10px);
            opacity: 0.6;
        }

        50% {
            transform: translateY(-40px) translateX(-5px);
            opacity: 0.3;
        }

        75% {
            transform: translateY(-20px) translateX(15px);
            opacity: 0.5;
        }
    }

    .impact-particle {
        animation: float-particle 8s ease-in-out infinite;
    }

    /* Number card entrance */
    .impact-number-card {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        animation: number-card-up 0.6s ease-out forwards;
    }

    .impact-number-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .impact-number-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .impact-number-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .impact-number-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    @keyframes number-card-up {
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .impact-particle,
        .impact-number-card {
            animation: none;
            opacity: 1;
            transform: none;
        }
    }

/* Impact ledger - editorial, scales with the number of items */
    .hog-impact { margin-top: var(--hog-section-space); }
    .hog-impact__inner {
        width: min(1100px, 100%);
        margin-inline: auto;
    }
    .hog-impact__head { max-width: 46rem; }
    .hog-impact__title { margin-top: 0.75rem; }
    .hog-impact__lede {
        margin-top: 1rem;
        max-width: 52ch;
        color: var(--hog-muted);
        line-height: 1.72;
    }

    .hog-impact__ledger {
        list-style: none;
        margin: clamp(2.5rem, 5vw, 4rem) 0 0;
        padding: 0;
        border-block: 1px solid var(--hog-border);
    }
    .hog-impact__row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding-block: clamp(1.25rem, 2.5vw, 1.9rem);
        border-bottom: 1px solid var(--hog-border);
        transition: background-color 220ms var(--hog-ease);
    }
    .hog-impact__row:last-child { border-bottom: 0; }
    .hog-impact__row:hover { background-color: rgba(216, 205, 184, 0.16); }

    .hog-impact__value {
        display: flex;
        align-items: center;
        gap: 0.85rem;
    }
    .hog-impact__icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        flex-shrink: 0;
        color: var(--hog-canvas);
        background: var(--hog-green);
        border-radius: 999px;
    }
    .hog-impact__icon svg { width: 1.25rem; height: 1.25rem; }
    .hog-impact__amount {
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        font-weight: 800;
        color: var(--hog-ink);
        line-height: 1.05;
        letter-spacing: -0.01em;
    }
    .hog-impact__desc {
        color: var(--hog-muted);
        line-height: 1.7;
        font-size: 0.98rem;
        max-width: 56ch;
    }

    /* Desktop: value column on the left, description on the right */
    @media (min-width: 860px) {
        .hog-impact__row {
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
            gap: 2.5rem;
            align-items: center;
            padding-inline: 0.5rem;
        }
        .hog-impact__desc { padding-inline-start: 1.5rem; border-inline-start: 1px solid var(--hog-border); }
    }

    @media (prefers-reduced-motion: reduce) {
        .hog-impact__row { transition: none; }
        .hog-impact__row:hover { background-color: transparent; }
    }

.hog-trust {
        margin-top: var(--hog-section-space);
        padding-block: var(--hog-section-space);
        background: var(--hog-paper);
        border-block: 1px solid var(--hog-border);
    }
    .hog-trust__inner {
        width: min(1200px, 100%);
        margin-inline: auto;
    }
    .hog-trust__lead { max-width: 48rem; }
    .hog-trust__name {
        margin: 0 0 1rem;
        color: var(--hog-red);
        font-size: 0.78rem;
        font-weight: 800;
    }
    .hog-trust__title {
        margin: 0;
        max-width: 18ch;
        color: var(--hog-ink);
        font-size: clamp(2rem, 4.5vw, 3.75rem);
        font-weight: 800;
        line-height: 1.03;
        text-wrap: balance;
    }
    .hog-trust__lede {
        margin-top: 1.35rem;
        max-width: 62ch;
        color: var(--hog-muted);
        font-size: clamp(1rem, 1.2vw, 1.125rem);
        line-height: 1.75;
    }
    .hog-trust__contact {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        margin-top: 1.5rem;
        min-height: 44px;
        color: var(--hog-ink);
        font-weight: 800;
        text-decoration-color: var(--hog-red);
        text-decoration-line: underline;
        text-decoration-thickness: 2px;
        text-underline-offset: 0.35rem;
    }
    .hog-trust__contact span { color: var(--hog-red); transition: transform 180ms var(--hog-ease); }
    .hog-trust__contact:hover span { transform: translateX(3px); }

    .hog-trust__coordination {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: clamp(3rem, 6vw, 5rem);
        padding-top: clamp(2rem, 4vw, 3rem);
        border-top: 1px solid var(--hog-border);
    }
    .hog-trust__coordination-head h3,
    .hog-trust__facts-head h3 {
        margin: 0;
        max-width: 16ch;
        color: var(--hog-ink);
        font-size: clamp(1.35rem, 2.5vw, 2rem);
        font-weight: 800;
        line-height: 1.15;
        text-wrap: balance;
    }
    .hog-trust__coordination-head p,
    .hog-trust__facts-head p {
        margin-top: 0.8rem;
        max-width: 38ch;
        color: var(--hog-muted);
        line-height: 1.65;
    }
    .hog-trust__steps {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .hog-trust__steps li {
        display: grid;
        grid-template-columns: 2.2rem 1fr;
        gap: 1rem;
        padding-block: 1.25rem;
        border-bottom: 1px solid var(--hog-border);
    }
    .hog-trust__steps li:first-child { padding-top: 0; }
    .hog-trust__steps li:last-child { padding-bottom: 0; border-bottom: 0; }
    .hog-trust__steps li > span {
        color: var(--hog-red);
        font-family: "Geist Mono", ui-monospace, monospace;
        font-size: 0.82rem;
        font-weight: 700;
        line-height: 1.6;
    }
    .hog-trust__steps h4 {
        margin: 0;
        color: var(--hog-ink);
        font-size: 1.05rem;
        font-weight: 800;
    }
    .hog-trust__steps p {
        margin-top: 0.4rem;
        max-width: 56ch;
        color: var(--hog-muted);
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .hog-trust__facts {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: clamp(3rem, 6vw, 5rem);
        padding: clamp(1.5rem, 4vw, 2.5rem);
        background: var(--hog-red-soft);
        border-inline-start: 4px solid var(--hog-red);
        border-radius: var(--hog-radius);
    }
    .hog-trust__facts dl {
        display: grid;
        grid-template-columns: 1fr;
        margin: 0;
    }
    .hog-trust__facts dl > div {
        padding-block: 1rem;
        border-bottom: 1px solid var(--hog-border);
    }
    .hog-trust__facts dl > div:first-child { padding-top: 0; }
    .hog-trust__facts dl > div:last-child { padding-bottom: 0; border-bottom: 0; }
    .hog-trust__facts dt {
        color: var(--hog-muted);
        font-size: 0.78rem;
        font-weight: 700;
    }
    .hog-trust__facts dd {
        margin: 0.35rem 0 0;
        color: var(--hog-ink);
        font-family: "Geist Mono", ui-monospace, monospace;
        font-size: clamp(1.15rem, 2vw, 1.45rem);
        font-weight: 800;
        line-height: 1.3;
    }
    .hog-trust__facts dl p {
        margin-top: 0.25rem;
        color: var(--hog-muted);
        font-size: 0.82rem;
        line-height: 1.5;
    }
    .hog-trust__facts dl a {
        display: inline-block;
        margin-top: 0.55rem;
        color: var(--hog-ink);
        font-size: 0.85rem;
        font-weight: 800;
        text-decoration: underline 2px var(--hog-red);
        text-underline-offset: 0.25rem;
    }

    @media (min-width: 860px) {
        .hog-trust__coordination {
            grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
            gap: clamp(2.5rem, 6vw, 6rem);
        }
        .hog-trust__facts {
            grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
            gap: clamp(2.5rem, 5vw, 5rem);
        }
        .hog-trust__facts dl { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; }
        .hog-trust__facts dl > div { border-top: 1px solid var(--hog-border); border-bottom: 0; }
        .hog-trust__facts dl > div:nth-child(-n + 2) { padding-top: 0; border-top: 0; }
    }
    [dir="rtl"] .hog-trust__contact span { transform: scaleX(-1); }
    [dir="rtl"] .hog-trust__contact:hover span { transform: scaleX(-1) translateX(3px); }
    @media (prefers-reduced-motion: reduce) {
        .hog-trust__contact span { transition: none; }
        .hog-trust__contact:hover span { transform: none; }
        [dir="rtl"] .hog-trust__contact span,
        [dir="rtl"] .hog-trust__contact:hover span { transform: scaleX(-1); }
    }

/* Partner - contained split panel on the paper canvas, distinct from the dark-green Trust card */
    .hog-partner { margin-top: var(--hog-section-space); }
    .hog-partner__card {
        width: min(1200px, 100%);
        margin-inline: auto;
        background: var(--hog-paper);
        border: 1px solid var(--hog-border);
        border-radius: var(--hog-radius);
        box-shadow: var(--hog-shadow);
        overflow: hidden;
    }
    .hog-partner__inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
        padding: clamp(2rem, 5vw, 4rem);
    }

    .hog-partner__lead { max-width: 40rem; }
    .hog-partner__title {
        margin: 0;
        font-size: clamp(1.9rem, 4vw, 3rem);
        font-weight: 800;
        line-height: 1.04;
        color: var(--hog-ink);
        max-width: 18ch;
        text-wrap: balance;
    }
    .hog-partner__lede {
        margin-top: 1.2rem;
        max-width: 50ch;
        color: var(--hog-muted);
        line-height: 1.72;
        font-size: clamp(1rem, 1.2vw, 1.125rem);
    }

    .hog-partner__dock {
        margin-top: 1.8rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem 1.5rem;
        padding-top: 1.6rem;
        border-top: 1px solid var(--hog-border);
    }
    .hog-partner__dock-note {
        color: var(--hog-muted);
        font-size: 0.9rem;
        line-height: 1.6;
        max-width: 34ch;
    }

    /* Partnership models - editorial index with large orange numerals */
    .hog-partner__index {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
    }
    .hog-partner__model {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1.1rem;
        padding-block: 1.4rem;
        border-top: 1px solid var(--hog-border);
        align-items: start;
    }
    .hog-partner__model:first-child { border-top: 0; padding-top: 0; }
    .hog-partner__model:last-child { padding-bottom: 0; }
    .hog-partner__numeral {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 800;
        line-height: 1;
        color: var(--hog-orange);
        letter-spacing: -0.02em;
        font-variant-numeric: tabular-nums;
    }
    .hog-partner__model-title {
        margin: 0 0 0.4rem;
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--hog-ink);
        display: inline-block;
        position: relative;
    }
    .hog-partner__model-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: var(--hog-orange);
        transition: width 260ms var(--hog-ease);
    }
    .hog-partner__model:hover .hog-partner__model-title::after { width: 100%; }
    .hog-partner__model-body {
        color: var(--hog-muted);
        line-height: 1.65;
        font-size: 0.95rem;
    }

    /* Desktop: lead on the left, index on the right */
    @media (min-width: 860px) {
        .hog-partner__inner {
            grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
            gap: clamp(2.5rem, 5vw, 4rem);
            align-items: start;
        }
        .hog-partner__index {
            border-inline-start: 1px solid var(--hog-border);
            padding-inline-start: clamp(2rem, 4vw, 3rem);
        }
        .hog-partner__model:first-child { padding-top: 1.4rem; }
        .hog-partner__model:last-child { padding-bottom: 1.4rem; }
    }

    @media (max-width: 480px) {
        .hog-partner__card { width: 100%; }
        .hog-partner__inner { padding: 1.25rem; }
        .hog-partner__inner > *,
        .hog-partner__lead { min-width: 0; }
        .hog-partner__dock { align-items: stretch; }
        .hog-partner__dock .ed-cta {
            width: 100%;
            justify-content: center;
        }
    }

    /* Scale-on-press for the CTA */
    .hog-press {
        transition: transform 180ms var(--hog-ease), background-color 200ms ease;
    }
    .hog-press:hover { transform: translateY(-2px); }
    .hog-press:active { transform: scale(0.96); }

    @media (prefers-reduced-motion: reduce) {
        .hog-partner__model-title::after { transition: none; }
        .hog-press:hover, .hog-press:active { transform: none; }
    }

/* Give Today - full-bleed dark-green closing call, bookends the opening hero */
    .hog-finale {
        position: relative;
        margin-inline: calc(50% - 50vw);
        margin-top: var(--hog-section-space);
        /* background: var(--hog-green); */
        color: var(--hog-orange);
        overflow: hidden;
        isolation: isolate;
    }
    .hog-finale__grain {
        position: absolute;
        inset: 0;
        z-index: -1;
        opacity: 0.07;
        background-image: none;
        mix-blend-mode: screen;
        pointer-events: none;
    }
    .hog-finale__rule {
        position: absolute;
        inset-inline: 0;
        height: 1px;
        background: rgba(255, 248, 236, 0.14);
    }
    .hog-finale__rule--top { top: 0; }
    .hog-finale__rule--bottom { bottom: 0; }

    .hog-finale__inner {
        width: min(880px, calc(100% - 2rem));
        margin-inline: auto;
        text-align: center;
        padding-block: var(--hog-section-space);
    }
    .hog-finale__title {
        margin: 0;
        font-size: clamp(2.2rem, 5.2vw, 4.2rem);
        font-weight: 800;
        line-height: 1.03;
        color: var(--hog-orange);
        max-width: 16ch;
        margin-inline: auto;
        text-wrap: balance;
    }
    .hog-finale__lede {
        margin: 1.3rem auto 0;
        max-width: 52ch;
        color: var(--hog-orange);
        font-size: clamp(1rem, 1.2vw, 1.125rem);
        line-height: 1.72;
    }

    .hog-finale__actions {
        margin-top: clamp(2rem, 4vw, 2.75rem);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 0.9rem 1rem;
    }
    .hog-finale__btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        min-height: 48px;
        padding: 0.85rem 1.6rem;
        font-weight: 800;
        white-space: nowrap;
        color: white;
        /* border-color: var(--hog-ink); */
    }
    .hog-finale__btn--primary {
        color: white;
        background: var(--hog-orange);
    }
    .hog-finale__btn--ghost {
        background: var(--hog-green);
    }

    /* Scale-on-press with specific transition properties */
    .hog-press {
        transition: transform 180ms var(--hog-ease), background-color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
    }
    .hog-press:hover { transform: translateY(-2px); }
    .hog-press:active { transform: scale(0.96); }

    @media (max-width: 600px) {
        .hog-finale__actions { flex-direction: column; align-items: stretch; }
        .hog-finale__btn { justify-content: center; }
    }

    @media (prefers-reduced-motion: reduce) {
        /* .hog-finale__grain { opacity: 0.05; } */
        .hog-press:hover, .hog-press:active { transform: none; }
    }
