@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&family=Boogaloo&family=Courier+Prime:ital,wght@0,400;0,700;1,400&family=Nunito:wght@400;600;700;800&display=swap');
:root {
    --forest-deep: #1a3a2a;
    --forest-mid: #2d5a3f;
    --forest-light: #3d7a55;
    --khaki: #c4a265;
    --khaki-light: #d4b87a;
    --khaki-pale: #e8d5a8;
    --slate: #4a5568;
    --slate-light: #718096;
    --slate-dark: #2d3748;
    --parchment: #f5f0e1;
    --parchment-dark: #e8dcc8;
    --bark: #5c3d2e;
    --bark-light: #7a5540;
    --accent-orange: #d4842a;
    --accent-gold: #c9a93e;
    --white: #fefdf8;
    --shadow-sm: 0 1px 3px rgba(26, 58, 42, 0.12);
    --shadow-md: 0 4px 12px rgba(26, 58, 42, 0.15);
    --shadow-lg: 0 8px 30px rgba(26, 58, 42, 0.2);
    --shadow-xl: 0 16px 50px rgba(26, 58, 42, 0.25);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --max-width: 1200px;
    --transition: 0.3s ease;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: 'Nunito', sans-serif;
    color: var(--slate-dark);
    background-color: var(--parchment);
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4a265' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    line-height: 1.6;
    min-height: 100vh;
}
a {
    color: var(--forest-mid);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--accent-orange);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}
.site-header {
    background: var(--forest-deep);
    border-bottom: 2px solid var(--khaki);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
    min-height: 44px;
}
.header-logo {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}
.header-brand {
    font-family: 'Boogaloo', cursive;
    color: var(--khaki-light);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    margin-left: 0.5rem;
    line-height: 1;
    white-space: nowrap;
}
.header-brand span {
    display: none;
}
.header-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--khaki-light);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--forest-deep);
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    z-index: 105;
    border-left: 3px solid var(--khaki);
}
.main-nav.open {
    right: 0;
}
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 104;
}
.nav-overlay.visible {
    display: block;
}
.main-nav ul {
    list-style: none;
}
.main-nav li {
    border-bottom: 1px solid rgba(196, 162, 101, 0.2);
}
.main-nav a {
    display: block;
    padding: 1rem 0;
    color: var(--parchment);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.main-nav a:hover {
    color: var(--khaki-light);
    padding-left: 0.5rem;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-social {
    display: flex;
    align-items: center;
}
.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--transition), transform var(--transition);
}
.nav-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
}
.hero {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 50%, var(--bark) 100%);
    padding: 1.25rem 1rem;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--khaki);
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(61, 122, 85, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 162, 101, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    max-width: var(--max-width);
    margin: 0 auto;
}
.hero-logo {
    width: 200px;
    height: auto;
    border: 3px solid var(--khaki);
    box-shadow: 0 0 30px rgba(196, 162, 101, 0.25);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    animation: logoReveal 0.8s ease-out;
}
@keyframes logoReveal {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.hero-text {
    flex: 1;
    min-width: 0;
}
.hero h1 {
    font-family: 'Boogaloo', cursive;
    color: var(--khaki-light);
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin-bottom: 0.2rem;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
}
.hero-tagline {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--khaki-pale);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.85;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: var(--accent-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}
.hero-cta:hover {
    background: var(--bark);
    color: var(--khaki-light);
    border-color: var(--khaki);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.section-heading {
    font-family: 'Boogaloo', cursive;
    color: var(--forest-deep);
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    position: relative;
    display: inline-block;
}
.section-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--khaki);
    margin-top: 0.4rem;
    border-radius: 2px;
}
.section-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--slate-light);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.section-block {
    padding: 2.5rem 0;
}
.field-note-card {
    background: var(--white);
    border: 1px solid var(--parchment-dark);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.field-note-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-mid), var(--khaki));
}
.field-note-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.video-card {
    cursor: pointer;
}
.video-card .thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--slate-dark);
}
.video-card .thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.video-card:hover .thumb-wrap img {
    transform: scale(1.05);
}
.thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(26, 58, 42, 0.85);
    border: 2px solid var(--khaki);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    pointer-events: none;
}
.thumb-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--khaki-light);
    margin-left: 3px;
}
.video-card:hover .thumb-play {
    background: var(--accent-orange);
    border-color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}
