/* ============================================================
   THE REGULAR CASANOVAS - MAIN STYLESHEET
   Satellite Site: theregularcasanovas.philaiken.com
   
   Color Palette: Derived from "Along The Way" album cover
   - Deep Indigo (background)
   - Mint/Seafoam Green (accents)
   - Off-white (text)
   
   Author: Band Network Architect
   ============================================================ */

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

:root {
    /* ---------------------------------------------------------
       TYPOGRAPHY
       Playfair Display: Classic serif with rock edge
       Jost: Clean geometric sans for readability
       --------------------------------------------------------- */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Jost', 'Segoe UI', sans-serif;
    
    /* ---------------------------------------------------------
       COLOR PALETTE - "Along The Way" Album Cover
       --------------------------------------------------------- */
    --color-bg-primary: #0f0b1a;        /* Deep space indigo */
    --color-bg-secondary: #1a1429;      /* Slightly lighter indigo */
    --color-bg-tertiary: #241c38;       /* Card backgrounds */
    --color-bg-card: rgba(36, 28, 56, 0.8);
    
    --color-text-primary: #f5f5f5;      /* Off-white */
    --color-text-secondary: #b8b0c8;    /* Muted lavender */
    --color-text-muted: #6b6280;        /* Dim purple-gray */
    
    --color-accent-primary: #7ee8a8;    /* Mint green from cover */
    --color-accent-secondary: #5eead4;  /* Teal variant */
    --color-accent-hover: #a5f3c8;      /* Lighter mint for hover */
    
    --color-border: rgba(126, 232, 168, 0.2);
    --color-border-hover: rgba(126, 232, 168, 0.5);
    
    /* Gradient for atmospheric backgrounds */
    --gradient-hero: radial-gradient(ellipse at 30% 0%, rgba(126, 232, 168, 0.15) 0%, transparent 50%),
                     radial-gradient(ellipse at 70% 100%, rgba(94, 234, 212, 0.1) 0%, transparent 50%),
                     linear-gradient(180deg, #0f0b1a 0%, #1a1429 100%);
    
    /* ---------------------------------------------------------
       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, 6rem);
    
    /* ---------------------------------------------------------
       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);
    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;
}

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

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

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


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

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

h1 {
    font-size: var(--text-hero);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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 - mint highlight */
.text-accent {
    color: var(--color-accent-primary);
}


/* ============================================================
   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(15, 11, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    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: 700;
    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);
}

/* Underline effect on hover */
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-primary);
    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;
}

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

/* Gradient overlay for text readability */
.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 11, 26, 0.3) 0%,
        rgba(15, 11, 26, 0.6) 50%,
        rgba(15, 11, 26, 0.95) 100%
    );
}

.hero__content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.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: var(--text-xl);
    font-style: italic;
    color: var(--color-accent-primary);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.05em;
}

/* Call-to-action buttons */
.hero__cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}


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

.btn {
    display: inline-block;
    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.15em;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-base);
}

/* Primary button - filled mint */
.btn--primary {
    background: var(--color-accent-primary);
    color: var(--color-bg-primary);
    border-color: var(--color-accent-primary);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(126, 232, 168, 0.3);
}

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

.btn--outline:hover {
    background: var(--color-accent-primary);
    color: var(--color-bg-primary);
    transform: translateY(-2px);
}

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

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


/* ============================================================
   SECTION 8: PAGE HEADER (Interior Pages)
   ============================================================ */

.page-header {
    padding-top: calc(var(--nav-height) + var(--space-xxl));
    padding-bottom: var(--space-xl);
    text-align: center;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

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

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


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

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

.card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(126, 232, 168, 0.1);
}

.card__image {
    margin: calc(var(--space-lg) * -1);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.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 {
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
}


/* ============================================================
   SECTION 10: MEMBER PROFILES
   ============================================================ */

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

.member {
    text-align: center;
}

.member__image {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-border);
    transition: border-color var(--transition-base);
}

.member__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter var(--transition-base);
}

.member:hover .member__image {
    border-color: var(--color-accent-primary);
}

.member:hover .member__image img {
    filter: grayscale(0%);
}

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

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

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


/* ============================================================
   SECTION 11: MUSIC PAGE - ALBUM FEATURE
   ============================================================ */

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

.album-feature__cover {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.album-feature__info h2 {
    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);
}

/* Singles grid */
.singles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

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

.single:hover {
    border-color: var(--color-border-hover);
}

.single__cover {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.single__info h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.single__info p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: 0;
}


/* ============================================================
   SECTION 12: VIDEO EMBEDS
   ============================================================ */

.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 aspect ratio */
    height: 0;
}

.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-lg);
    margin-bottom: var(--space-sm);
}

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


/* ============================================================
   SECTION 13: SHOWS / TOUR DATES
   ============================================================ */

.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);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    margin-bottom: var(--space-md);
    transition: border-color var(--transition-base);
}

.show:hover {
    border-color: var(--color-border-hover);
}

.show__date {
    text-align: center;
}

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

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

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

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


/* ============================================================
   SECTION 14: CONTACT / LINKS
   ============================================================ */

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.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);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(126, 232, 168, 0.15);
}

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

.link-card__text {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-text-primary);
}


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

.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 a {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.epk-photos img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: opacity var(--transition-fast), transform var(--transition-base);
}

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


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

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


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

/* 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: 400px;
        margin: 0 auto;
    }
    
    .members {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .singles-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);
    }
}

/* 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(15, 11, 26, 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__cta {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .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;
    }
}
