:root {
    --paper: #f4f0e7;
    --paper-light: #fbf8f1;
    --forest: #173c31;
    --forest-dark: #0d2a22;
    --ink: #20251f;
    --muted: #676a62;
    --accent: #a47d3c;
    --line: #d7cfbf;

    /* Shared condition/status language */

    --state-low-bg: #e8eef2;
    --state-low-text: #35576a;

    --state-normal-bg: #e7ece7;
    --state-normal-text: #355243;

    --state-elevated-bg: #f3ead5;
    --state-elevated-text: #785d20;

    --state-high-bg: #f2dfd2;
    --state-high-text: #87482e;

    --state-unknown-bg: #ecebea;
    --state-unknown-text: #686662;

    --predictor-positive-bg: #e7ece7;
    --predictor-positive-text: #355243;

    --predictor-neutral-bg: #ecebea;
    --predictor-neutral-text: #686662;

    --predictor-caution-bg: #f3ead5;
    --predictor-caution-text: #785d20;

    --predictor-negative-bg: #f2dfd2;
    --predictor-negative-text: #87482e;

    --predictor-safety-bg: #ead7d4;
    --predictor-safety-text: #7d302d;

    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;

    --shell: 1180px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
}


/* =========================================================
   Reset and base
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.site-shell {
    width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto;
}

.centered {
    text-align: center;
}

.accent {
    color: var(--accent);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =========================================================
   Inline content links
   ========================================================= */

main p a,
.content-panel a,
.about-copy a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(164, 125, 60, 0.45);
    text-underline-offset: 0.18em;
    transition:
        color 0.2s ease,
        text-decoration-color 0.2s ease;
}

main p a:hover,
.content-panel a:hover,
.about-copy a:hover {
    color: var(--forest);
    text-decoration-color: var(--forest);
}


/* =========================================================
   Header and navigation
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(244, 240, 231, 0.96);
    border-bottom: 1px solid rgba(40, 55, 45, 0.12);
    backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.brand {
    position: relative;
    z-index: 60;
    display: block;
    width: 138px;
    height: 88px;
}

.brand-logo {
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    width: 138px;
    height: 138px;
    object-fit: cover;
    border-radius: 50%;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 3vw, 2.5rem);
}

.nav-link {
    position: relative;
    padding: 2rem 0;
    font-family: var(--serif);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 1.25rem;
    left: 0;
    height: 1px;
    background: var(--accent);
    transition: right 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    right: 0;
}

.header-actions {
    justify-self: end;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
}


/* =========================================================
   Shared typography and sections
   ========================================================= */

.eyebrow {
    margin: 0 0 1rem;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-intro {
    padding-top: clamp(2rem, 4vw, 3rem);
    background: var(--paper);
}

.section-heading {
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.section-heading .eyebrow {
    margin-bottom: 0.25rem;
}

.section-heading h2,
.journal-intro h2,
.page-hero h1,
.content-panel h2 {
    margin: 0.35rem 0 0.6rem;
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.05;
}

.section-heading h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.section-heading > p:not(.eyebrow) {
    max-width: 800px;
    margin-inline: auto;
}

.rule {
    width: 180px;
    height: 1px;
    margin: 1.5rem 0;
    background: var(--accent);
}


/* =========================================================
   Buttons
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.95rem 1.4rem;
    border: 1px solid currentColor;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.button-primary {
    color: white;
    background: var(--forest);
    border-color: rgba(255, 255, 255, 0.6);
}

.button-primary:hover {
    background: var(--forest-dark);
}


/* =========================================================
   Homepage hero
   ========================================================= */

.hero {
    position: relative;
    min-height: 380px;
    display: grid;
    align-items: stretch;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(9, 23, 18, 0.86) 0%,
            rgba(9, 23, 18, 0.58) 38%,
            rgba(9, 23, 18, 0.08) 72%
        ),
        url("/assets/images/homepage/logo.webp") 20% 40% / cover no-repeat;
    transform: scale(1.02);
}

.hero-content {
    position: relative;
    z-index: 1;
    align-self: center;
    padding-block: 3.5rem 2rem;
    color: white;
}

.hero-content h1 {
    max-width: 820px;
    margin: 0.2rem 0 1rem;
    font-family: var(--serif);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 0.88;
}

.hero-content > p:not(.eyebrow) {
    max-width: 680px;
    font-size: 1.05rem;
}


/* =========================================================
   Interior page heroes
   ========================================================= */

.page-hero {
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: white;
    background: var(--forest);
}

.page-hero .site-shell {
    max-width: 900px;
}

.page-hero h1 {
    font-size: clamp(3.2rem, 7vw, 6rem);
}

.page-hero p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
}


/* =========================================================
   Homepage conditions
   ========================================================= */

main > .section.section-intro {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: #ece7dd;
    border-top: 1px solid var(--line);
}

.home-conditions {
    padding: 1.5rem 0 2rem;
    color: var(--ink);
    background: #e9e2d5;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.home-conditions-header {
    margin-bottom: 0.8rem;
}

.home-conditions-heading {
    max-width: 860px;
}

.home-conditions-heading.section-heading {
    margin-bottom: 0;
    text-align: center;
}

.home-conditions-heading .eyebrow {
    margin-bottom: 0.35rem;
    color: var(--accent);
}

.home-conditions-heading h2 {
    margin: 0 0 0.5rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: clamp(1.7rem, 2.3vw, 2.2rem);
    font-weight: 400;
    line-height: 1.05;
}

.home-conditions-heading > p:not(.eyebrow) {
    max-width: 750px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.45;
}

.home-conditions-heading > p.home-conditions-location {
    color: #8f641f;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.conditions-water-region {
    margin: 0;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-conditions-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
}

.home-conditions-panel {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid var(--line);
}

.home-conditions-report {
    padding: 0;
}

.home-conditions-empty {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid var(--line);
}

.home-field-feature {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: var(--forest-dark);
    border: 1px solid var(--line);
}

.home-field-feature > a {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 100%;
    padding: clamp(1.2rem, 2.5vw, 1.75rem);
    isolation: isolate;
    color: white;
}

.home-field-feature > a::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
    background: linear-gradient(
        to top,
        rgba(7, 22, 17, 0.72) 0%,
        rgba(7, 22, 17, 0.28) 50%,
        rgba(7, 22, 17, 0.52) 100%
    );
}

.home-field-feature img {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-field-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    max-width: 31rem;
}

.home-field-heading,
.home-field-footer,
.home-field-eyebrow,
.home-field-title,
.home-field-description,
.home-field-link {
    display: block;
}

.home-field-eyebrow {
    margin-bottom: 0.35rem;
    color: #e1bd72;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-field-title {
    max-width: 27rem;
    font-family: var(--serif);
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    line-height: 1.02;
}

.home-field-description {
    max-width: 28rem;
    margin-top: 0.6rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    line-height: 1.45;
}

.home-field-link {
    margin-top: 0.8rem;
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-field-feature > a:hover .home-field-link {
    color: #e1bd72;
}

.home-conditions-water {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--line);
}

.home-conditions-meta {
    margin: 0;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.35;
    white-space: nowrap;
}

.home-conditions-meta strong {
    color: var(--ink);
    font-weight: 600;
}

.home-conditions-report-body {
    display: block;
}

.home-conditions-label {
    margin: 0 0 0.2rem;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-conditions-decision {
    margin: 0;
    max-width: 760px;
    color: var(--forest);
    font-family: var(--serif);
    font-size: clamp(2.25rem, 3vw, 2.8rem);
    line-height: 0.98;
}

.home-conditions-decision-copy {
    max-width: 30rem;
    margin: 0.25rem 0 0;
    font-size: 0.88rem;
    line-height: 1.35;
}

.home-status-go {
    color: var(--state-normal-text);
}

.home-status-caution,
.home-status-marginal {
    color: var(--state-elevated-text);
}

.home-status-no_go {
    color: var(--state-high-text);
}

.home-status-stale,
.home-status-unknown {
    color: var(--state-unknown-text);
}

.home-status-go .home-conditions-decision,
.home-status-caution .home-conditions-decision,
.home-status-marginal .home-conditions-decision,
.home-status-no_go .home-conditions-decision {
    color: currentColor;
}

.home-status-stale .home-conditions-decision,
.home-status-unknown .home-conditions-decision {
    max-width: 560px;
    color: var(--muted);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.08;
}

.home-conditions-secondary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 1rem;
    margin-top: 0.7rem;
    padding: 0;
}

.home-conditions-detail + .home-conditions-detail {
    margin-top: 0;
}

.home-conditions-detail-value {
    margin: 0;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.2;
}

.home-conditions-detail--window .home-conditions-label,
.home-conditions-detail--window .home-conditions-detail-value {
    white-space: nowrap;
}

.home-conditions-detail > p:last-child:not(.home-conditions-detail-value) {
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.home-conditions-supporting {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.35rem;
    margin: 1.15rem 0 0;
    padding-top: 0.7rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.7rem;
    letter-spacing: 0.035em;
}

.home-conditions-supporting strong {
    color: var(--ink);
    font-weight: 600;
}

.home-conditions-report-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.55rem;
}

