/* ========================================
   TRUMP BEACH PETITION — SATIRICAL SITE
   ======================================== */

:root {
    --gold: #D4A843;
    --gold-light: #F0D78C;
    --gold-dark: #B8922E;
    --navy: #1B2A4A;
    --navy-light: #2C3E6B;
    --red: #C41E3A;
    --red-dark: #9B1A2F;
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --cream: #FDF9F0;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --border: #E0DCD4;
    --shadow: rgba(27, 42, 74, 0.12);
    --shadow-lg: rgba(27, 42, 74, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--off-white);
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Merriweather', Georgia, serif;
    line-height: 1.3;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--gold-dark);
}

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

img {
    max-width: 100%;
}

/* ---- BUTTONS ---- */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ---- HEADER ---- */

.header-top-bar {
    background: var(--navy);
    color: var(--gold);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px var(--shadow);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--navy);
}

.logo:hover {
    color: var(--navy);
}

.logo-icon {
    font-size: 1.6rem;
}

.logo-text {
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

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

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

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 6px !important;
}

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

.nav-cta:hover {
    background: var(--red-dark) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
}

/* ---- HERO ---- */

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a3a5c 100%);
    padding: 120px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-preheading {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- COUNTER BAR ---- */

.counter-bar {
    background: var(--gold);
    padding: 32px 0 16px;
    text-align: center;
}

.counter-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.counter-item {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.counter-number {
    font-family: 'Merriweather', serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--navy);
}

.counter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-footnote {
    color: var(--navy);
    font-size: 0.72rem;
    font-style: italic;
    opacity: 0.7;
    margin-top: 12px;
    padding: 0 24px;
}

/* ---- SECTIONS ---- */

.section-light {
    background: var(--off-white);
    padding: 80px 0;
}

.section-dark {
    background: var(--navy);
    padding: 80px 0;
}

.section-gold {
    background: linear-gradient(135deg, var(--cream) 0%, #FFF8E7 100%);
    padding: 80px 0;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
}

.section-heading {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 12px;
    color: var(--navy);
}

.section-heading.light {
    color: var(--white);
}

.section-subheading {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subheading.light {
    color: rgba(255,255,255,0.7);
}

/* ---- REASONS GRID ---- */

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.reason-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--gold);
}

.reason-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px var(--shadow-lg);
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.reason-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.reason-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ---- TESTIMONIALS ---- */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ---- TIMELINE ---- */

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    border: 3px solid var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--white);
    z-index: 1;
}

.timeline-marker.completed {
    background: #2ECC71;
}

.timeline-marker.active {
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(212, 168, 67, 0.25);
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.92rem;
}

/* ---- ENDORSEMENTS ---- */

.endorsements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.endorsement-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 16px var(--shadow);
    border-bottom: 3px solid var(--gold);
}

.endorsement-org {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.endorsement-card p {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---- PETITION FORM ---- */

.petition-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.petition-form {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s;
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.checkbox-group label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--text-light);
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--red);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 16px;
    font-style: italic;
}

/* ---- FORM SUCCESS ---- */

.form-success {
    background: var(--white);
    border-radius: 12px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.share-section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

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

.btn-share {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--white);
    transition: opacity 0.2s;
}

.btn-share:hover {
    opacity: 0.85;
}

.btn-facebook { background: #1877F2; }
.btn-twitter { background: #1DA1F2; }
.btn-copy { background: var(--navy); }

/* ---- FAQ ---- */

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px var(--shadow);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--navy);
    transition: background 0.2s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    background: var(--cream);
}

.faq-item p {
    padding: 0 24px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---- FOOTER ---- */

.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-family: 'Merriweather', serif;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.satire-notice {
    color: rgba(255,255,255,0.4);
    font-size: 0.72rem;
    max-width: 700px;
    margin: 12px auto 0;
}

/* ---- MOBILE MENU ---- */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 60px 24px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}

