/* ================================================================
   home.css — Dau la Peste! homepage styles
   PSR-12 JS / BEM-lite naming / fishing theme
   ================================================================ */

/* ── Fonts & root ─────────────────────────────────────────── */
:root {
    --color-forest-darkest: #061510;
    --color-forest-dark:    #0f2218;
    --color-forest-mid:     #1a3a2a;
    --color-forest-light:   #2d5a3d;
    --color-forest-bright:  #4a7c5e;
    --color-green-400:      #4ade80;
    --color-green-500:      #22c55e;
    --color-teal-400:       #2dd4bf;
    --color-teal-500:       #14b8a6;
    --color-water-dark:     #0d3a52;
    --color-water-mid:      #1a5a7a;
    --color-amber:          #f59e0b;
    --color-text-light:     #e2f4e8;
    --color-text-muted:     rgba(180,230,200,0.65);
    --radius-card:          1.25rem;
    --shadow-card:          0 4px 24px rgba(0,0,0,0.18);
    --shadow-card-hover:    0 12px 40px rgba(0,0,0,0.32);
    --transition-base:      0.25s ease;
}

/* ── Navbar override ──────────────────────────────────────── */
#main-navbar {
    background: linear-gradient(90deg, var(--color-forest-dark) 0%, var(--color-forest-mid) 100%);
    border-bottom: 1px solid rgba(74,222,128,0.15);
}

#main-navbar .nav-link {
    position: relative;
    color: rgba(220,250,230,0.85);
    padding: 0.35rem 0.75rem;
    border-radius: 0.5rem;
    transition: color var(--transition-base), background var(--transition-base);
}

#main-navbar .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

#main-navbar .nav-cta {
    background: linear-gradient(135deg, var(--color-green-500), var(--color-teal-500));
    color: #fff;
    font-weight: 700;
    padding: 0.45rem 1.1rem;
    border-radius: 0.6rem;
    border: none;
    cursor: pointer;
    transition: filter var(--transition-base), transform var(--transition-base);
}

#main-navbar .nav-cta:hover {
    filter: brightness(1.12);
}

/* ── Hero section ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        var(--color-forest-darkest) 0%,
        var(--color-forest-dark)    20%,
        var(--color-forest-mid)     55%,
        var(--color-water-dark)     80%,
        #081e2e                     100%
    );
    padding: 4.5rem 1rem 0;
}

.hero--compact {
    min-height: clamp(320px, 52vh, 520px);
    padding-top: 3rem;
    justify-content: flex-end;
    padding-bottom: 5rem;
}

/* Stars */
.hero__star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: star-twinkle ease-in-out infinite;
    pointer-events: none;
}

@keyframes star-twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50%       { opacity: 0.85; transform: scale(1.5); }
}

/* Moon */
.hero__moon {
    position: absolute;
    top: 6%;
    right: 10%;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff8c0, #f0d060);
    box-shadow: 0 0 30px 12px rgba(240,210,80,0.22), 0 0 60px 25px rgba(240,210,80,0.1);
    animation: moon-glow 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.hero__moon-halo {
    position: absolute;
    top: calc(6% - 20px);
    right: calc(10% - 20px);
    width: 98px;
    height: 98px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,210,80,0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: moon-glow 5s ease-in-out infinite;
}

@keyframes moon-glow {
    0%, 100% { box-shadow: 0 0 30px 12px rgba(240,210,80,0.22); }
    50%       { box-shadow: 0 0 50px 20px rgba(240,210,80,0.35); }
}

/* Distant hills */
.hero__hills {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}

/* Tree silhouettes */
.hero__trees {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 2;
}

/* Mist between trees and water */
.hero__mist {
    position: absolute;
    bottom: 28%;
    left: 0;
    right: 0;
    height: 6%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(100,160,140,0.08) 40%,
        rgba(80,140,120,0.14) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 3;
    animation: mist-drift 12s ease-in-out infinite alternate;
}

@keyframes mist-drift {
    0%   { opacity: 0.6; transform: scaleX(1); }
    100% { opacity: 1;   transform: scaleX(1.04); }
}

/* Moon reflection on water */
.hero__moon-reflection {
    position: absolute;
    top: 10%;
    right: calc(10% - 10px);
    width: 20px;
    height: 55%;
    background: linear-gradient(180deg,
        rgba(255,240,120,0.18) 0%,
        rgba(255,240,120,0.08) 50%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(6px);
    pointer-events: none;
    animation: reflection-shimmer 4s ease-in-out infinite;
}

@keyframes reflection-shimmer {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50%       { opacity: 1;   transform: scaleX(1.4); }
}

/* Water section inside hero */
.hero__water {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32%;
    overflow: hidden;
    pointer-events: none;
}

.hero__water-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--color-water-mid) 0%, var(--color-water-dark) 50%, #081e2e 100%);
}

