/*
Theme Name: Green Nation Campaign
Theme URI: https://gnhemptx.com
Author: The Clone Shop Computers & Web Design
Author URI: https://www.cloneshop.com
Description: Campaign and legal defense fund theme for Green Nation & Texas Hemp Constitutional Alliance. Supports age verification, donor wall, case updates, FAQ, social graphics, and press kit.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: green-nation
Tags: one-column, custom-menu, featured-images, campaign, fundraising
*/

/* ========================================
   CUSTOM PROPERTIES & VARIABLES
   ======================================== */

:root {
    --red: #BF0A30;
    --red-deep: #9a0826;
    --red-light: rgba(191, 10, 48, 0.08);
    --blue: #002868;
    --blue-light: #1a4a7a;
    --blue-pale: #e8eef4;
    --white: #ffffff;
    --cream: #faf8f4;
    --green: #4a6d2e;
    --green-bright: #5d8a36;
    --green-light: #e9f0e2;
    --green-accent: #7ab648;
    --navy: #001a3a;
    --charcoal: #2c2c2c;
    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --text-muted: #6b6b6b;
    --border: #ddd;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Libre Franklin', sans-serif;
    background: var(--cream);
    color: var(--text-body);
    overflow-x: hidden;
}

/* ========================================
   FLAG STRIPE
   ======================================== */

.flag-stripe {
    height: 6px;
    background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--blue) 66%, var(--blue) 100%);
}

/* ========================================
   URGENT BANNER
   ======================================== */

.urgent-banner {
    background: var(--red);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    background: var(--white);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--green);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-logo img {
    height: 50px;
}

.nav-logo-text {
    line-height: 1.1;
}

.nav-logo-text .name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green);
}

.nav-logo-text .tagline {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-donate-btn {
    background: var(--green);
    color: white !important;
    padding: 10px 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background 0.3s;
}

.nav-donate-btn:hover {
    background: var(--green-bright);
}

.nav-donate-btn::after {
    display: none !important;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    padding: 100px 40px 90px;
    color: white;
    text-align: center;
    overflow: hidden;
    min-height: 520px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 40, 104, 0.82) 0%, rgba(0, 26, 58, 0.88) 50%, rgba(0, 20, 45, 0.92) 100%);
}

.hero-badge,
.hero h1,
.hero-divider,
.hero-sub,
.hero-description,
.hero-cta {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 8px 28px;
    margin-bottom: 30px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 15px;
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.4);
}

.hero h1 .green-text {
    color: var(--green-accent);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 25px 0;
}

.hero-divider .star {
    color: var(--red);
    font-size: 1rem;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.hero-sub {
    font-weight: 600;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-description {
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
}

.hero-cta {
    display: inline-block;
    background: var(--green);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 18px 50px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--green);
}

.hero-cta:hover {
    background: var(--green-bright);
    border-color: var(--green-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 109, 46, 0.4);
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 8px;
}

.section-header .sub {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--red);
}

.section-divider .star {
    color: var(--red);
    font-size: 0.8rem;
}

/* ========================================
   ATTORNEY QUOTE SECTION
   ======================================== */

.quote-section {
    padding: 0;
    background: var(--white);
    border-top: 4px solid var(--red);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
}

.quote-photo {
    position: relative;
    overflow: hidden;
}

.quote-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-photo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--white));
}

.quote-content {
    padding: 50px 50px 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    color: var(--blue);
    opacity: 0.08;
    position: absolute;
    top: 15px;
    left: 15px;
    line-height: 1;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-dark);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-text + .quote-text {
    margin-top: 15px;
}

.quote-author {
    margin-top: 25px;
    font-weight: 700;
    color: var(--blue);
    font-size: 0.95rem;
}

.quote-author span {
    font-weight: 400;
    color: var(--text-muted);
}

/* ========================================
   DONATE SECTION
   ======================================== */

.donate-section {
    padding: 70px 40px;
    background: var(--cream);
    text-align: center;
}

.donate-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--green);
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.donate-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--red), var(--blue), var(--green));
}

.donate-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 8px;
}

.donate-card .subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.payment-placeholder {
    background: var(--blue-pale);
    border: 2px dashed var(--blue-light);
    padding: 35px 25px;
    margin-bottom: 25px;
}