.mobile-menu.open {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul a {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
}

.mobile-menu ul a:hover {
    color: var(--gold);
}

/* ---- EVIDENCE PAGE ---- */

.page-header {
    background: var(--navy);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.evidence-section {
    padding: 60px 0;
}

.evidence-block {
    max-width: 800px;
    margin: 0 auto 48px;
    background: var(--white);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 16px var(--shadow);
}

.evidence-block h2 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.evidence-block p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

.evidence-block .stat-callout {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 20px 24px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.stat-callout .big-number {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
}

.stat-callout .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.chart-placeholder {
    background: var(--cream);
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin: 20px 0;
}

.chart-bar-group {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 24px;
    height: 200px;
    padding: 20px 0;
}

.chart-bar {
    width: 80px;
    background: var(--navy);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 8px;
}

.chart-bar span {
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
}

.chart-bar.gold-bar {
    background: var(--gold);
}

.chart-bar-label {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* ---- TRIBUTE PAGE ---- */

.tribute-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0D1B2A 100%);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tribute-hero::before {
    content: '★';
    position: absolute;
    font-size: 400px;
    color: rgba(212, 168, 67, 0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tribute-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 16px;
    position: relative;
}

.tribute-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

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

.achievement-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px var(--shadow);
    border-left: 4px solid var(--gold);
}

.achievement-card h3 {
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.achievement-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.quote-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
}

.quote-block blockquote {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
}

.quote-block cite {
    color: var(--gold);
    font-size: 0.95rem;
}

.comparison-table {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px var(--shadow);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table th {
    background: var(--navy);
    color: var(--white);
    padding: 16px 20px;
    text-align: left;
    font-size: 0.9rem;
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

.comparison-table tr:nth-child(even) {
    background: var(--cream);
}

.comparison-table .winner {
    color: var(--gold-dark);
    font-weight: 700;
}

/* ---- RESPONSIVE ---- */

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

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

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

    .hero h1 {
        font-size: 2.4rem;
    }

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

@media (max-width: 700px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .reasons-grid,
    .testimonials-grid,
    .endorsements-grid {
        grid-template-columns: 1fr;
    }

    .counter-inner {
        flex-direction: column;
        align-items: center;
    }

    .counter-number {
        font-size: 1.8rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .petition-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .chart-bar-group {
        gap: 12px;
    }

    .chart-bar {
        width: 56px;
    }

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

/* ---- ANIMATIONS ---- */

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.1s; }
.fade-in:nth-child(3) { animation-delay: 0.2s; }
.fade-in:nth-child(4) { animation-delay: 0.3s; }
.fade-in:nth-child(5) { animation-delay: 0.4s; }
.fade-in:nth-child(6) { animation-delay: 0.5s; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

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

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 32px var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1001;
    list-style: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text) !important;
    font-weight: 500;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    background: var(--cream);
    color: var(--gold-dark) !important;
}

/* Mobile section labels */
.mobile-section-label {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding-top: 12px;
    margin-bottom: 4px !important;
}

/* ======================================
   OPPOSITION / REBUTTAL PAGE
   ====================================== */

.rebuttal-list {
    max-width: 800px;
    margin: 0 auto;
}

.rebuttal-block {
    margin-bottom: 36px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px var(--shadow);
}

.rebuttal-objection {
    padding: 24px 28px;
    border-left: 5px solid var(--red);
    background: #FFF5F5;
}

.objection-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
    margin-bottom: 8px;
}

.rebuttal-objection h3 {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
}

.rebuttal-response {
    padding: 24px 28px;
    border-left: 5px solid #2ECC71;
}

.response-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2ECC71;
    margin-bottom: 8px;
}

.rebuttal-response p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 8px;
}

/* ======================================
   MERCH STORE PAGE
   ====================================== */

.merch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.merch-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.merch-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow-lg);
}

.merch-image {
    font-size: 4rem;
    text-align: center;
    padding: 20px 0;
}

.merch-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.merch-badge.sold-out { background: var(--red); color: var(--white); }
.merch-badge.limited { background: var(--gold); color: var(--navy); }
.merch-badge.premium { background: var(--navy); color: var(--gold); }
.merch-badge.new-item { background: #2ECC71; color: var(--white); }

.merch-card h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.merch-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.merch-price {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 4px;
}

.merch-price-note {
    font-size: 0.72rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
}

.merch-disclaimer {
    max-width: 700px;
    margin: 48px auto 0;
    background: var(--cream);
    border: 2px dashed var(--gold);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.merch-disclaimer h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.merch-disclaimer p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ======================================
   NEWS PAGE
   ====================================== */

.news-feed {
    max-width: 780px;
    margin: 0 auto;
}

.news-article {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 4px 16px var(--shadow);
    border-left: 4px solid var(--gold);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.news-date {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
}

.news-tag {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-tag.breaking { background: var(--red); color: var(--white); }
.news-tag.update { background: var(--navy); color: var(--white); }
.news-tag.opinion { background: var(--gold); color: var(--navy); }

.news-article h2 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.news-article p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.75;
}

/* ======================================
   MAP PAGE
   ====================================== */

.map-container {
    max-width: 500px;
    margin: 0 auto 36px;
    position: relative;
}

.map-island {
    background: linear-gradient(180deg, #6BBF6B 0%, #4DA64D 40%, #3D8C3D 100%);
    border-radius: 40% 45% 35% 42% / 15% 12% 18% 14%;
    min-height: 700px;
    position: relative;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border: 3px solid #2D7A2D;
}

.map-water-label {
    text-align: center;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 600;
    font-style: italic;
    padding: 8px;
}

.map-water-label span {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--text-light);
}

.map-water-label.north {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
}

.map-water-label.south {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
}

.map-pin {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.2s;
}

.map-pin:hover {
    transform: scale(1.1);
    z-index: 20;
}

.pin-dot {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    margin: 0 auto 4px;
}

.pin-label {
    background: var(--white);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    white-space: nowrap;
    text-align: center;
}

.landmark-detail {
    max-width: 600px;
    margin: 0 auto 36px;
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 32px var(--shadow-lg);
    border-top: 4px solid var(--gold);
    position: relative;
}

.landmark-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.landmark-detail h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.landmark-old {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
}

.landmark-detail p {
    color: var(--text-light);
    line-height: 1.75;
}

.map-legend {
    max-width: 500px;
    margin: 36px auto 0;
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px var(--shadow);
}

.map-legend h3 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.legend-items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gold-dot { background: var(--gold); }
.blue-dot { background: #5B9BD5; }
.gray-dot { background: var(--border); }

.legend-note {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
}

/* ======================================
   SIGNATURES WALL PAGE
   ====================================== */

.sig-stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 32px 0;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border);
}

.sig-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sig-stat-number {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
}

.sig-stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sig-feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sig-feed-header h2 {
    font-size: 1.3rem;
    color: var(--navy);
}

.sig-live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: livePulse 1.5s ease infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.4); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(196, 30, 58, 0); }
}

