/* ============================================================
   THE EYE CAPTAIN - MAIN STYLESHEET
   Satellite Site: theeyecaptain.philaiken.com
   
   Color Palette: Derived from the Eclipse Logo
   - Deep Space Black (background)
   - Cosmic Corona Orange/Red (accents)
   - Stellar White (text)
   - Nebula Purple (secondary)
   
   Aesthetic: Space-Rock Operetta — cosmic, expansive, artsy
   ============================================================ */

/* ============================================================
   SECTION 1: CSS CUSTOM PROPERTIES (VARIABLES)
   ============================================================ */

:root {
    /* ---------------------------------------------------------
       TYPOGRAPHY
       Cinzel: Regal, cinematic display font (fits operetta vibe)
       Raleway: Clean, geometric body text
       --------------------------------------------------------- */
    --font-display: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    
    /* ---------------------------------------------------------
       COLOR PALETTE - Eclipse/Corona Theme
       --------------------------------------------------------- */
    --color-bg-primary: #0a0a0f;        /* Deep space black */
    --color-bg-secondary: #12121a;      /* Slightly lighter space */
    --color-bg-tertiary: #1a1a28;       /* Card backgrounds */
    --color-bg-card: rgba(26, 26, 40, 0.85);
    
    --color-text-primary: #f0f0f5;      /* Stellar white */
    --color-text-secondary: #b8b8c8;    /* Pale nebula */
    --color-text-muted: #6a6a80;        /* Distant stars */
    
    --color-accent-primary: #e85a30;    /* Corona orange */
    --color-accent-secondary: #ff7b4a;  /* Brighter corona */
    --color-accent-hover: #ffaa80;      /* Light corona hover */
    --color-accent-glow: rgba(232, 90, 48, 0.4);
    
    --color-border: rgba(232, 90, 48, 0.25);
    --color-border-hover: rgba(232, 90, 48, 0.5);
    
    /* Gradient for cosmic atmosphere */
    --gradient-hero: radial-gradient(ellipse at 50% 20%, rgba(232, 90, 48, 0.15) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 80%, rgba(138, 43, 226, 0.08) 0%, transparent 40%),
                     radial-gradient(ellipse at 20% 90%, rgba(255, 123, 74, 0.05) 0%, transparent 40%),
                     linear-gradient(180deg, #0a0a0f 0%, #12121a 100%);
    
    /* Star field effect for backgrounds */
    --stars-small: radial-gradient(1px 1px at 20px 30px, rgba(255,255,255,0.8), transparent),
                   radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.6), transparent),
                   radial-gradient(1px 1px at 50px 160px, rgba(255,255,255,0.7), transparent),
                   radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.5), transparent),
                   radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
                   radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.8), transparent);
    
    /* ---------------------------------------------------------
       SPACING SCALE
       --------------------------------------------------------- */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-xxl: 8rem;
    
    /* ---------------------------------------------------------
       TYPOGRAPHY SCALE
       --------------------------------------------------------- */
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 3rem;
    --text-4xl: 4.5rem;
    --text-hero: clamp(2.5rem, 8vw, 5rem);
    
    /* ---------------------------------------------------------
       TRANSITIONS & LAYOUT
       --------------------------------------------------------- */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --max-width: 1200px;
    --nav-height: 80px;
}


/* ============================================================
   SECTION 2: RESET & BASE STYLES
   ============================================================ */

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

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    background-image: var(--gradient-hero);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Subtle star field overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--stars-small);
    background-repeat: repeat;
    background-size: 200px 200px;
    pointer-events: none;
    opacity: 0.5;
    z-index: -1;
}

/* Selection styling - corona accent */
::selection {
    background-color: var(--color-accent-primary);
    color: var(--color-bg-primary);
}

/* Links */
a {
    color: var(--color-accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast), text-shadow var(--transition-fast);
}

a:hover {
    color: var(--color-accent-hover);
    text-shadow: 0 0 8px var(--color-accent-glow);
}

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


/* ============================================================
   SECTION 3: TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    font-size: var(--text-hero);
    font-weight: 400;
    letter-spacing: 0.15em;
}

h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

h4 {
    font-size: var(--text-xl);
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
}

/* Accent text - corona highlight */
.text-accent {
    color: var(--color-accent-primary);
}

