/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --color-white: #ffffff;
    --color-blue: #1a365d;
    --color-blue-mid: #2a4a7f;
    --color-blue-light: #e8edf5;
    --color-red: #c53030;
    --color-red-dark: #9b2c2c;
    --color-red-light: #fff5f5;
    --color-gray-50: #f8f9fa;
    --color-gray-100: #e9ecef;
    --color-gray-200: #dee2e6;
    --color-gray-400: #adb5bd;
    --color-gray-500: #6c757d;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #1a1a2e;
    --color-green: #276749;
    --color-green-light: #c6f6d5;
    --color-yellow: #b7791f;
    --color-yellow-light: #fefcbf;
    --font-heading: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-900);
    line-height: 1.6;
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-red);
    z-index: 100;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100px;
    padding: 0 24px 0 16px;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--color-white);
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo span {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.01em;
    line-height: 1.3;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--color-red);
    padding: 12px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 99;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 14px 32px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s, color 0.2s;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-mid) 45%, var(--color-red-dark) 80%, var(--color-red) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--color-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-logo {
    width: 240px;
    height: 240px;
    object-fit: contain;
    margin: 0 auto 28px;
    display: block;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(197, 48, 48, 0.85);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

.hero-content h1 em {
    font-style: normal;
    color: #f9a8a8;
}

.hero-content p {
    font-size: clamp(18px, 2.2vw, 26px);
    opacity: 0.88;
    font-weight: 400;
    margin-bottom: 48px;
    line-height: 1.65;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--color-blue);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.3);
}

.btn-primary:hover {
    background: var(--color-blue-mid);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-white);
}

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

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

.btn-small {
    display: inline-block;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    background: var(--color-blue);
    color: var(--color-white);
    letter-spacing: 0.01em;
}

.btn-small:hover {
    background: var(--color-red);
    transform: translateY(-1px);
}

.btn-donate {
    display: inline-block;
    padding: 11px 28px;
    background: var(--color-red);
    color: var(--color-white);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(197, 48, 48, 0.35);
}

.btn-donate:hover {
    background: var(--color-red-dark);
    transform: translateY(-1px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 120px 0;
}

.section-alt {
    background: var(--color-gray-50);
}

/* Section color variants */
.section-navy {
    background: var(--color-blue);
    color: var(--color-white);
}

.section-navy .section-header h2,
.section-navy .section-title {
    color: var(--color-white);
}

.section-navy .section-header p {
    color: rgba(255, 255, 255, 0.82);
}

.section-navy .btn-primary {
    background: var(--color-white);
    color: var(--color-blue);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.section-navy .btn-primary:hover {
    background: var(--color-gray-100);
}

.section-blue-light {
    background: #edf2f8;
}

.section-red-bold {
    background: var(--color-red);
    color: var(--color-white);
}

.section-red-bold .section-title,
.section-red-bold .section-header h2 {
    color: var(--color-white);
}

.section-red-bold .section-header p {
    color: rgba(255, 255, 255, 0.88);
}

.section-red-bold .btn-primary {
    background: var(--color-white);
    color: var(--color-red);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.section-red-bold .btn-primary:hover {
    background: var(--color-gray-100);
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    color: var(--color-blue);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: clamp(17px, 1.8vw, 22px);
    color: var(--color-gray-700);
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.75;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    color: var(--color-blue);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray-500);
    font-size: 17px;
    margin-bottom: 48px;
}

/* Decorative accent line under section titles */
.section-title-wrap {
    text-align: center;
    margin-bottom: 56px;
}

.section-title-wrap .section-title {
    margin-bottom: 12px;
}

.section-title-wrap::after {
    content: '';
    display: block;
    width: 56px;
    height: 4px;
    background: var(--color-red);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.16);
}

.value-image {
    height: 340px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}

.value-card:hover .value-image {
    transform: scale(1.04);
}

.value-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(26, 54, 93, 0.05) 0%,
        rgba(26, 54, 93, 0.45) 100%);
}

