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

:root {
    --bg-dark: #1a1612;
    --bg-mid: #2d2620;
    --text-primary: #f4ede4;
    --text-muted: #b8a992;
    --accent-red: #d44f3e;
    --accent-amber: #e8a846;
    --border: #4a3f35;
}

body {
    font-family: 'Crimson Text', serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 22, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

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

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-red);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -1.7rem;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-red);
}

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    border-bottom: 3px solid var(--accent-red);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(212, 79, 62, 0.03) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(244, 237, 228, 0.02) 2px,
            rgba(244, 237, 228, 0.02) 4px
        );
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 300;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    letter-spacing: 0.2em;
    color: var(--accent-amber);
    margin-bottom: 1rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-stat {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 12vw, 10rem);
    color: var(--accent-red);
    line-height: 1;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 600;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1.2rem 3rem;
    background: var(--accent-red);
    color: var(--bg-dark);
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.cta-button:hover {
    background: var(--accent-amber);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 79, 62, 0.3);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--accent-amber);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Content Sections */
.section {
    padding: 6rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.center-heading {
    text-align: center;
}

.large-text {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.center-text {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.column p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

/* Stat Highlights */
.stat-highlight {
    background: var(--bg-mid);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-amber);
}

.stat-number-large {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 900;
    font-size: 4rem;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 1rem;
}

/* Image Sections */
.image-section {
    padding: 0;
    margin: 6rem 0;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--bg-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 3px solid var(--accent-red);
    border-bottom: 3px solid var(--accent-red);
}

.placeholder-text {
    text-align: center;
    color: var(--text-muted);
}

.placeholder-text svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder-text p {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Dark Section */
.dark-section {
    background: var(--bg-mid);
    border-top: 3px solid var(--accent-red);
    border-bottom: 3px solid var(--accent-red);
}

/* Button Group */
.button-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-outline {
    padding: 1rem 2.5rem;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--accent-red);
    color: var(--bg-dark);
}

/* Navigation Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.nav-card {
    background: var(--bg-mid);
    padding: 3rem 2rem;
    text-decoration: none;
    color: var(--text-primary);
    border-left: 4px solid var(--accent-amber);
    transition: all 0.3s ease;
    position: relative;
}

.nav-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-red);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.nav-card h3 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.nav-card p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.card-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--accent-amber);
    transition: transform 0.3s ease;
}

.nav-card:hover .card-arrow {
    transform: translateX(10px);
}

/* Stats Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.stat-card {
    padding: 3rem 2rem;
    background: var(--bg-mid);
    border-left: 4px solid var(--accent-amber);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-red);
}

.stat-number {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--accent-amber);
    display: block;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.3rem;
    color: var(--text-muted);
}

/* Content Blocks */
.content-block {
    font-size: 1.3rem;
    margin: 3rem 0;
    max-width: 900px;
}

.content-block p {
    margin-bottom: 1.5rem;
}

.content-block strong {
    color: var(--accent-amber);
    font-weight: 600;
}

/* Party Comparison */
.party-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}

@media (max-width: 768px) {
    .party-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.party-card {
    background: var(--bg-mid);
    padding: 3rem;
    position: relative;
}

.party-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-red);
}

.party-card h3 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.party-card ul {
    list-style: none;
    font-size: 1.2rem;
}

.party-card li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.party-card li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
}

/* Callout Box */
.callout {
    background: var(--bg-mid);
    border: 3px solid var(--accent-amber);
    padding: 3rem;
    margin: 4rem 0;
    font-size: 1.4rem;
    font-style: italic;
}

/* Truth Section */
.truth-section {
    background: var(--accent-red);
    color: var(--bg-dark);
    padding: 6rem 2rem;
    text-align: center;
}

.truth-section h2 {
    color: var(--bg-dark);
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 2rem;
}

.truth-section p {
    font-size: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 600;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-credits {
    font-size: 0.9rem !important;
    margin-top: 2rem !important;
}

.footer-book {
    font-size: 0.85rem !important;
    font-style: italic;
    margin-top: 2rem !important;
}

/* Page-specific hero (for non-home pages) */
.page-hero {
    padding: 12rem 2rem 6rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-red);
}

.page-hero h1 {
    margin-bottom: 1.5rem;
}

.page-hero .subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}
