/* =============================================
   RED DIRT RADAR - DESIGN SYSTEM & STYLES
   reddirtradar.com

   A modern, gritty aesthetic inspired by Red Dirt
   and Texas Country music culture
   ============================================= */

/* =============================================
   CSS VARIABLES - Design Tokens
   ============================================= */
:root {
    /* Brand Colors - From Official Logo */
    --color-brand-red: #A03321;        /* RED DIRT text color */
    --color-brand-charcoal: #231F20;   /* RADAR text & graphics */
    --color-brand-white: #FFFFFF;      /* Background */

    /* Extended Palette - Complementary colors */
    --color-rust: #A03321;             /* Primary brand color */
    --color-rust-dark: #7A2618;        /* Darker variant */
    --color-rust-light: #C84A35;       /* Lighter variant */
    --color-dirt: #8B5A3C;             /* Earthy brown */
    --color-sand: #F4EDE4;             /* Light neutral */
    --color-cream: #FAF7F2;            /* Background tint */
    --color-charcoal: #231F20;         /* Primary dark from logo */
    --color-stone: #4A4A4A;            /* Secondary gray */
    --color-sage: #8A9B68;             /* Accent green */
    --color-dusk: #2D2D3A;             /* Deep accent */
    --color-smoke: #E8E3DB;            /* Light gray */

    /* Semantic Colors */
    --color-primary: var(--color-brand-red);
    --color-primary-hover: var(--color-rust-dark);
    --color-accent: var(--color-sage);
    --color-background: var(--color-cream);
    --color-surface: var(--color-brand-white);
    --color-text-primary: var(--color-brand-charcoal);
    --color-text-secondary: var(--color-stone);
    --color-text-light: #757575;
    --color-border: #D9D3C8;
    --color-border-light: #E8E3DB;

    /* Typography */
    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Crimson Pro', Georgia, serif;

    /* Font Sizes */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */
    --text-7xl: 4.5rem;      /* 72px */

    /* Spacing */
    --space-xs: 0.25rem;     /* 4px */
    --space-sm: 0.5rem;      /* 8px */
    --space-md: 1rem;        /* 16px */
    --space-lg: 1.5rem;      /* 24px */
    --space-xl: 2rem;        /* 32px */
    --space-2xl: 3rem;       /* 48px */
    --space-3xl: 4rem;       /* 64px */

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

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

    /* Layout */
    --container-max: 1200px;
    --header-height: 64px;
    --bottom-nav-height: 64px;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    overflow-x: hidden;
}

/* =============================================
   TYPOGRAPHY SYSTEM
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-primary);
}

/* Explicit font sizes to avoid deprecated API warning */
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.display-text {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* =============================================
   BUTTON SYSTEM
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.5rem;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(160, 51, 33, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(160, 51, 33, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-text-primary);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-primary);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    z-index: 1000;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-charcoal);
}

.logo-subtext {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-left: 1px;
}

.logo-image {
    height: 48px;
    width: auto;
    transition: transform var(--transition-base);
}

.logo-image:hover {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
}

@media (min-width: 768px) {
    .logo-image {
        height: 56px;
    }
}

.menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    transition: transform var(--transition-base);
}

.menu-btn:hover {
    transform: scale(1.1);
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* Main Navigation */
.main-nav {
    display: none; /* Hidden on mobile, shown on desktop */
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background: var(--color-surface);
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: var(--space-xl) 0;
}

.mobile-nav-link {
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
    text-decoration: none;
    border-left: 4px solid transparent;
    transition: all var(--transition-base);
}

.mobile-nav-link:hover {
    background: var(--color-cream);
    border-left-color: var(--color-primary);
    color: var(--color-primary);
}

.mobile-nav-link.active {
    border-left-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(160, 51, 33, 0.05);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: calc(100vh - var(--bottom-nav-height) + 60px);
    margin-top: var(--header-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) var(--space-lg);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    z-index: 0;
}

.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.015) 2px,
            rgba(0, 0, 0, 0.015) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.015) 2px,
            rgba(0, 0, 0, 0.015) 4px
        );
    opacity: 0.5;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.85) 100%
    ),
    radial-gradient(
        ellipse at top,
        rgba(160, 51, 33, 0.12),
        transparent 50%
    ),
    radial-gradient(
        ellipse at bottom right,
        rgba(138, 155, 104, 0.08),
        transparent 50%
    );
    z-index: 2;
}

/* Modern Mesh Gradient Overlay */
.gradient-mesh {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.8) 100%
        ),
        radial-gradient(
            ellipse 80% 50% at 30% 20%,
            rgba(160, 51, 33, 0.25),
            transparent 60%
        ),
        radial-gradient(
            ellipse 60% 70% at 70% 80%,
            rgba(232, 116, 79, 0.15),
            transparent 60%
        ),
        radial-gradient(
            ellipse 50% 80% at 50% 50%,
            rgba(138, 155, 104, 0.12),
            transparent 70%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(245, 158, 11, 0.08),
            transparent 50%
        );
    background-blend-mode: normal, screen, screen, soft-light, overlay;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(160, 51, 33, 0.2);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-charcoal);
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    animation: fadeIn 0.8s ease 0.2s backwards;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.hero-badge svg {
    color: var(--color-primary);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.hero-title-main {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 200;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: fadeIn 0.8s ease 0.3s backwards;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    opacity: 0;
    transform: translateY(20px);
}

.hero-title-accent {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 5.5rem);
    font-weight: 900;
    color: #E8744F;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.9;
    animation: fadeIn 0.8s ease 0.4s backwards;
    text-shadow:
        3px 3px 0 rgba(160, 51, 33, 0.3),
        1px 1px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
}

/* Outlined Text Effect */
.hero-title-outlined {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
    text-stroke: 2px rgba(255, 255, 255, 0.3);
    paint-order: stroke fill;
}

/* Text Reveal Animation */
[data-reveal].revealed {
    animation: revealText 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Desktop: Even bigger and bolder */
@media (min-width: 1024px) {
    .hero-title-main {
        font-size: 3rem;
        font-weight: 200;
        letter-spacing: 0.2em;
    }

    .hero-title-accent {
        font-size: 6rem;
        font-weight: 900;
        -webkit-text-stroke: 3px rgba(255, 255, 255, 0.35);
        text-stroke: 3px rgba(255, 255, 255, 0.35);
    }
}

/* Extra large screens: Maximum impact */
@media (min-width: 1440px) {
    .hero-title-main {
        font-size: 3.5rem;
    }

    .hero-title-accent {
        font-size: 7rem;
    }
}

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: #FFFFFF;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: var(--space-lg);
    animation: fadeIn 0.8s ease 0.5s backwards;
}

/* =============================================
   HERO STATS COUNTER
   ============================================= */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    font-size: var(--text-2xl);
    color: rgba(255, 255, 255, 0.3);
    user-select: none;
}

@media (max-width: 640px) {
    .hero-stats {
        gap: var(--space-md);
        padding: var(--space-md) var(--space-lg);
    }

    .stat-number {
        font-size: var(--text-3xl);
    }

    .stat-label {
        font-size: 0.625rem;
    }
}

/* =============================================
   HERO GUITAR PICK (Enhanced 3D)
   ============================================= */
.hero-guitar-pick {
    position: absolute;
    top: 10%;
    right: 8%;
    width: 200px;
    height: 200px;
    z-index: 0;
    pointer-events: none;
    transform: rotate(15deg);
    animation: gentleFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 25px rgba(35, 31, 32, 0.3));
}

/* Enhanced 3D Guitar Pick - DRAMATIC */
.hero-guitar-pick-3d {
    transform: rotate(20deg) perspective(600px) rotateY(-35deg) rotateX(15deg);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 20px 40px rgba(160, 51, 33, 0.5))
            drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.hero-guitar-pick-3d:hover {
    transform: rotate(20deg) perspective(600px) rotateY(-20deg) rotateX(25deg) scale(1.1) translateZ(20px);
    filter: drop-shadow(0 30px 60px rgba(160, 51, 33, 0.6))
            drop-shadow(0 10px 25px rgba(0, 0, 0, 0.4));
}