.video-card .card-body {
    padding: 1rem 1.25rem;
}
.video-card .card-body h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--forest-deep);
    line-height: 1.35;
    margin-bottom: 0.35rem;
}
.video-card .card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.35rem;
    gap: 0.5rem;
}
.video-card .card-meta .meta-info {
    font-family: 'Courier Prime', monospace;
    font-size: 0.72rem;
    color: var(--slate-light);
    line-height: 1.4;
}
.video-card .card-meta .meta-info .meta-type {
    display: block;
    color: var(--slate);
}
.video-card .card-meta .meta-rating {
    font-family: 'Boogaloo', cursive;
    font-size: 1.1rem;
    color: var(--forest-deep);
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}
.video-card .card-meta .meta-rating span {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    color: var(--slate-light);
    display: block;
    line-height: 1;
}
.awards-section {
    background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
    padding: 2.5rem 0;
    position: relative;
}
.awards-section .section-heading {
    color: var(--khaki-light);
}
.awards-section .section-heading::after {
    background: var(--accent-orange);
}
.awards-section .section-subtitle {
    color: var(--khaki-pale);
    opacity: 0.8;
}
.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.award-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(196, 162, 101, 0.25);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.award-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--khaki);
    transform: translateY(-2px);
}
.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}
.award-badge .medal {
    font-size: 1.4rem;
}
.award-card h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--parchment);
    margin-bottom: 0.25rem;
}
.award-card .award-score {
    font-family: 'Boogaloo', cursive;
    font-size: 1.8rem;
    color: var(--khaki-light);
    line-height: 1;
}
.award-card .award-score small {
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    color: var(--khaki-pale);
    opacity: 0.7;
}
.award-card .award-votes {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    color: var(--khaki-pale);
    opacity: 0.6;
    margin-top: 0.25rem;
}
.stars-display {
    display: flex;
    gap: 2px;
    margin: 0.35rem 0;
}
.stars-display .star {
    color: var(--khaki);
    font-size: 1rem;
}
.stars-display .star.empty {
    opacity: 0.25;
}
.scorecard-section {
    padding: 2.5rem 0;
}
.scorecard-wrap {
    max-width: 600px;
    margin: 0 auto;
}
.scorecard-form {
    background: var(--white);
    border: 2px solid var(--parchment-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
}
.scorecard-form::before {
    content: 'WSA FIELD REPORT';
    display: block;
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--slate-light);
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--parchment-dark);
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--forest-deep);
    margin-bottom: 0.35rem;
}
.form-group label .label-hint {
    display: block;
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--slate-light);
    font-family: 'Courier Prime', monospace;
}
.form-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    border: 2px solid var(--parchment-dark);
    border-radius: var(--radius-sm);
    background: var(--parchment);
    color: var(--slate-dark);
    transition: border-color var(--transition);
}
.form-input:focus {
    outline: none;
    border-color: var(--forest-mid);
    background: var(--white);
}
.form-input::placeholder {
    color: var(--slate-light);
    opacity: 0.6;
}
select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}
.star-rating {
    display: flex;
    gap: 4px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding: 0.25rem 0;
}
.star-rating input {
    display: none;
}
.star-rating label {
    font-size: 1.75rem;
    color: var(--parchment-dark);
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
    margin-bottom: 0;
}
.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--accent-gold);
    transform: scale(1.1);
}
.form-divider {
    border: none;
    border-top: 1px solid var(--parchment-dark);
    margin: 1.25rem 0;
}
.btn-submit {
    display: block;
    width: 100%;
    padding: 0.85rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--forest-mid), var(--forest-deep));
    border: 2px solid var(--khaki);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.btn-submit:hover {
    background: linear-gradient(135deg, var(--accent-orange), var(--bark));
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.form-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    display: none;
}
.form-message.success {
    display: block;
    background: rgba(61, 122, 85, 0.1);
    color: var(--forest-mid);
    border: 1px solid var(--forest-light);
}
.form-message.error {
    display: block;
    background: rgba(212, 132, 42, 0.1);
    color: var(--bark);
    border: 1px solid var(--accent-orange);
}
.field-guide-wrap {
    max-width: 700px;
    position: relative;
    z-index: 10;
}
.field-guide-search {
    margin-bottom: 1.25rem;
    position: relative;
}
.search-input-wrap {
    display: flex;
    gap: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--parchment-dark);
    background: var(--white);
    transition: border-color var(--transition);
}
.search-input-wrap:focus-within {
    border-color: var(--forest-mid);
}
.search-input-wrap .form-input {
    border: none;
    border-radius: 0;
    background: transparent;
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 1rem;
}
.search-input-wrap .form-input:focus {
    outline: none;
    border: none;
    background: transparent;
}
.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    background: var(--forest-mid);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: background var(--transition);
    flex-shrink: 0;
}
.search-btn:hover {
    background: var(--accent-orange);
}
.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}
.suggestion-tag {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    background: var(--parchment);
    color: var(--forest-mid);
    border: 1.5px solid var(--parchment-dark);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.suggestion-tag:hover {
    background: var(--forest-mid);
    color: var(--white);
    border-color: var(--forest-mid);
}
.animal-autocomplete {
    display: none;
    position: absolute;
    top: calc(100% - 1.25rem);
    left: 0;
    right: 0;
    z-index: 200;
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    background: var(--white);
    border: 2px solid var(--forest-mid);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-md);
    max-height: 260px;
    overflow-y: auto;
}
.animal-autocomplete.open {
    display: block;
}
.animal-autocomplete.fade-out {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.autocomplete-item {
    padding: 0.55rem 1rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-dark);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    border-bottom: 1px solid var(--parchment);
}
.autocomplete-item:last-child {
    border-bottom: none;
}
.autocomplete-item:hover,
.autocomplete-item.active {
    background: var(--khaki-pale);
    color: var(--forest-deep);
}
.autocomplete-item mark {
    background: transparent;
    color: var(--forest-mid);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--khaki);
}
.autocomplete-empty {
    padding: 0.75rem 1rem;
    font-family: 'Courier Prime', monospace;
    font-size: 0.8rem;
    color: var(--slate-light);
    text-align: center;
    font-style: italic;
}
.animal-result {
    min-height: 0;
}
.animal-result-card {
    background: var(--white);
    border: 2px solid var(--khaki);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-md);
    animation: cardSlideIn 0.4s ease-out;
}
@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animal-result-card::before {
    content: 'FIELD GUIDE ENTRY';
    position: absolute;
    top: -0.6rem;
    left: 1rem;
    font-family: 'Courier Prime', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    background: var(--khaki);
    color: var(--forest-deep);
    padding: 0.15rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}
