/* ============================================
   Machine Gun Shoot - machinegunshoot.org
   Hillsborough County Republican Committee
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --dark: #1a1a1a;
    --dark-red: #6b1520;
    --red: #8b1a1a;
    --red-bright: #c0392b;
    --red-hover: #a93226;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --charcoal: #222222;
    --slate: #555555;
    --slate-light: #888888;
    --border: #ddd;
    --gold: #D4AF37;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hover); }

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

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); letter-spacing: 2px; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; letter-spacing: 2px; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); margin-bottom: 12px; }

.section-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red-bright);
    display: block;
    margin-bottom: 8px;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s;
}

.nav.scrolled {
    background: rgba(107,21,32,0.95);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-brand svg { flex-shrink: 0; }

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

.nav-close { display: none; }

.nav-links a {
    display: block;
    padding: 20px 18px;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.2s;
}

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

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: 0.3s;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107,21,32,0.85), rgba(107,21,32,0.6));
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 120px 24px 80px;
    margin: 0 auto;
    text-align: center;
}

.hero-content .section-label {
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: 4px;
}

.hero h1 span {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    font-size: 0.3em;
    letter-spacing: 4px;
    margin-top: 8px;
    text-transform: uppercase;
}

.hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 36px;
    line-height: 1.7;
}

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

.hero-meta-item {
    text-align: center;
    color: var(--white);
}

.hero-meta-item .label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    display: block;
    margin-bottom: 4px;
}

.hero-meta-item .value {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 1px;
}

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    text-align: center;
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--border);
}
.btn-outline-dark:hover { border-color: var(--charcoal); }

/* --- Stats Bar --- */
.stats-bar {
    background: var(--dark);
    padding: 48px 0;
    border-top: 3px solid var(--red);
}

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

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: var(--white);
    display: block;
    letter-spacing: 2px;
}

.stat-item .stat-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

/* --- Sections --- */
.section {
    padding: 96px 0;
}

.section-dark {
    background: var(--charcoal);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-alt { background: var(--off-white); }

.section-header {
    max-width: 680px;
    margin-bottom: 56px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    color: var(--slate-light);
    font-size: 1rem;
    margin-top: 12px;
    font-weight: 300;
}

/* --- About Grid --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--red);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--slate);
    font-weight: 300;
}

/* --- Feature Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 24px;
    border-left: 3px solid var(--border);
    transition: border-color 0.3s;
    background: var(--white);
}

.feature-card:hover { border-color: var(--red); }

.feature-card .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    margin-bottom: 16px;
    color: var(--red);
    display: block;
    overflow: visible;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--slate-light);
    line-height: 1.6;
    font-weight: 300;
}

/* --- Photo Divider --- */
.photo-divider {
    position: relative;
    height: 400px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.photo-divider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107,21,32,0.75), rgba(107,21,32,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-divider-text {
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.photo-divider-text h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.photo-divider-text p {
    font-size: 1.05rem;
    font-weight: 300;
    opacity: 0.9;
}

/* --- Timeline --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 56px;
    position: relative;
    padding-bottom: 8px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 2.4rem;
    color: var(--red);
    min-width: 96px;
    text-align: right;
    padding-top: 0;
    letter-spacing: 2px;
    line-height: 1;
}

.timeline-dot {
    position: absolute;
    left: 94px;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--red);
    border: 3px solid var(--white);
    z-index: 1;
}

.timeline-content {
    padding-left: 16px;
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--slate-light);
    font-size: 0.95rem;
    font-weight: 300;
}

/* --- Sponsor Packages --- */
.sponsor-tier {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--slate-light);
    margin-bottom: 8px;
}

.sponsor-benefits {
    list-style: none;
}

.sponsor-benefits li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--slate);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-weight: 300;
}

.sponsor-benefits li:last-child { border-bottom: none; }

.sponsor-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c0392b'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
}

/* Title Sponsor - Featured Block */
.title-sponsor-feature {
    margin-bottom: 32px;
}

.title-sponsor-inner {
    border: 2px solid var(--red);
    position: relative;
    overflow: hidden;
}

.title-sponsor-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
}

.title-sponsor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.title-sponsor-left {
    padding: 48px 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.title-sponsor-left .sponsor-tier {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 4px;
}

.title-sponsor-price {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: 2px;
}

.title-sponsor-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 8px;
}

.title-sponsor-right {
    padding: 48px 40px;
    display: flex;
    align-items: center;
}

.title-sponsor-right .sponsor-benefits li {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    padding: 10px 0;
    padding-left: 28px;
}

/* Lower Tiers Row */
.sponsor-tiers-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255,255,255,0.06);
}

.sponsor-tier-card {
    padding: 36px 28px;
    background: var(--charcoal);
    display: flex;
    flex-direction: column;
}

.sponsor-tier-card:hover {
    background: rgba(255,255,255,0.03);
}

.sponsor-tier-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--red);
}

.sponsor-tier-header .sponsor-tier {
    color: rgba(255,255,255,0.4);
}