/* Guitar pick shape - brand red */
.pick-shape {
    fill: var(--color-brand-red);
    transition: fill 0.3s ease;
}

.hero-guitar-pick-3d:hover .pick-shape {
    fill: var(--color-rust-light);
}

/* Guitar headstock silhouette */
.guitar-headstock {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.hero-guitar-pick-3d:hover .guitar-headstock {
    opacity: 1;
}

/* 3D floating animation */
@keyframes gentleFloat {
    0%, 100% {
        transform: rotate(20deg) perspective(600px) rotateY(-35deg) rotateX(15deg) translateY(0) translateZ(0);
    }
    50% {
        transform: rotate(25deg) perspective(600px) rotateY(-30deg) rotateX(20deg) translateY(-25px) translateZ(10px);
    }
}

/* Mobile: Keep exactly as is (perfect position) */
@media (max-width: 768px) {
    .hero-guitar-pick {
        width: 150px;
        height: 150px;
        top: 5%;
        right: 5%;
    }
}

/* Desktop: Float further to the right */
@media (min-width: 769px) {
    .hero-guitar-pick {
        right: 1%;
        top: 8%;
    }
}

/* Large desktop: Even more to the right */
@media (min-width: 1440px) {
    .hero-guitar-pick {
        right: 2%;
        width: 220px;
        height: 220px;
    }
}

/* =============================================
   LIVE TICKER BAR
   ============================================= */
.ticker-bar {
    background: linear-gradient(135deg, var(--color-primary) 0%, #A02020 100%);
    color: white;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: sticky;
    top: var(--header-height);
    z-index: 999;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.ticker-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    will-change: transform;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
    padding: 0 1rem;
}

.ticker-icon {
    font-size: 1.25rem;
}

.ticker-text {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.ticker-meta {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

/* =============================================
   SOCIAL PROOF BANNER
   ============================================= */
.social-proof {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    padding: 2rem 1.5rem;
}

.social-proof-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.avatar-stack {
    display: flex;
    position: relative;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-left: -12px;
    position: relative;
    transition: all 0.3s ease;
    object-fit: cover;
    background: #e9ecef;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-4px) scale(1.1);
    z-index: 10;
}

.social-proof-text {
    text-align: center;
}

.social-proof-stat {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin: 0 0 0.25rem 0;
}

.social-proof-stat strong {
    color: var(--color-primary);
    font-weight: 700;
}

.social-proof-tagline {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.65);
    margin: 0;
}

@media (max-width: 768px) {
    .ticker-label {
        padding: 0 1rem;
        font-size: 0.7rem;
    }

    .ticker-text {
        font-size: 0.85rem;
    }

    .ticker-meta {
        display: none;
    }

    .social-proof {
        padding: 1.5rem 1rem;
    }

    .social-proof-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .avatar {
        width: 40px;
        height: 40px;
    }
}

/* =============================================
   SEARCH CONTAINER
   ============================================= */
.search-container {
    width: 100%;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.search-wrapper:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(160, 51, 33, 0.15);
}

.search-icon {
    color: var(--color-text-light);
    flex-shrink: 0;
    margin-right: var(--space-sm);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background: transparent;
}

.search-input::placeholder {
    color: var(--color-text-light);
}

.location-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-sm);
}

.location-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.location-btn:hover svg {
    color: white;
}

.location-btn svg {
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.search-btn {
    width: 100%;
}

/* =============================================
   QUICK FILTERS
   ============================================= */
.quick-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    animation: fadeIn 0.8s ease 0.7s backwards;
}

.filter-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.filter-chip {
    padding: var(--space-sm) var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-chip:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-chip.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* =============================================
   SCROLL INDICATOR
   ============================================= */
.scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-light);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s ease infinite;
    opacity: 0.6;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* =============================================
   SECTION STYLES
   ============================================= */
.featured-preview {
    padding: var(--space-2xl) var(--space-lg);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border-light);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-charcoal);
    position: relative;
    display: inline-block;
}

/* Subtle accent underline */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        font-weight: 900;
    }
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
}

.section-link:hover {
    gap: var(--space-md);
}

/* =============================================
   EVENT CARDS - MAGAZINE STYLE
   ============================================= */
.event-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

/* Magazine Grid Layout - 3 Column × 2 Row */
.event-cards-magazine {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/* Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
    .event-cards-magazine {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3 columns × 2 rows */
@media (min-width: 1024px) {
    .event-cards-magazine {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Base Event Card - Compact Style for All Screens */
.event-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-cream);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    margin-bottom: 1rem;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary);
}

/* Blur/Bokeh Background */
.event-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.event-bg-blur {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(40px) brightness(0.7);
    transform: scale(1.2);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.event-card:hover .event-bg-blur {
    filter: blur(30px) brightness(0.8);
    transform: scale(1.25);
    opacity: 0.7;
}

/* Card Inner Content - Horizontal Layout (Image Left, Content Right) */
.event-card-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(
        135deg,
        rgba(250, 247, 242, 0.95) 0%,
        rgba(250, 247, 242, 0.9) 100%
    );
    backdrop-filter: blur(10px);
}

/* Event Image - Full Height on Left */
.event-card .event-image {
    width: 140px;
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.event-card .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Date Badge on Home Page Cards */
.event-cards-magazine .event-date-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 50px;
    width: 50px;
    height: 50px;
    padding: 0.35rem;
}

.event-cards-magazine .date-month {
    font-size: 0.6rem;
}

.event-cards-magazine .date-day {
    font-size: 1.1rem;
}

/* Event Content - Right Side with Proper Stacking */
.event-card .event-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    justify-content: flex-start;
    gap: 0.5rem;
}

/* Hide the expand section on home page cards */
.event-card .event-expand {
    display: none;
}

/* Adjust footer on home page cards */
.event-card .event-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Mobile: Stack cards vertically (image on top) */
@media (max-width: 767px) {
    .event-card-inner {
        grid-template-columns: 1fr;
        grid-template-rows: 180px 1fr;
        min-height: auto;
    }

    .event-card .event-image {
        width: 100%;
        height: 180px;
        min-height: 180px;
    }

    .event-cards-magazine .event-date-badge {
        top: 12px;
        left: 12px;
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
}

/* Event Image */
.event-image {
    position: relative;
    width: 100%;
    height: 180px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Enhanced placeholder that suggests a photo will go here */
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%),
        linear-gradient(135deg, var(--color-dirt) 0%, var(--color-rust) 100%);
    position: relative;
    overflow: hidden;
}

/* Add subtle texture to image placeholders */
.event-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 3px,
            rgba(0, 0, 0, 0.03) 3px,
            rgba(0, 0, 0, 0.03) 6px
        );
    pointer-events: none;
}

.event-image-placeholder svg {
    color: rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}

.event-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event-date-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    min-width: 65px;
    width: 65px;
    height: 65px;
    flex-shrink: 0;
}

.date-month {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-primary);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 2px;
}

.date-day {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-charcoal);
    line-height: 1;
}

/* Event Info Container */
.event-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
}

.event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.event-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xs);
}

.event-genre {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.event-distance {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 500;
    color: var(--color-text-light);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
    transition: color var(--transition-base);
}

.event-card:hover .event-title {
    color: var(--color-primary);
}

.event-artist {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.event-venue {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.25rem;
}

.event-venue svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: var(--space-xs);
}

.event-time,
.event-price {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
}

.event-price {
    color: var(--color-primary);
    font-weight: 600;
}

/* =============================================
   EVENT BADGES - Availability Indicators
   ============================================= */
.event-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 10;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: badgeSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s backwards;
}