.animal-result-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--parchment-dark);
}
.animal-result-header h3 {
    font-family: 'Boogaloo', cursive;
    color: var(--forest-deep);
    font-size: 1.5rem;
    line-height: 1.2;
}
.animal-result-header .animal-taxonomy {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    color: var(--slate-light);
    font-style: italic;
}
.animal-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.animal-fact-item {
    background: var(--parchment);
    padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--forest-mid);
}
.animal-fact-item dt {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate-light);
    margin-bottom: 0.1rem;
}
.animal-fact-item dd {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--forest-deep);
    line-height: 1.3;
}
.animal-fact-item.full-width {
    grid-column: 1 / -1;
}
.animal-result-loading {
    text-align: center;
    padding: 2rem;
    color: var(--slate-light);
    font-size: 0.9rem;
}
.animal-result-loading .loading-spinner {
    margin: 0 auto 0.75rem;
    width: 28px;
    height: 28px;
    display: block;
}
.animal-result-error {
    text-align: center;
    padding: 1.5rem;
    color: var(--bark);
    font-size: 0.9rem;
    background: rgba(212, 132, 42, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 132, 42, 0.2);
}
@media (min-width: 600px) {
    .animal-facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.site-footer {
    background: var(--forest-deep);
    color: var(--khaki-pale);
    padding: 2rem 0 1rem;
    border-top: 4px solid var(--khaki);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.footer-col h4 {
    font-family: 'Boogaloo', cursive;
    color: var(--khaki-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 0.35rem;
}
.footer-col a {
    color: var(--khaki-pale);
    font-size: 0.85rem;
    opacity: 0.75;
    transition: opacity var(--transition);
}
.footer-col a:hover {
    opacity: 1;
    color: var(--white);
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(196, 162, 101, 0.15);
    color: var(--khaki-light);
    font-size: 0.9rem;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--accent-orange);
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid rgba(196, 162, 101, 0.15);
    padding-top: 1rem;
    text-align: center;
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    opacity: 0.5;
}
.video-page-hero {
    background: var(--forest-deep);
    padding: 1rem;
}
.video-embed-wrap {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--khaki);
    box-shadow: var(--shadow-xl);
}
.video-embed-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.video-page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.video-page-content h1 {
    font-family: 'Boogaloo', cursive;
    color: var(--forest-deep);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.video-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    color: var(--slate-light);
}
.video-meta-bar .tag {
    display: inline-block;
    background: var(--parchment);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--parchment-dark);
    color: var(--forest-mid);
    font-weight: 700;
}
.species-card {
    background: var(--white);
    border: 2px solid var(--khaki);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: var(--shadow-md);
}
.species-card::before {
    content: 'SPECIES PROFILE';
    position: absolute;
    top: -0.6rem;
    left: 1rem;
    font-family: 'Courier Prime', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    background: var(--khaki);
    color: var(--forest-deep);
    padding: 0.15rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}
