/* =====================================================
   JOSH ROY FOR IDAHO - Campaign Website Styles
   Modern Americana Industrial Design
   ===================================================== */

/* CSS Custom Properties */
:root {
    /* Primary Blues - Idaho Sky & Mountains */
    --blue-900: #0a1628;
    --blue-800: #0f2744;
    --blue-700: #143a5c;
    --blue-600: #1a4d73;
    --blue-500: #1e5f8a;
    --blue-400: #2980b9;
    --blue-300: #5dade2;
    --blue-200: #aed6f1;
    --blue-100: #d6eaf8;
    --blue-50: #ebf5fb;

    /* Accent Colors - Republican Red (Trump campaign style) */
    --red-700: #b8102e;
    --red-600: #c91432;
    --red-500: #E31837;
    --red-400: #ef3d56;
    --gold-500: #d4a84b;
    --gold-400: #f0c14b;
    --green-600: #1e8449;
    --green-500: #27ae60;
    --green-400: #2ecc71;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-serif: 'Source Serif 4', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* =====================================================
   BASE STYLES
   ===================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.2;
}

p {
    margin: 0 0 1rem;
}

a {
    color: var(--blue-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--blue-400);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
    color: var(--white);
    border-color: var(--blue-600);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--blue-800);
}

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

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

.btn-donate {
    background: linear-gradient(135deg, var(--green-500) 0%, var(--green-600) 100%);
    color: var(--white);
    border-color: var(--green-500);
    font-weight: 700;
}

.btn-donate:hover {
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(10, 22, 40);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    line-height: 1;
}

.idaho-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform var(--transition-fast);
}

.nav-logo:hover .idaho-icon {
    transform: scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-josh {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    letter-spacing: 0.05em;
}

.logo-idaho {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--red-400);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Nav Social Links */
.nav-social-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 0.5rem;
}

.nav-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gray-300) !important;
    transition: all var(--transition-fast);
}

.nav-social:hover {
    background: var(--red-500);
    color: var(--white) !important;
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-donate {
    padding: 0.625rem 1.25rem !important;
    background: linear-gradient(135deg, var(--green-500) 0%, var(--green-600) 100%);
    color: var(--white) !important;
    border-radius: 4px;
    font-weight: 600 !important;
}

.nav-donate:hover {
    background: linear-gradient(135deg, var(--green-400) 0%, var(--green-500) 100%);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

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

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-particles {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(30, 95, 138, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(41, 128, 185, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(26, 77, 115, 0.4) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem 3rem;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--red-500) 0%, var(--red-600) 100%);
    border-radius: 4px;
}

.hero-eyebrow::before {
    content: '★';
    color: var(--gold-400);
}

.hero-eyebrow::after {
    content: '★';
    color: var(--gold-400);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--blue-300);
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: -0.05em;
    left: 0;
    width: 100%;
    height: 0.12em;
    background: var(--red-500);
    opacity: 0.6;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-donate-btn {
    display: inline-flex;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    border-radius: 8px;
}

.hero-portrait {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

.hero-image-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--red-500);
    border-radius: 8px;
    z-index: -1;
    background: linear-gradient(135deg, transparent 0%, rgba(231, 76, 60, 0.1) 100%);
}

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
    z-index: 1;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--blue-300);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* =====================================================
   STATS BAR
   ===================================================== */

.stats-bar {
    background: linear-gradient(90deg, var(--blue-800) 0%, var(--blue-700) 50%, var(--blue-800) 100%);
    padding: 3rem 0;
    border-top: 4px solid var(--red-500);
    border-bottom: 4px solid var(--red-500);
    position: relative;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

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

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

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1;
}

.stat-percent {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--red-500);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--blue-200);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-light .section-eyebrow,
.section-header-light .section-title,
.section-header-light .section-subtitle {
    color: var(--white);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red-500);
    margin-bottom: 0.75rem;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 2rem;
}

.section-header-light .section-eyebrow {
    background: rgba(255,255,255,0.1);
    color: var(--blue-200);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--blue-900);
    margin-bottom: 1rem;
}