.event-badge-hot {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.event-badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.event-badge-last {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* =============================================
   HOVER EXPANSION - Additional Info
   ============================================= */
.event-expand {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: var(--space-sm);
    padding-top: 0;
    border-top: 1px solid transparent;
}

/* Desktop: Show on hover */
@media (min-width: 1024px) {
    .event-card:hover .event-expand {
        max-height: 200px;
        opacity: 1;
        padding-top: var(--space-md);
        border-top-color: var(--color-border);
    }
}

/* Mobile/Tablet: Always show expanded content */
@media (max-width: 1023px) {
    .event-expand {
        max-height: none;
        opacity: 1;
        padding-top: var(--space-md);
        border-top-color: var(--color-border);
        overflow: visible;
    }
}

.event-address {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.event-tickets {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
}

.tickets-available {
    color: var(--color-text-secondary);
    font-weight: 500;
}

.price-range {
    color: var(--color-primary);
    font-weight: 700;
}

.btn-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    width: 100%;
}

/* =============================================
   MICRO-ANIMATIONS
   ============================================= */

/* Date Badge Flip Animation */
.event-date-badge-flip {
    animation: dateBadgeFlip 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s backwards;
    transform-origin: center;
}

@keyframes dateBadgeFlip {
    from {
        transform: rotateY(-90deg) scale(0.8);
        opacity: 0;
    }
    to {
        transform: rotateY(0) scale(1);
        opacity: 1;
    }
}

/* Venue Icon Pulse */
.venue-icon-pulse {
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

/* Image Zoom on Hover */
.event-image-img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-card:hover .event-image-img {
    transform: scale(1.1);
}

/* Card Entry Animation */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
}

[data-animate].animated {
    animation: cardSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

/* Price Shimmer on Hover */
.event-price {
    position: relative;
    overflow: hidden;
}

.event-card:hover .event-price::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

/* =============================================
   POPULAR ARTISTS SECTION - Polaroid Style
   ============================================= */
.popular-artists {
    padding: var(--space-2xl) var(--space-lg);
    background: linear-gradient(135deg, #F4EDE4 0%, #FAF7F2 100%);
    border-top: 1px solid var(--color-border-light);
}

.artist-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .artist-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-xl);
    }
}

/* Polaroid Artist Cards */
.artist-card-polaroid {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Apply rotation from data attribute */
.artist-card-polaroid[data-rotate="-3"] {
    transform: rotate(-3deg);
}

.artist-card-polaroid[data-rotate="-2"] {
    transform: rotate(-2deg);
}

.artist-card-polaroid[data-rotate="2"] {
    transform: rotate(2deg);
}

.artist-card-polaroid[data-rotate="3"] {
    transform: rotate(3deg);
}

/* Polaroid Frame - Classic white border */
.polaroid-frame {
    background: #FFFFFF;
    padding: 12px 12px 45px 12px; /* Thick bottom for polaroid effect */
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.12); /* Stacked shadow for depth */
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Polaroid Photo */
.polaroid-photo {
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    height: 0;
    padding-bottom: 100%;
}

.polaroid-photo img {
    position: absolute;
    top: 0;
    left: 0;
}

.polaroid-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

/* Polaroid Caption - Handwritten style */
.polaroid-caption {
    padding: var(--space-md) 0 var(--space-xs);
    text-align: center;
}

.artist-name-polaroid {
    font-family: 'Crimson Pro', serif;
    font-size: var(--text-lg);
    font-weight: 500;
    font-style: italic;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

.artist-meta-polaroid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xs);
}

.genre-tag-polaroid {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.artist-shows {
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    font-weight: 500;
}

/* Hover Effects - Straighten and lift */
.artist-card-polaroid:hover {
    transform: rotate(0deg) translateY(-12px) scale(1.05) !important;
    z-index: 10;
}

.artist-card-polaroid:hover .polaroid-frame {
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.15);
}

.artist-card-polaroid:hover .polaroid-photo img {
    transform: scale(1.08);
}

/* Legacy artist card styles (hidden when using polaroid) */
.artist-card:not(.artist-card-polaroid) {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.artist-card:not(.artist-card-polaroid):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.artist-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--space-md);
    flex-shrink: 0;
    border: 2px solid var(--color-primary);
}

.artist-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-accent) 100%);
}

.artist-image-placeholder svg {
    color: rgba(255, 255, 255, 0.7);
}

.artist-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artist-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
}

.artist-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
    letter-spacing: 0.02em;
    transition: color var(--transition-base);
}

.artist-card:hover .artist-name {
    color: var(--color-primary);
}

.artist-genre {
    margin-bottom: var(--space-xs);
}

.genre-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(160, 51, 33, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.artist-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.artist-stats svg {
    flex-shrink: 0;
    color: var(--color-text-light);
}

.btn-follow {
    width: 100%;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
}

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

/* =============================================
   THE DIRT BLOG SECTION
   ============================================= */
.the-dirt-section {
    padding: var(--space-3xl) var(--space-lg);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border-light);
}

.dirt-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-2xl);
}

.dirt-branding {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.dirt-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-charcoal);
    line-height: 1;
}

.dirt-subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.blog-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    padding: var(--space-lg) 0;
}

/* Torn Magazine Clipping Style */
.blog-card {
    display: flex;
    flex-direction: column;
    background: #F5F1E8; /* Aged newsprint */
    border: none;
    overflow: visible;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    /* Torn edge effect using clip-path */
    clip-path: polygon(
        0% 2%, 2% 0%, 5% 1%, 8% 0%, 12% 2%, 15% 1%, 18% 0%, 22% 1%, 25% 0%,
        30% 1%, 35% 0%, 40% 2%, 45% 1%, 50% 0%, 55% 1%, 60% 0%, 65% 2%,
        70% 1%, 75% 0%, 80% 1%, 85% 0%, 90% 2%, 95% 1%, 98% 0%, 100% 2%,
        100% 98%, 98% 100%, 95% 99%, 90% 100%, 85% 98%, 80% 99%, 75% 100%,
        70% 99%, 65% 100%, 60% 98%, 55% 99%, 50% 100%, 45% 99%, 40% 100%,
        35% 98%, 30% 99%, 25% 100%, 20% 99%, 15% 100%, 10% 98%, 5% 99%, 2% 100%, 0% 98%
    );
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15))
            drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

/* Rotating clippings - pinned to board effect */
.blog-card:nth-child(1) {
    transform: rotate(-1.5deg);
}

.blog-card:nth-child(2) {
    transform: rotate(1deg);
}

.blog-card:nth-child(3) {
    transform: rotate(-2deg);
}

.blog-card:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2))
            drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    z-index: 10;
}

/* Tape effect on top corners */
.blog-card::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15%;
    width: 60px;
    height: 25px;
    background: rgba(255, 248, 220, 0.7);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-card:nth-child(2)::before {
    right: 20%;
    transform: rotate(8deg);
}

.blog-card:nth-child(3)::before {
    right: 18%;
    transform: rotate(-3deg);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

/* Newsprint texture overlay */
.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        );
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.5;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-dusk) 0%, var(--color-charcoal) 100%);
}

.blog-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(20%) sepia(15%) contrast(1.1);
    transition: filter 0.4s ease;
}

.blog-card:hover .blog-image-img {
    filter: grayscale(0%) sepia(0%) contrast(1);
}

.blog-category {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 12px;
    background: rgba(139, 0, 0, 0.9);
    color: white;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.blog-content {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    background: #F5F1E8; /* Match clipping paper */
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.7rem;
    color: #666;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    padding-bottom: var(--space-xs);
    margin-bottom: var(--space-xs);
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.blog-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    letter-spacing: -0.01em;
    transition: color var(--transition-base);
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.blog-card:hover .blog-title {
    color: var(--color-primary);
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #3a3a3a;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8B0000;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--color-primary);
    text-decoration: none;
    margin-top: var(--space-sm);
    transition: gap var(--transition-base);
}

.blog-link:hover {
    gap: var(--space-md);
}

/* =============================================
   NEWSLETTER SIGNUP
   ============================================= */

/* Floating Button */
.newsletter-float-btn {
    position: fixed;
    bottom: 90px; /* Above bottom nav on mobile */
    right: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(160, 51, 33, 0.4);
    transition: all var(--transition-base);
    z-index: 900;
    animation: floatBounce 3s ease-in-out infinite;
}

.newsletter-float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(160, 51, 33, 0.5);
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.newsletter-float-btn span {
    display: none;
}

/* Newsletter Modal */
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.newsletter-modal.active {
    display: flex;
}

.newsletter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(35, 31, 32, 0.8);
    backdrop-filter: blur(4px);
}

.newsletter-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    animation: modalSlideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
}

.modal-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.modal-close:hover svg {
    color: white;
}