/* Wave layers */
.wave-layer {
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
}

.wave-layer--1 { animation: wave-scroll 7s  linear infinite;         bottom: 55%; }
.wave-layer--2 { animation: wave-scroll 10s linear infinite reverse; bottom: 35%; opacity: 0.6; }
.wave-layer--3 { animation: wave-scroll 5s  linear infinite;         bottom: 15%; opacity: 0.4; }

@keyframes wave-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* Water sparkles */
.hero__sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    animation: sparkle-blink ease-in-out infinite;
    pointer-events: none;
}

@keyframes sparkle-blink {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50%       { opacity: 1; transform: scale(1.8); }
}

/* Ground bank */
.hero__bank {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    height: 5%;
    pointer-events: none;
}

/* Hero content */
.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
}

@media (min-width: 768px) {
    .hero__content {
        padding: 0 2rem 2rem;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: var(--color-green-400);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(74,222,128,0.25);
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .hero__badge {
        font-size: 0.78rem;
        gap: 0.5rem;
        padding: 0.35rem 1rem;
        margin-bottom: 1.5rem;
    }
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    background: var(--color-green-400);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.6; }
}

.hero__title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
}

.hero__title-accent {
    color: var(--color-green-400);
    position: relative;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Search bar */
.hero__search {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 1rem;
    padding: 0.4rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

@media (min-width: 640px) {
    .hero__search {
        flex-direction: row;
    }
}

.hero__search-input {
    flex: 1;
    background: #fff;
    border: none;
    border-radius: 0.75rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    color: #1a2a1a;
    outline: none;
    transition: box-shadow var(--transition-base);
}

.hero__search-input:focus {
    box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
}

.hero__search-btn {
    background: linear-gradient(135deg, var(--color-green-500), var(--color-teal-500));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: filter var(--transition-base);
}

.hero__search-btn:hover {
    filter: brightness(1.1);
}

/* Quick filter pills */
.hero__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.hero__filter-pill {
    background: rgba(255,255,255,0.08);
    color: rgba(220,255,230,0.8);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.hero__filter-pill:hover {
    background: rgba(74,222,128,0.15);
    border-color: rgba(74,222,128,0.4);
    color: var(--color-green-400);
}

/* Scroll arrow */
.hero__scroll-arrow {
    position: absolute;
    bottom: 34%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 1.6rem;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
}

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
    max-width: 1200px;
    margin: -2.5rem auto 3.5rem;
    padding: 0 1rem;
    position: relative;
    z-index: 20;
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .stats-bar__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.1rem 0.85rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(74,222,128,0.12);
    cursor: default;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

@media (min-width: 640px) {
    .stat-card {
        padding: 1.4rem 1rem;
    }
}

.stat-card__icon-svg {
    width: 1.75rem;
    height: 1.75rem;
    display: block;
    margin: 0 auto 0.35rem;
    color: var(--color-forest-mid);
}

@media (min-width: 640px) {
    .stat-card__icon-svg {
        width: 2rem;
        height: 2rem;
        margin: 0 auto 0.4rem;
    }
}

.stat-card__number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-forest-mid);
    line-height: 1;
    display: block;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
    .stat-card__number {
        font-size: 1.75rem;
    }
}

.stat-card__label {
    font-size: 0.7rem;
    color: #6b7280;
    margin-top: 0.2rem;
}

@media (min-width: 640px) {
    .stat-card__label {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
}

/* ── Section common ───────────────────────────────────────── */
.section {
    max-width: 1200px;
    margin: 0 auto 3.5rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section {
        margin: 0 auto 5rem;
    }
}

.section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .section__header {
        margin-bottom: 1.75rem;
        gap: 0.5rem;
    }
}

.section__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .section__title {
        font-size: 1.5rem;
        gap: 0.5rem;
    }
}