.qr-mock {
    width: 160px;
    height: 160px;
    background: var(--white);
    border: 2px solid var(--border);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 10px;
}

.payment-placeholder p {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.donate-btn {
    display: inline-block;
    background: var(--green);
    color: white;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.donate-btn:hover {
    background: var(--green-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 109, 46, 0.25);
}

.donate-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

.large-donor-note {
    margin-top: 25px;
    padding: 15px 20px;
    background: var(--green-light);
    border-left: 4px solid var(--green);
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-body);
}

.large-donor-note strong {
    color: var(--green);
}

/* ========================================
   CASE UPDATES TIMELINE
   ======================================== */

.updates-section {
    padding: 70px 40px;
    background: var(--white);
}

.updates-timeline {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    padding-left: 45px;
}

.updates-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(180deg, var(--red), var(--blue), var(--border));
}

.update-item {
    position: relative;
    margin-bottom: 30px;
    padding: 25px 28px;
    background: var(--cream);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.update-item:hover {
    border-color: var(--blue-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.update-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 28px;
    width: 12px;
    height: 12px;
    background: var(--blue);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--blue);
}

.update-item:first-child::before {
    background: var(--red);
    box-shadow: 0 0 0 2px var(--red);
}

.update-date {
    font-family: 'DM Mono', monospace;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.update-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}

.update-body {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

.update-body a {
    color: var(--green);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.update-body a:hover {
    color: var(--green-bright);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.about-photo {
    position: relative;
    overflow: hidden;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-photo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--blue));
}

.about-content {
    background: var(--blue);
    color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.about-content .sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 25px;
}

.about-content .about-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.about-content .about-divider::before,
.about-content .about-divider::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--red);
}

.about-content .about-divider .star {
    color: var(--red);
    font-size: 0.8rem;
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-accent);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.75;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.5;
}

.about-card ul li::before {
    content: '\2605';
    position: absolute;
    left: 0;
    color: var(--red);
    font-size: 0.6rem;
    top: 10px;
}

/* ========================================
   PHOTO STRIP
   ======================================== */

.photo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 220px;
    overflow: hidden;
}

.photo-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.photo-strip img:hover {
    transform: scale(1.05);
}

/* ========================================
   DONOR WALL
   ======================================== */

.donors-section {
    padding: 70px 40px;
    background: var(--white);
}

.donor-grid {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.donor-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.donor-card:hover {
    border-color: var(--green);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.donor-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: white;
    flex-shrink: 0;
}

.donor-avatar.blue {
    background: var(--blue);
}

.donor-avatar.red {
    background: var(--red);
}

.donor-avatar.green {
    background: var(--green);
}

.donor-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.donor-amount {
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 500;
}

.donor-time {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.donor-anon {
    font-style: italic;
    color: var(--text-muted);
}

/* ========================================
   SHARE SECTION
   ======================================== */

.share-section {
    padding: 60px 40px;
    background: var(--white);
    text-align: center;
    border-top: 2px solid var(--border);
}

.share-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 8px;
}

.share-section > p {
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border: 2px solid;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}

.share-btn.facebook {
    border-color: #1877f2;
    color: #1877f2;
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.share-btn.twitter:hover {
    background: var(--charcoal);
    color: white;
}

.share-btn.copy-link {
    border-color: var(--green);
    color: var(--green);
}

.share-btn.copy-link:hover {
    background: var(--green);
    color: white;
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ========================================
   LOCATIONS
   ======================================== */

.locations-section {
    padding: 60px 40px;
    background: var(--cream);
}

.locations-grid {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.location-card {
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.location-card:hover {
    border-color: var(--green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.location-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
}

.location-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.5;
}

.location-card .phone {
    font-family: 'DM Mono', monospace;
    color: var(--green);
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 10px;
}

.location-card .note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 6px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 40px;
    text-align: center;
    background: var(--navy);
    color: white;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-name .green {
    color: var(--green-accent);
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.footer .legal {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 580px;
    margin: 15px auto 0;
    line-height: 1.6;
}

.footer-stripe {
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--green) 66%, var(--green) 100%);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    margin: 0 8px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: white;
}

/* ========================================
   PROGRESS BAR
   ======================================== */

.progress-section {
    margin-bottom: 30px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.progress-raised {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green);
}

.progress-goal {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.progress-bar-track {
    width: 100%;
    height: 18px;
    background: var(--blue-pale);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--green-bright));
    width: 0%;
    transition: width 1.5s ease;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--green-accent);
    box-shadow: 0 0 8px rgba(122, 182, 72, 0.5);
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.progress-stats strong {
    color: var(--text-body);
}

/* ========================================
   FUND TRANSPARENCY
   ======================================== */

.transparency-section {
    padding: 60px 40px;
    background: var(--white);
    border-top: 2px solid var(--border);
    text-align: center;
}

.transparency-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    text-transform: none;
    margin-bottom: 6px;
}

.transparency-section > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.transparency-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.transparency-card {
    text-align: center;
    padding: 25px 15px;
    background: var(--cream);
    border: 1px solid var(--border);
}

.transparency-pct {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 5px;
}

.transparency-card .label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-body);
    margin-bottom: 5px;
}