.modal-close svg {
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

/* Newsletter Header */
.newsletter-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.newsletter-subtitle {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
}

.form-label .optional {
    font-weight: 400;
    color: var(--color-text-light);
    text-transform: lowercase;
}

.form-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background: var(--color-cream);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-surface);
    box-shadow: 0 4px 12px rgba(160, 51, 33, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-light);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.checkbox-label span {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
}

.btn-full {
    width: 100%;
}

.newsletter-privacy {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    text-align: center;
    line-height: 1.5;
}

/* Newsletter Success State */
.newsletter-success {
    text-align: center;
    padding: var(--space-2xl) 0;
}

.newsletter-success svg {
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.newsletter-success h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.newsletter-success p {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* =============================================
   BOTTOM NAVIGATION
   ============================================= */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottom-nav-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: var(--space-sm) var(--space-md);
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-sm);
    color: var(--color-text-light);
    text-decoration: none;
    transition: all var(--transition-base);
    flex: 1;
    max-width: 80px;
}

.nav-item span {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-item svg {
    transition: all var(--transition-base);
}

.nav-item:hover,
.nav-item.active {
    color: var(--color-primary);
}

.nav-item:hover svg {
    transform: scale(1.1);
}

.nav-item.active svg {
    stroke-width: 2.5;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Mobile Event Cards - Tablets and Phones (below 768px) */
@media (max-width: 768px) {
    /* Event Cards - Make MUCH smaller on ALL mobile devices */
    body .event-card {
        margin-bottom: 1rem !important;
    }

    body .event-card-inner {
        padding: 0.75rem !important;
        gap: 0.5rem !important;
        flex-direction: row !important;
    }

    body .event-date-badge {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        padding: 0.25rem !important;
        flex-shrink: 0 !important;
    }

    body .date-month {
        font-size: 0.6rem !important;
        margin-bottom: 0 !important;
    }

    body .date-day {
        font-size: 1.25rem !important;
        line-height: 1 !important;
    }

    body .event-info {
        padding: 0 !important;
        flex: 1 !important;
    }

    body .event-title {
        font-size: 0.95rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.25rem !important;
    }

    body .event-artist {
        font-size: 0.8rem !important;
        margin-bottom: 0.25rem !important;
    }

    body .event-venue {
        font-size: 0.75rem !important;
        gap: 0.25rem !important;
    }

    body .event-venue svg {
        width: 12px !important;
        height: 12px !important;
    }

    body .event-expand {
        padding: 0.75rem !important;
        padding-top: 0.5rem !important;
        gap: 0.5rem !important;
    }

    body .event-expand-item {
        font-size: 0.75rem !important;
    }

    body .event-expand-item svg {
        width: 14px !important;
        height: 14px !important;
    }

    body .event-cards,
    body .event-cards-magazine {
        gap: 1rem !important;
    }

    body .event-badge {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.65rem !important;
    }
}

/* Mobile adjustments (below 480px) */
@media (max-width: 480px) {
    .hero-title-accent {
        font-size: var(--text-5xl);
    }

    /* Scale down guitar pick on mobile */
    .hero-guitar-pick {
        width: 100px;
        height: 100px;
        top: 3%;
        right: 2%;
        opacity: 0.6;
    }

    /* Artist cards - keep 2 columns on mobile */
    .artist-cards {
        gap: var(--space-md);
    }

    .artist-image {
        width: 90px;
        height: 90px;
    }

    .artist-name {
        font-size: var(--text-base);
    }

    /* Blog cards - single column on mobile */
    .blog-cards {
        gap: 2rem;
        padding: var(--space-sm) 0;
        overflow-x: hidden;
    }

    .blog-image {
        height: 200px;
    }

    .blog-card {
        margin: 0;
        width: 100%;
        clip-path: none;
        border-radius: 4px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .blog-card::before {
        display: none;
    }

    /* Remove rotation on mobile for blog cards */
    .blog-card:nth-child(1),
    .blog-card:nth-child(2),
    .blog-card:nth-child(3) {
        transform: none;
    }

    .blog-card:hover {
        transform: translateY(-4px);
    }

    .blog-content {
        padding: var(--space-md);
    }

    /* Event Cards - Make MUCH smaller on mobile */
    body .event-card {
        margin-bottom: 1rem !important;
    }

    body .event-card-inner {
        padding: 0.75rem !important;
        gap: 0.5rem !important;
        flex-direction: row !important;
    }

    body .event-date-badge {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        padding: 0.25rem !important;
        flex-shrink: 0 !important;
    }

    body .date-month {
        font-size: 0.6rem !important;
        margin-bottom: 0 !important;
    }

    body .date-day {
        font-size: 1.25rem !important;
        line-height: 1 !important;
    }

    body .event-info {
        padding: 0 !important;
        flex: 1 !important;
    }

    body .event-title {
        font-size: 0.95rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.25rem !important;
    }

    body .event-artist {
        font-size: 0.8rem !important;
        margin-bottom: 0.25rem !important;
    }

    body .event-venue {
        font-size: 0.75rem !important;
        gap: 0.25rem !important;
    }

    body .event-venue svg {
        width: 12px !important;
        height: 12px !important;
    }

    body .event-expand {
        padding: 0.75rem !important;
        padding-top: 0.5rem !important;
        gap: 0.5rem !important;
    }

    body .event-expand-item {
        font-size: 0.75rem !important;
    }

    body .event-expand-item svg {
        width: 14px !important;
        height: 14px !important;
    }

    body .event-cards,
    body .event-cards-magazine {
        gap: 1rem !important;
    }

    body .event-badge {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.65rem !important;
    }

    /* Newsletter button - icon only on mobile */
    .newsletter-float-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    :root {
        --header-height: 72px;
        --text-6xl: 5rem;
    }

    .hero {
        padding: var(--space-3xl) var(--space-xl);
    }

    .hero-title-main {
        font-size: var(--text-4xl);
    }

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

    .search-wrapper {
        padding: var(--space-lg);
    }

    .search-btn {
        width: auto;
        min-width: 200px;
    }

    .featured-preview {
        padding: var(--space-3xl) var(--space-xl);
    }

    .popular-artists {
        padding: var(--space-3xl) var(--space-xl);
    }

    /* Show desktop navigation on tablet */
    .main-nav {
        display: flex;
    }

    .menu-btn {
        display: none;
    }

    /* Artist cards - 4 columns on tablet */
    .artist-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Blog cards - 2 columns on tablet */
    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .blog-image {
        height: 240px;
    }

    /* Newsletter button - show text on tablet/desktop */
    .newsletter-float-btn {
        width: auto;
        height: auto;
        padding: var(--space-md) var(--space-lg);
        border-radius: var(--radius-full);
        bottom: var(--space-xl); /* Move up since no bottom nav */
    }

    .newsletter-float-btn span {
        display: inline;
    }

    /* Larger guitar pick on tablet */
    .hero-guitar-pick {
        width: 180px;
        height: 180px;
        top: 12%;
        right: 15%;
        opacity: 0.85;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .event-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-description {
        font-size: var(--text-xl);
    }

    .bottom-nav {
        display: none;
    }

    .hero {
        min-height: calc(100vh - var(--header-height));
    }

    /* Reposition guitar pick closer to center on desktop */
    .hero-guitar-pick {
        width: 220px;
        height: 220px;
        top: 15%;
        right: 25%;
        opacity: 0.9;
    }

    /* Blog cards - 3 columns on desktop */
    .blog-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 3.5rem;
    }

    .blog-image {
        height: 260px;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .event-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-description {
        font-size: var(--text-xl);
    }

    .bottom-nav {
        display: none;
    }

    .hero {
        min-height: calc(100vh - var(--header-height));
    }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* =============================================
   ANIMATIONS & EFFECTS
   ============================================= */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(
        to right,
        var(--color-smoke) 0%,
        var(--color-sand) 50%,
        var(--color-smoke) 100%
    );
    background-size: 1000px 100%;
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
    .header,
    .bottom-nav,
    .search-container,
    .quick-filters,
    .scroll-indicator {
        display: none;
    }

    .hero {
        margin-top: 0;
        min-height: auto;
    }
}

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

.footer {
    background: var(--color-charcoal);
    color: var(--color-cream);
    padding: var(--space-3xl) var(--space-lg) var(--space-xl);
    display: none; /* Hidden on mobile - use bottom nav instead */
}

@media (min-width: 768px) {
    .footer {
        display: block;
    }
}

.footer-content {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.footer-text {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: var(--text-lg);
    transition: color var(--transition-base);
}

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

.footer-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-cream);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright,
.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.65);
}

.footer-tagline {
    font-style: italic;
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =============================================
   EVENTS PAGE
   ============================================= */

.page-header {
    position: relative;
    background-image: url('/images/red-dirt-concerts-near-me.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-cream);
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
    margin-top: var(--header-height);
}

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

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--color-primary) !important;
    margin-bottom: var(--space-xl);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Events Section */
.events-section {
    padding: var(--space-2xl) var(--space-lg);
    padding-bottom: calc(var(--bottom-nav-height) + var(--space-2xl));
    min-height: 100vh;
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
    margin-bottom: var(--space-lg);
    position: relative;
}

.mobile-filter-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    max-height: calc(100vh - var(--header-height) - var(--space-2xl));
    overflow-y: auto;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--color-border);
}

.filters-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filters-close {
    display: none;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: var(--space-xs);
}

.filters-close:hover {
    color: var(--color-primary);
}

.filters-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Filter Groups */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.filter-group-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* Radio Options */
.filter-option {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background var(--transition-base);
}

.filter-option:hover {
    background: rgba(160, 51, 33, 0.05);
}

.filter-option input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.filter-option input[type="radio"]:checked {
    border-color: var(--color-primary);
}

.filter-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
}