.section-title-red {
    color: var(--red-500);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

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

.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.about-quote {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
    border-left: 4px solid var(--red-500);
    border-radius: 0 8px 8px 0;
    position: relative;
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    font-family: var(--font-serif);
    color: var(--red-500);
    opacity: 0.3;
    line-height: 1;
}

.about-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--blue-800);
    margin: 0;
    line-height: 1.7;
}

.about-text p {
    color: var(--gray-700);
    line-height: 1.8;
}

.about-text strong {
    color: var(--blue-800);
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--blue-800);
    margin-bottom: 1rem;
}

.fact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.fact-list li:last-child {
    border-bottom: none;
}

.fact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
    border-radius: 8px;
    flex-shrink: 0;
}

.fact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--blue-600);
}

.about-card-accent {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
    border: none;
    text-align: center;
}

.about-card-accent h3 {
    color: var(--white);
}

.about-card-accent p {
    color: var(--blue-100);
}

.election-date {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--blue-200);
    margin: 0.5rem 0;
}

.about-card-accent .btn-outline {
    margin-top: 1rem;
    color: var(--white);
    border-color: var(--white);
}

.about-card-accent .btn-outline:hover {
    background: var(--white);
    color: var(--blue-700);
}

/* =====================================================
   ISSUES SECTION
   ===================================================== */

.issues {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-800) 100%);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.issues-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.issue-card {
    padding: 2.5rem;
    border-radius: 8px;
}

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

.issue-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.issue-subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.issue-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0 0 0.75rem 0;
}

.issue-card p:last-child {
    margin-bottom: 0;
}

.issue-card-red {
    background: linear-gradient(135deg, var(--red-500) 0%, var(--red-600) 100%);
    color: var(--white);
}

.issue-card-red h3 {
    color: var(--white);
}

.issue-card-light {
    background: var(--white);
    color: var(--gray-800);
}

.issue-card-light h3 {
    color: var(--gray-900);
}

.issue-card-light .issue-subtitle {
    color: var(--gray-600);
}

.issue-card-blue {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-700) 100%);
    color: var(--white);
}

.issue-card-blue h3 {
    color: var(--white);
}

/* Policy Grid */
.policy-grid-heading {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--blue-200);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.policy-card {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
}

.policy-card:hover {
    background: rgba(255,255,255,0.07);
}

.policy-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--blue-200);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--blue-500);
}

.policy-card p {
    font-size: 1rem;
    color: var(--white);
    line-height: 1.8;
}

.policy-card div[data-multiline] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.8;
}

.policy-card strong {
    color: var(--white);
}

.policy-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.2) 0%, rgba(30, 95, 138, 0.2) 100%);
    border-color: var(--blue-500);
}

.policy-card-featured h4 {
    color: var(--blue-300);
}

/* =====================================================
   VISION SECTION
   ===================================================== */

.vision {
    padding: 6rem 0;
    background: var(--gray-50);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.vision-image-wrapper img {
    width: 100%;
    height: auto;
}

.vision-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.3) 0%, transparent 50%);
}

.vision-content .section-eyebrow {
    background: var(--blue-100);
}

.vision-lead {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vision-blessing {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--blue-700);
    margin-bottom: 2rem;
}

.vision-points {
    margin: 2rem 0;
}

.vision-point {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vision-point-marker {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    margin-top: 6px;
    background: var(--red-500);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.2);
}

.vision-point h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--blue-800);
    margin-bottom: 0.25rem;
}

.vision-point p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

/* =====================================================
   GET INVOLVED SECTION
   ===================================================== */

.involved {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.involved-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.involved-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.involved-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
    border-radius: 50%;
}

.involved-card-icon svg {
    width: 36px;
    height: 36px;
    color: var(--blue-600);
}

.involved-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--blue-800);
    margin-bottom: 1rem;
}

.involved-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--blue-600);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--blue-500);
    transform: scale(1.1);
    color: var(--white);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Newsletter */
.newsletter {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-800) 100%);
    border-radius: 12px;
    text-align: center;
}

.newsletter h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter p {
    color: var(--blue-200);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 4px;
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--blue-400);
}

/* =====================================================
   MERCH SECTION
   ===================================================== */

.merch {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--blue-800) 0%, var(--blue-900) 100%);
}