.value-content {
    padding: 36px 40px 48px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.value-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-blue);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    padding-top: 4px;
    border-top: 3px solid var(--color-red);
    display: inline-block;
}

.value-content p {
    color: var(--color-gray-500);
    font-size: 17px;
    line-height: 1.8;
    flex-grow: 1;
}

/* ============================================
   REPORT CARDS PAGE
   ============================================ */
.year-filter-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.year-filter {
    display: flex;
    gap: 8px;
    background: var(--color-gray-100);
    padding: 4px;
    border-radius: var(--radius-md);
}

.year-btn {
    padding: 8px 20px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-500);
    cursor: pointer;
    transition: all 0.2s;
}

.year-btn:hover {
    color: var(--color-gray-900);
    background: rgba(255,255,255,0.6);
}

.year-btn.active {
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: var(--shadow-xs);
}

.report-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 22px;
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-700);
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

.tab-btn.active {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: var(--color-white);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.candidate-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
}

.candidate-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gray-200);
}

.hidden {
    display: none !important;
}

.candidate-card.hidden {
    display: none;
}

.coming-card {
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--color-gray-200);
    padding: 32px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    grid-column: 1 / -1;
}

.coming-content {
    max-width: 360px;
}

.coming-icon {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.calendar-icon {
    width: 64px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-family: var(--font-body);
}

.calendar-icon-header {
    background: var(--color-red);
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 0;
    text-align: center;
}

.calendar-icon-body {
    background: white;
    color: var(--color-blue);
    font-size: 18px;
    font-weight: 800;
    padding: 8px 0;
    text-align: center;
}

.coming-card h3 {
    margin-bottom: 12px;
    color: var(--color-blue);
}

.coming-card p {
    color: var(--color-gray-600);
    line-height: 1.6;
}

.candidate-photo {
    height: 180px;
    overflow: hidden;
    background: var(--color-gray-100);
}

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

.candidate-photo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 12px auto;
    border: 3px solid var(--color-blue-light);
    background: var(--color-gray-100);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.candidate-info {
    padding: 24px 20px 12px;
    text-align: center;
    flex-grow: 1;
}

.candidate-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.candidate-race {
    font-size: 13px;
    color: var(--color-gray-500);
    font-weight: 500;
}

.candidate-rating {
    padding: 0 20px 16px;
    text-align: center;
}

.rating-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.rating-badge.aligned {
    background: var(--color-green-light);
    color: var(--color-green);
}

.rating-badge.not-aligned {
    background: #fed7d7;
    color: var(--color-red);
}

.rating-badge.unclear {
    background: var(--color-yellow-light);
    color: var(--color-yellow);
}

.rating-badge.no-response {
    background: var(--color-gray-100);
    color: var(--color-gray-500);
}

.rating-details {
    padding: 16px 20px;
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-100);
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--color-gray-100);
}

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

.rating-label {
    color: var(--color-gray-700);
    font-weight: 500;
}

.rating-status {
    font-weight: 600;
    font-size: 12px;
}

.rating-status.aligned { color: var(--color-green); }
.rating-status.not-aligned { color: var(--color-red); }
.rating-status.unclear { color: var(--color-yellow); }
.rating-status.no-response { color: var(--color-gray-400); }

/* ============================================
   MEDIA SECTION
   ============================================ */
.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.media-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-gray-100);
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.media-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    position: relative;
}

.media-content {
    padding: 36px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.media-content .btn-small {
    margin-top: auto;
    align-self: flex-start;
}

.media-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-blue-light);
    color: var(--color-blue);
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.media-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.media-content p {
    color: var(--color-gray-500);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.65;
}