.home-conditions-actions {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.home-conditions-actions a {
    color: var(--forest);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-conditions-actions a:hover {
    color: var(--accent);
}

.home-conditions-expansion {
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.home-river-summary {
    margin: 0 0 0.75rem;
    color: var(--forest);
    font: 400 1.3rem/1.15 var(--serif);
}

.home-pool-rows {
    border-top: 1px solid var(--line);
}

.home-pool-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: baseline;
    gap: 0.65rem 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
}

.home-pool-row:hover .home-pool-name {
    color: var(--accent);
}

.home-pool-name {
    color: var(--ink);
    font: 400 1.05rem/1.15 var(--serif);
}

.home-pool-state {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.home-pool-fishing {
    display: flex;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.7rem;
}

.home-pool-fishing strong {
    color: var(--ink);
    font-weight: 700;
}

.home-river-brief .home-conditions-report-footer {
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.75rem;
}

.home-river-updated {
    margin: 0;
    color: var(--muted);
    font-size: 0.67rem;
}

.home-river-link {
    color: var(--forest);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-river-link:hover {
    color: var(--accent);
}


/* Conditions section front */

.conditions-landing-hero {
    position: relative;
    min-height: 0;
    padding: 3.25rem 0;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(9, 23, 18, 0.8) 0%,
            rgba(9, 23, 18, 0.5) 48%,
            rgba(9, 23, 18, 0.16) 100%
        ),
        url("/assets/images/homepage/fox-river-kayak-channel.webp") center 58% / cover no-repeat;
}

.conditions-landing-hero .site-shell {
    position: relative;
    z-index: 1;
    width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
    max-width: 900px;
    padding: 0;
}

.conditions-landing-hero h1 {
    max-width: 760px;
    margin: 0.35rem 0 0.8rem;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.conditions-landing-hero p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 0;
    font-size: 1rem;
}

.conditions-river-overview {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: #e9e2d5;
    border-bottom: 1px solid var(--line);
}

.conditions-river-overview .site-shell {
    max-width: 980px;
}

.conditions-river-overview .eyebrow {
    margin-bottom: 0.45rem;
}

.conditions-river-overview h2 {
    max-width: 900px;
    margin: 0;
    color: var(--forest);
    font: 400 clamp(2rem, 4vw, 3.2rem)/1.05 var(--serif);
}

.conditions-river-overview p:not(.eyebrow) {
    margin: 0.75rem 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.conditions-pools-section {
    padding-top: clamp(2.5rem, 5vw, 4rem);
}

.conditions-pools-section .section-heading {
    margin-bottom: 1.75rem;
}

.conditions-pool-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.conditions-pool-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
}

.conditions-pool-card-header h3 {
    margin: 0.25rem 0 1rem;
    color: var(--forest);
    font: 400 2rem/1.05 var(--serif);
}

.conditions-pool-primary {
    padding: 1rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.conditions-pool-state {
    margin: 0;
    color: var(--forest);
    font: 400 2rem/1 var(--serif);
}

.conditions-status-go .conditions-pool-state {
    color: var(--state-normal-text);
}

.conditions-status-caution .conditions-pool-state,
.conditions-status-marginal .conditions-pool-state {
    color: var(--state-elevated-text);
}

.conditions-status-no_go .conditions-pool-state {
    color: var(--state-high-text);
}

.conditions-status-stale .conditions-pool-state,
.conditions-status-unknown .conditions-pool-state {
    color: var(--state-unknown-text);
}

.conditions-pool-primary > p:last-child {
    margin: 0.55rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.conditions-pool-details {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 1rem;
    padding: 1rem 0;
}

.conditions-pool-details > div + div {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
}

.conditions-pool-details > div > p:last-child {
    margin: 0;
    color: var(--forest);
    font: 400 1.12rem/1.2 var(--serif);
}

.conditions-pool-updated {
    margin: auto 0 0;
    padding-top: 0.8rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.68rem;
}

.conditions-pool-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1rem;
    margin-top: 0.8rem;
}

.conditions-pool-links a {
    color: var(--forest);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.conditions-pool-links a:hover {
    color: var(--accent);
}

.conditions-pools-unavailable {
    margin: 0;
    padding: 1.5rem;
    color: var(--muted);
    background: var(--paper-light);
    border: 1px solid var(--line);
}

/* Compact landing-page and article heroes */

.about-hero,
.build-hero,
.learn-hero,
.explore-hero,
.article-hero {
    position: relative;
    min-height: 0;
    padding: 3.25rem 0;
    overflow: hidden;
}

.about-hero .site-shell,
.build-hero .site-shell,
.learn-hero .site-shell,
.explore-hero .site-shell,
.article-hero .site-shell {
    position: relative;
    z-index: 1;
    width: min(var(--shell), calc(100% - (var(--gutter) * 2)));
    max-width: 900px;
    padding: 0;
}

.about-hero h1,
.build-hero h1,
.learn-hero h1,
.explore-hero h1,
.article-hero h1 {
    max-width: 760px;
    margin: 0.35rem 0 0.8rem;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.about-hero p:not(.eyebrow),
.build-hero p:not(.eyebrow),
.learn-hero p:not(.eyebrow),
.explore-hero p:not(.eyebrow),
.article-hero p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 0;
    font-size: 1rem;
}


/* Landing-page hero images */

.about-hero {
    background:
        linear-gradient(
            90deg,
            rgba(9, 23, 18, 0.78) 0%,
            rgba(9, 23, 18, 0.48) 48%,
            rgba(9, 23, 18, 0.12) 100%
        ),
        url("/assets/images/about/hero.webp") 58% center / cover no-repeat;
}

.explore-hero {
    background:
        linear-gradient(
            90deg,
            rgba(9, 23, 18, 0.78) 0%,
            rgba(9, 23, 18, 0.48) 48%,
            rgba(9, 23, 18, 0.12) 100%
        ),
        url("/assets/images/explore/hero.webp") center / cover no-repeat;
}

.build-hero {
    background:
        linear-gradient(
            90deg,
            rgba(9, 23, 18, 0.78) 0%,
            rgba(9, 23, 18, 0.48) 48%,
            rgba(9, 23, 18, 0.12) 100%
        ),
        url("/assets/images/build/hero.webp") center / cover no-repeat;
}

.learn-hero {
    background:
        linear-gradient(
            90deg,
            rgba(9, 23, 18, 0.78) 0%,
            rgba(9, 23, 18, 0.48) 48%,
            rgba(9, 23, 18, 0.12) 100%
        ),
        url("/assets/images/learn/hero.webp") center / cover no-repeat;
}


/* Article-specific hero */

.article-hero {
    background:
        linear-gradient(
            90deg,
            rgba(9, 23, 18, 0.82) 0%,
            rgba(9, 23, 18, 0.55) 48%,
            rgba(9, 23, 18, 0.18) 100%
        ),
        var(--article-hero-image) var(--article-hero-position, center) /
            cover no-repeat;
}

/* =========================================================
   Article inline image grid
   ========================================================= */
.article-image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;

    width: min(var(--shell), calc(100vw - (var(--gutter) * 2)));
    margin: 2.5rem 50%;
    transform: translateX(-50%);
}

.article-image-grid--content {
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
    margin: 2.5rem 0;
    transform: none;
}

.article-image-grid--three {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
}

.article-image-grid--three .article-image {
    width: auto;
    max-width: none;
}

@media (max-width: 900px) {
    .article-image-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .article-image-grid--three {
        grid-template-columns: 1fr;
    }
}

.article-image {
    flex: 0 1 370px;
    width: 100%;
    max-width: 370px;
    margin: 0;
}

.article-image img {
    display: block;
    width: 100%;
    height: auto;
    background: var(--paper-light);
    border: 1px solid var(--line);
}

.article-image img.article-image-crop {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-image-grid--cropped .article-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.article-image figcaption {
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.45;
    text-align: left;
}

.article-table-wrap {
    width: min(var(--shell), calc(100vw - (var(--gutter) * 2)));
    margin: 2.5rem 50%;
    overflow-x: auto;
    transform: translateX(-50%);
    border: 1px solid var(--line);
    background: var(--paper-light);
}

.article-table-wrap:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.article-table {
    width: 100%;
    min-width: 820px;
    border-collapse: collapse;
    font-size: 0.84rem;
    line-height: 1.55;
}

.article-table th,
.article-table td {
    padding: 1rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.article-table tr > :last-child {
    border-right: 0;
}

.article-table tbody tr:last-child > * {
    border-bottom: 0;
}

.article-table thead th {
    background: var(--forest);
    color: var(--paper-light);
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.article-table tbody th {
    width: 175px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1rem;
}

.article-table tbody th span {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
}

.article-table--animal-comparison {
    min-width: 1050px;
    table-layout: fixed;
}

.article-table--animal-comparison thead th:first-child,
.article-table--animal-comparison tbody th {
    width: 150px;
}

.article-content .article-table--animal-comparison thead a {
    color: var(--paper-light);
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-underline-offset: 0.22em;
}

.article-table--animal-comparison .article-table-image {
    padding: 0;
    background: var(--paper-light);
}

.article-table--animal-comparison .article-table-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 160px;
    object-fit: cover;
    border: 0;
}

.article-table--animal-comparison .article-table-image img[src$="image-coming-soon.svg"] {
    object-fit: contain;
    background: var(--forest);
}

.article-gear-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.25rem;
    width: 100%;
    margin: 2.5rem 0;
    transform: none;
}

.article-gear-grid .article-gear-card {
    width: auto;
    max-width: none;
    background: var(--paper-light);
    border: 1px solid var(--line);
}

.article-gear-grid .article-gear-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.article-gear-grid .article-gear-card figcaption {
    margin: 0;
    padding: 0.75rem 0.85rem 0.9rem;
    font-size: 0.78rem;
}

/* =========================================================
   Homepage path cards
   ========================================================= */

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.path-card {
    background: var(--paper-light);
    border: 1px solid var(--line);
}

.path-card-image {
    display: block;
    overflow: hidden;
}

.path-card-image .card-image {
    transition: transform 0.3s ease;
}

.path-card:hover .path-card-image .card-image {
    transform: scale(1.025);
}

.card-image,
.journal-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card-image {
    aspect-ratio: 4 / 2.45;
}

.image-learn {
    background-image: url("/assets/images/homepage/learn.webp");
}

.image-build {
    background-image: url("/assets/images/homepage/build.webp");
}

.image-explore {
    background-image: url("/assets/images/homepage/explore.webp");
    background-position: 40% 40%;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    margin: 0 0 0.8rem;
    font: 400 2rem/1 var(--serif);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.card-body h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 1px;
    margin-top: 0.8rem;
    background: var(--accent);
}

.card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.card-body h3 a:hover {
    color: var(--accent);
}

.card-body a,
.journal-intro a {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* =========================================================
   Featured and article-card system
   ========================================================= */

.featured-guides {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
}

.featured-guides .section-heading {
    margin-bottom: 1.75rem;
}

.featured-guides .section-heading h2,
.article-section .section-heading h2,
.home-featured .section-heading h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.08;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.article-grid,
.home-featured .featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.home-featured .featured-card h3 {
    font-size: 1.55rem;
}

.home-featured .featured-card-body {
    padding: 1.25rem;
}

.featured-card,
.article-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    background: var(--paper-light);
    border: 1px solid var(--line);
}

.featured-card-image,
.article-card-image {
    display: block;
    overflow: hidden;
}

.featured-card-image {
    aspect-ratio: 16 / 9;
}

.article-card-image {
    aspect-ratio: 16 / 10;
}

.featured-card-image img,
.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-card-image img,
.article-card:hover .article-card-image img {
    transform: scale(1.025);
}

.featured-card-body,
.article-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.featured-card-body {
    padding: 1.5rem;
}

.article-card-body {
    padding: 1.35rem;
}

.featured-card h3 {
    margin: 0 0 0.75rem;
    font: 400 1.85rem/1.08 var(--serif);
}

.article-card h3 {
    margin: 0 0 0.7rem;
    font: 400 1.5rem/1.12 var(--serif);
}

.featured-card h3 a,
.article-card h3 a {
    color: var(--ink);
    text-decoration: none;
}

.featured-card-body > p:not(.article-topic) {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.article-card-body > p:not(.article-topic) {
    margin: 0 0 1.25rem;
    color: var(--muted);
    font-size: 0.84rem;
}

.article-topic {
    margin: 0 0 0.55rem;
    color: var(--accent);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-link {
    margin-top: auto;
    color: var(--ink);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.article-link:hover,
.article-card h3 a:hover,
.featured-card h3 a:hover {
    color: var(--accent);
}


/* Learn Editor's Picks */

.learn-editor-pick {
    min-width: 0;
    min-height: 21rem;
    overflow: hidden;
    background: var(--forest-dark);
    border: 1px solid var(--line);
}

.learn-editor-pick > a {
    position: relative;
    display: flex;
    min-height: 21rem;
    padding: 1.4rem;
    isolation: isolate;
    color: white;
}

.learn-editor-pick > a::after,
.learn-lead-story::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
    background: linear-gradient(
        to top,
        rgba(7, 22, 17, 0.78) 0%,
        rgba(7, 22, 17, 0.28) 52%,
        rgba(7, 22, 17, 0.55) 100%
    );
}

.learn-editor-pick img {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.learn-editor-pick:hover img {
    transform: scale(1.025);
}

.learn-editor-pick-content,
.learn-editor-pick-title,
.learn-editor-pick-description,
.learn-editor-pick-link {
    display: block;
}

.learn-editor-pick-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.learn-editor-pick .article-topic {
    color: #e1bd72;
}

.learn-editor-pick-title {
    max-width: 22rem;
    font: 400 clamp(1.65rem, 2.4vw, 2.15rem)/1.04 var(--serif);
}

.learn-editor-pick-description {
    display: -webkit-box;
    margin: auto 0 0.8rem;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.learn-editor-pick-link {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.learn-editor-pick > a:hover .learn-editor-pick-link {
    color: #e1bd72;
}


/* Learn section fronts */

.learn-category-heading {
    margin-bottom: 1.75rem;
}

.learn-section-front {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
    gap: 1.5rem;
}

.learn-section-front--single {
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 0.32fr);
}

.learn-lead-story,
.learn-supporting-story {
    min-width: 0;
    border: 1px solid var(--line);
}

.learn-lead-story {
    position: relative;
    min-height: 30rem;
    overflow: hidden;
    background: var(--forest-dark);
    isolation: isolate;
}

.learn-supporting-story {
    background: var(--paper-light);
}

.learn-lead-image,
.learn-supporting-image {
    display: block;
    overflow: hidden;
}

.learn-lead-image {
    position: absolute;
    z-index: -2;
    inset: 0;
}

.learn-lead-image img,
.learn-supporting-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.learn-lead-story:hover .learn-lead-image img,
.learn-supporting-story:hover .learn-supporting-image img {
    transform: scale(1.025);
}

.learn-lead-body {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 30rem;
    flex-direction: column;
    padding: clamp(1.35rem, 2.4vw, 2rem);
}

.learn-lead-body .article-topic {
    color: #e1bd72;
}

.learn-lead-body h3,
.learn-supporting-body h3 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
}

.learn-lead-body h3 {
    max-width: 34rem;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.02;
}

.learn-supporting-body h3 a {
    color: var(--ink);
    text-decoration: none;
}

.learn-supporting-body h3 a:hover {
    color: var(--accent);
}

.learn-lead-body h3 a {
    color: white;
    text-decoration: none;
}

.learn-lead-body h3 a:hover {
    color: #e1bd72;
}

.learn-lead-body > p:not(.article-topic) {
    max-width: 38rem;
    margin: auto 0 1rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}

.learn-lead-body .article-link {
    color: white;
}

.learn-lead-body .article-link:hover {
    color: #e1bd72;
}

.learn-supporting-stories {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.learn-supporting-story {
    display: grid;
    grid-template-columns: minmax(0, 0.27fr) minmax(0, 0.73fr);
}

.learn-supporting-image {
    min-height: 100%;
}

.learn-supporting-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 1.25rem;
}

.learn-supporting-body h3 {
    margin-bottom: 0.55rem;
    font-size: clamp(1.25rem, 1.75vw, 1.65rem);
    line-height: 1.08;
}

.learn-supporting-description {
    display: -webkit-box;
    margin: 0 0 0.8rem;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.learn-more-stories {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.learn-more-stories .eyebrow {
    margin: 0;
}

.learn-more-stories ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.learn-more-stories li {
    border: 1px solid var(--line);
}

.learn-more-stories a {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    color: var(--ink);
    font: 400 1.18rem/1.25 var(--serif);
    text-decoration: none;
}

.learn-more-stories a:hover {
    color: var(--accent);
}

.learn-more-stories a span {
    color: var(--muted);
    transition: color 0.2s ease, transform 0.2s ease;
}

.learn-more-stories a:hover span {
    color: var(--accent);
    transform: translateX(0.15rem);
}

.article-link-disabled,
.article-link-disabled:hover {
    color: var(--muted);
    cursor: default;
}

.home-featured {
    padding-top: clamp(2rem, 3vw, 2.75rem);
    padding-bottom: clamp(2rem, 3vw, 2.75rem);
    background: var(--paper);
    border-top: 0;
}

.home-featured .section-heading {
    margin-bottom: 1.75rem;
}


/* =========================================================
   General content layouts
   ========================================================= */

.content-section {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 3rem;
}

.content-panel {
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--paper-light);
    border: 1px solid var(--line);
}

.content-panel h2 {
    font-size: 2.5rem;
}

.feature-list {
    display: grid;
    gap: 1rem;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}


/* =========================================================
   About, Learn, Build, Explore layouts
   ========================================================= */

.about-intro,
.about-region,
.about-philosophy,
.about-founder,
.about-closing {
    padding: 2rem 0;
}

.about-split,
.build-split,
.learn-split,
.explore-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.about-image,
.build-image,
.learn-image,
.explore-image {
    max-height: 340px;
    overflow: hidden;
    border-radius: 4px;
}

.about-image img,
.build-image img,
.learn-image img,
.explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-founder .about-image {
    height: 400px;
}

.about-founder .about-image img {
    object-position: center 35%;
}

.about-region .about-image {
    height: 300px;
}

.about-region .about-image img {
    object-position: 0% 60%;
    transform: scale(1.68);
}


/* =========================================================
   Article layout and typography
   ========================================================= */

.article-section {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: 2rem;
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.article-section .section-heading {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
}

.article-section .section-heading > p:not(.eyebrow) {
    margin-right: 0;
    margin-left: 0;
}

.article-content {
    width: min(100%, 760px);
    margin-inline: auto;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.72;
}

.article-content p {
    margin: 0 0 1.25rem;
    text-align: justify;
    text-justify: inter-word;
}

.article-content .article-lede {
    margin-bottom: 1.75rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2.1vw, 1.5rem);
    line-height: 1.5;
}

.article-note {
    margin-bottom: 1.75rem;
    padding: 1rem 1.2rem;
    color: var(--muted);
    background: var(--paper-light);
    border-left: 3px solid var(--accent);
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: left !important;
}

.article-content h2 {
    margin: 3rem 0 1rem;
    padding-top: 2rem;
    color: var(--forest);
    border-top: 1px solid rgba(40, 55, 45, 0.12);
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
}

.article-content h2:first-of-type {
    margin-top: 2rem;
    padding-top: 0;
    border-top: 0;
}

.article-content h3 {
    margin: 2.5rem 0 0.9rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 400;
    line-height: 1.15;
}

.article-content ul,
.article-content ol {
    margin: 0.5rem 0 1.75rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.65rem;
    padding-left: 0.25rem;
}

.article-content a {
    color: var(--forest);
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

.article-content hr {
    margin: 4rem 0;
    border: 0;
    border-top: 1px solid rgba(40, 55, 45, 0.2);
}

.article-content strong {
    color: var(--forest);
}

.article-checklist {
    margin: 1.5rem 0 2.5rem;
    border: 1px solid var(--line);
}

.article-checklist > div {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.7fr);
    gap: 1.25rem;
    padding: 0.9rem 1rem;
    background: var(--paper-light);
}

.article-checklist > div + div {
    border-top: 1px solid var(--line);
}

.article-checklist dt {
    color: var(--forest);
    font-weight: 700;
}

.article-checklist dd {
    margin: 0;
    color: var(--muted);
}

.article-content .article-card h3 {
    margin: 0 0 0.7rem;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.25;
}

.article-sources {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(40, 55, 45, 0.22);
}

.article-sources h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.article-sources p,
.article-sources li {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.article-related {
    padding-top: 2rem;
    background: var(--paper);
}

.article-content > .article-related {
    margin: 2.5rem 0 3rem;
    padding: 0;
}

.article-callout,
.article-takeaway {
    margin: 3rem 0;
    padding: 1.5rem 1.75rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
}

.article-callout h2,
.article-takeaway h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}


/* =========================================================
   Article quick-spec cards
   ========================================================= */

.article-quick-specs {
    margin: 2rem 0 2.5rem;
    padding: 1.5rem 1.75rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    font-size: 0.9rem;
}

.article-quick-specs h3 {
    margin: 0 0 0.9rem;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.article-quick-specs-grid {
    display: grid;
}

.article-quick-specs-grid > div {
    display: grid;
    grid-template-columns: minmax(150px, 0.8fr) 1.2fr;
    gap: 1.5rem;
    padding: 0.65rem 0;
    border-top: 1px solid var(--line);
}

.article-quick-specs-grid span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.article-quick-specs-grid strong {
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
}


/* =========================================================
   Access-point card grid
   ========================================================= */

.access-point-grid {
    margin: 2rem 0 3rem;
}

.access-point-grid .article-card-image {
    aspect-ratio: 16 / 9;
}

.access-point-grid .article-card h3 {
    margin: 0 0 0.6rem;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

.access-point-grid .article-card h3 a {
    color: inherit;
    text-decoration: none;
}

.access-point-grid .article-card h3 a:hover {
    text-decoration: underline;
}

.access-point-grid .article-card-body > p:not(.article-topic) {
    font-size: 0.84rem;
    line-height: 1.55;
}


/* =========================================================
   Optional article loadout blocks
   ========================================================= */

.article-loadouts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0 2.5rem;
}

.article-loadout {
    padding: 1.2rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
}

.article-loadout h3 {
    margin: 0 0 0.8rem;
    color: var(--forest);
    font-size: 1.1rem;
    line-height: 1.25;
}

.article-loadout ol {
    margin-bottom: 0;
}


/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    padding-top: 3.5rem;
    color: white;
    background: var(--forest);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 2fr) 1fr 1fr 1.6fr;
    gap: 3rem;
}

.site-footer h2 {
    margin: 0 0 0.8rem;
    font: 600 0.72rem/1 var(--sans);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
}

.brand-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: auto;
    max-width: 100%;
    height: auto;
}

.footer-logo {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.2;
}

.brand-copy strong {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.brand-copy small {
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.signup-form {
    display: flex;
    width: 100%;
    margin-top: 0.6rem;
}

.signup-form input {
    width: 100%;
    padding: 0.8rem;
    border: 0;
}

.signup-form button {
    padding: 0 1rem;
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding: 1.2rem 0;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.72rem;
}


/* ============================================================
   Pool Status
   ============================================================ */

.pool-status-page {
    --good: #285f46;
    --warn: #8a6a24;
    --bad: #8a3434;

    --history-reference-year: rgba(84, 122, 138, 0.32);
    --history-current-year: var(--accent);
    --history-seasonal-median: var(--forest);
    --history-band: rgba(164, 125, 60, 0.14);
    --history-grid: rgba(103, 106, 98, 0.18);
}

.pool-status-hero h1 {
    max-width: 820px;
}

.pool-status-hero p:not(.eyebrow) {
    max-width: 720px;
}

.pool-status-content {
    padding: 2.5rem 0 5rem;
}

.pool-intro {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    padding: 1.5rem 1.65rem;

    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.pool-intro h2 {
    margin: 0 0 0.65rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.15;
}

.pool-intro p {
    margin: 0 0 0.9rem;
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.65;
}

.pool-intro p:last-child {
    margin-bottom: 0;
}

.pool-intro a {
    color: var(--forest);
    text-decoration-color: var(--accent);
    text-underline-offset: 0.15em;
}

.pool-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin: 2rem 0 3rem;
}

.pool-summary-card {
    padding: 1rem 1.1rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.pool-summary-card .label {
    margin-bottom: 0.3rem;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pool-summary-card .value {
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
}

.pool-summary-card .subvalue {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.4;
}

.pool-section-heading {
    max-width: 860px;
    margin: 0 0 1.5rem;
}

.pool-section-heading .eyebrow {
    margin-bottom: 0.35rem;
}

.pool-section-heading h2 {
    margin: 0 0 0.55rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    line-height: 1.1;
}

.pool-section-heading > p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.pool-station {
    margin-bottom: 1.5rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.pool-station-header {
    padding: 1.1rem 1.25rem;
    background: rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid var(--line);
}

.pool-station-header h3 {
    margin: 0 0 0.2rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
}

.pool-station-meta {
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pool-station-description {
    max-width: 850px;
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.table-wrap {
    overflow-x: auto;
}

.pool-station table {
    width: 100%;
    min-width: 900px;
    table-layout: fixed;
    border-collapse: collapse;
}

.pool-station th,
.pool-station td {
    padding: 0.42rem 0.25rem;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid var(--line);
    white-space: nowrap;
}

.pool-station th {
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.pool-station tbody tr:last-child td {
    border-bottom: 0;
}

.pool-station th:nth-child(1),
.pool-station td:nth-child(1) {
    width: 165px;
    text-align: left;
}

.pool-station th:nth-child(2),
.pool-station td:nth-child(2) {
    width: 77px;
}

.pool-station th:nth-child(3),
.pool-station td:nth-child(3),
.pool-station th:nth-child(4),
.pool-station td:nth-child(4),
.pool-station th:nth-child(5),
.pool-station td:nth-child(5) {
    width: 67px;
}

.pool-station th:nth-child(6),
.pool-station td:nth-child(6) {
    width: 95px;
}

.pool-station th:nth-child(7),
.pool-station td:nth-child(7) {
    width: 165px;
}

.pool-station th:nth-child(8),
.pool-station td:nth-child(8) {
    width: 96px;
}

.pool-station th:nth-child(9),
.pool-station td:nth-child(9) {
    width: 58px;
}


/* ============================================================
   Pool Conditions
   ============================================================ */

.pool-conditions-hero h1 {
    max-width: 760px;
}

.pool-conditions-hero p:not(.eyebrow) {
    max-width: 680px;
}

.pool-conditions-content {
    padding: 2.5rem 0 5rem;
}

.conditions-detail-heading {
    margin-top: 2.75rem;
    margin-bottom: 1.25rem;
}

.pool-about-section {
    margin-top: 3.5rem;
}

.pool-about-section .pool-section-heading {
    margin-bottom: 1.25rem;
}

.pool-about-section .pool-overview {
    margin-bottom: 0;
}


.conditions-evidence {
    margin-top: 2.75rem;
}

.conditions-evidence .conditions-detail-heading {
    margin-top: 0;
}

.conditions-evidence-matrix {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.conditions-evidence-matrix .decision-item {
    min-height: 0;
    padding: 0.8rem 1rem;
}

.conditions-updated {
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: 0.76rem;
    text-align: right;
}

.pool-overview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2.5rem;
}

.pool-geography {
    padding: 1.5rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.pool-geography .eyebrow {
    margin-bottom: 0.3rem;
}

.pool-geography h2 {
    margin: 0 0 0.65rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.15;
}

.pool-geography p {
    margin: 0 0 0.85rem;
    color: var(--ink);
    font-size: 0.92rem;
    line-height: 1.65;
}

.pool-geography p:last-child {
    margin-bottom: 0;
}

.pool-map {
    min-height: 260px;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.pool-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   Conditions evidence matrix — compact cards
   ============================================================ */

.pool-conditions-page .conditions-evidence-matrix .decision-item {
    padding: 0.85rem 1rem 0.8rem;
}

.pool-conditions-page .conditions-evidence-matrix .decision-label {
    margin-bottom: 0.2rem;
}

.pool-conditions-page .conditions-evidence-matrix .decision-value {
    margin-bottom: 0.25rem;
}

.pool-conditions-page .conditions-evidence-matrix .decision-description {
    margin: 0;
    line-height: 1.4;
}


/* ============================================================
   Fishing Outlook / Shared status panel
   ============================================================ */

.fishing-outlook {
    display: grid;
    grid-template-columns: 220px 1fr;
    margin-bottom: 2.5rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.conditions-outlook {
    margin-bottom: 2rem;
}

.conditions-outlook .outlook-eyebrow {
    letter-spacing: 0.12em;
}

.conditions-outlook .outlook-copy h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
}

.conditions-outlook .outlook-copy p {
    max-width: 760px;
}


.conditions-outlook-with-map {
    grid-template-columns:
        minmax(180px, 220px)
        minmax(0, 1fr)
        minmax(260px, 340px);
}

.conditions-outlook-map {
    min-height: 210px;
    background: var(--paper-light);
    border-left: 1px solid var(--line);
    overflow: hidden;
}

.conditions-outlook-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outlook-window-reason {
    margin-top: 0.45rem !important;
    font-size: 0.76rem !important;
}

.outlook-status {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 175px;
    padding: 1.25rem;
    border-right: 1px solid var(--line);
    text-align: center;
}

.outlook-status-inner {
    width: 100%;
}

.conditions-status-stack {
    min-height: 0;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    background: transparent;
    color: inherit;
}

.conditions-status-panel {
    display: flex;
    flex: 1 1 0;
    width: 100%;
    min-height: 105px;
    padding: 1rem;
    align-items: center;
    justify-content: center;
}

.conditions-status-panel + .conditions-status-panel {
    border-top: 1px solid rgba(31, 43, 36, 0.16);
}

.conditions-status-panel.outlook-go {
    background: var(--state-normal-bg);
    color: #28563b;
}

.conditions-status-panel.outlook-caution,
.conditions-status-panel.outlook-marginal {
    background: var(--state-elevated-bg);
    color: var(--state-elevated-text);
}

.conditions-status-panel.outlook-no_go {
    background: var(--state-high-bg);
    color: var(--state-high-text);
}

.conditions-status-panel.outlook-unknown,
.conditions-status-panel.outlook-stale,
.conditions-status-panel.outlook-unavailable {
    background: var(--state-unknown-bg);
    color: var(--state-unknown-text);
}

.outlook-eyebrow {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.outlook-value {
    display: block;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.outlook-unavailable .outlook-value {
    font-size: 1.45rem;
}

.outlook-direction {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.82;
}

.outlook-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.35rem 1.5rem;
}

.outlook-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    margin-bottom: 0.6rem;
    color: var(--muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.055em;
}

.outlook-meta strong {
    color: var(--ink);
}

.outlook-copy h2 {
    margin: 0 0 0.5rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.2;
}

.outlook-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.outlook-window {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
}

.outlook-window-label {
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.outlook-window-value {
    color: var(--forest);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: right;
}

.outlook-go .outlook-status {
    background: var(--state-normal-bg);
    color: #28563b;
}

.outlook-marginal .outlook-status {
    background: var(--state-elevated-bg);
    color: var(--state-elevated-text);
}

.outlook-no_go .outlook-status {
    background: var(--state-high-bg);
    color: var(--state-high-text);
}

.outlook-unknown .outlook-status,
.outlook-unavailable .outlook-status {
    background: var(--state-unknown-bg);
    color: var(--state-unknown-text);
}

/* The stacked horizon panels own their individual status colors. */
.conditions-outlook .conditions-status-stack,
.fishing-outlook-primary .conditions-status-stack {
    background: transparent;
    color: inherit;
}

/* ============================================================
   Weather context
   ============================================================ */

.weather-context {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 2.5rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.weather-item {
    padding: 0.9rem 1rem;
    border-right: 1px solid var(--line);
}

.weather-item:last-child {
    border-right: 0;
}

.weather-label {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--accent);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.weather-value {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
}

.weather-value.caution {
    color: var(--state-elevated-text);
}


/* ============================================================
   River state
   ============================================================ */

.state-table {
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.state-row {
    display: grid;
    grid-template-columns: 185px 210px 1fr;
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
}

.state-row:last-child {
    border-bottom: 0;
}

.state-name {
    padding: 0.65rem 0.85rem;
    color: var(--forest);
    font-weight: 650;
    white-space: nowrap;
}

.state-status {
    padding: 0.5rem;
    text-align: center;
}

.state-detail {
    padding: 0.65rem 0.85rem;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

.state-badge {
    display: inline-block;
    min-width: 175px;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.state-low {
    background: var(--state-low-bg);
    color: var(--state-low-text);
}

.state-normal {
    background: var(--state-normal-bg);
    color: var(--state-normal-text);
}

.state-elevated {
    background: var(--state-elevated-bg);
    color: var(--state-elevated-text);
}

.state-high {
    background: var(--state-high-bg);
    color: var(--state-high-text);
}

.state-unknown {
    background: var(--state-unknown-bg);
    color: var(--state-unknown-text);
}


/* ============================================================
   Conditions â†’ Fishing transition
   ============================================================ */

.conditions-fishing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0 0;
    padding: 1.5rem 1.65rem;
    color: white;
    background: var(--forest);
    border-radius: 6px;
}

.conditions-fishing-cta-copy {
    max-width: 760px;
}

.conditions-fishing-cta .eyebrow {
    margin-bottom: 0.35rem;
    color: #c6a667;
}

.conditions-fishing-cta h2 {
    margin: 0 0 0.45rem;
    color: white;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.4vw, 1.8rem);
    font-weight: 500;
    line-height: 1.15;
}

.conditions-fishing-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    line-height: 1.55;
}

.conditions-fishing-cta .details-button {
    color: var(--forest);
    background: var(--paper-light);
}

.conditions-fishing-cta .details-button:hover {
    color: var(--forest-dark);
    background: white;
}


/* ============================================================
   Details CTA / Buttons
   ============================================================ */

.details-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.35rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.pool-status-content > .site-shell > .details-cta {
    margin-bottom: 3.5rem;
}

.details-copy {
    min-width: 0;
}

.details-copy strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
}

.details-copy span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.details-button {
    display: inline-block;
    flex: 0 0 auto;
    padding: 0.6rem 0.9rem;
    background: var(--forest);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}

.details-button:hover {
    background: var(--forest-dark);
}

.details-button.secondary {
    color: var(--forest);
    background: transparent;
    border: 1px solid var(--forest);
}

.details-button.secondary:hover {
    color: white;
    background: var(--forest);
}


/* ============================================================
   Conditions methodology
   ============================================================ */

.conditions-methodology {
    max-width: 900px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.conditions-methodology h2 {
    margin: 0 0 0.75rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
}

.conditions-methodology p {
    margin: 0 0 0.7rem;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
}


/* ============================================================
   Fishing Outlook Details
   ============================================================ */

.fishing-details-hero h1 {
    max-width: 820px;
}

.fishing-details-hero p:not(.eyebrow) {
    max-width: 720px;
}

.fishing-details-content {
    padding: 2.5rem 0 5rem;
}


/* ------------------------------------------------------------
   Model introduction
   ------------------------------------------------------------ */

.predictor-intro {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 1.5rem 1.65rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.predictor-intro .eyebrow {
    margin-bottom: 0.35rem;
}

.predictor-intro h2 {
    margin: 0 0 0.75rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.15;
}

.predictor-intro p {
    margin: 0 0 0.9rem;
    color: var(--ink);
    font-size: 0.94rem;
    line-height: 1.65;
}

.predictor-intro p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   Primary decisions
   ============================================================ */

.primary-decision-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.primary-decision-card {
    min-width: 0;
    padding: 1.1rem 1.15rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.primary-decision-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0 0 0.6rem;
}

.primary-decision-header > div {
    min-width: 0;
}

.primary-decision-header .eyebrow {
    margin: 0 0 0.15rem;
}

.primary-decision-header h2 {
    margin: 0;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.1;
}

.primary-decision-context {
    margin: 0 0 0.6rem;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.4;
}

.primary-decision-result {
    margin: 0;
    padding: 0.45rem 0;
    border-top: 1px solid var(--line);
}

.primary-decision-result .decision-label {
    margin-bottom: 0.1rem;
}

.primary-decision-value {
    display: block;
    margin: 0;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.15;
}

.primary-decision-result p {
    margin: 0.18rem 0 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.35;
}

.primary-decision-factors {
    margin: 0.2rem 0 0;
    padding: 0.35rem 0 0;
    border-top: 1px solid var(--line);
}

.primary-decision-factors > .decision-label {
    display: block;
    margin: 0 0 0.15rem;
    padding: 0;
}

.primary-decision-factor {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 0.45rem;
    align-items: center;
    min-height: 0;
    margin: 0;
    padding: 1px 0;
    border: 0;
}

.primary-decision-factor-label {
    min-width: 0;
    margin: 0;
    padding: 0;
    color: var(--ink);
    font-size: 0.76rem;
    line-height: 1.1;
}

.primary-decision-factor .decision-marker {
    margin: 0;
    padding: 2px 6px;
    font-size: 0.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}


/* ============================================================
   Predictor sections
   ============================================================ */

.predictor-section {
    margin-bottom: 1.5rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.predictor-section-header {
    padding: 1.15rem 1.3rem;
    background: var(--paper-light);
    border-bottom: 1px solid var(--line);
}

.predictor-section-header-split {
    display: grid;
    grid-template-columns: minmax(180px, max-content) max-content minmax(0, 1fr);
    column-gap: 1.5rem;
    row-gap: 0.75rem;
    align-items: center;
}

.predictor-section-title {
    min-width: 0;
    white-space: nowrap;
}

.predictor-section-title .eyebrow,
.predictor-section-header .eyebrow {
    margin-bottom: 0.25rem;
}

.predictor-section-title h2,
.predictor-section-header h2 {
    margin: 0;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.15;
}

.predictor-section-decision {
    white-space: nowrap;
}

.predictor-section-description {
    min-width: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.55;
}


/* ------------------------------------------------------------
   Section badges
   ------------------------------------------------------------ */

.section-rating {
    display: inline-block;
    width: auto;
    min-width: 88px;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    font-size: 0.64rem;
    font-weight: 650;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.rating-positive {
    background: var(--predictor-positive-bg);
    color: var(--predictor-positive-text);
}

.rating-neutral {
    background: var(--predictor-neutral-bg);
    color: var(--predictor-neutral-text);
}

.rating-caution {
    background: var(--predictor-caution-bg);
    color: var(--predictor-caution-text);
}

.rating-negative {
    background: var(--predictor-negative-bg);
    color: var(--predictor-negative-text);
}


/* ============================================================
   Decision grid
   ============================================================ */

.decision-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.decision-item {
    min-width: 0;
    padding: 1.05rem 1.1rem 1.15rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.decision-item:nth-child(4n) {
    border-right: 0;
}

.decision-label {
    display: block;
    margin: 0 0 0.3rem;
    color: var(--accent);
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.decision-value {
    margin: 0 0 0.4rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
}

.decision-description {
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.5;
}


/* ------------------------------------------------------------
   Decision contribution markers
   ------------------------------------------------------------ */

.decision-marker {
    display: inline-block;
    width: auto;
    min-width: 0;
    margin: 0 0 0.5rem;
    padding: 0.12rem 0.32rem;
    border-radius: 3px;
    font-size: 0.56rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.045em;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.decision-marker.positive {
    background: var(--predictor-positive-bg);
    color: var(--predictor-positive-text);
}

.decision-marker.neutral {
    background: var(--predictor-neutral-bg);
    color: var(--predictor-neutral-text);
}

.decision-marker.caution {
    background: var(--predictor-caution-bg);
    color: var(--predictor-caution-text);
}

.decision-marker.negative {
    background: var(--predictor-negative-bg);
    color: var(--predictor-negative-text);
}

.decision-marker.safety {
    background: var(--predictor-safety-bg);
    color: var(--predictor-safety-text);
}


/* ------------------------------------------------------------
   Thresholds
   ------------------------------------------------------------ */

.decision-thresholds {
    margin-top: 0.7rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--line);
}

.decision-threshold-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.12rem 0;
    color: var(--muted);
    font-size: 0.64rem;
    line-height: 1.35;
}

.decision-threshold-row > span {
    min-width: 0;
}

.threshold-rating {
    flex: 0 0 auto;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    white-space: nowrap;
}

.threshold-rating.positive {
    color: var(--predictor-positive-text);
}

.threshold-rating.neutral {
    color: var(--predictor-neutral-text);
}

.threshold-rating.caution {
    color: var(--predictor-caution-text);
}

.threshold-rating.negative {
    color: var(--predictor-negative-text);
}

.threshold-rating.safety {
    color: var(--predictor-safety-text);
}


/* ------------------------------------------------------------
   Predictor section actions
   ------------------------------------------------------------ */

.predictor-section-action {
    padding: 1rem 1.3rem;
    border-top: 1px solid var(--line);
}

.predictor-section-action .details-button {
    margin: 0;
}


/* ------------------------------------------------------------
   Final decision explanation
   ------------------------------------------------------------ */

.predictor-conclusion {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 1.5rem 1.65rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
}

.predictor-conclusion .eyebrow {
    margin-bottom: 0.3rem;
}

.predictor-conclusion h2 {
    margin: 0 0 0.75rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.15;
}

.predictor-conclusion p {
    margin: 0 0 0.85rem;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.6;
}

.predictor-conclusion p:last-child {
    margin-bottom: 0;
}


/* ------------------------------------------------------------
   Details navigation
   ------------------------------------------------------------ */

.details-navigation {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
}


/* ============================================================
   Measurements
   ============================================================ */

.metric {
    overflow: hidden;
    font-size: 0.8rem;
    font-weight: 600;
    text-overflow: ellipsis;
}

.metric-code {
    display: block;
    margin-top: 0.05rem;
    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 400;
}

.current {
    color: var(--forest);
    font-size: 0.9rem;
    font-weight: 650;
}

.unit {
    margin-left: 0.08rem;
    color: var(--muted);
    font-size: 0.64rem;
}

.change-cell {
    font-size: 0.72rem;
    line-height: 1.05;
}

.direction {
    display: inline-block;
    margin-right: 0.12rem;
    font-weight: 700;
}

.pool-status-page .positive {
    color: var(--good);
}

.pool-status-page .negative {
    color: var(--bad);
}

.pool-status-page .neutral {
    color: var(--muted);
}

.range {
    font-size: 0.7rem;
}

.range-separator {
    margin: 0 0.1rem;
    color: var(--muted);
}


/* ============================================================
   Sparklines
   ============================================================ */

.sparkline-wrap {
    width: 155px;
    margin: 0 auto;
}

.sparkline {
    display: block;
    width: 155px;
    height: 34px;
}

.sparkline-line {
    fill: none;
    stroke: var(--forest);
    stroke-width: 1.5;
    vector-effect: non-scaling-stroke;
}

.sparkline-baseline {
    stroke: var(--line);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

.sparkline-end {
    fill: var(--forest);
}

.sparkline-window {
    margin-top: 0.08rem;
    color: var(--muted);
    font-size: 0.56rem;
    line-height: 1;
}

.sparkline-empty {
    color: var(--muted);
    font-size: 0.65rem;
}


/* ============================================================
   Feed health
   ============================================================ */

.health {
    display: inline-block;
    padding: 0.18rem 0.4rem;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 650;
}

.health-fresh {
    color: var(--good);
    background: rgba(40, 95, 70, 0.10);
}

.health-delayed {
    color: var(--warn);
    background: rgba(138, 106, 36, 0.12);
}

.health-stale {
    color: var(--bad);
    background: rgba(138, 52, 52, 0.10);
}

.observed {
    font-size: 0.68rem;
}


/* ============================================================
   Fifteen-year history
   ============================================================ */

.pool-history-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
}

.pool-history-card {
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid var(--line);
    border-radius: 5px;
}

.history-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.65rem;
}

.history-title h4 {
    margin: 0 0 0.2rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
}

.history-title p {
    max-width: 710px;
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.45;
}

.history-code {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.6rem;
}

.history-chart-wrap {
    overflow-x: auto;
    padding-bottom: 0.15rem;
}

.history-chart {
    display: block;
    width: 100%;
    min-width: 760px;
    height: auto;
}

.history-chart .gridline {
    stroke: var(--history-grid);
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
}

.history-chart .axis-label {
    fill: var(--muted);
    font-size: 10px;
}

.history-chart .history-band {
    fill: var(--history-band);
    stroke: none;
}

.history-chart .history-seasonal-median {
    fill: none;
    stroke: var(--history-seasonal-median);
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
}

.history-chart .year-line {
    fill: none;
    vector-effect: non-scaling-stroke;
}

.history-chart .history-reference-year {
    stroke: var(--history-reference-year);
    stroke-width: 1;
}

.history-chart .history-current-year {
    stroke: var(--history-current-year);
    stroke-width: 2.25;
}

.history-chart .history-current-marker {
    fill: var(--history-current-year);
    stroke: var(--paper-light);
    stroke-width: 1.5;
    vector-effect: non-scaling-stroke;
}


/* ============================================================
   Historical legend
   ============================================================ */

.history-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 0.65rem;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
}

.legend-line {
    display: inline-block;
    width: 18px;
    height: 0;
    border-top: 2px solid currentColor;
}

.legend-line.seasonal-median {
    border-top-width: 4px;
    color: var(--history-seasonal-median);
}

.legend-line.reference-years {
    color: var(--history-reference-year);
}

.legend-line.current-year {
    border-top-width: 3px;
    color: var(--history-current-year);
}

.legend-band {
    display: inline-block;
    width: 18px;
    height: 8px;
    background: var(--history-band);
    border: 1px solid rgba(164, 125, 60, 0.28);
}

.history-note {
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 0.66rem;
    line-height: 1.45;
}


/* ============================================================
   Collector failures
   ============================================================ */

.pool-errors {
    margin-top: 2rem;
    padding: 1.25rem;
    background: #fff7f3;
    border: 1px solid #dec8bb;
    border-radius: 6px;
}

.pool-errors h2 {
    margin: 0 0 0.75rem;
    color: var(--bad);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
}

.pool-errors pre {
    white-space: pre-wrap;
    font-size: 0.74rem;
}


/* ============================================================
   Data methodology
   ============================================================ */

.pool-data-note {
    max-width: 900px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.pool-data-note h2 {
    margin: 0 0 0.75rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
}

.pool-data-note p {
    margin: 0 0 0.75rem;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.55;
}


/* =========================================================
   Responsive: large tablet
   ========================================================= */

@media (max-width: 1000px) {

    .primary-decision-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .predictor-section-header-split {
        grid-template-columns: max-content max-content;
    }

    .predictor-section-description {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   Responsive: tablet
   ========================================================= */

@media (max-width: 900px) {

    .article-gear-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-conditions-cards {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-conditions-empty {
        display: none;
    }

    .home-field-feature {
        min-height: 26rem;
    }

    .conditions-pool-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .conditions-evidence-matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .conditions-outlook-with-map {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .conditions-outlook-with-map .conditions-outlook-map {
        grid-column: 1 / -1;
        min-height: 300px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }


    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .brand {
        width: 80px;
        height: 80px;
    }

    .brand-logo {
        position: static;
        width: 80px;
        height: 80px;
    }

    .header-actions {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        padding: 0.6rem 0.8rem;
        background: none;
        border: 1px solid var(--forest);
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        padding: 1rem var(--gutter) 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .nav-link {
        padding: 0.65rem 0;
    }

    .nav-link::after {
        bottom: 0.35rem;
    }

    .path-grid,
    .journal-grid,
    .trust-grid,
    .footer-grid,
    .featured-grid,
    .home-featured .featured-grid,
    .article-grid,
    .article-loadouts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .learn-section-front,
    .learn-section-front--single {
        grid-template-columns: minmax(0, 1fr);
    }

    .learn-supporting-stories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .learn-supporting-story {
        grid-template-columns: minmax(0, 1fr);
    }

    .learn-supporting-image {
        aspect-ratio: 16 / 9;
    }

    .journal-panel,
    .content-grid,
    .about-split,
    .build-split,
    .learn-split,
    .explore-split {
        grid-template-columns: 1fr;
    }

    .decision-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .decision-item:nth-child(4n) {
        border-right: 1px solid var(--line);
    }

    .decision-item:nth-child(2n) {
        border-right: 0;
    }

}


/* =========================================================
   Responsive: medium
   ========================================================= */

@media (max-width: 820px) {

    .pool-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .pool-overview {
        grid-template-columns: 1fr;
    }

    .pool-map {
        min-height: 300px;
    }

    .weather-context {
        grid-template-columns: repeat(2, 1fr);
    }

    .weather-item:nth-child(2n) {
        border-right: 0;
    }

}


/* =========================================================
   Responsive: primary decisions / smaller tablet
   ========================================================= */

@media (max-width: 760px) {

    .primary-decision-grid {
        grid-template-columns: 1fr;
    }

    .primary-decision-header {
        align-items: center;
    }

}


/* =========================================================
   Responsive: predictor sections
   ========================================================= */

@media (max-width: 700px) {

    .predictor-section-header-split {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .predictor-section-title,
    .predictor-section-decision {
        white-space: normal;
    }

    .predictor-section-description {
        grid-column: auto;
    }

}


/* =========================================================
   Responsive: pool conditions
   ========================================================= */

@media (max-width: 650px) {


    .conditions-outlook-with-map {
        grid-template-columns: 1fr;
    }

    .conditions-outlook-with-map .conditions-outlook-map {
        grid-column: auto;
        min-height: 280px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }


    .fishing-outlook {
        grid-template-columns: 1fr;
    }

    .outlook-status {
        min-height: 0;
        padding: 1rem 1.25rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .outlook-value {
        font-size: 2.15rem;
    }

    .outlook-window {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.25rem;
    }

    .outlook-window-value {
        text-align: left;
    }

    .state-row {
        grid-template-columns: 1fr;
    }

    .state-name {
        padding-bottom: 0.15rem;
    }

    .state-status {
        padding: 0.25rem 0.85rem;
        text-align: left;
    }

    .state-detail {
        padding-top: 0.35rem;
        padding-bottom: 0.85rem;
    }

    .state-badge {
        min-width: 0;
    }

    .details-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .conditions-fishing-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .conditions-fishing-cta .details-button {
        width: 100%;
        text-align: center;
    }

}


/* =========================================================
   Responsive: mobile
   ========================================================= */

@media (max-width: 620px) {

    .brand-copy {
        display: none;
    }

    .hero {
        min-height: 500px;
    }

    .hero-image {
        background-position: 56% center;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .home-conditions {
        padding: 2rem 0;
    }

    .home-conditions-header {
        display: block;
    }

    .home-conditions-report {
        padding: 0;
    }

    .home-field-feature {
        min-height: 22rem;
    }

    .home-conditions-water {
        gap: 0.35rem;
        margin-bottom: 0.5rem;
    }

    .home-conditions-meta {
        font-size: 0.58rem;
    }

    .home-conditions-report-body {
        display: block;
    }

    .home-conditions-secondary {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 0.8rem;
        padding: 0;
    }

    .home-conditions-report-footer {
        display: block;
    }

    .home-pool-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.2rem 0.75rem;
    }

    .home-pool-fishing {
        grid-column: 1 / -1;
    }

    .home-river-brief .home-conditions-report-footer {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
    }

    .home-conditions-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .about-hero,
    .build-hero,
    .learn-hero,
    .explore-hero,
    .conditions-landing-hero,
    .article-hero {
        padding: 2.5rem 0;
    }

    .about-hero h1,
    .build-hero h1,
    .learn-hero h1,
    .explore-hero h1,
    .conditions-landing-hero h1,
    .article-hero h1 {
        font-size: clamp(2.35rem, 11vw, 3.25rem);
    }

    .conditions-pool-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
    }

    .conditions-pool-card {
        padding: 1.25rem;
    }

    .path-grid,
    .journal-grid,
    .trust-grid,
    .footer-grid,
    .featured-grid,
    .home-featured .featured-grid,
    .article-grid,
    .article-loadouts {
        grid-template-columns: 1fr;
    }

    .featured-guides,
    .article-section {
        padding-top: 2rem;
    }

    .learn-editor-pick,
    .learn-editor-pick > a {
        min-height: 20rem;
    }

    .learn-category-heading {
        margin-bottom: 1.35rem;
    }

    .learn-section-front,
    .learn-supporting-stories {
        gap: 1rem;
    }

    .learn-supporting-stories {
        grid-template-columns: minmax(0, 1fr);
    }

    .learn-supporting-story {
        grid-template-columns: minmax(0, 0.27fr) minmax(0, 0.73fr);
    }

    .learn-supporting-image {
        aspect-ratio: auto;
    }

    .learn-supporting-body {
        padding: 1rem;
    }

    .learn-supporting-body h3 {
        font-size: 1.25rem;
    }

    .learn-supporting-description {
        font-size: 0.78rem;
        -webkit-line-clamp: 3;
    }

    .learn-more-stories {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.65rem;
        margin-top: 1.2rem;
    }

    .learn-more-stories ul {
        grid-template-columns: minmax(0, 1fr);
    }

    .article-content {
        font-size: 1rem;
        line-height: 1.72;
    }

    .article-content p {
        text-align: left;
    }

    .article-content h2 {
        margin-top: 2.75rem;
    }

    .article-content .article-lede {
        font-size: 1.25rem;
    }

    .article-quick-specs {
        padding: 1.25rem;
    }

    .article-quick-specs-grid > div {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

}


/* =========================================================
   Responsive: narrow mobile
   ========================================================= */

@media (max-width: 600px) {

    .pool-status-content {
        padding-top: 1.5rem;
    }

    .pool-summary {
        grid-template-columns: 1fr;
    }

    .pool-intro {
        padding: 1.15rem;
    }

    .history-header {
        display: block;
    }

    .history-code {
        margin-top: 0.3rem;
    }

}


/* =========================================================
   Responsive: decision cards
   ========================================================= */

@media (max-width: 560px) {


    .conditions-evidence-matrix {
        grid-template-columns: 1fr;
    }



    .conditions-evidence-matrix .decision-item {
        min-height: 0;
    }


    .fishing-details-content {
        padding-top: 1.5rem;
    }

    .predictor-intro,
    .predictor-conclusion {
        padding: 1.15rem;
    }

    .decision-grid {
        grid-template-columns: 1fr;
    }

    .decision-item,
    .decision-item:nth-child(2n),
    .decision-item:nth-child(4n) {
        border-right: 0;
    }

    .section-rating {
        min-width: 0;
    }

    .predictor-section-header {
        padding: 1rem;
    }

    .predictor-section-action {
        padding: 0.85rem 1rem;
    }

    .details-navigation {
        flex-direction: column;
        align-items: stretch;
    }

    .details-navigation .details-button {
        text-align: center;
    }

    .primary-decision-header {
        align-items: flex-start;
    }

}


/* =========================================================
   Related article calls to action
   ========================================================= */

.related-ctas {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--paper-light);
    border-top: 1px solid var(--line);
}

.related-ctas .section-heading {
    margin-bottom: 2rem;
}


/* =========================================================
   Responsive: small mobile
   ========================================================= */

@media (max-width: 480px) {

    .weather-context {
        grid-template-columns: 1fr;
    }

    .weather-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .weather-item:last-child {
        border-bottom: 0;
    }

    .primary-decision-card {
        padding: 1rem;
    }

    .primary-decision-header {
        flex-direction: column;
        gap: 0.4rem;
    }

    .primary-decision-factor {
        grid-template-columns: minmax(0, 1fr) max-content;
    }

}


/* ============================================================
   Fishing Outlook â€” redesigned presentation
   ============================================================ */

.fishing-outlook-primary {
    margin-bottom: 1.5rem;
}

.fishing-outlook-primary .outlook-copy h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
}

.fishing-outlook-primary .outlook-window-reason {
    margin-top: 0.45rem;
    font-size: 0.76rem;
}

.fishing-primary-decision-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
    margin-bottom: 2rem;
}

.fishing-primary-decision-grid .primary-decision-card {
    padding: 1rem 1.05rem;
}

.fishing-primary-decision-grid .primary-decision-context {
    margin-bottom: 0;
    font-size: 0.74rem;
    line-height: 1.45;
}


/* ------------------------------------------------------------
   Watch for
   ------------------------------------------------------------ */

.fishing-watch {
    display: grid;
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 2.3fr);
    gap: 1.5rem;
    margin: 0 0 1.5rem;
    padding: 1.2rem 1.3rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-left: 3px solid var(--predictor-caution-text);
    border-radius: 6px;
}

.fishing-watch-heading .eyebrow {
    margin-bottom: 0.25rem;
}

.fishing-watch-heading h2 {
    margin: 0;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.15;
}

.fishing-watch-items {
    display: grid;
    gap: 0.5rem;
}

.fishing-watch-item {
    color: var(--ink);
    font-size: 0.82rem;
    line-height: 1.5;
}

.fishing-watch-item + .fishing-watch-item {
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
}


/* ------------------------------------------------------------
   River bridge
   ------------------------------------------------------------ */

.fishing-river-bridge {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1rem 1.2rem;
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
}

.fishing-river-bridge-copy {
    min-width: 0;
}

.fishing-river-bridge-copy .eyebrow {
    margin-bottom: 0.2rem;
}

.fishing-river-bridge-copy strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--forest);
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
}

.fishing-river-bridge-copy span {
    display: block;
    max-width: 760px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.fishing-river-bridge .state-badge {
    min-width: 0;
}


/* ------------------------------------------------------------
   Decision-aligned fishing evidence
   ------------------------------------------------------------ */

.fishing-evidence {
    margin-top: 0;
}

.fishing-evidence-heading {
    margin-bottom: 1.25rem;
}

.fishing-evidence-groups {
    display: grid;
    gap: 1.5rem;
}

.fishing-evidence-group {
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}

.fishing-evidence-group-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem 1.25rem;
    padding: 1.15rem 1.25rem;
    background: rgba(28, 58, 46, 0.045);
}

.fishing-evidence-group-title .eyebrow {
    margin-bottom: 0.25rem;
}

.fishing-evidence-group-title h3 {
    margin: 0;
    color: var(--forest);
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 600;
    line-height: 1.15;
}

.fishing-evidence-group-description {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.fishing-evidence-matrix {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
}

.fishing-evidence-card {
    min-height: 0;
}

.fishing-evidence-card .decision-marker {
    margin-bottom: 0.4rem;
}


/* ------------------------------------------------------------
   Rule disclosure
   ------------------------------------------------------------ */

.decision-rules {
    margin-top: 0.65rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--line);
}

.decision-rules summary {
    cursor: pointer;
    color: var(--forest);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.decision-rules[open] summary {
    margin-bottom: 0.4rem;
}

.decision-rules .decision-thresholds {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}


/* ------------------------------------------------------------
   Paid forecast transition
   ------------------------------------------------------------ */

.fishing-forecast-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0 0;
    padding: 1.5rem 1.65rem;
    color: white;
    background: var(--forest);
    border-radius: 6px;
}

.fishing-forecast-cta-copy {
    max-width: 760px;
}

.fishing-forecast-cta .eyebrow {
    margin-bottom: 0.35rem;
    color: #c6a667;
}

.fishing-forecast-cta h2 {
    margin: 0 0 0.45rem;
    color: white;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.4vw, 1.8rem);
    font-weight: 500;
    line-height: 1.15;
}

.fishing-forecast-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    line-height: 1.55;
}

.fishing-forecast-cta .details-button {
    color: var(--forest);
    background: var(--paper-light);
}

.fishing-forecast-cta .details-button:hover {
    color: var(--forest-dark);
    background: white;
}

.fishing-methodology {
    margin-top: 3rem;
}


/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */

@media (max-width: 1000px) {

    .fishing-primary-decision-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fishing-evidence-matrix {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 820px) {

    .fishing-evidence-matrix {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fishing-river-bridge {
        grid-template-columns: 1fr auto;
    }

    .fishing-river-bridge .details-button {
        grid-column: 1 / -1;
        justify-self: start;
    }

}

@media (max-width: 700px) {

    .fishing-watch {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .fishing-forecast-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .fishing-forecast-cta .details-button {
        width: 100%;
        text-align: center;
    }

}

@media (max-width: 560px) {

    .article-checklist > div {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .article-gear-grid {
        grid-template-columns: 1fr;
    }

    .fishing-primary-decision-grid,
    .fishing-evidence-matrix {
        grid-template-columns: 1fr;
    }

    .fishing-evidence-group-header {
        grid-template-columns: 1fr;
    }

    .fishing-evidence-group-header .section-rating {
        justify-self: start;
    }

    .fishing-evidence-group-description {
        grid-column: auto;
    }

    .fishing-river-bridge {
        grid-template-columns: 1fr;
    }

    .fishing-river-bridge .details-button {
        grid-column: auto;
        width: 100%;
        text-align: center;
    }

}

/* ============================================================
   Free Fishing Outlook Summary
   ============================================================ */

.fishing-summary-content {
    padding-bottom: 4rem;
}

.fishing-summary-decisions {
    margin-bottom: 2rem;
}

.fishing-summary-decisions .primary-decision-card {
    min-height: 0;
}

.fishing-summary-decisions .primary-decision-context {
    margin-bottom: 0;
}


/* ------------------------------------------------------------
   Detail transition
   ------------------------------------------------------------ */

.fishing-detail-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 2.75rem 0 0;
    padding: 1.5rem 1.65rem;
    color: white;
    background: var(--forest);
    border-radius: 6px;
}

.fishing-detail-cta-copy {
    max-width: 760px;
}

.fishing-detail-cta .eyebrow {
    margin-bottom: 0.35rem;
    color: #c6a667;
}

.fishing-detail-cta h2 {
    margin: 0 0 0.45rem;
    color: white;
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.4vw, 1.8rem);
    font-weight: 500;
    line-height: 1.15;
}

.fishing-detail-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    line-height: 1.55;
}

.fishing-detail-cta .details-button {
    color: var(--forest);
    background: var(--paper-light);
}

.fishing-detail-cta .details-button:hover {
    color: var(--forest-dark);
    background: white;
}

.fishing-summary-navigation {
    margin-top: 1.25rem;
}


/* ------------------------------------------------------------
   Responsive
   ------------------------------------------------------------ */

@media (max-width: 700px) {

    .fishing-detail-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .fishing-detail-cta .details-button {
        width: 100%;
        text-align: center;
    }

}

@media (max-width: 560px) {

    .fishing-summary-navigation .details-button {
        width: 100%;
        text-align: center;
    }

}