.section__subtitle {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.2rem;
}

@media (min-width: 640px) {
    .section__subtitle {
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }
}

.section__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-forest-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    position: relative;
}

@media (min-width: 640px) {
    .section__link {
        font-size: 0.9rem;
    }
}

.section__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green-500);
    transition: width 0.3s ease;
}

.section__link:hover::after {
    width: 100%;
}

/* ── Catch cards ──────────────────────────────────────────── */
.catches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .catches-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.catch-card {
    background: #fff;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.catch-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.catch-card__header {
    background: linear-gradient(135deg, var(--color-forest-mid), var(--color-forest-dark));
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.catch-card__lake {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.catch-card__county {
    color: var(--color-green-400);
    font-size: 0.72rem;
    margin-top: 0.15rem;
}

.catch-card__status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}

.catch-card__status--active   { background: #22c55e; }
.catch-card__status--moderate { background: #f59e0b; }

.catch-card__body {
    padding: 1rem 1.1rem;
    flex: 1;
}

.catch-card__fish-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.catch-card__fish-icon {
    width: 42px;
    height: 42px;
    background: #f0fdf4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest-bright);
    flex-shrink: 0;
}

.catch-card__fish-name {
    font-weight: 700;
    color: #111827;
    font-size: 0.95rem;
}

.catch-card__fish-meta {
    font-size: 0.73rem;
    color: #6b7280;
    margin-top: 0.1rem;
}

.catch-card__bait {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.6rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    color: #92400e;
}

.catch-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.72rem;
    color: #6b7280;
}

.catch-card__cta {
    color: var(--color-forest-light);
    font-weight: 600;
    font-size: 0.78rem;
    text-decoration: none;
    position: relative;
}

.catch-card__cta::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-green-500);
    transition: width 0.25s ease;
}

.catch-card:hover .catch-card__cta::after {
    width: 100%;
}

/* ── Counties section ─────────────────────────────────────── */
.counties-section {
    background: linear-gradient(180deg, #f0f9f4, #e8f5ee);
    padding: 2.5rem 1rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .counties-section {
        padding: 4rem 1rem;
        margin-bottom: 5rem;
    }
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 480px)  { .counties-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px)  { .counties-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 900px)  { .counties-grid { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 1100px) { .counties-grid { grid-template-columns: repeat(8, 1fr); } }

.county-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 0.75rem;
    padding: 0.7rem 0.5rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.county-card:hover {
    background: #f0fdf4;
    border-color: rgba(74,222,128,0.4);
    box-shadow: 0 4px 16px rgba(34,197,94,0.12);
}

.county-card__name {
    font-weight: 600;
    font-size: 0.8rem;
    color: #374151;
    transition: color var(--transition-base);
}

.county-card:hover .county-card__name {
    color: var(--color-forest-light);
}

.county-card__count {
    font-size: 0.7rem;
    color: #6b7280;
    margin-top: 0.15rem;
}

/* ── Weather card ─────────────────────────────────────────── */
.weather-card {
    background: linear-gradient(135deg, var(--color-forest-mid), var(--color-forest-dark));
    border-radius: 1.25rem;
    padding: 1.5rem;
    color: #fff;
    box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
    .weather-card {
        border-radius: 1.5rem;
        padding: 2rem;
    }
}

.weather-card__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .weather-card__grid {
        grid-template-columns: 1fr 1.2fr 1.2fr;
    }
}

.weather-score {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .weather-score {
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 0;
        padding-right: 1.5rem;
    }
}

.weather-score__number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-green-400);
    line-height: 1;
    display: block;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 640px) {
    .weather-score__number {
        font-size: 4rem;
    }
}

.weather-score__label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.4rem;
}

