/* ============================================================
   PHIL AIKEN - MAIN STYLESHEET
   A dual-mood design system: "Stage" (dark/moody) vs "Studio" (warm)
   
   Author: Band Network Architect
   For: philaiken.com (Mothership)
   ============================================================ */

/* ============================================================
   SECTION 1: CSS CUSTOM PROPERTIES (VARIABLES)
   These define our two "moods" - easily maintainable
   ============================================================ */

:root {
    /* ---------------------------------------------------------
       TYPOGRAPHY - Distinctive, editorial choices
       Cormorant Garamond: Elegant serif for headlines
       Jost: Modern geometric sans for body text
       --------------------------------------------------------- */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* ---------------------------------------------------------
       SPACING SCALE - Consistent rhythm throughout
       --------------------------------------------------------- */
    --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(3rem, 10vw, 8rem);
    
    /* ---------------------------------------------------------
       TRANSITIONS
       --------------------------------------------------------- */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* ---------------------------------------------------------
       LAYOUT
       --------------------------------------------------------- */
    --max-width: 1200px;
    --nav-height: 80px;
}

/* ---------------------------------------------------------
   MOOD: STAGE (Dark/Moody)
   Used on: Home, About
   Deep blacks with purple/green stage lighting accents
   --------------------------------------------------------- */
.mood-stage {
    --color-bg-primary: #050505;
    --color-bg-secondary: #0a0a0a;
    --color-bg-tertiary: #111111;
    --color-bg-card: rgba(20, 20, 20, 0.8);
    
    --color-text-primary: #f5f5f5;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;
    
    --color-accent-primary: #8B5CF6;    /* Purple - stage lights */
    --color-accent-secondary: #22C55E;  /* Green - stage lights */
    --color-accent-gold: #D4AF37;       /* Gold - spotlight warmth */
    
    --color-border: rgba(139, 92, 246, 0.2);
    --color-border-hover: rgba(139, 92, 246, 0.5);
    
    /* Gradient for dramatic backgrounds */
    --gradient-stage: radial-gradient(ellipse at 20% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                      radial-gradient(ellipse at 80% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                      linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    
    --gradient-hero: radial-gradient(ellipse at 30% 100%, rgba(139, 92, 246, 0.3) 0%, transparent 60%),
                     radial-gradient(ellipse at 70% 80%, rgba(34, 197, 94, 0.2) 0%, transparent 50%);
}

/* ---------------------------------------------------------
   MOOD: STUDIO (Warm)
   Used on: Music, Video, Photos, Shows, EPK, Contact
   Charcoal with amber/wood tones
   --------------------------------------------------------- */
.mood-studio {
    --color-bg-primary: #121210;
    --color-bg-secondary: #1a1917;
    --color-bg-tertiary: #242320;
    --color-bg-card: rgba(36, 35, 32, 0.9);
    
    --color-text-primary: #F5F0E8;
    --color-text-secondary: #BDB5A8;
    --color-text-muted: #7A756B;
    
    --color-accent-primary: #D4A574;    /* Warm amber */
    --color-accent-secondary: #B8860B;  /* Dark goldenrod */
    --color-accent-gold: #C9A227;       /* Gold */
    
    --color-border: rgba(212, 165, 116, 0.2);
    --color-border-hover: rgba(212, 165, 116, 0.5);
    
    /* Gradient for warm backgrounds */
    --gradient-stage: radial-gradient(ellipse at 50% 0%, rgba(212, 165, 116, 0.08) 0%, transparent 50%),
                      linear-gradient(180deg, #121210 0%, #1a1917 100%);
    
    --gradient-hero: radial-gradient(ellipse at 50% 100%, rgba(212, 165, 116, 0.15) 0%, transparent 60%);
}


/* ============================================================
   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);
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    background-image: var(--gradient-stage);
    min-height: 100vh;
}

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

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

a:hover {
    color: var(--color-accent-gold);
}

/* Images */
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.02em;
}

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

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);
}

/* Tagline / subtitle styling */
.tagline {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
}


/* ============================================================
   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;
}

/* Flexbox utilities */
.flex {
    display: flex;
}

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

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* 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);
}

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

/* Spacing utilities */
.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(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: background var(--transition-base);
}