.sponsor-tier-price {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 2.8rem;
    color: var(--white);
    line-height: 1;
    margin-top: 4px;
    letter-spacing: 1px;
}

.sponsor-tier-card .sponsor-benefits {
    flex: 1;
    margin-bottom: 24px;
}

.sponsor-tier-card .sponsor-benefits li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding: 7px 0;
    padding-left: 28px;
}

.sponsor-tier-card .btn { width: 100%; }

/* Vendor Note */
.sponsor-vendor-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 0.95rem;
}

/* --- Sponsor Logos --- */
.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 32px 0;
}

.sponsor-logos img {
    height: 56px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.sponsor-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* --- Vendor Section --- */
.vendor-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.vendor-price-card {
    text-align: center;
    padding: 48px 32px;
    border: 2px solid var(--border);
    border-left: 4px solid var(--red);
}

.vendor-price-card .price {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 5rem;
    color: var(--red);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.vendor-price-card .price-sub {
    font-size: 0.95rem;
    color: var(--slate-light);
    font-weight: 300;
}

.vendor-includes {
    list-style: none;
}

.vendor-includes li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
    font-weight: 300;
}

.vendor-includes li:last-child { border-bottom: none; }

.vendor-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0392b' stroke-width='2'%3E%3Cpath d='M12 2l2.4 7.4H22l-6 4.6 2.3 7L12 16.4 5.7 21l2.3-7L2 9.4h7.6z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* --- Gallery Grid --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-item { cursor: pointer; }

.gallery-item:hover img { transform: scale(1.05); }

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    cursor: default;
    animation: lightboxFadeIn 0.25s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10001;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(107, 21, 32, 0.6);
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    padding: 16px 14px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s, background 0.2s;
    z-index: 10001;
}

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
    background: rgba(107, 21, 32, 0.9);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
}

@media (max-width: 640px) {
    .lightbox img {
        max-width: 96vw;
        max-height: 80vh;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 12px 10px;
        font-size: 22px;
    }

    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }

    .lightbox-close {
        top: 12px;
        right: 16px;
        font-size: 32px;
    }
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--dark-red);
    padding: 72px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 32px;
}

.cta-banner .btn {
    background: var(--white);
    color: var(--dark-red);
}

.cta-banner .btn:hover {
    background: var(--off-white);
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.5);
    padding: 64px 0 32px;
}

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

.footer h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--white);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer p { font-size: 0.9rem; line-height: 1.7; font-weight: 300; }

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 10px; }

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

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

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
}

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

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

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

.footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.4;
    margin-top: 8px;
}

/* --- Page Header --- */
.nav.nav-solid {
    background: rgba(107,21,32,0.95);
}

.page-header {
    background: var(--dark-red);
    padding: 120px 0 56px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto;
}

/* --- Contact Info --- */
.contact-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.contact-item .contact-label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slate-light);
    display: block;
}

.contact-item .contact-value {
    font-size: 0.95rem;
    color: var(--charcoal);
}

/* --- Mobile Menu --- */
@media (max-width: 1024px) {
    .nav-toggle { display: block; }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        font-size: 18px;
        padding: 16px 24px;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
        background: none;
        border: none;
        color: var(--white);
        font-size: 32px;
        cursor: pointer;
        font-family: var(--font-body);
    }

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

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

    .title-sponsor-content { grid-template-columns: 1fr; }
    .title-sponsor-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .sponsor-tiers-row { grid-template-columns: 1fr; }

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

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

    .hero-meta { gap: 24px; }

    .timeline::before { left: 0; }
    .timeline-year { min-width: 60px; font-size: 1.8rem; }
    .timeline-dot { left: -6px; }
    .timeline-item { gap: 28px; }
}

@media (max-width: 640px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .title-sponsor-left, .title-sponsor-right { padding: 28px 20px; }
    .title-sponsor-price { font-size: 3.2rem; }
    .title-sponsor-badge { font-size: 10px; padding: 6px 14px; }
    .sponsor-vendor-note { flex-direction: column; gap: 12px; }
    .sponsor-tier-card { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .hero-content { padding: 100px 16px 48px; }
    .hero h1 { font-size: 2.6rem; }
    .hero-meta { gap: 20px; }
    .hero-meta-item .value { font-size: 1rem; }
    .hero-sub { font-size: 0.95rem; }
    .photo-divider { height: 260px; }
    .photo-divider-text h2 { font-size: 1.6rem; }
    .about-image img { height: 280px; }
    .nav-brand { font-size: 16px; letter-spacing: 1px; }
    .page-header { padding: 100px 0 40px; }
    .page-header h1 { font-size: 2rem; }
    .container { padding: 0 16px; }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 4px;
    }

    .contact-bar { gap: 24px; flex-direction: column; align-items: center; }

    .timeline-year { min-width: 50px; font-size: 1.5rem; }
    .timeline-item { gap: 20px; margin-bottom: 40px; }
    .timeline-content h3 { font-size: 1.1rem; }
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