@media (min-width: 640px) {
    .weather-score__label {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
}

.weather-score__stars {
    color: var(--color-green-400);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

@media (min-width: 640px) {
    .weather-score__stars {
        font-size: 0.85rem;
        margin-top: 0.25rem;
    }
}

.weather-score__bars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 1rem;
}

.weather-score__bar {
    width: 7px;
    height: 28px;
    border-radius: 4px;
    background: rgba(255,255,255,0.15);
}

.weather-score__bar--filled {
    background: var(--color-green-400);
}

.weather-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.weather-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.08);
    border-radius: 0.75rem;
    padding: 0.65rem 0.9rem;
    transition: background var(--transition-base);
}

.weather-item:hover {
    background: rgba(255,255,255,0.14);
}

.weather-item__icon-svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    color: var(--color-teal-400);
}

.weather-item__label {
    font-size: 0.7rem;
    color: var(--color-teal-400);
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.weather-item__value {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.1rem;
}

.weather-tip {
    background: rgba(255,255,255,0.08);
    border-radius: 0.875rem;
    padding: 1.1rem;
}

@media (min-width: 768px) {
    .weather-tip {
        border-radius: 1rem;
        padding: 1.25rem;
    }
}

.weather-tip__tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-teal-400);
    margin-bottom: 0.45rem;
}

@media (min-width: 640px) {
    .weather-tip__tag {
        font-size: 0.68rem;
        letter-spacing: 1px;
        margin-bottom: 0.5rem;
    }
}

.weather-tip__text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
}

@media (min-width: 640px) {
    .weather-tip__text {
        font-size: 0.85rem;
        line-height: 1.65;
    }
}

.weather-tip__hot-days {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: var(--color-green-400);
}

@media (min-width: 640px) {
    .weather-tip__hot-days {
        margin-top: 0.85rem;
        font-size: 0.75rem;
    }
}

/* ── CTA section ──────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fde68a;
    border-radius: 1.25rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

@media (min-width: 640px) {
    .cta-section {
        border-radius: 1.75rem;
        padding: 3.5rem 2rem;
        margin: 0 auto 5rem;
    }
}

.cta-section__icon-svg {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.85rem;
    display: block;
    color: var(--color-forest-mid);
}

@media (min-width: 640px) {
    .cta-section__icon-svg {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 auto 1rem;
    }
}

.cta-section__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: #111827;
    margin-bottom: 0.65rem;
}

@media (min-width: 640px) {
    .cta-section__title {
        margin-bottom: 0.75rem;
    }
}

.cta-section__text {
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto 1.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .cta-section__text {
        margin: 0 auto 2rem;
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

.cta-section__buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .cta-section__buttons {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        max-width: none;
        gap: 1rem;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-forest-mid), var(--color-forest-dark));
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.85rem 1.75rem;
    border-radius: 0.85rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: filter var(--transition-base);
}

@media (min-width: 640px) {
    .btn-primary {
        font-size: 0.95rem;
        padding: 0.9rem 2rem;
    }
}

.btn-primary:hover {
    filter: brightness(1.15);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #fff;
    color: #374151;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.85rem 1.75rem;
    border-radius: 0.85rem;
    text-decoration: none;
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: background var(--transition-base), border-color var(--transition-base);
}

@media (min-width: 640px) {
    .btn-secondary {
        font-size: 0.95rem;
        padding: 0.9rem 2rem;
    }
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: var(--color-green-400);
    color: var(--color-forest-light);
}

/* ── Reveal animations on scroll ─────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--left  { transform: translateX(-30px); }
.reveal--right { transform: translateX(30px);  }
.reveal--left.visible,
.reveal--right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ── Hover.css overrides for our palette ─────────────────── */
/* Ensure hvr-sweep-to-right uses brand color */
.hvr-sweep-to-right::before {
    background: var(--color-green-500) !important;
}