.media-link {
    color: var(--color-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

/* Media Detail Card */
.media-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border: 1px solid var(--color-gray-100);
}

.media-detail-image {
    min-height: 360px;
    background-size: cover;
    background-position: center;
}

.media-detail-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media-detail-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.media-detail-content p {
    color: var(--color-gray-700);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
}

.media-detail-info {
    background: var(--color-gray-50);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.media-detail-info p {
    margin-bottom: 6px;
    font-size: 14px;
}

.media-detail-info p:last-child {
    margin-bottom: 0;
}

.media-detail-content .btn {
    align-self: flex-start;
}

/* Media Coverage Grid */
.media-coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.media-coverage-card {
    background: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    border: 1px solid var(--color-gray-100);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.media-coverage-card:hover {
    box-shadow: var(--shadow-md);
}

.media-coverage-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 10px;
}

.media-coverage-card p {
    color: var(--color-gray-500);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
    flex-grow: 1;
}

.media-coverage-card .media-link {
    margin-top: auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
    z-index: 1;
    position: relative;
}

/* ============================================
   ABOUT / BOARD SECTION
   ============================================ */
.board-section {
    margin-bottom: 56px;
}

.board-section h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--color-red);
    display: inline-block;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
}

.board-member {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    border-left: 4px solid var(--color-blue);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.board-member-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.board-member-info {
    padding: 14px 16px;
}

.board-member-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 4px;
}

.board-member-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-gray-500);
}

.board-member:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-left-color: var(--color-red);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-blue);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--color-gray-500);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.75;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-gray-700);
    font-size: 16px;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-red);
    flex-shrink: 0;
}

.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-gray-100);
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--color-gray-50);
    color: var(--color-gray-900);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.08);
}

.contact-form .btn {
    width: 100%;
    margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-gray-900);
    color: var(--color-white);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 72px;
    width: auto;
}

.footer-brand p {
    color: var(--color-gray-400);
    font-size: 14px;
    line-height: 1.65;
    max-width: 280px;
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.2s;
    border-bottom: none;
}

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

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0;
}

.footer-bottom p {
    color: var(--color-gray-400);
    font-size: 13px;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay,
.candidate-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.65);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active,
.candidate-modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal,
.candidate-modal .modal-content {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 820px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(24px);
    transition: transform 0.35s ease;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.modal-overlay.active .modal,
.candidate-modal:not(.hidden) .modal-content {
    transform: translateY(0);
}

.modal-close {
    flex-shrink: 0;
    margin-left: 12px;
    background: var(--color-gray-100);
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--color-gray-500);
    line-height: 1;
    padding: 6px 10px;
    border-radius: var(--radius-md);
    transition: background 0.2s, color 0.2s;
    align-self: flex-start;
}

.modal-close:hover {
    background: var(--color-gray-200);
    color: var(--color-gray-900);
}

#reports.section-navy {
    padding-bottom: 0px;
}

.arc-section {
    margin-top: 16px;
}

.stamp-image {
    width: 230px;
    height: auto;
}

/* ============================================
   CANDIDATE MODAL INTERIOR
   ============================================ */

/* Override padding so header image can bleed edge-to-edge */
.candidate-modal .modal-content {
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Header: name/grade left, photo right */
.modal-header {
    display: grid;
    grid-template-columns: 1fr 200px;
    min-height: 210px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}

.modal-name-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-name {
    flex: 1;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0;
    line-height: 1.2;
}

.modal-hero-left {
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-race {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gray-500);
    margin: 0 0 12px;
}

.modal-grade {
    margin-top: 4px;
}

.modal-hero-right {
    overflow: hidden;
}

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

/* 3-column category cards */
.modal-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    background: var(--color-gray-50);
    padding: 20px 24px;
}

.category-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.category-card h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0;
}

.category-card p {
    font-size: 11px;
    color: var(--color-gray-500);
    margin: 0 0 8px;
    line-height: 1.4;
}