.transparency-card .desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.transparency-note {
    text-align: center;
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ========================================
   PHOTO DIVIDER
   ======================================== */

.photo-divider {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

.photo-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.photo-divider::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 40, 104, 0.45), rgba(0, 26, 58, 0.6));
}

.photo-divider-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.photo-divider-text p {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.photo-divider-text p span {
    color: var(--green-accent);
}

/* ========================================
   SOCIAL PROOF
   ======================================== */

.proof-section {
    padding: 50px 40px;
    background: var(--cream);
    text-align: center;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.proof-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 8px;
}

.proof-section > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.proof-logos {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.proof-badge {
    padding: 14px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--green);
    flex-shrink: 0;
}

.proof-badge.highlight {
    border-color: var(--green);
    background: var(--green-light);
}

/* ========================================
   FAQ
   ======================================== */

.faq-section {
    padding: 60px 40px;
    background: var(--white);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 40px 20px 0;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue);
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--red);
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 0 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-body);
}

/* ========================================
   CONSTRUCTION BANNER
   ======================================== */

.construction-banner {
    background: #f5c518;
    color: #1a1a1a;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.construction-banner svg {
    width: 14px;
    height: 14px;
    vertical-align: -2px;
    margin-right: 6px;
    fill: #1a1a1a;
}

/* ========================================
   AGE GATE
   ======================================== */

.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 26, 58, 0.95);
    z-index: 2147483647;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* When user is verified (class set by inline <head> script or after click),
   hide the gate and restore scroll. CSS is the source of truth — JS only
   toggles the class. This survives caching/optimization plugins that might
   strip inline scripts or break document.write. */
html.age-verified .age-gate-overlay {
    display: none !important;
}

html:not(.age-verified) body {
    overflow: hidden;
}

/* Backward-compat: legacy .hidden class still works */
.age-gate-overlay.hidden {
    display: none !important;
}

.age-gate-box {
    background: var(--white);
    max-width: 440px;
    width: 100%;
    text-align: center;
    padding: 50px 40px;
    border-top: 6px solid var(--green);
}

.age-gate-box img {
    height: 60px;
    margin-bottom: 20px;
}

.age-gate-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 8px;
}

.age-gate-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.age-gate-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 14px 36px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.age-btn-yes {
    background: var(--green);
    color: white;
}

.age-btn-yes:hover {
    background: var(--green-bright);
}

.age-btn-no {
    background: var(--cream);
    color: var(--text-body);
    border: 1px solid var(--border) !important;
}

.age-btn-no:hover {
    background: var(--border);
}

.age-gate-note {
    margin-top: 18px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ========================================
   URGENCY STRIP
   ======================================== */

.urgency-strip {
    padding: 14px 40px;
    background: var(--navy);
    text-align: center;
    border-bottom: 2px solid var(--red);
}

.urgency-strip p {
    font-family: 'DM Mono', monospace;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.urgency-strip strong {
    color: var(--red);
}

/* ========================================
   SKIP NAV & FOCUS STYLES
   ======================================== */

/* Visually-hidden utility for screen readers */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile nav toggle (hamburger) — hidden on desktop, shown via media query */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 3px;
    cursor: pointer;
    margin-left: auto;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
    border-color: var(--blue);
}
.nav-toggle:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}
.nav-toggle .nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-body);
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Pre-click disclosure for the FluidPay donate handoff (audit medium) */
.donate-prefly {
    max-width: 480px;
    margin: 0 auto 14px;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: center;
}
.donate-prefly strong {
    color: var(--blue);
}