.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-xl);
    font-weight: 400;
    color: var(--color-text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

/* 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.1em;
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-primary);
    transition: width var(--transition-base);
}

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

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

/* Mobile menu toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}


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

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

/* Background image with overlay */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

/* Hero content */
.hero__content {
    max-width: 900px;
    animation: fadeInUp 1s ease forwards;
}

.hero__title {
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero__tagline {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

/* Hero CTA buttons */
.hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}


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

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

.btn--primary {
    background: var(--color-accent-primary);
    color: var(--color-bg-primary);
    border-color: var(--color-accent-primary);
}

.btn--primary:hover {
    background: transparent;
    color: var(--color-accent-primary);
}

.btn--outline {
    background: transparent;
    color: var(--color-text-primary);
    border-color: var(--color-text-secondary);
}

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

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

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


/* ============================================================
   SECTION 8: CARDS & CONTENT BLOCKS
   ============================================================ */

.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: var(--space-lg);
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.card__image {
    margin: calc(var(--space-lg) * -1);
    margin-bottom: var(--space-lg);
    overflow: hidden;
}

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

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

.card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

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


/* ============================================================
   SECTION 9: PAGE HEADERS
   ============================================================ */

.page-header {
    padding-top: calc(var(--nav-height) + var(--space-xxl));
    padding-bottom: var(--space-xl);
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-accent-primary);
    margin: var(--space-lg) auto 0;
}

.page-header__title {
    margin-bottom: var(--space-sm);
}

.page-header__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


/* ============================================================
   SECTION 10: BIO / ABOUT STYLES
   ============================================================ */

.bio {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    align-items: start;
}

.bio__image {
    position: relative;
}

.bio__image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.bio__image::before {
    content: '';
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    right: calc(var(--space-md) * -1);
    bottom: calc(var(--space-md) * -1);
    border: 1px solid var(--color-accent-primary);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.5;
}

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

.bio__content p {
    font-size: var(--text-lg);
    line-height: 1.8;
}

/* Highlighted names/artists */
.bio__highlight {
    color: var(--color-accent-primary);
    font-weight: 500;
}


/* ============================================================
   SECTION 11: MUSIC / EMBED STYLES
   ============================================================ */

.embed-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.embed-container--video {
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.embed-container--video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

/* Bandcamp embed styling */
.embed-container--bandcamp {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: var(--space-lg);
}

.embed-container--bandcamp iframe {
    border: none;
    width: 100%;
}

/* Album info */
.album-info {
    text-align: center;
    margin-top: var(--space-xl);
}

.album-info__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-style: italic;
    margin-bottom: var(--space-sm);
}

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


/* ============================================================
   SECTION 12: PHOTO GALLERY
   ============================================================ */

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

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

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

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


/* ============================================================
   SECTION 13: SHOWS / EVENTS
   ============================================================ */

.shows-section {
    margin-bottom: var(--space-xl);
}

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

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

.show:last-child {
    border-bottom: none;
}

.show__date {
    text-align: center;
}

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

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

.show__info {
    /* Venue and location info */
}

.show__venue {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

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

.show__details {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    font-style: italic;
}

/* Empty state for shows */
.shows-empty {
    text-align: center;
    padding: var(--space-xl);
    color: var(--color-text-muted);
    font-style: italic;
}


/* ============================================================
   SECTION 14: 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);
}

.epk-section--full {
    grid-column: span 2;
}

.epk-section__title {
    font-size: var(--text-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-primary);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

/* Download links in EPK */
.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 img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity var(--transition-fast);
}

.epk-photos img:hover {
    opacity: 0.8;
}


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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    align-items: start;
}

.contact-info {
    /* Left column - contact details */
}

.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);
}

/* Social links */
.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

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

/* Form styling */
.form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: var(--space-xl);
}

.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-accent-primary);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__submit {
    width: 100%;
}


/* ============================================================
   SECTION 16: FOOTER
   ============================================================ */

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

.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);
    color: var(--color-text-primary);
    letter-spacing: 0.05em;
}

.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);
}


/* ============================================================
   SECTION 17: ANIMATIONS
   ============================================================ */

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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


/* ============================================================
   SECTION 18: RESPONSIVE DESIGN
   ============================================================ */

/* Tablet and below */
@media (max-width: 1024px) {
    .bio {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .bio__image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .epk-grid {
        grid-template-columns: 1fr;
    }
    
    .epk-section--full {
        grid-column: span 1;
    }
    
    .contact-grid {
        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(5, 5, 5, 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);
    }
    
    /* Hero adjustments */
    .hero {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
    
    .hero__cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    
    .hero__cta .btn {
        width: 100%;
    }
    
    /* Grid adjustments */
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    /* Show layout */
    .show {
        grid-template-columns: 80px 1fr;
        gap: var(--space-md);
    }
    
    .show__cta {
        grid-column: span 2;
        justify-self: start;
    }
    
    /* Gallery */
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__item--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    /* EPK photos */
    .epk-photos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Section spacing */
    .section {
        padding: var(--space-xl) 0;
    }
    
    .page-header {
        padding-top: calc(var(--nav-height) + var(--space-xl));
    }
}

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


/* ============================================================
   SECTION 19: PRINT STYLES (for EPK)
   ============================================================ */

@media print {
    .nav,
    .footer,
    .btn,
    .form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .page-header {
        padding-top: var(--space-lg);
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
}