.species-card h3 {
    font-family: 'Boogaloo', cursive;
    color: var(--forest-deep);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.species-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.species-fact {
    background: var(--parchment);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--forest-mid);
}
.species-fact dt {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate-light);
}
.species-fact dd {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--forest-deep);
}
.transcript-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--parchment-dark);
}
.transcript-section h2 {
    font-family: 'Boogaloo', cursive;
    color: var(--forest-deep);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.transcript-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--parchment);
    border: 2px solid var(--parchment-dark);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--forest-deep);
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: 1rem;
}
.transcript-toggle:hover {
    background: var(--forest-mid);
    color: var(--white);
    border-color: var(--forest-mid);
}
.transcript-text {
    font-family: 'Courier Prime', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--slate);
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid var(--parchment-dark);
    border-radius: var(--radius-md);
    max-height: 500px;
    overflow-y: auto;
    display: none;
}
.transcript-text.visible {
    display: block;
}
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--parchment-dark);
    border-top-color: var(--forest-mid);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.fade-in {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.field-dispatches-section {
    padding: 3rem 0;
    background: var(--parchment-dark);
    border-top: 2px solid var(--khaki);
}
.dispatches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.dispatch-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--parchment-dark);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}
.dispatch-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.dispatch-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.dispatch-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dispatch-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}
.dispatch-date {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--slate-light);
}
.dispatch-body h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--forest-deep);
}
.dispatch-body h3 a {
    color: var(--forest-deep);
    text-decoration: none;
}
.dispatch-body h3 a:hover {
    color: var(--accent-orange);
}
.dispatch-trail {
    font-size: 0.8rem;
    color: var(--slate);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dispatches-loading {
    text-align: center;
    padding: 2.5rem;
    color: var(--slate-light);
    font-size: 0.9rem;
}
.dispatches-empty {
    text-align: center;
    padding: 2rem;
    color: var(--slate-light);
    font-size: 0.9rem;
}
@media (min-width: 600px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-logo {
        width: 260px;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-tagline {
        font-size: 1.05rem;
    }
    .dispatches-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        border: none;
        display: flex;
        align-items: center;
    }
    .main-nav ul {
        display: flex;
        gap: 0.25rem;
    }
    .main-nav li {
        border: none;
    }
    .main-nav a {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
        border-radius: var(--radius-sm);
    }
    .main-nav a:hover {
        background: rgba(196, 162, 101, 0.15);
        padding-left: 0.7rem;
    }
    .nav-social {
        margin-top: 0;
        margin-left: 0.75rem;
        padding-top: 0;
        padding-left: 0.75rem;
        border-top: none;
        border-left: 1px solid rgba(196, 162, 101, 0.2);
    }
    .nav-social a {
        width: 32px;
        height: 32px;
    }
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero-logo {
        width: 300px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-tagline {
        font-size: 1.1rem;
    }
    .hero-cta {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
    .hero-content {
        flex-wrap: nowrap;
    }
    .hero-text {
        flex: 1;
    }
    .scorecard-form {
        padding: 2rem;
    }
    .dispatches-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.transcript-header-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.transcript-col h2,
.reporter-cta-col h2 {
    font-family: 'Boogaloo', cursive;
    color: var(--forest-deep);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
    align-items: center;
}
.reporter-cta-col {
    padding-top: 0.25rem;
}
.reporter-cta-col h2 {
    font-family: 'Boogaloo', cursive;
    color: var(--forest-deep);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}
.reporter-cta-btn {
    text-decoration: none;
}
.wsa-confirmation {
    background: var(--white);
    border: 2px solid var(--khaki);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    animation: cardSlideIn 0.4s ease-out;
}
.wsa-conf-emoji {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.75rem;
}
.wsa-conf-headline {
    font-family: 'Boogaloo', cursive;
    color: var(--forest-deep);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.wsa-conf-body {
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 0.35rem;
    line-height: 1.5;
    text-wrap: balance;
    max-width: 340px;
    margin-inline: auto;
}
.wsa-conf-sub {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    color: var(--slate-light);
    margin-bottom: 1.5rem;
}
.wsa-conf-more {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.5rem;
    background: transparent;
    color: var(--forest-mid);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--forest-mid);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}
.wsa-conf-more:hover {
    background: var(--forest-mid);
    color: var(--white);
}
.hero-cta-secondary {
    background: transparent;
    border: 2px solid rgba(196, 162, 101, 0.4);
    color: var(--khaki-pale);
    font-size: 0.8rem;
}
.hero-cta-secondary:hover {
    background: rgba(196, 162, 101, 0.15);
    border-color: var(--khaki);
    color: var(--khaki-light);
}
.hero-cta-reporter {
    background: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    color: var(--white);
    padding: 0.65rem 1.35rem;
    font-size: 0.85rem;
    box-shadow:
        0 0 8px rgba(212, 132, 42, 0.35),
        0 0 20px rgba(212, 132, 42, 0.15);
    animation: glowPulseOrange 2.5s ease-in-out infinite;
}
@keyframes glowPulseOrange {
    0%, 100% {
        box-shadow:
            0 0 8px rgba(212, 132, 42, 0.35),
            0 0 20px rgba(212, 132, 42, 0.15);
    }
    50% {
        box-shadow:
            0 0 12px rgba(212, 132, 42, 0.5),
            0 0 30px rgba(212, 132, 42, 0.25);
    }
}
.hero-cta-reporter:hover {
    background: var(--bark);
    border-color: var(--khaki);
    color: var(--white);
    box-shadow:
        0 0 16px rgba(212, 132, 42, 0.6),
        0 0 40px rgba(212, 132, 42, 0.3);
    transform: translateY(-2px);
}
.awards-methodology {
    font-family: 'Courier Prime', monospace;
    font-size: 0.75rem;
    color: var(--khaki-pale);
    opacity: 0.75;
    margin-top: 1.5rem;
    line-height: 1.6;
    max-width: 900px;
    text-wrap: balance;
    text-align: center;
    margin-inline: auto;
}
.awards-methodology a {
    color: var(--khaki-light);
    text-decoration: underline;
}
.award-card h3 a {
    color: var(--parchment);
    text-decoration: none;
    transition: color var(--transition);
}
.award-card h3 a:hover {
    color: var(--khaki-light);
}
.review-rating-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 2px solid var(--khaki);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}
.review-rating-score {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}
.review-rating-score .rating-number {
    font-family: 'Boogaloo', cursive;
    font-size: 2.2rem;
    color: var(--forest-deep);
    line-height: 1;
}
.review-rating-score .rating-max {
    font-family: 'Courier Prime', monospace;
    font-size: 0.8rem;
    color: var(--slate-light);
}
.review-rating-detail {
    flex: 1;
    min-width: 120px;
}
.review-rating-detail .rating-count {
    font-family: 'Courier Prime', monospace;
    font-size: 0.7rem;
    color: var(--slate-light);
}
.review-rating-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--accent-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}
.review-rating-cta:hover {
    background: var(--bark);
    color: var(--khaki-light);
    transform: translateY(-1px);
}
.review-section {
    margin-bottom: 2rem;
}
.review-section h2 {
    font-family: 'Boogaloo', cursive;
    color: var(--forest-deep);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.review-section p {
    line-height: 1.7;
    color: var(--slate-dark);
}
.conservation-spotlight {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
    color: var(--parchment);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}
.conservation-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 162, 101, 0.1) 0%, transparent 70%);
    pointer-events: none;
}
.spotlight-label {
    font-family: 'Courier Prime', monospace;
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--khaki);
    margin-bottom: 0.5rem;
}
.conservation-spotlight h2 {
    font-family: 'Boogaloo', cursive;
    color: var(--khaki-light);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.spotlight-status {
    font-family: 'Courier Prime', monospace;
    font-size: 0.8rem;
    color: var(--khaki-pale);
    margin-bottom: 1rem;
    opacity: 0.85;
}
.spotlight-status strong {
    color: var(--accent-gold);
}
.conservation-spotlight p:last-of-type {
    line-height: 1.7;
    color: var(--khaki-pale);
    opacity: 0.9;
}
.wsa-verdict {
    background: var(--white);
    border: 2px solid var(--khaki);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
}
.wsa-verdict::before {
    content: 'WSA VERDICT';
    position: absolute;
    top: -0.6rem;
    left: 1rem;
    font-family: 'Courier Prime', monospace;
    font-size: 0.6rem;
    letter-spacing: 2px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.15rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}
.wsa-verdict h2 {
    display: none;
}
.methodology-section {
    background: var(--white);
    border-bottom: 1px solid var(--parchment-dark);
}
.methodology-wrap {
    max-width: 800px;
    margin: 0 auto;
}
.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
}
.methodology-card {
    background: var(--parchment);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--forest-mid);
}
.methodology-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.35rem;
}
.methodology-card h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--forest-deep);
    margin-bottom: 0.25rem;
}
.methodology-card p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.5;
}
@media (min-width: 600px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 900px) {
    .methodology-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .methodology-card:nth-child(1) { grid-column: span 2; }
    .methodology-card:nth-child(2) { grid-column: span 2; }
    .methodology-card:nth-child(3) { grid-column: span 2; }
    .methodology-card:nth-child(4) { grid-column: 2 / span 2; }
    .methodology-card:nth-child(5) { grid-column: 4 / span 2; }
}
@media (min-width: 640px) {
    .transcript-header-row {
        flex-direction: row;
        align-items: flex-start;
    }
    .transcript-col {
        flex: 1;
        padding-right: 1.5rem;
    }
    .reporter-cta-col {
        flex-shrink: 0;
    }
}