/* Respect prefers-reduced-motion (audit medium) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .animate { opacity: 1 !important; transform: none !important; }
}

.skip-nav {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--blue);
    color: white;
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
}

.skip-nav:focus {
    top: 0;
}

*:focus-visible {
    outline: 3px solid var(--green-accent);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--green-accent);
    outline-offset: 2px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
}

.animate.visible {
    animation: fadeUp 0.5s ease forwards;
}

/* ========================================
   PAGE-SPECIFIC: SHARED PAGE HEADER
   ======================================== */

.page-header {
    background: var(--navy);
    color: white;
    padding: 45px 40px;
    text-align: center;
}

.page-header .label {
    display: inline-block;
    background: var(--green);
    color: white;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 20px;
    margin-bottom: 18px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.page-header p {
    color: rgba(255,255,255,0.6);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 0.95rem;
}

.back-link {
    display: inline-block;
    margin: 30px 0 10px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

.back-link:hover {
    color: var(--red);
}

/* ========================================
   PAGE-SPECIFIC: UPDATES PAGE
   ======================================== */

.update-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 5px solid var(--green);
    padding: 28px;
    margin-bottom: 24px;
    border-radius: 3px;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.update-card:nth-child(1) { animation-delay: 0.1s; }
.update-card:nth-child(2) { animation-delay: 0.2s; }
.update-card:nth-child(3) { animation-delay: 0.3s; }

.update-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.update-date {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.update-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 12px;
}

.update-body {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.update-link {
    display: inline-block;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border-radius: 2px;
}

.update-link:hover {
    color: var(--green-bright);
    text-decoration: underline;
}

.update-link:focus-visible {
    outline: 3px solid var(--green-accent);
}

.stay-informed {
    background: var(--blue-pale);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 3px;
    text-align: center;
    margin-top: 50px;
}

.stay-informed h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 14px;
}

.stay-informed p {
    color: var(--text-body);
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-btn {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: background 0.3s;
    border: 2px solid var(--green);
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--green-bright);
    border-color: var(--green-bright);
}

.cta-btn:focus-visible {
    outline: 3px solid var(--green-accent);
}

/* Blog Feed */
.blog-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 40px;
}

.blog-section-header {
    text-align: center;
    margin-bottom: 35px;
    padding-top: 20px;
    border-top: 2px solid var(--border);
}

.blog-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 6px;
}

.blog-section-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-section-header .section-divider {
    margin-top: 15px;
}

.blog-section-header .section-divider::before,
.blog-section-header .section-divider::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--red);
    vertical-align: middle;
}

.blog-section-header .star {
    color: var(--red);
    font-size: 0.85rem;
    margin: 0 10px;
    vertical-align: middle;
}

.blog-post {
    background: var(--white);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.blog-post:hover {
    border-color: var(--blue-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.blog-post-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    padding: 28px;
}

.blog-post-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.blog-post-date {
    font-family: 'DM Mono', monospace;
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-post-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-light);
    padding: 3px 10px;
}

.blog-post h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-post h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-post h3 a:hover {
    color: var(--blue-light);
}

.blog-post-excerpt {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.blog-post-read-more {
    color: var(--green);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.blog-post-read-more:hover {
    color: var(--green-bright);
    text-decoration: underline;
}

.blog-pagination {
    text-align: center;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.blog-pagination a, .blog-pagination span {
    display: inline-block;
    padding: 10px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--text-body);
    transition: all 0.3s;
}

.blog-pagination a:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.blog-pagination .current {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
}

/* ========================================
   PAGE-SPECIFIC: PRESS KIT
   ======================================== */

.press-header {
    background: var(--navy);
    color: white;
    padding: 50px 40px;
    text-align: center;
    position: relative;
}

.press-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--blue), var(--green));
}

.press-header .label {
    display: inline-block;
    background: var(--red);
    color: white;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 20px;
    margin-bottom: 20px;
}