/* ── Mobile responsive ────────────────────────────────────── */
@media (max-width: 640px) {

    /* Hero */
    .hero {
        padding-top: 2rem;
        padding-left: 0;
        padding-right: 0;
        min-height: auto;
        justify-content: flex-start;
        overflow-x: clip;
    }

    .hero__content {
        width: 100%;
        padding: 1.5rem 1rem 3rem;
        box-sizing: border-box;
    }

    .hero__water {
        height: 18%;
    }

    .hero__trees {
        bottom: 16%;
    }

    .hero__bank {
        bottom: 16%;
    }

    .hero__scroll-arrow {
        display: none;
    }

    .hero__moon {
        width: 36px;
        height: 36px;
        top: 4%;
        right: 5%;
    }

    .hero__badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
        max-width: 90vw;
        text-align: center;
        white-space: normal;
        line-height: 1.4;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
        padding: 0 0.5rem;
    }

    /* Search — stack vertically on mobile */
    .hero__search {
        flex-direction: column;
        border-radius: 0.85rem;
        padding: 0.5rem;
        gap: 0.4rem;
    }

    .hero__search-input {
        border-radius: 0.6rem;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        width: 100%;
    }

    .hero__search-btn {
        border-radius: 0.6rem;
        justify-content: center;
        padding: 0.75rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero__filters {
        gap: 0.4rem;
    }

    .hero__filter-pill {
        font-size: 0.72rem;
        padding: 0.25rem 0.65rem;
    }

    .hero__scroll-arrow {
        display: none;
    }

    /* Stats bar */
    .stats-bar {
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .stat-card {
        padding: 1rem 0.75rem;
    }

    .stat-card__number {
        font-size: 1.4rem;
    }

    /* Sections */
    .section {
        margin-bottom: 3rem;
    }

    .section__title {
        font-size: 1.2rem;
    }

    /* Counties */
    .counties-section {
        padding: 2.5rem 1rem;
        margin-bottom: 3rem;
    }

    /* Weather */
    .weather-card {
        padding: 1.25rem;
        border-radius: 1rem;
    }

    .weather-score__number {
        font-size: 3rem;
    }

    /* CTA */
    .cta-section {
        padding: 2.5rem 1.25rem;
        border-radius: 1.25rem;
        margin-bottom: 3rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.85rem 1.5rem;
    }

    .cta-section__buttons {
        flex-direction: column;
    }
}


/* hvr-pulse-grow pulse color */
.hvr-back-pulse::before {
    background: rgba(74,222,128,0.3) !important;
}

/* ── Misc utilities ───────────────────────────────────────── */
.text-green { color: var(--color-green-400); }
.text-teal  { color: var(--color-teal-400); }

/* Live badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(74,222,128,0.12);
    color: var(--color-green-400);
    border: 1px solid rgba(74,222,128,0.3);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    vertical-align: middle;
}

.live-badge__dot {
    width: 6px;
    height: 6px;
    background: var(--color-green-400);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

/* ── Catch card photo (new) ───────────────────────────────── */
.catch-card__photo {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-forest-mid);
    position: relative;
    flex-shrink: 0;
}

.catch-card__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 0.6rem 0.9rem;
}

.catch-card__rating {
    background: rgba(0,0,0,0.55);
    color: #fbbf24;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* ── Zona Ta section ──────────────────────────────────────── */
.zona-section {
    background: linear-gradient(180deg, #f0fdf4, #dcfce7);
    padding: 2.5rem 1rem;
    margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
    .zona-section {
        padding: 4rem 1rem;
        margin-bottom: 5rem;
    }
}

.zona-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.zona-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 0;
    gap: 0.85rem;
    color: #6b7280;
}

@media (min-width: 640px) {
    .zona-loading {
        padding: 3rem 0;
        gap: 1rem;
    }
}

.zona-loading__spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(34,197,94,0.2);
    border-top-color: var(--color-green-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@media (min-width: 640px) {
    .zona-loading__spinner {
        width: 36px;
        height: 36px;
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.zona-loading__text {
    font-size: 0.85rem;
    color: #6b7280;
}

@media (min-width: 640px) {
    .zona-loading__text {
        font-size: 0.9rem;
    }
}

.zona-denied {
    text-align: center;
    padding: 2.5rem 0;
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .zona-denied {
        padding: 3rem 0;
        font-size: 0.9rem;
    }
}

.zona-county-label {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: #6b7280;
}

@media (min-width: 640px) {
    .zona-county-label {
        margin-top: 1.5rem;
        font-size: 0.8rem;
    }
}