.filter-option span {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
}

/* Custom Date Picker */
.custom-date-picker {
    margin-top: var(--space-sm);
    margin-left: var(--space-xl);
    padding: var(--space-md);
    background: rgba(160, 51, 33, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.date-input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.date-input-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.date-input {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    background: white;
    cursor: pointer;
}

.date-input:hover,
.date-input:focus {
    border-color: var(--color-primary);
    outline: none;
}

/* Checkbox Options */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: background var(--transition-base);
}

.filter-checkbox:hover {
    background: rgba(160, 51, 33, 0.05);
}

.filter-checkbox input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-xs);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.filter-checkbox input[type="checkbox"]:checked {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.filter-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.filter-checkbox span {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
}

/* Range Slider */
.filter-range {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(
        to right,
        var(--color-primary) 0%,
        var(--color-primary) 45%,
        var(--color-border) 45%,
        var(--color-border) 100%
    );
    outline: none;
    appearance: none;
}

.range-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: none;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

#distanceValue {
    font-weight: 600;
    color: var(--color-primary);
}

/* Filter Footer */
.filters-footer {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

/* Main Content */
.events-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.results-info {
    flex: 1;
}

.results-count {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
}

.results-location {
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

.results-controls {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.sort-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sort-select {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: white;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-base);
    cursor: pointer;
    outline: none;
}

.sort-select:hover,
.sort-select:focus {
    border-color: var(--color-primary);
}

/* Active Filters */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(160, 51, 33, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary);
}

.remove-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

.remove-filter:hover {
    background: var(--color-rust);
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Desktop: 2 columns */
@media (min-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    /* Home page: 3 columns with more spacing */
    .featured-preview .events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem !important;
        max-width: 1900px;
        margin: 0 auto;
    }

    /* Minimal horizontal padding on desktop for wider cards */
    .featured-preview {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    /* Popular Artists - constrain width and add padding */
    .popular-artists {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .artist-cards {
        max-width: 1900px;
        margin: 0 auto;
        gap: 3rem;
    }

    /* The Dirt - constrain width and add padding */
    .the-dirt-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .blog-cards {
        max-width: 1900px;
        margin: 0 auto;
        gap: 3rem;
    }
}

/* Full Event Card - Horizontal Layout with Tall Image */
.event-card-full {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 240px;
}

/* Smaller cards for home page */
.featured-preview .event-card-full {
    grid-template-columns: 240px 1fr !important;
    min-height: 240px !important;
}

.event-card-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.event-card-image {
    position: relative;
    width: 200px;
    height: 100%;
    min-height: 240px;
    overflow: hidden;
    background: #f5f5f5;
}

/* Wider image for home page cards */
.featured-preview .event-card-image {
    width: 240px !important;
    min-height: 240px !important;
}

.event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Date badge - positioned LEFT of image, not overlapping */
.event-card-full .event-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    min-width: 60px;
    border: 2px solid white;
}

.event-card-full .date-month {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 3px;
}

.event-card-full .date-day {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-charcoal);
    line-height: 1;
}

.event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event-card-content {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    justify-content: space-between;
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.event-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.btn-favorite {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: var(--space-xs);
    transition: all var(--transition-base);
}

.btn-favorite:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.btn-favorite.active {
    color: var(--color-primary);
}

.btn-favorite.active svg {
    fill: var(--color-primary);
}

/* Event Details Section - All info stacked above buttons */
.event-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
}

.event-card-venue {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.event-card-venue svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.event-card-address {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    padding-left: 24px;
}

.event-card-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 24px;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.event-time svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

.event-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* Buttons Section - At bottom */
.event-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
}

.event-card-footer .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}

.event-genre {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.6rem;
    background: rgba(139, 0, 0, 0.1);
    color: var(--color-primary);
    border-radius: 4px;
}

.event-distance {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.event-card-venue svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.event-card-address {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-left: 22px;
}

.event-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--space-sm);
}

.event-card-info {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.event-time {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.event-time svg {
    flex-shrink: 0;
}

.event-price {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary);
}

.btn-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
}

/* Load More */
.load-more-container {
    display: flex;
    justify-content: center;
    padding: var(--space-xl) 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .events-container {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        z-index: 1001;
        transition: left 0.3s ease;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        border-right: 1px solid var(--color-border);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .filters-sidebar.active {
        left: 0;
    }

    .filters-content {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .filters-close {
        display: block;
    }

    .mobile-filter-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: var(--space-2xl) var(--space-lg) var(--space-xl);
    }

    .page-title {
        font-size: var(--text-3xl);
    }

    .results-header {
        flex-direction: column;
        align-items: stretch;
    }

    .results-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-select {
        width: 100%;
    }

    .event-card-full {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .event-card-image {
        width: 100%;
        height: 200px;
    }

    /* Reset home page cards to full size on mobile */
    .featured-preview .event-card-full {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .featured-preview .event-card-image {
        width: 100% !important;
        height: 200px !important;
        min-height: 200px !important;
    }

    .event-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
    }

    .event-card-info {
        justify-content: space-between;
    }

    .btn-sm {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .page-header {
        padding-bottom: var(--space-3xl);
    }
}

/* =============================================
   ARTIST PAGE
   ============================================= */

/* Artist Hero */
.artist-hero {
    position: relative;
    min-height: 500px;
    margin-top: var(--header-height);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.artist-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.artist-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artist-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.artist-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
}

.artist-hero-info {
    max-width: 1200px;
    margin: 0 auto;
}

.artist-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(160, 51, 33, 0.9);
    border-radius: var(--radius-full);
    color: white;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.artist-hero-name {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.artist-hero-origin {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.artist-hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.artist-stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: white;
}

.stat-label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.artist-hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.artist-social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    color: white;
    transition: all var(--transition-base);
}

.social-icon:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

/* Artist Section */
.artist-section {
    padding: var(--space-3xl) var(--space-lg);
    padding-bottom: calc(var(--bottom-nav-height) + var(--space-2xl));
}

.artist-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-3xl);
    align-items: start;
}

.artist-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

/* About Card */
.artist-about-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.section-title-alt {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.artist-bio {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.artist-bio-paragraph {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.artist-bio-paragraph:last-of-type {
    margin-bottom: 0;
}

.artist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.artist-tag {
    padding: var(--space-xs) var(--space-md);
    background: rgba(160, 51, 33, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Shows Section */
.artist-shows-section {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.section-link-alt {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap var(--transition-base);
}

.section-link-alt:hover {
    gap: var(--space-sm);
}

.artist-events-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.artist-event-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.artist-event-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.artist-event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm);
    background: white;
    border-radius: var(--radius-sm);
    border: 2px solid var(--color-primary);
}

.event-date-month {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-date-day {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1;
}

.artist-event-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.artist-event-venue {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-charcoal);
}

.artist-event-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.artist-event-location svg {
    color: var(--color-primary);
}

.artist-event-meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xs);
}

.artist-event-time {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.artist-event-price {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-primary);
}

.artist-event-actions {
    display: flex;
    align-items: center;
}

/* Similar Artists */
.similar-artists-section {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.similar-artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-lg);
}

.similar-artist-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.similar-artist-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.similar-artist-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-primary);
}