.press-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.press-header .sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-wrapper {
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 40px;
}

.section { margin-bottom: 50px; }
.section:last-child { margin-bottom: 0; }

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 5px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.section h2 .accent {
    color: var(--red);
    font-size: 0.7rem;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.section p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 15px;
}

.fact-box {
    background: var(--blue-pale);
    border-left: 4px solid var(--blue);
    padding: 20px 25px;
    margin: 20px 0;
}

.fact-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
}

.fact-box ul {
    list-style: none;
    padding: 0;
}

.fact-box ul li {
    padding: 6px 0 6px 18px;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.6;
}

.fact-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.timeline {
  margin-top: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-date {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--red);
  padding-top: 2px;
}

.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0;
  color: var(--text-body);
}

.press-quote {
  background: var(--cream);
  border-left: 4px solid var(--green);
  padding: 25px 30px;
  margin: 20px 0;
  position: relative;
}

.press-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--green);
  opacity: 0.15;
  position: absolute;
  top: 5px;
  left: 12px;
  line-height: 1;
}

.press-quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-top: 0;
}

.attribution {
  font-family: 'Libre Franklin', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green);
  margin-top: 12px;
}

.contact-block {
  background: var(--navy);
  color: white;
  padding: 40px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
  border-bottom: 2px solid rgba(255,255,255,0.15);
  padding-bottom: 10px;
  margin-bottom: 15px;
  grid-column: 1 / -1;
}

.contact-item h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-top: 0;
}

.contact-item a {
  color: var(--green-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 15px;
  transition: background 0.3s;
}

.doc-link:hover {
  background: var(--green-bright);
}

.doc-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.disclaimer {
  margin-top: 40px;
  padding: 20px 25px;
  background: rgba(191, 10, 48, 0.04);
  border: 1px solid rgba(191, 10, 48, 0.12);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.disclaimer strong {
  color: var(--text-body);
}

/* ========================================
   PAGE-SPECIFIC: SOCIAL GRAPHICS
   ======================================== */

.instructions {
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 20px 25px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
}

.instructions strong {
  color: var(--green);
}

.graphics-section {
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 0 40px;
}

.graphics-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 5px;
}

.graphics-section .sub {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.graphics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 25px;
}

.graphic-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 15px;
  transition: box-shadow 0.3s;
}

.graphic-wrapper:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.graphic-canvas {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}

.graphic-canvas.landscape { aspect-ratio: 16 / 9; }
.graphic-canvas.portrait { aspect-ratio: 4 / 5; }
.graphic-canvas.banner { aspect-ratio: 3 / 1; }

.graphic-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.graphic-meta .size {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.graphic-meta .platform {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
}

/* ========================================
   PAGE-SPECIFIC: LEGAL DOCS (privacy policy, terms)
   ======================================== */

.legal-doc {
    max-width: 760px;
    margin: 30px auto 60px;
    padding: 0 40px 40px;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

.legal-doc .effective-date {
    background: var(--cream);
    border-left: 3px solid var(--green);
    padding: 14px 20px;
    margin-bottom: 36px;
    font-size: 0.85rem;
}

.legal-doc section {
    margin-bottom: 38px;
}

.legal-doc h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.legal-doc p {
    margin-bottom: 14px;
}

.legal-doc ul {
    margin: 8px 0 18px 22px;
    padding: 0;
}

.legal-doc li {
    margin-bottom: 10px;
}

.legal-doc strong {
    color: var(--text-heading, var(--blue));
}

.legal-doc a {
    color: var(--blue);
    text-decoration: underline;
}

.legal-doc a:hover {
    color: var(--red);
}

.legal-doc-footer {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-doc { padding: 0 22px 30px; }
    .legal-doc h2 { font-size: 1.2rem; }
}

/* Footer policy nav (Privacy Policy link beneath legal text) */
.footer-policy-nav {
    text-align: center;
}
.footer-policy-nav a {
    color: rgba(255,255,255,0.78);
    text-decoration: underline;
    font-size: 0.78rem;
    margin: 0 6px;
}
.footer-policy-nav a:hover {
    color: var(--white);
}

/* Breadcrumb landmark wrapper */
.breadcrumb-nav {
    display: block;
}

/* ========================================
   PAGE-SPECIFIC: SHAREABLE GRAPHICS (live)
   ======================================== */

.graphics-grid {
    max-width: 1180px;
    margin: 30px auto 60px;
    padding: 0 40px;
}

.graphic-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}

.graphic-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
    transform: translateY(-2px);
}