/* Operetta tagline styling */
.tagline {
    font-style: italic;
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    letter-spacing: 0.03em;
}


/* ============================================================
   SECTION 4: LAYOUT UTILITIES
   ============================================================ */

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

.container--narrow {
    max-width: 800px;
}

.container--wide {
    max-width: 1400px;
}

/* Grid utilities */
.grid {
    display: grid;
    gap: var(--space-lg);
}

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

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

/* Section spacing */
.section {
    padding: var(--space-xxl) 0;
}

.section--compact {
    padding: var(--space-xl) 0;
}

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


/* ============================================================
   SECTION 5: NAVIGATION
   ============================================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
}

.nav__inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo / Site title */
.nav__logo {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--color-text-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav__logo:hover {
    color: var(--color-accent-primary);
    text-shadow: 0 0 20px var(--color-accent-glow);
}

/* Navigation links */
.nav__links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.nav__link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

/* Underline effect - glowing */
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary));
    box-shadow: 0 0 8px var(--color-accent-glow);
    transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
    color: var(--color-accent-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* Mobile menu toggle (hidden on desktop) */
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}


/* ============================================================
   SECTION 6: HERO SECTION
   ============================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--nav-height) var(--space-lg) var(--space-xl);
    overflow: hidden;
}

/* Background image layer */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: #000; /* Mask any image edge artifacts */
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0.9;
    background-color: #000; /* Mask any JPEG compression artifacts at edges */
}

/* Radial glow behind logo */
.hero__bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, var(--color-accent-glow) 0%, transparent 60%);
    z-index: -1;
}

/* Gradient overlay */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 0.3) 0%,
        rgba(10, 10, 15, 0.1) 40%,
        rgba(10, 10, 15, 0.4) 80%,
        rgba(10, 10, 15, 0.95) 100%);
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 50vh;
}

.hero__title {
    font-size: var(--text-hero);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-shadow: 0 0 40px var(--color-accent-glow);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-text-secondary);
    margin-top: var(--space-md);
    letter-spacing: 0.05em;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero__subtitle {
    font-size: var(--text-xl);
    color: var(--color-accent-secondary);
    margin-top: var(--space-sm);
    letter-spacing: 0.08em;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Call-to-Action Buttons */
.hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
    animation: fadeInUp 1s ease-out 0.9s both;
}


/* ============================================================
   SECTION 7: BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

/* Primary button - filled corona */
.btn--primary {
    background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
    color: var(--color-bg-primary);
    border-color: var(--color-accent-primary);
    box-shadow: 0 4px 20px var(--color-accent-glow);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-accent-secondary), var(--color-accent-hover));
    box-shadow: 0 6px 30px var(--color-accent-glow);
    transform: translateY(-2px);
    color: var(--color-bg-primary);
}

/* Outline button */
.btn--outline {
    background: transparent;
    color: var(--color-text-primary);
    border-color: var(--color-border-hover);
}

.btn--outline:hover {
    background: rgba(232, 90, 48, 0.1);
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
    box-shadow: 0 0 20px var(--color-accent-glow);
}

/* Ghost button */
.btn--ghost {
    background: transparent;
    color: var(--color-accent-primary);
    padding: var(--space-sm) 0;
    border: none;
}

.btn--ghost:hover {
    color: var(--color-accent-hover);
    text-shadow: 0 0 10px var(--color-accent-glow);
}


/* ============================================================
   SECTION 8: PAGE HEADERS (interior pages)
   ============================================================ */

.page-header {
    padding-top: calc(var(--nav-height) + var(--space-xxl));
    padding-bottom: var(--space-xl);
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(232, 90, 48, 0.1) 0%, transparent 50%);
}

.page-header__title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-md);
    text-shadow: 0 0 30px var(--color-accent-glow);
}

.page-header__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    font-style: italic;
}


/* ============================================================
   SECTION 9: CARDS
   ============================================================ */

.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(232, 90, 48, 0.15);
    border-color: var(--color-border-hover);
}