.similar-artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-artist-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
    text-align: center;
}

.similar-artist-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-charcoal);
}

.similar-artist-genre {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Artist Articles Section */
.artist-articles-section {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.artist-articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.artist-article-card {
    display: flex;
    flex-direction: column;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.artist-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.artist-article-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.artist-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-article-card:hover .artist-article-image img {
    transform: scale(1.05);
}

.artist-article-category {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background-color: var(--color-primary);
    color: white;
    padding: 4px var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.artist-article-content {
    padding: var(--space-lg);
}

.artist-article-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.artist-article-date,
.artist-article-read-time {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.artist-article-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.artist-article-excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Sidebar */
.artist-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.artist-sidebar-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.sidebar-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.band-members-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    list-style: none;
    padding: 0;
    margin: 0;
}

.band-member {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.band-member:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.member-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-charcoal);
}

.member-role {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.artist-facts {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: 0;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.fact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fact-label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    font-weight: 400;
}

.fact-value {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-charcoal);
    text-align: right;
}

.artist-sidebar-cta {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dusk) 100%);
    color: white;
}

.artist-sidebar-cta .sidebar-card-title {
    color: white;
}

.sidebar-cta-text {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .artist-container {
        grid-template-columns: 1fr;
    }

    .artist-sidebar {
        order: -1;
    }

    .similar-artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .artist-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .artist-hero {
        min-height: 400px;
    }

    .artist-hero-name {
        font-size: var(--text-4xl);
    }

    .artist-hero-stats {
        gap: var(--space-lg);
    }

    .stat-value {
        font-size: var(--text-xl);
    }

    .artist-section {
        padding: var(--space-2xl) var(--space-lg);
    }

    .artist-event-item {
        grid-template-columns: 70px 1fr;
        gap: var(--space-md);
    }

    .artist-event-actions {
        grid-column: 1 / -1;
        margin-top: var(--space-sm);
    }

    .artist-event-actions .btn {
        width: 100%;
    }

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

    .artist-sidebar {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
    }

    .artist-sidebar-card {
        width: 100%;
    }

    .artist-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .artist-hero-name {
        font-size: var(--text-3xl);
    }

    .artist-hero-actions {
        flex-direction: column;
    }

    .artist-hero-actions .btn {
        width: 100%;
    }

    .artist-social-links {
        justify-content: center;
    }

    .artist-event-item {
        grid-template-columns: 60px 1fr;
    }

    .artist-event-date {
        padding: var(--space-xs);
    }

    .similar-artists-grid {
        grid-template-columns: 1fr;
    }

    .artist-sidebar {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   EVENT DETAIL PAGE
   ============================================= */

/* Event Detail Hero */
.event-detail-hero {
    position: relative;
    min-height: 450px;
    margin-top: var(--header-height);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.event-detail-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.event-detail-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.8) 60%,
        rgba(0, 0, 0, 0.95) 100%
    );
}

.event-detail-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
}

.event-detail-hero-info {
    max-width: 1200px;
    margin: 0 auto;
}

.event-hero-badges {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.event-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(160, 51, 33, 0.9);
    border-radius: var(--radius-full);
    color: white;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-status-badge {
    background: rgba(76, 175, 80, 0.9);
}

.event-detail-hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.event-detail-hero-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.event-hero-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.95);
}

.event-hero-meta-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.event-detail-hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.btn-large {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-lg);
}

.btn-icon-only {
    padding: var(--space-md);
    min-width: auto;
}

/* Event Detail Section */
.event-detail-section {
    padding: var(--space-3xl) var(--space-lg);
    padding-bottom: calc(var(--bottom-nav-height) + var(--space-2xl));
}

.event-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-3xl);
    align-items: start;
}

.event-detail-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.event-detail-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.event-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xl);
}

/* Ticket Tiers */
.ticket-tiers {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.ticket-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--color-background);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.ticket-tier:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.ticket-tier-info {
    flex: 1;
}

.ticket-tier-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
}

.ticket-tier-description {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.ticket-tier-pricing {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.ticket-price {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
}

.ticket-note {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(160, 51, 33, 0.05);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.ticket-note svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Event Description */
.event-description {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.event-description p {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.event-description p:last-of-type {
    margin-bottom: 0;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.event-tag {
    padding: var(--space-xs) var(--space-md);
    background: rgba(160, 51, 33, 0.1);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Event Artist Info */
.event-artist-info {
    display: flex;
    gap: var(--space-xl);
}

.event-artist-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--color-primary);
}

.event-artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-artist-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.event-artist-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-charcoal);
}

.event-artist-bio {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text);
}

.event-artist-stats {
    display: flex;
    gap: var(--space-xl);
}

.artist-stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.artist-stat-item .stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-charcoal);
}

.artist-stat-item .stat-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

/* Similar Events */
.similar-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.similar-event-card {
    display: flex;
    flex-direction: column;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
}

.similar-event-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.similar-event-image {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.similar-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-event-date-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-xs) var(--space-sm);
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.similar-event-date-badge .date-month {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    line-height: 1;
}

.similar-event-date-badge .date-day {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-charcoal);
    line-height: 1;
}

.similar-event-info {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.similar-event-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-charcoal);
}

.similar-event-venue {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.similar-event-price {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-top: var(--space-xs);
}

/* Event Sidebar */
.event-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.event-sidebar-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.venue-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.venue-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-charcoal);
}

.venue-address {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text);
    line-height: 1.6;
}

.venue-address svg {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.venue-map {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: var(--space-sm);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
}

.venue-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.venue-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.venue-link:hover {
    background: rgba(160, 51, 33, 0.05);
}

.event-details-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin: 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.detail-value {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-charcoal);
    text-align: right;
}

.event-sidebar-cta {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dusk) 100%);
    color: white;
}

.event-sidebar-cta .sidebar-card-title {
    color: white;
}

.calendar-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.share-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
    cursor: pointer;
}

.share-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .event-detail-container {
        grid-template-columns: 1fr;
    }

    .event-detail-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .event-sidebar-cta {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .event-detail-hero {
        min-height: 400px;
    }

    .event-detail-hero-title {
        font-size: var(--text-4xl);
    }

    .event-detail-hero-meta {
        font-size: var(--text-sm);
    }

    .event-detail-section {
        padding: var(--space-2xl) var(--space-lg);
    }

    .ticket-tier {
        flex-direction: column;
        align-items: flex-start;
    }

    .ticket-tier-pricing {
        width: 100%;
        justify-content: space-between;
    }

    .event-artist-info {
        flex-direction: column;
    }

    .event-artist-image {
        width: 120px;
        height: 120px;
        align-self: center;
    }

    .similar-events-grid {
        grid-template-columns: 1fr;
    }

    .event-detail-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .event-detail-hero-title {
        font-size: var(--text-3xl);
    }

    .event-detail-hero-actions {
        flex-direction: column;
    }

    .event-detail-hero-actions .btn {
        width: 100%;
    }

    .btn-large {
        padding: var(--space-md) var(--space-xl);
        font-size: var(--text-base);
    }
}

/* =============================================
   BLOG PAGE (THE DIRT)
   ============================================= */

/* Blog Header */
.blog-header {
    position: relative;
    background-image: url('/images/red-dirt-country-news.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-cream);
    padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
    margin-top: var(--header-height);
}

.blog-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-header-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.blog-header-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--color-cream) !important;
    margin-bottom: var(--space-2xl);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.blog-search-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.blog-search-icon {
    position: absolute;
    left: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    pointer-events: none;
}