.graphic-preview {
    background: var(--cream, #F5F1E8);
    line-height: 0;
}

.graphic-preview a {
    display: block;
}

.graphic-preview img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.graphic-info {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}

.graphic-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--navy, #002868);
    margin: 0;
    line-height: 1.3;
}

.graphic-info p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.55;
    margin: 0 0 6px;
}

.graphic-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.graphic-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-body);
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.graphic-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
}

.graphic-btn:hover {
    background: var(--navy, #002868);
    color: var(--white);
    border-color: var(--navy, #002868);
}

.graphic-btn-download {
    background: var(--green, #4a6d2e);
    color: var(--white);
    border-color: var(--green, #4a6d2e);
}

.graphic-btn-download:hover {
    background: var(--navy, #002868);
    border-color: var(--navy, #002868);
}

.graphic-btn-fb:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.graphic-btn-x:hover  { background: #000;     border-color: #000;     color: #fff; }
.graphic-btn-copy.is-copied { background: var(--green, #4a6d2e); color: #fff; border-color: var(--green, #4a6d2e); }

@media (min-width: 720px) {
    .graphics-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

.graphics-cta {
    background: var(--navy, #002868);
    color: var(--white);
    text-align: center;
    padding: 70px 40px;
    margin-top: 30px;
}

.graphics-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 14px;
}

.graphics-cta p {
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.graphics-cta .cta-btn {
    display: inline-block;
    background: var(--red, #BF0A30);
    color: var(--white);
    padding: 16px 38px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s, transform 0.3s;
}

.graphics-cta .cta-btn:hover {
    background: var(--green, #4a6d2e);
    transform: translateY(-2px);
}

.save-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 4px;
}

.gc-quote-blue {
  background: var(--blue);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10%;
  text-align: center;
}

.gc-quote-blue .top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--white), var(--green));
}

.gc-quote-blue .stars {
  color: var(--red);
  font-size: 0.8em;
  letter-spacing: 6px;
  margin-bottom: 15px;
}

.gc-quote-blue .quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
}

.gc-quote-blue .author {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-accent);
}

.gc-quote-blue .logo-text {
  position: absolute;
  bottom: 5%; left: 50%;
  transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
}

.gc-quote-green {
  background: var(--green);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10%;
  position: relative;
}

.gc-quote-green .left-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--red);
}

.gc-quote-green .big-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(255,255,255,0.1);
  position: absolute;
  top: 5%; left: 8%;
  line-height: 1;
}

.gc-quote-green .quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.gc-quote-green .author {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.gc-fact {
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8%;
  text-align: center;
  position: relative;
}

.gc-fact .top-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: var(--red);
}

.gc-fact .tag {
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 15px;
}

.gc-fact .headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 15px;
}

.gc-fact .body-text {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 15px;
}

.gc-fact .cta-text {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}

.gc-fact .bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--blue), var(--green));
}

.gc-badge {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10%;
  text-align: center;
  position: relative;
}

.gc-badge .outer-ring {
  width: 70%;
  aspect-ratio: 1;
  border: 3px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gc-badge .inner-ring {
  width: 88%;
  aspect-ratio: 1;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10%;
}

.gc-badge .badge-star { color: var(--red); font-size: 1.5rem; margin-bottom: 8px; }
.gc-badge .badge-line1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(0.7rem, 2.5vw, 1rem); letter-spacing: 4px; color: rgba(255,255,255,0.6); }
.gc-badge .badge-main { font-family: 'Playfair Display', serif; font-size: clamp(1rem, 3.5vw, 1.6rem); font-weight: 900; color: white; line-height: 1.1; margin: 5px 0; }
.gc-badge .badge-main .green { color: var(--green-accent); }
.gc-badge .badge-line2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(0.6rem, 2vw, 0.8rem); letter-spacing: 5px; color: var(--red); margin-top: 5px; }
.gc-badge .corner-stars { position: absolute; font-size: 0.6rem; color: rgba(255,255,255,0.1); letter-spacing: 3px; }
.gc-badge .corner-stars.tl { top: 5%; left: 5%; }
.gc-badge .corner-stars.br { bottom: 5%; right: 5%; }