.signature-feed {
    max-width: 700px;
    margin: 0 auto;
}

.sig-card {
    background: var(--white);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: background 0.5s, transform 0.3s;
}

.sig-card.sig-new {
    background: #FFFDE7;
    transform: translateX(-10px);
}

.sig-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sig-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sig-info {
    flex-grow: 1;
}

.sig-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
}

.sig-info span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.sig-time {
    font-size: 0.75rem;
    color: var(--text-light);
    white-space: nowrap;
}

.sig-comment {
    margin-top: 8px;
    padding-left: 50px;
    font-size: 0.88rem;
    color: var(--text-light);
    font-style: italic;
}

.sig-cta-box {
    max-width: 500px;
    margin: 24px auto 0;
    background: var(--cream);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.sig-cta-box h3 {
    color: var(--navy);
    margin-bottom: 8px;
}

.sig-cta-box p {
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ======================================
   VOLUNTEER PAGE
   ====================================== */

.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.volunteer-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 16px var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.vol-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.vol-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vol-badge.open { background: #2ECC71; color: var(--white); }
.vol-badge.urgent { background: var(--red); color: var(--white); }
.vol-badge.filled { background: var(--border); color: var(--text-light); }

.volunteer-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.volunteer-card > p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
    flex-grow: 1;
}

.vol-details {
    background: var(--cream);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

.vol-details div {
    margin-bottom: 4px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 24px;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-content h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.65;
    font-size: 0.92rem;
}

/* ======================================
   LEGAL ROADMAP PAGE
   ====================================== */

.legal-steps {
    margin-top: 24px;
}

.legal-step {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.legal-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.legal-step-content h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.legal-step-content p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-our-plan {
    background: var(--cream);
    border-left: 4px solid var(--gold);
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

.legal-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.legal-team-member {
    background: var(--cream);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    margin: 0 auto 12px;
}

.legal-team-member h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-title {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.legal-team-member > p:last-child {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ======================================
   NAME GENERATOR PAGE
   ====================================== */

.generator-box {
    max-width: 700px;
    margin: 0 auto 48px;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px var(--shadow-lg);
    border-top: 5px solid var(--gold);
    text-align: center;
}

.generator-box h2 {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.generator-box > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.gen-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.gen-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1.05rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.2s;
}

.gen-input:focus {
    outline: none;
    border-color: var(--gold);
}

.gen-result {
    margin-top: 28px;
    text-align: center;
}

.gen-result-label {
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gen-result-name {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.4;
}

.gen-result-cert {
    background: var(--cream);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.gen-cert-title {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.gen-result-cert p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
}

.gen-cert-footer {
    font-size: 0.75rem !important;
    color: var(--text-light) !important;
    font-style: italic;
}

.gen-share-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.gen-examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.gen-example-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 12px var(--shadow);
    text-align: center;
}

.gen-before {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.gen-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 4px 0;
}

.gen-after {
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}

/* ======================================
   NEW PAGE RESPONSIVE
   ====================================== */

@media (max-width: 960px) {
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .legal-team-grid {
        grid-template-columns: 1fr;
    }
    .gen-examples-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .merch-grid,
    .volunteer-grid,
    .gen-examples-grid {
        grid-template-columns: 1fr;
    }
    .gen-input-group {
        flex-direction: column;
    }
    .gen-result-name {
        font-size: 1.2rem;
    }
    .gen-share-row {
        flex-direction: column;
    }
    .sig-stats-bar {
        gap: 20px;
    }
    .legal-step {
        flex-direction: column;
        gap: 8px;
    }
    .map-island {
        min-height: 550px;
    }
    .pin-label {
        font-size: 0.6rem;
    }
}