.category-status {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.category-status .status-icon {
    font-size: 11px;
}

.category-status.status-aligned   { color: var(--color-green); }
.category-status.status-unclear   { color: var(--color-yellow); }
.category-status.status-not-aligned { color: var(--color-red); }
.category-status.status-no-response { color: var(--color-gray-400); }

.category-grade { font-size: 26px; font-weight: 800; font-family: var(--font-body); margin-top: 8px; }

/* About section: heading left, bio right */
.modal-about-section {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    border-top: 1px solid var(--color-gray-100);
}

.modal-about-header {
    flex: 0 0 130px;
}

.modal-about-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0 0 8px;
    line-height: 1.4;
}

.about-underline {
    display: block;
    width: 36px;
    height: 3px;
    background: var(--color-red);
    border-radius: 2px;
}

.modal-about-info {
    flex: 1;
}

.modal-bio {
    font-size: 13px;
    color: var(--color-gray-700);
    line-height: 1.7;
    margin: 0;
}

/* Share / action buttons */
.modal-share {
    display: flex;
    gap: 10px;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--color-gray-100);
    position: relative;
}

.share-btn {
    flex: 1;
    padding: 12px 8px;
    border: 2px solid var(--color-blue);
    background: var(--color-white);
    color: var(--color-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s, color 0.18s;
}

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

.copy-tooltip {
    position: absolute;
    bottom: calc(100% + 4px);
    left: 24px;
    background: var(--color-blue);
    color: var(--color-white);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    pointer-events: none;
}

.copy-tooltip.hidden {
    display: none;
}

/* Responsive: stack on small screens */
@media (max-width: 580px) {
    .modal-hero-left {
        padding: 20px;
    }

    .modal-categories {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 20px;
    }

    .modal-about-section {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .modal-about-header {
        flex: none;
    }

    .modal-share {
        flex-wrap: wrap;
        padding: 16px 20px 20px;
    }

    .share-btn {
        flex: 1 1 calc(50% - 5px);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

    .media-detail-card {
        grid-template-columns: 1fr;
    }

    .media-detail-image {
        min-height: 260px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-inner {
        padding: 0 20px;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 64px 0;
    }

    .values-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .section-title {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .report-tabs {
        gap: 6px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

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

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

    .footer {
        padding: 48px 0 0;
    }

    .modal {
        padding: 28px 24px;
    }

    .candidate-modal {
        padding: 0;
        align-items: flex-end;
    }

    .candidate-modal .modal-content {
        max-height: 95dvh;
        max-height: 95vh;
        width: 100%;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        padding-bottom: env(safe-area-inset-bottom, 16px);
    }

    .modal-header {
        display: flex;
        flex-direction: column;
        min-height: unset;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .modal-hero-right {
        order: -1;
        width: 100%;
        height: 220px;
        flex-shrink: 0;
        overflow: hidden;
    }

    .modal-hero-left {
        width: 100%;
    }

    .modal-photo {
        display: block;
        width: 100%;
        height: 220px;
        object-fit: contain;
        object-position: center center;
        background: #f3f4f6;
    }

    .modal-close {
        position: fixed;
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        margin-left: 0;
        flex-shrink: unset;
        align-self: unset;
        background: rgba(255, 255, 255, 0.92);
        border-radius: 50%;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        padding: 0;
        box-shadow: 0 1px 4px rgba(0,0,0,0.15);
    }

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

    .media-coverage-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .logo span {
        font-size: 13px;
        max-width: 160px;
    }

    .logo img {
        height: 38px;
    }
}

/* Notify Me Button & Modal */
.notify-btn {
    display: inline-block;
    margin-top: 16px;
    background: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.notify-btn:hover { background: var(--color-red-dark); }

/* 2026 Grade Pills */
.grade-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 12px;
    color: white;
    vertical-align: middle;
    flex-shrink: 0;
}
.grade-pill.grade-a-tier  { background: #16a34a; }
.grade-pill.grade-b-tier  { background: #ca8a04; }
.grade-pill.grade-c-tier  { background: #ea580c; }
.grade-pill.grade-d-tier  { background: #dc2626; }
.grade-pill.grade-na-tier { background: #9ca3af; }