.blog-search-input {
    width: 100%;
    padding: var(--space-md) var(--space-lg) var(--space-md) calc(var(--space-lg) * 2 + 20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-family: var(--font-body);
    font-size: var(--text-base);
    outline: none;
    transition: all var(--transition-base);
}

.blog-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.blog-search-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-primary);
}

/* Blog Section */
.blog-section {
    padding: var(--space-3xl) var(--space-lg);
    padding-bottom: calc(var(--bottom-nav-height) + var(--space-2xl));
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-3xl);
    align-items: start;
}

.blog-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

/* Category Filter */
.blog-categories {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.blog-category-chip {
    padding: var(--space-sm) var(--space-lg);
    background: white;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--transition-base);
}

.blog-category-chip:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-category-chip.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Featured Post */
/* Featured Post - Torn Clipping Style */
.blog-featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    background: #F5F1E8;
    border: none;
    overflow: visible;
    transition: all 0.4s ease;
    position: relative;
    clip-path: polygon(
        0% 1%, 1% 0%, 4% 1%, 7% 0%, 10% 1%, 15% 0%, 20% 1%, 25% 0%, 30% 1%,
        35% 0%, 40% 1%, 45% 0%, 50% 1%, 55% 0%, 60% 1%, 65% 0%, 70% 1%,
        75% 0%, 80% 1%, 85% 0%, 90% 1%, 95% 0%, 99% 1%, 100% 0%,
        100% 99%, 99% 100%, 95% 99%, 90% 100%, 85% 99%, 80% 100%, 75% 99%,
        70% 100%, 65% 99%, 60% 100%, 55% 99%, 50% 100%, 45% 99%, 40% 100%,
        35% 99%, 30% 100%, 25% 99%, 20% 100%, 15% 99%, 10% 100%, 5% 99%, 1% 100%, 0% 99%
    );
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15))
            drop-shadow(0 12px 24px rgba(0, 0, 0, 0.1));
    transform: rotate(-1deg);
}

/* Tape effect for featured post */
.blog-featured-post::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 25%;
    width: 80px;
    height: 30px;
    background: rgba(255, 248, 220, 0.7);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(-3deg);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-featured-post:hover {
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.2))
            drop-shadow(0 24px 48px rgba(0, 0, 0, 0.15));
    transform: rotate(0deg) scale(1.01);
    z-index: 10;
}

.blog-featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
}

/* Newsprint texture overlay for featured */
.blog-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        );
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.5;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) sepia(15%) contrast(1.1);
    transition: filter 0.4s ease;
}

.blog-featured-post:hover .blog-featured-image img {
    filter: grayscale(0%) sepia(0%) contrast(1);
}

.blog-featured-badge {
    position: absolute;
    top: var(--space-lg);
    left: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.blog-category-badge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    background: rgba(35, 31, 32, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.blog-featured-content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
    background: #F5F1E8;
}

.blog-featured-meta {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    padding-bottom: var(--space-sm);
}

.blog-featured-date,
.blog-featured-read-time {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-featured-date::after {
    content: '•';
    margin-left: var(--space-md);
    color: var(--color-border);
}

.blog-featured-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.blog-featured-excerpt {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3a3a3a;
    font-style: italic;
}

.blog-featured-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: auto;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.author-name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-charcoal);
}

.author-role {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: var(--space-lg) 0;
}

/* Blog Post Cards - Torn Clipping Style */
.blog-post-card {
    background: #F5F1E8;
    border: none;
    overflow: visible;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    clip-path: polygon(
        0% 2%, 2% 0%, 5% 1%, 8% 0%, 12% 2%, 15% 1%, 18% 0%, 22% 1%, 25% 0%,
        30% 1%, 35% 0%, 40% 2%, 45% 1%, 50% 0%, 55% 1%, 60% 0%, 65% 2%,
        70% 1%, 75% 0%, 80% 1%, 85% 0%, 90% 2%, 95% 1%, 98% 0%, 100% 2%,
        100% 98%, 98% 100%, 95% 99%, 90% 100%, 85% 98%, 80% 99%, 75% 100%,
        70% 99%, 65% 100%, 60% 98%, 55% 99%, 50% 100%, 45% 99%, 40% 100%,
        35% 98%, 30% 99%, 25% 100%, 20% 99%, 15% 100%, 10% 98%, 5% 99%, 2% 100%, 0% 98%
    );
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15))
            drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

/* Rotating blog post cards */
.blog-post-card:nth-child(odd) {
    transform: rotate(-1.5deg);
}

.blog-post-card:nth-child(even) {
    transform: rotate(1deg);
}

.blog-post-card:nth-child(3n) {
    transform: rotate(-2deg);
}

/* Tape effect on post cards */
.blog-post-card::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15%;
    width: 60px;
    height: 25px;
    background: rgba(255, 248, 220, 0.7);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post-card:nth-child(even)::before {
    right: 20%;
    transform: rotate(8deg);
}

.blog-post-card:hover {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2))
            drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transform: rotate(0deg) translateY(-8px) scale(1.02);
    z-index: 10;
}

.blog-post-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

/* Newsprint texture overlay for post images */
.blog-post-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 3px
        );
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.5;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) sepia(15%) contrast(1.1);
    transition: filter 0.4s ease, transform 0.4s ease;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
    filter: grayscale(0%) sepia(0%) contrast(1);
}

.blog-post-image .blog-category-badge {
    top: var(--space-md);
    left: var(--space-md);
    bottom: auto;
}

.blog-post-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
    background: #F5F1E8;
}

.blog-post-meta {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    padding-bottom: var(--space-xs);
}

.blog-post-date,
.blog-post-read-time {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-post-date::after {
    content: '•';
    margin-left: var(--space-md);
    color: rgba(0, 0, 0, 0.3);
}

.blog-post-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    letter-spacing: -0.01em;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.blog-post-excerpt {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #3a3a3a;
    font-style: italic;
}

.blog-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--space-md);
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
}

.blog-post-author {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.blog-post-arrow {
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.blog-post-card:hover .blog-post-arrow {
    transform: translateX(4px);
}

/* Load More */
.blog-load-more {
    display: flex;
    justify-content: center;
    padding: var(--space-2xl) 0;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
}

.blog-sidebar-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.blog-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text);
    transition: all var(--transition-base);
}

.blog-category-link:hover {
    background: rgba(160, 51, 33, 0.05);
    color: var(--color-primary);
}

.category-count {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
}

.blog-recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.blog-recent-post {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.blog-recent-post:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-link {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.recent-post-title {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-charcoal);
    transition: color var(--transition-base);
}

.recent-post-link:hover .recent-post-title {
    color: var(--color-primary);
}

.recent-post-date {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.blog-sidebar-cta {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dusk) 100%);
    color: white;
}

.blog-sidebar-cta .sidebar-card-title {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .blog-sidebar-cta {
        grid-column: 1 / -1;
    }

    .blog-featured-post {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        margin: 0 0 var(--space-lg) 0 !important;
    }

    .blog-featured-image {
        min-height: 200px !important;
        max-height: 200px !important;
    }
}