.merch .section-header {
    color: var(--white);
}

.merch .section-eyebrow {
    background: rgba(255,255,255,0.1);
    color: var(--blue-200);
}

.merch .section-title {
    color: var(--white);
}

.merch .section-subtitle {
    color: var(--blue-200);
}

.merch-content {
    text-align: center;
}

.merch-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.merch-item {
    display: block;
    padding: 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.merch-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.merch-img {
    background: var(--white);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.merch-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.merch-item h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.merch-price {
    color: var(--green-400);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.merch-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.merch-cta .btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.merch-note {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--blue-500);
}

.contact-item strong {
    display: block;
    color: var(--blue-800);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray-600);
    margin: 0;
}

.contact-item a {
    color: var(--blue-600);
}

.contact-item a:hover {
    color: var(--blue-500);
}

/* Contact Form */
.contact-form-wrapper {
    padding: 2.5rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 4px;
    background: var(--white);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.footer {
    background: var(--blue-900);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.idaho-icon-footer {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--gray-300);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--blue-500);
    color: var(--white);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-cta h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-cta p {
    color: var(--gray-400);
    margin-bottom: 1.25rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.8125rem;
    margin: 0.25rem 0;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Tablet and below: hamburger nav + stacked layouts */
@media (max-width: 1024px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        background: var(--blue-900);
        transition: right var(--transition-base);
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu .nav-donate {
        display: block;
        margin-top: 0.5rem;
        padding: 0.875rem 1.25rem !important;
        text-align: center;
        border-radius: 6px;
        border-bottom: none !important;
        font-size: 1rem !important;
    }

    .nav-social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        padding: 1.25rem 0;
        margin-right: 0;
        border-bottom: none;
    }

    .nav-social-links .nav-social {
        width: 42px;
        height: 42px;
        background: rgba(255,255,255,0.15);
        border: none;
        border-bottom: none !important;
        padding: 0 !important;
        color: var(--white) !important;
    }

    .nav-social-links .nav-social svg {
        width: 22px;
        height: 22px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
        gap: 2rem;
    }

    .hero-image {
        order: 0;
    }

    .hero-text {
        order: 1;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
        max-width: 500px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-frame {
        max-width: 100%;
        margin: 0 auto;
    }

    /* Grids to single column */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .issues-grid-three {
        grid-template-columns: 1fr;
    }

    .policy-card-featured {
        grid-column: span 1;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .merch-preview {
        grid-template-columns: 1fr;
    }
}

/* Phone landscape and below */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-scroll {
        position: relative;
        margin-top: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links ul {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 5rem 1rem 2rem;
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-eyebrow {
        font-size: 0.85rem;
        padding: 0.5rem 0.85rem;
    }

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-scroll {
        display: none;
    }

    .hero-image-frame {
        max-width: 100%;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .about,
    .issues,
    .vision,
    .involved,
    .contact {
        padding: 4rem 0;
    }

    .about-quote {
        padding: 1.5rem;
    }

    .about-quote blockquote {
        font-size: 1.0625rem;
    }

    .issue-card,
    .policy-card {
        padding: 1.5rem;
    }

    .involved-card {
        padding: 2rem 1.5rem;
    }

    .newsletter {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll animations - CSS based for smooth performance */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Staggered animations */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =====================================================
   ADMIN INLINE EDITING MODE
   ===================================================== */
body.admin-editing [data-editable] {
    outline: 2px dashed rgba(196, 30, 58, 0.4);
    outline-offset: 4px;
    cursor: text;
    transition: outline-color 0.2s ease, background-color 0.2s ease;
    border-radius: 4px;
}

body.admin-editing [data-editable]:hover {
    outline-color: rgba(196, 30, 58, 0.7);
    background-color: rgba(196, 30, 58, 0.05);
}

body.admin-editing [data-editable]:focus {
    outline: 2px solid #c41e3a;
    outline-offset: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

body.admin-editing [data-editable][contenteditable="true"] {
    min-height: 1em;
}

/* Hide non-essential interactive elements in edit mode */
body.admin-editing .hero-scroll,
body.admin-editing .nav-cta {
    pointer-events: none;
    opacity: 0.5;
}