.gc-timeline {
  background: var(--blue);
  color: white;
  padding: 8% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.gc-timeline .top-bar { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--red); }
.gc-timeline .tl-title { font-family: 'Playfair Display', serif; font-size: clamp(0.9rem, 2.5vw, 1.2rem); font-weight: 900; margin-bottom: 18px; text-align: center; }
.gc-timeline .tl-item { display: flex; gap: 12px; margin-bottom: 12px; align-items: flex-start; }
.gc-timeline .tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 4px; }
.gc-timeline .tl-date { font-family: 'DM Mono', monospace; font-size: 0.6rem; color: var(--green-accent); letter-spacing: 1px; }
.gc-timeline .tl-text { font-size: clamp(0.7rem, 1.8vw, 0.82rem); color: rgba(255,255,255,0.8); line-height: 1.4; }
.gc-timeline .tl-cta { text-align: center; margin-top: 15px; font-weight: 800; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--green-accent); }

.gc-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5% 8%;
  gap: 5%;
  position: relative;
}

.gc-banner .left-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--red); }
.gc-banner .banner-text { text-align: left; }
.gc-banner .banner-tag { font-weight: 800; font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 5px; }
.gc-banner .banner-headline { font-family: 'Playfair Display', serif; font-size: clamp(0.9rem, 2.5vw, 1.4rem); font-weight: 900; line-height: 1.2; }
.gc-banner .banner-headline .green { color: var(--green-accent); }
.gc-banner .banner-cta { display: inline-block; margin-top: 10px; background: var(--green); color: white; font-weight: 800; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; padding: 8px 18px; }

/* ========================================
   PAGE-SPECIFIC: WHY IT MATTERS
   ======================================== */

.page-template-page-why-it-matters .hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: white;
  min-height: auto;
  padding: 0;
}

.page-template-page-why-it-matters .hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 1;
}

.page-template-page-why-it-matters .hero-bg { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px;
  animation: fadeInUp 1s ease-out;
}

.page-template-page-why-it-matters .hero h1 {
  font-size: 4rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-template-page-why-it-matters .hero p {
  font-size: 1.4rem;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.5;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.page-template-page-why-it-matters .hero-cta {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(191, 10, 48, 0.4);
}

.page-template-page-why-it-matters .hero-cta:hover {
  background: #a00828;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(191, 10, 48, 0.5);
}

.page-template-page-why-it-matters section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-template-page-why-it-matters section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 20px;
  text-align: center;
}

.page-template-page-why-it-matters section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
}

.by-numbers {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: white;
}

.by-numbers h2,
.page-template-page-why-it-matters .by-numbers h2 {
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.stat-card {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--green-accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.stat-note {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 12px;
  font-style: italic;
}

.story { background: white; }

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.story-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.story-text p:first-letter {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
}

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.story-image:hover img { transform: scale(1.05); }

.at-stake { background: white; }

.at-stake-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.at-stake-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  order: 2;
}

.at-stake-image img { width: 100%; height: auto; display: block; }
.at-stake-text { order: 1; }
.at-stake-text h3 { margin-bottom: 24px; }
.at-stake-text ul { list-style: none; margin-left: 0; }

.at-stake-text li {
  padding-left: 40px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
}

.at-stake-text li::before {
  content: '\2605';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 1.5rem;
}

.at-stake-text strong { color: var(--green-bright); font-weight: 700; }

.how-help { background: white; }

.help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.help-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: white;
  padding: 50px 40px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.help-icon { display: block; margin-bottom: 20px; }
.help-icon svg { fill: var(--green-accent); }

.help-card h3,
.page-template-page-why-it-matters .help-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: white;
}

.help-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 24px;
}

.help-card-btn {
  background: var(--green-accent);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.help-card-btn:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
}