@media (max-width: 768px) {
    /* Fix horizontal overflow */
    body {
        overflow-x: hidden;
    }

    .blog-header {
        padding: var(--space-2xl) var(--space-lg) var(--space-xl);
    }

    .blog-header-title {
        font-size: var(--text-4xl);
    }

    .blog-section {
        padding: var(--space-xl) var(--space-md);
        overflow-x: hidden;
    }

    .blog-container {
        padding: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .blog-main {
        overflow-x: hidden;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: var(--space-md) 0;
    }

    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-sm);
        -webkit-overflow-scrolling: touch;
    }

    .blog-category-chip {
        flex-shrink: 0;
    }

    /* REMOVE clip-path on mobile - use simple borders instead */
    .blog-card,
    .blog-post-card,
    .blog-featured-post {
        clip-path: none !important;
        border-radius: 8px !important;
        border: 2px solid rgba(0, 0, 0, 0.15) !important;
        overflow: hidden !important;
    }

    /* Hide tape on mobile */
    .blog-card::before,
    .blog-post-card::before,
    .blog-featured-post::before {
        display: none !important;
    }

    /* Remove rotation on mobile */
    .blog-card:nth-child(1),
    .blog-card:nth-child(2),
    .blog-card:nth-child(3) {
        transform: none !important;
    }

    .blog-post-card:nth-child(odd),
    .blog-post-card:nth-child(even),
    .blog-post-card:nth-child(3n) {
        transform: none !important;
    }

    .blog-featured-post {
        transform: none !important;
    }

    .blog-card:hover,
    .blog-post-card:hover,
    .blog-featured-post:hover {
        transform: translateY(-4px) !important;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: var(--space-xl) var(--space-md);
    }

    .blog-header-title {
        font-size: var(--text-3xl);
    }

    .blog-section {
        padding: var(--space-md) var(--space-sm);
        max-width: 100vw;
        overflow-x: hidden;
    }

    .blog-container {
        padding: 0 var(--space-sm);
        max-width: 100%;
        overflow-x: hidden;
    }

    .blog-main {
        padding: 0;
        overflow-x: hidden;
        width: 100%;
    }

    .blog-featured-post {
        margin: 0 0 var(--space-lg) 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .blog-featured-image {
        min-height: 180px !important;
        max-height: 180px !important;
    }

    .blog-featured-content {
        padding: var(--space-md) !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .blog-featured-title {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .blog-featured-excerpt {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .blog-featured-meta {
        font-size: 0.7rem !important;
    }

    .blog-posts-grid {
        gap: 1.5rem;
        padding: var(--space-sm) 0;
        width: 100%;
    }

    .blog-post-card {
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .blog-post-image {
        height: 160px !important;
    }

    .blog-post-content {
        padding: var(--space-md) !important;
        max-width: 100% !important;
    }

    .blog-post-title {
        font-size: 1.05rem !important;
        line-height: 1.3 !important;
        word-wrap: break-word !important;
    }

    .blog-post-excerpt {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .blog-categories {
        padding: 0 var(--space-sm) var(--space-sm) var(--space-sm);
    }
}

/* ============================================
   BLOG POST PAGE STYLES
   ============================================ */

/* Article Hero */
.article-page {
    background-color: var(--color-bg-secondary);
}

.article-hero {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl) var(--space-2xl);
    text-align: center;
}

.article-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-brand-red);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    transition: opacity 0.2s;
}

.article-breadcrumb:hover {
    opacity: 0.8;
}

.article-breadcrumb::before {
    content: "←";
    font-size: var(--text-lg);
}

.article-category-badge {
    display: inline-block;
    background-color: var(--color-brand-red);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.article-title {
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--color-text-primary);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.article-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.article-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--color-brand-red);
}

.article-author-info {
    text-align: left;
}

.article-author-name {
    display: block;
    font-weight: 700;
    color: var(--color-text-primary);
    font-size: var(--text-sm);
}

.article-author-title {
    display: block;
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
}

.article-date,
.article-read-time {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Featured Image */
.article-featured-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto var(--space-3xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Container */
.article-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl) var(--space-4xl);
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-3xl);
    align-items: start;
}

/* Article Content */
.article-content {
    background-color: white;
    padding: var(--space-3xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.article-body {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-text-primary);
}

.article-body h2 {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-charcoal);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.article-body h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.article-body p {
    margin-bottom: var(--space-lg);
}

.article-body ul,
.article-body ol {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.article-body li {
    margin-bottom: var(--space-sm);
    line-height: 1.8;
}

.article-body li strong {
    color: var(--color-charcoal);
}

.article-body blockquote {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(180, 35, 24, 0.05) 0%, rgba(180, 35, 24, 0.02) 100%);
    border-left: 4px solid var(--color-brand-red);
    border-radius: var(--radius-md);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-text-primary);
    line-height: 1.6;
}

.article-callout {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background-color: var(--color-bg-secondary);
    border-radius: var(--radius-md);
    border: 2px solid var(--color-brand-red);
}

.article-callout-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    color: var(--color-brand-red);
    margin-bottom: var(--space-sm);
    font-size: var(--text-lg);
}

.article-callout p {
    margin-bottom: 0;
    color: var(--color-text-primary);
    font-size: var(--text-base);
}

/* Article Tags */
.article-tags {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 2px solid var(--color-bg-secondary);
}

.article-tags-label {
    font-weight: 700;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.article-tag {
    padding: var(--space-xs) var(--space-md);
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    transition: all 0.2s;
}

.article-tag:hover {
    background-color: var(--color-brand-red);
    color: white;
}

/* Share Buttons */
.article-share {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--color-bg-secondary);
}

.article-share-label {
    font-weight: 700;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 18px;
}

.share-btn.facebook {
    background-color: #1877F2;
    color: white;
}

.share-btn.twitter {
    background-color: #1DA1F2;
    color: white;
}

.share-btn.copy {
    background-color: var(--color-bg-secondary);
    color: var(--color-text-primary);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn.copied {
    background-color: #10B981;
    color: white;
}

/* Author Bio */
.article-author-bio {
    margin-top: var(--space-3xl);
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dusk) 100%);
    border-radius: var(--radius-lg);
    color: white;
    display: flex;
    gap: var(--space-xl);
    align-items: center;
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.author-bio-content h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.author-bio-title {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.author-bio-content p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
}

.author-bio-social {
    display: flex;
    gap: var(--space-sm);
}

.author-social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.author-social-link:hover {
    background-color: var(--color-brand-red);
    transform: translateY(-2px);
}

/* Related Articles */
.article-related {
    margin-top: var(--space-4xl);
}

.article-related-title {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.related-article-card {
    background-color: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    cursor: pointer;
}

.related-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.related-article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-article-content {
    padding: var(--space-lg);
}

.related-article-category {
    display: inline-block;
    background-color: var(--color-brand-red);
    color: white;
    padding: 4px var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.related-article-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-article-date {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.article-sidebar-card {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.article-sidebar-card h3 {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

/* Table of Contents */
.article-toc {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-toc li {
    margin-bottom: var(--space-sm);
}

.article-toc a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color 0.2s;
    display: block;
    padding: var(--space-xs) 0;
}

.article-toc a:hover {
    color: var(--color-brand-red);
}

/* Featured Artist Card */
.featured-artist-card {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dusk) 100%);
    color: white;
}

.featured-artist-card h3 {
    color: white;
}

.featured-artist-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.featured-artist-name {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.featured-artist-genre {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-sm);
    margin-bottom: var(--space-md);
}

.featured-artist-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.featured-artist-card .btn-primary {
    width: 100%;
    background-color: var(--color-brand-red);
    border-color: var(--color-brand-red);
}

.featured-artist-card .btn-primary:hover {
    background-color: #a81f13;
    border-color: #a81f13;
}

/* Newsletter CTA */
.newsletter-cta-card {
    background: linear-gradient(135deg, var(--color-brand-red) 0%, #a81f13 100%);
    color: white;
}

.newsletter-cta-card h3 {
    color: white;
}

.newsletter-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.newsletter-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-cta-card .btn-primary {
    width: 100%;
    background-color: white;
    color: var(--color-brand-red);
    border-color: white;
    font-weight: 700;
}

.newsletter-cta-card .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: relative;
        top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .newsletter-cta-card {
        grid-column: 1 / -1;
    }

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

@media (max-width: 768px) {
    .article-hero {
        padding: var(--space-2xl) var(--space-lg) var(--space-xl);
    }

    .article-title {
        font-size: var(--text-3xl);
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .article-container {
        padding: 0 var(--space-lg) var(--space-3xl);
    }

    .article-content {
        padding: var(--space-xl);
    }

    .article-body {
        font-size: var(--text-base);
    }

    .article-body h2 {
        font-size: var(--text-2xl);
    }

    .article-body h3 {
        font-size: var(--text-xl);
    }

    .article-author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio-avatar {
        width: 80px;
        height: 80px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: var(--text-2xl);
    }

    .article-content {
        padding: var(--space-lg);
    }

    .article-tags {
        flex-wrap: wrap;
    }

    .article-share {
        flex-wrap: wrap;
    }
}

/* Calendar Buttons */
.calendar-btn:hover {
    background: #f8f5f2 !important;
    border-color: #8B4513 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