.card__image {
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #000; /* Mask any image edge artifacts */
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), opacity var(--transition-base);
    background-color: #000; /* Mask any JPEG compression artifacts at edges */
}

.card:hover .card__image img {
    transform: scale(1.05);
    opacity: 0.9;
}

.card__title {
    font-size: var(--text-xl);
    padding: var(--space-md) var(--space-md) var(--space-sm);
    text-transform: none;
    letter-spacing: 0.02em;
}

.card__text {
    padding: 0 var(--space-md);
    font-size: var(--text-sm);
}

.card .btn--ghost {
    margin: var(--space-md);
}


/* ============================================================
   SECTION 10: ALBUM FEATURE
   ============================================================ */

.album-feature {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.album-feature__cover {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px var(--color-accent-glow);
}

.album-feature__cover img {
    width: 100%;
    height: auto;
}

.album-feature__info h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.album-feature__year {
    font-size: var(--text-sm);
    color: var(--color-accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
}

.album-feature__runtime {
    display: inline-block;
    background: rgba(232, 90, 48, 0.15);
    border: 1px solid var(--color-border);
    padding: var(--space-sm) var(--space-md);
    border-radius: 2px;
    font-size: var(--text-sm);
    color: var(--color-accent-primary);
    margin-bottom: var(--space-lg);
}


/* ============================================================
   SECTION 11: VIDEO GRID
   ============================================================ */

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

.video-item {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.video-item__embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    background: var(--color-bg-primary);
}

.video-item__embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-item__info {
    padding: var(--space-lg);
}

.video-item__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
    text-transform: none;
    letter-spacing: 0.02em;
}

.video-item__description {
    font-size: var(--text-sm);
    margin-bottom: 0;
}


/* ============================================================
   SECTION 12: MEMBER PROFILES
   ============================================================ */

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

.member {
    text-align: center;
}

.member__image {
    width: 180px;
    height: 180px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: 0 0 30px var(--color-accent-glow);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.member__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.member:hover .member__image {
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 40px var(--color-accent-glow);
}

.member:hover .member__image img {
    transform: scale(1.1);
}

.member__name {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xs);
    text-transform: none;
    letter-spacing: 0.02em;
}

.member__role {
    font-size: var(--text-sm);
    color: var(--color-accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.member__bio {
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* Special styling for duo/group photo members */
.member--duo .member__image {
    width: 240px;
    height: 160px;
    border-radius: 4px;
}


/* ============================================================
   SECTION 13: PHOTO GALLERY
   ============================================================ */

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.gallery__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    cursor: pointer;
    background-color: #000; /* Mask any image edge artifacts */
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), opacity var(--transition-base);
    background-color: #000; /* Mask any JPEG compression artifacts at edges */
}

.gallery__item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-accent-glow), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery__item:hover::after {
    opacity: 0.3;
}

/* Featured/larger gallery item */
.gallery__item--featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}


/* ============================================================
   SECTION 14: SHOWS / EVENTS
   ============================================================ */

.shows-list {
    max-width: 800px;
    margin: 0 auto;
}

.show {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
    transition: background var(--transition-base);
}

.show:hover {
    background: rgba(232, 90, 48, 0.05);
}

.show__date {
    text-align: center;
}

.show__day {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-accent-primary);
    line-height: 1;
}

.show__month {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.show__info h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
    text-transform: none;
    letter-spacing: 0.02em;
}

.show__venue {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.show__cta .btn {
    white-space: nowrap;
}

/* No shows message */
.no-shows {
    text-align: center;
    padding: var(--space-xxl) var(--space-lg);
}

.no-shows p {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
}


/* ============================================================
   SECTION 15: CONTACT FORM / LINKS
   ============================================================ */

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
}

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

.link-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all var(--transition-base);
}

.link-card:hover {
    border-color: var(--color-accent-primary);
    background: rgba(232, 90, 48, 0.05);
    box-shadow: 0 0 20px var(--color-accent-glow);
    transform: translateY(-2px);
}

.link-card__icon {
    font-size: var(--text-2xl);
}

.link-card__text {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
}