.final-cta {
  background: linear-gradient(135deg, var(--red) 0%, #a00828 100%);
  color: white;
  text-align: center;
  padding: 100px 40px;
}

.final-cta h2,
.page-template-page-why-it-matters .final-cta h2 { color: white; font-size: 3.5rem; margin-bottom: 30px; }
.final-cta p { font-size: 1.3rem; margin-bottom: 40px; opacity: 0.95; max-width: 700px; margin-left: auto; margin-right: auto; }

.final-cta-btn {
  background: white;
  color: var(--red);
  padding: 18px 50px;
  border: none;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.final-cta-btn:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3); }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 900px) {
  .quote-section { grid-template-columns: 1fr; }
  .quote-photo { height: 250px; }
  .quote-photo::after { display: none; }
  .quote-content { padding: 40px 25px; }
  .about-section { grid-template-columns: 1fr; }
  .about-photo { height: 280px; }
  .about-photo::after { display: none; }
  .about-content { padding: 40px 25px; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 300px; }
}

@media (max-width: 768px) {
  .nav {
    padding: 12px 20px;
    flex-wrap: wrap;
  }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--border);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li a {
    display: block;
    padding: 14px 4px;
    font-size: 0.95rem;
    color: var(--text-body);
    text-decoration: none;
  }
  .nav-links li a:hover,
  .nav-links li a:focus {
    color: var(--red);
  }
  .nav-links .nav-donate-btn {
    margin-top: 8px;
    text-align: center;
    background: var(--green);
    color: white !important;
    border-radius: 3px;
  }
  body.nav-is-open { overflow: hidden; }
  .hero { padding: 60px 20px 50px; min-height: 420px; }
  .donate-card { padding: 30px 20px; }
  .locations-grid { grid-template-columns: 1fr; }
  .share-buttons { flex-direction: column; align-items: center; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 200px; }
  .updates-section, .donors-section, .share-section, .locations-section, .donate-section { padding: 50px 20px; }

  /* Why It Matters responsive */
  .page-template-page-why-it-matters .hero h1 { font-size: 2.5rem; }
  .page-template-page-why-it-matters .hero p { font-size: 1.1rem; }
  .page-template-page-why-it-matters section { padding: 50px 20px; }
  .page-template-page-why-it-matters section h2 { font-size: 2rem; }
  .page-template-page-why-it-matters section h3 { font-size: 1.4rem; }
  .story-content, .at-stake-content { grid-template-columns: 1fr; gap: 40px; }
  .at-stake-image { order: 1; }
  .at-stake-text { order: 2; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .help-cards { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 2rem; }
  .final-cta p { font-size: 1.1rem; }

  /* Updates responsive */
  .page-header { padding: 40px 20px 35px; }
  .page-header h1 { font-size: 1.8rem; }
  .update-card { padding: 20px; }
  .update-card h2 { font-size: 1.4rem; }
  .stay-informed { padding: 30px 20px; }
  .stay-informed h2 { font-size: 1.4rem; }
  .blog-section { padding: 0 20px 30px; }
  .blog-post-image { height: 180px; }
  .blog-post-content { padding: 20px; }
  .blog-post h3 { font-size: 1.15rem; }

  /* Press Kit responsive */
  .content-wrapper { padding: 30px 20px; }
  .press-header { padding: 35px 20px; }
  .press-header h1 { font-size: 1.8rem; }
  .timeline-item { grid-template-columns: 1fr; gap: 5px; }
  .contact-block { grid-template-columns: 1fr; padding: 30px 20px; }

  /* Social Graphics responsive */
  .graphics-grid { grid-template-columns: 1fr !important; padding: 0 20px; }
  .graphics-intro { margin: 0 20px 30px; padding: 20px; }
  .graphics-cta { padding: 50px 20px; }
}

@media (max-width: 700px) {
  .transparency-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .page-header { padding: 30px 16px 25px; }
  .page-header h1 { font-size: 1.5rem; }
  .page-header p { font-size: 0.9rem; }
  .update-card { padding: 16px; border-left-width: 4px; }
  .update-card h2 { font-size: 1.2rem; }
  .back-link { margin: 16px; font-size: 0.8rem; }
  .blog-section { padding: 0 16px 20px; }
  .blog-post-image { height: 150px; }
  .blog-post-content { padding: 16px; }
}