/* ============================================================
   SECTION 16: EPK (Electronic Press Kit)
   ============================================================ */

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

.epk-section {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: var(--space-xl);
}

/* Full-width sections */
.epk-section--full {
    grid-column: span 2;
}

.epk-section__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

/* Download list */
.download-list {
    list-style: none;
}

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

.download-list__item:last-child {
    border-bottom: none;
}

.download-list__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Photo thumbnails in EPK */
.epk-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.epk-photos a {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background-color: #000; /* Mask any image edge artifacts */
}

.epk-photos img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: opacity var(--transition-fast), transform var(--transition-base);
    background-color: #000; /* Mask any JPEG compression artifacts at edges */
}

.epk-photos a:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* Contact info in EPK */
.contact-info__item {
    margin-bottom: var(--space-lg);
}

.contact-info__label {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.contact-info__value {
    font-size: var(--text-lg);
    color: var(--color-text-primary);
}

.contact-info__value a {
    color: var(--color-accent-primary);
}

/* EPK Member list - compact */
.epk-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.epk-members__item {
    font-size: var(--text-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
}

.epk-members__name {
    color: var(--color-text-primary);
    font-weight: 500;
}

.epk-members__role {
    color: var(--color-text-muted);
}


/* ============================================================
   SECTION 17: BANDCAMP EMBED CONTAINER
   ============================================================ */

.bandcamp-embed {
    display: flex;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.bandcamp-embed iframe {
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
                0 0 30px var(--color-accent-glow);
}


/* ============================================================
   SECTION 18: FOOTER
   ============================================================ */

.footer {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
    background: var(--color-bg-secondary);
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 400;
    color: var(--color-text-primary);
    letter-spacing: 0.15em;
}

.footer__links {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.footer__link {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-accent-primary);
}

.footer__copyright {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* Link back to Mothership */
.footer__mothership {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.footer__mothership a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.footer__mothership a:hover {
    color: var(--color-accent-primary);
}

/* Memorial tribute */
.footer__tribute {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-top: var(--space-sm);
}


/* ============================================================
   SECTION 19: ANIMATIONS
   ============================================================ */

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px var(--color-accent-glow); }
    50% { box-shadow: 0 0 40px var(--color-accent-glow); }
}

/* Staggered animation delays */
.stagger > *:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.stagger > *:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.stagger > *:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.stagger > *:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.stagger > *:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.stagger > *:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }


/* ============================================================
   SECTION 20: RESPONSIVE DESIGN
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .album-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .album-feature__cover {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .members {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .epk-grid {
        grid-template-columns: 1fr;
    }
    
    .epk-section--full {
        grid-column: span 1;
    }
    
    .epk-photos {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    
    /* Mobile navigation */
    .nav__links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-xl);
        background: rgba(10, 10, 15, 0.98);
        transform: translateX(100%);
        transition: transform var(--transition-base);
    }
    
    .nav__links--open {
        transform: translateX(0);
    }
    
    .nav__link {
        font-size: var(--text-lg);
    }
    
    .nav__toggle {
        display: flex;
    }
    
    /* Hamburger animation */
    .nav__toggle--active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav__toggle--active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav__toggle--active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Grid adjustments */
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .members {
        grid-template-columns: 1fr;
    }
    
    .member__image {
        width: 150px;
        height: 150px;
    }
    
    /* Show layout */
    .show {
        grid-template-columns: 80px 1fr;
        gap: var(--space-md);
    }
    
    .show__cta {
        grid-column: span 2;
        justify-self: start;
        margin-top: var(--space-sm);
    }
    
    /* Section spacing */
    .section {
        padding: var(--space-xl) 0;
    }
    
    .page-header {
        padding-top: calc(var(--nav-height) + var(--space-xl));
    }
    
    /* EPK mobile */
    .epk-photos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .epk-members {
        grid-template-columns: 1fr;
    }
    
    /* Gallery mobile */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__item--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    /* Hero adjustments */
    .hero__content {
        margin-top: 40vh;
    }
    
    .hero__cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: var(--space-xl) auto 0;
    }
    
    .hero__cta .btn {
        width: 100%;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--featured {
        grid-column: span 1;
    }
}
