/* ============================================================
   RSK Preview CSS - Mobile-first
   Base styles = mobile. Desktop is the enhancement.
   Breakpoints: 600px | 900px | 1200px
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
    --black: #1A1A1A;
    --charcoal: #252525;
    --dark-gray: #333333;
    --mid-gray: #555555;
    --silver: #999999;
    --light-silver: #CCCCCC;
    --off-white: #E8E8E8;
    --white: #FFFFFF;

    --rsk-orange: #FF6B35;
    --rsk-yellow: #FFD700;
    --rsk-pink: #E84393;
    --rsk-cyan: #00E5FF;

    --grad-oy: linear-gradient(135deg, #FF6B35, #FFD700);
    --grad-pb: linear-gradient(135deg, #E84393, #00E5FF);

    --overlay: rgba(37, 37, 37, 0.88);
    --btn-r: 16px 0 16px 0;
    --nav-h: 64px;
    --ease: 0.25s ease;
    --max-w: 1200px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   BASE / BODY — mobile first
   ============================================================ */
body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--off-white);
    line-height: 1.65;
    background-color: var(--black);
    background-image: url('../images/rsk-hex-bg.png');
    /* Fixed pixel size keeps hexagon density identical on all viewports */
    background-size: 1200px auto;
    background-position: center top;
    background-attachment: scroll;
    background-repeat: repeat-y;
}

@media (min-width: 900px) {
    body {
        background-attachment: fixed;
        background-position: center;
        --nav-h: 72px;
    }
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.bebas { font-family: 'Bebas Neue', sans-serif; font-weight: 400; }
.grad-oy {
    background: var(--grad-oy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 8vw, 3.6rem);
    letter-spacing: 0.05em;
    line-height: 1;
}
.section-sub {
    font-size: 0.95rem;
    color: #FFD700;
    margin-top: 0.5rem;
    font-weight: 300;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: 100%;
    padding: 0 1.25rem;
    margin: 0 auto;
}
@media (min-width: 600px)  { .container { padding: 0 1.75rem; } }
@media (min-width: 1200px) { .container { max-width: var(--max-w); padding: 0 2rem; } }

.section-pad   { padding: 4rem 0; }
.section-pad-sm { padding: 2.5rem 0; }
@media (min-width: 900px) {
    .section-pad    { padding: 6rem 0; }
    .section-pad-sm { padding: 4rem 0; }
}

.section-header { margin-bottom: 2.5rem; }
@media (min-width: 900px) { .section-header { margin-bottom: 3.5rem; } }

.section-dark { background: var(--overlay); }
.section-breathe { background: rgba(20, 20, 20, 0.38); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 0.75rem 2rem;
    border-radius: var(--btn-r);
    border: 2px solid transparent;
    line-height: 1;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
    text-align: center;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--rsk-orange);
    color: var(--white);
    border-color: var(--rsk-orange);
}
.btn-primary:hover, .btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,53,0.45);
    outline: none;
}

/* Orange outline — used on audience cards */
.btn-outline-orange {
    background: transparent;
    color: var(--rsk-orange);
    border-color: var(--rsk-orange);
}
.btn-outline-orange:hover, .btn-outline-orange:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,107,53,0.25);
    outline: none;
}

/* Cyan outline */
.btn-outline-cyan {
    background: transparent;
    color: var(--rsk-cyan);
    border-color: var(--rsk-cyan);
}
.btn-outline-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,229,255,0.2);
}

/* ============================================================
   GLASS CARD
   ============================================================ */
.glass {
    background: rgba(26,26,26,0.76);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    transition: border-color var(--ease), box-shadow var(--ease);
}

/* Audience cards — compound selector wins over .glass without !important */
.glass.audience-card {
    border: 2px solid #00E5FF;
}
.glass.audience-card:hover {
    border-color: #DDFF00;
    box-shadow: 0 0 30px rgba(221,255,0,0.22);
}

/* ============================================================
   NAV — hamburger by default, desktop links at 900px
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    height: var(--nav-h);
    transition: background var(--ease), backdrop-filter var(--ease);
}
.nav.scrolled {
    background: rgba(26,26,26,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}
@media (min-width: 600px) { .nav-inner { padding: 0 1.75rem; } }

.nav-logo img {
    height: 40px;
    width: auto;
}
@media (min-width: 900px) { .nav-logo img { height: 46px; } }

/* Desktop links — hidden on mobile */
.nav-links {
    display: none;
}
@media (min-width: 900px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    color: var(--off-white);
    transition: color var(--ease);
}
.nav-link:hover { color: var(--rsk-orange); }

.nav-cta { padding: 0.55rem 1.4rem; font-size: 0.95rem; }

/* Hamburger — visible on mobile only */
.nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px; height: 18px;
    background: none; border: none;
    padding: 0;
}
.nav-hamburger span {
    display: block; height: 2px;
    background: #DDFF00; border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}
@media (min-width: 900px) { .nav-hamburger { display: none; } }

/* Mobile drawer */
.nav-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: min(82vw, 300px);
    height: 100dvh;
    background: #0a0a0a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 1px solid rgba(221,255,0,0.2);
}
/* Hex texture layer behind drawer content */
.nav-drawer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/rsk-hex-bg.png');
    background-size: 600px auto;
    background-position: center top;
    background-repeat: repeat-y;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}
.nav-drawer > * { position: relative; z-index: 1; }
.nav-drawer.open { right: 0; }
.nav-drawer-close {
    align-self: flex-end;
    background: none; border: none;
    color: #DDFF00; font-size: 1.5rem;
    line-height: 1;
    transition: color var(--ease);
}
.nav-drawer-close:hover { color: var(--rsk-orange); }
.nav-drawer ul {
    display: flex; flex-direction: column;
    gap: 0; margin-top: 2.5rem;
}
.nav-drawer ul li {
    border-left: 3px solid transparent;
    transition: border-color var(--ease), padding-left var(--ease);
}
.nav-drawer ul li:hover {
    border-left-color: var(--rsk-orange);
    padding-left: 0.4rem;
}
.nav-drawer .nav-link {
    font-size: 1.7rem;
    display: block;
    padding: 0.65rem 0;
    color: var(--off-white);
}
.nav-drawer .nav-link:hover { color: #DDFF00; }
.nav-drawer .btn { margin-top: 1rem; font-size: 1.2rem; padding: 0.75rem 1.75rem; width: fit-content; }

.nav-veil {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 950;
}
.nav-veil.open { display: block; }

/* ============================================================
   HERO — full viewport slideshow
   ============================================================ */
.hero {
    position: relative;
    height: 100dvh;
    min-height: 560px;
    background-color: var(--black); /* hides hex bg behind slides */
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}
@media (min-width: 900px) {
    .hero {
        align-items: center;
        padding-bottom: 0;
    }
}

/* Slides */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }

/* Gradient tint for readability */
.hero-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* Mobile: strong vertical gradient — dark at bottom where content sits */
    background: linear-gradient(
        to top,
        rgba(20,20,20,0.92) 0%,
        rgba(20,20,20,0.55) 50%,
        rgba(20,20,20,0.25) 100%
    );
}
@media (min-width: 900px) {
    .hero-tint {
        /* Desktop: left-side gradient — content on left, image visible right */
        background: linear-gradient(
            105deg,
            rgba(20,20,20,0.88) 0%,
            rgba(20,20,20,0.55) 45%,
            rgba(20,20,20,0.1) 70%,
            transparent 85%
        );
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    width: 100%;
    /* Mobile: content at bottom over gradient */
    padding-top: calc(var(--nav-h) + 1rem);
}
@media (min-width: 600px)  { .hero-content { padding: 0 1.75rem; padding-top: calc(var(--nav-h) + 1rem); } }
@media (min-width: 900px)  {
    .hero-content {
        padding: 0 4vw;
        max-width: 580px;
        padding-top: 0;
        align-items: flex-start;
        text-align: left;
    }
}
@media (min-width: 1200px) { .hero-content { padding-left: 6vw; max-width: 640px; } }

/* h1 wrapper for hero typography image — layout-transparent */
.hero-h1 { display: contents; }
.hero-typo {
    /* Starts smaller on mobile so there's no size-jump at the 900px breakpoint */
    width: clamp(160px, 40vw, 300px);
    filter: drop-shadow(0 3px 16px rgba(0,0,0,0.7));
}
@media (min-width: 900px) {
    /* Minimum matches mobile maximum so size is seamless at the breakpoint */
    .hero-typo { width: clamp(300px, 28vw, 400px); }
}

.hero-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    letter-spacing: 0.14em;
    color: var(--off-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    margin-top: -0.25rem;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.45;
    animation: heroScroll 2.2s ease-in-out infinite;
}
.hero-scroll svg {
    width: 26px; height: 26px;
    fill: none; stroke: var(--white);
    stroke-width: 2.5;
    stroke-linecap: round; stroke-linejoin: round;
}
@keyframes heroScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   VIP — compact strip
   ============================================================ */
.vip-banner { line-height: 0; }
.vip-banner img { width: 100%; display: block; }

.vip-strip {
    background: var(--overlay);
    padding: 2rem 1.25rem 2.5rem;
}
@media (min-width: 600px) { .vip-strip { padding: 2rem 1.75rem 2.5rem; } }
@media (min-width: 900px) {
    .vip-strip { padding: 2.5rem 2rem; }
}

.vip-inner {
    max-width: 680px;
    margin: 0 auto;
}
.vip-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
}
.vip-inner > p {
    font-size: 0.88rem;
    color: var(--silver);
    margin-bottom: 1.25rem;
}

.vip-form { display: flex; flex-direction: column; gap: 0.75rem; }

@media (min-width: 600px) {
    .vip-form {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        align-items: end;
        gap: 0.75rem;
    }
    .vip-consent-row { grid-column: 1 / -1; }
}

.vip-field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 0.35rem;
}
.vip-field input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    padding: 0.65rem 0.9rem;
    color: var(--off-white);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    transition: border-color var(--ease);
}
.vip-field input:focus { outline: none; border-color: var(--rsk-orange); }
.vip-field input::placeholder { color: var(--mid-gray); }

.vip-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.vip-consent-row {
    font-size: 0.74rem;
    color: var(--mid-gray);
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.vip-consent-row a { color: var(--silver); text-decoration: underline; }
.vip-dismiss {
    background: none; border: none;
    font-size: 0.74rem;
    color: var(--mid-gray);
    padding: 0;
    transition: color var(--ease);
    white-space: nowrap;
}
.vip-dismiss:hover { color: var(--silver); }

.vip-success {
    display: none;
    padding: 1.25rem 0;
    text-align: center;
}
.vip-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    background: var(--grad-oy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.35rem;
}
.vip-success p { font-size: 0.9rem; color: var(--silver); }

/* ============================================================
   AUDIENCE CARDS
   ============================================================ */
.cards-section { padding: 4rem 0; }
@media (min-width: 900px) { .cards-section { padding: 6rem 0; } }

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 600px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        /* Equal row height — CTAs align to bottom */
        align-items: stretch;
    }
}

.audience-card {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 900px) {
    .audience-card { padding: 2.25rem 2rem; }
}

.card-icon {
    width: 44px; height: 44px;
    object-fit: contain;
}
.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--off-white);
}
.card-body {
    font-size: 0.88rem;
    line-height: 1.78;
    color: var(--light-silver);
    flex: 1;
}
.card-body p + p { margin-top: 0.85em; }
.card-cta { margin-top: auto; align-self: flex-start; }

/* ============================================================
   ROCKSTAR AXES
   ============================================================ */
.axes-section { padding: 4rem 0; }
@media (min-width: 900px) { .axes-section { padding: 6rem 0; } }

/* Text copy — full width above the photo stage */
.axes-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
    max-width: 680px;
}

.axes-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 8vw, 4rem);
    letter-spacing: 0.04em;
    line-height: 1;
}
.axes-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--light-silver);
}

/* Stage: relative container — photos stack inside, guitar floats over them */
.axes-stage {
    position: relative;
}

/* Stacked full-width action photos */
.axes-photos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.axes-photos img {
    border-radius: 4px;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* Flying V: absolutely positioned over the left side of the photo stack */
.axes-flyingv {
    position: absolute;
    left: 3%;
    top: 4%;
    height: 90%;
    width: auto;
    transform: rotate(-10deg);
    filter: drop-shadow(0 16px 48px rgba(0,229,255,0.3))
            drop-shadow(0 6px 20px rgba(0,0,0,0.7));
    pointer-events: auto;
    z-index: 2;
    transition: transform 0.5s ease, filter 0.5s ease;
    cursor: default;
}
.axes-flyingv:hover {
    transform: rotate(-5deg) translateY(-8px) scale(1.04);
    filter: drop-shadow(0 24px 56px rgba(0,229,255,0.45))
            drop-shadow(0 8px 24px rgba(0,0,0,0.8));
}

/* ============================================================
   RSK LIVE
   ============================================================ */
.rsklive-section { padding: 4rem 0; }
@media (min-width: 900px) { .rsklive-section { padding: 6rem 0; } }

.rsklive-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (min-width: 900px) {
    .rsklive-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.rsklive-logo { width: clamp(160px, 45vw, 280px); margin-bottom: 0.5rem; }

.rsklive-body {
    font-size: 0.95rem;
    line-height: 1.78;
    color: var(--light-silver);
    max-width: 480px;
    margin-top: 0.25rem;
}

.rsklive-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.rsklive-photos img {
    width: 100%;
    border-radius: 4px;
    object-fit: contain;
    background: rgba(0,0,0,0.3);
    aspect-ratio: 3/4;
}

/* ============================================================
   PRODUCTION GALLERY
   ============================================================ */
.gallery-section { padding: 4rem 0; }
@media (min-width: 900px) { .gallery-section { padding: 6rem 0; } }

.gallery-grid {
    /* 2-col on all sizes — 4 photos = 2 clean rows of 2 */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
@media (min-width: 900px) {
    .gallery-grid { gap: 0.65rem; }
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--charcoal);
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.05); }

/* 3rd item (crowd) spans full width as mid-gallery feature */
.gallery-item:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: 16/9;
}

/* Mobile: single column for all image grids below 600px */
@media (max-width: 599px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item:nth-child(3) {
        grid-column: auto;
        aspect-ratio: 4/3;
    }
    .about-photos {
        grid-template-columns: 1fr;
    }
}

/* Lightbox */
.lightbox {
    position: fixed; inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}
.lb-close {
    position: absolute; top: 1rem; right: 1.25rem;
    background: none; border: none;
    color: var(--off-white); font-size: 1.8rem;
    line-height: 1;
    transition: color var(--ease);
}
.lb-close:hover { color: var(--rsk-orange); }
.lb-prev, .lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--off-white);
    font-size: 1.8rem; line-height: 1;
    padding: 0.75rem 1rem; border-radius: 4px;
    transition: background var(--ease);
}
.lb-prev { left: 0.75rem; }
.lb-next { right: 0.75rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,107,53,0.25); }

/* ============================================================
   HOST
   ============================================================ */
.host-section { padding: 4rem 0; }
@media (min-width: 900px) { .host-section { padding: 6rem 0; } }

/* Mobile: flex-column — DOM order gives us: heading, photo, content */
.host-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
/* Desktop: explicit grid — photo left spanning both rows, heading + content stacked right */
@media (min-width: 900px) {
    .host-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        gap: 0.75rem 4rem;
        align-items: start;
    }
    .host-heading {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0.5rem;
    }
    .host-photo {
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
    }
    .host-content {
        grid-column: 2;
        grid-row: 2;
    }
}

.host-photo {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 0 48px rgba(0,0,0,0.55);
}
.host-photo img { width: 100%; display: block; }

.host-heading {
    color: #FF6B35 !important;
    margin-bottom: 1rem;
}
.host-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
}
.host-bio {
    font-size: 0.95rem;
    line-height: 1.82;
    color: #FFD700 !important;
}
.host-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #00E5FF !important;
    transition: color var(--ease);
}
.host-more:hover { color: var(--white) !important; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 4rem 0; overflow: hidden; }
@media (min-width: 900px) { .testimonials-section { padding: 6rem 0; } }
.testimonials-section .section-label { color: #FF6B35 !important; }

.t-track {
    display: flex;
    gap: 1rem;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    padding: 0 1.25rem;
}
.t-track.grabbing { cursor: grabbing; }

@media (min-width: 600px)  { .t-track { padding: 0 1.75rem; } }
@media (min-width: 1200px) { .t-track { padding: 0 calc((100vw - var(--max-w)) / 2 + 2rem); } }

.t-card {
    flex: 0 0 min(340px, 82vw);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    border: 1px solid var(--rsk-cyan);
    background: rgba(26,26,26,0.84);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px;
    /* Prevent text overflow */
    min-height: 0;
    overflow: hidden;
}
@media (min-width: 600px)  { .t-card { flex: 0 0 min(360px, 78vw); } }
@media (min-width: 900px)  { .t-card { flex: 0 0 360px; padding: 1.75rem; } }

.t-quote-mark { width: 34px; flex-shrink: 0; }
.t-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.68;
    color: var(--off-white);
    flex: 1;
    /* Contain text within card */
    overflow-wrap: break-word;
    word-break: break-word;
}
@media (min-width: 900px) { .t-text { font-size: 1.06rem; } }
.t-footer { display: flex; align-items: center; gap: 0.65rem; flex-shrink: 0; }
.t-avatar { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.t-name { font-size: 0.85rem; font-weight: 500; color: var(--rsk-pink); }

.t-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding: 0 1.25rem;
}
.t-btn {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--off-white);
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 1.15rem;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--ease), border-color var(--ease);
}
.t-btn:hover { background: rgba(255,107,53,0.2); border-color: var(--rsk-orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: rgba(14,14,14,0.98);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 3rem 1.25rem 0;
}
@media (min-width: 600px)  { .footer { padding: 3.5rem 1.75rem 0; } }
@media (min-width: 900px)  { .footer { padding: 4.5rem 2rem 0; } }

.footer-grid {
    /* Mobile: single column stack */
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
@media (min-width: 600px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
    }
    .footer-brand { grid-column: 1 / -1; } /* full-width on 2-col */
}
@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem 3rem;
    }
    .footer-brand { grid-column: auto; }
}
@media (min-width: 1200px) {
    .footer-grid { max-width: var(--max-w); margin: 0 auto; }
}

.footer-logo { height: 50px; width: auto; margin-bottom: 0.6rem; }
.footer-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: var(--silver);
    margin-bottom: 0.75rem;
}
.footer-service {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--light-silver);
    padding-left: 0.7rem;
    border-left: 2px solid #00E5FF;
    line-height: 1.4;
}

/* Mobile: under social icons in brand column */
.footer-brand .footer-service {
    margin-top: 1.25rem;
    margin-bottom: 0;
}
/* Hide desktop-only copy on mobile */
.footer-contact .footer-service {
    display: none;
    margin-top: 1rem;
    margin-bottom: 0;
}

@media (min-width: 900px) {
    /* Hide mobile copy, show desktop copy */
    .footer-brand .footer-service  { display: none; }
    .footer-contact .footer-service { display: block; }
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    color: var(--silver);
    display: flex; align-items: center;
    transition: color var(--ease);
}
.footer-social a:hover { color: var(--rsk-orange); }

.footer-col-head {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    color: #00E5FF;
    margin-bottom: 0.9rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a {
    font-size: 0.88rem;
    color: var(--silver);
    transition: color var(--ease);
}
.footer-links a:hover { color: var(--off-white); }
.footer-contact {
    display: flex;
    flex-direction: column;
}
.footer-contact-link {
    font-size: 0.88rem;
    color: var(--light-silver);
    transition: color var(--ease);
}
.footer-contact-link:hover { color: var(--white); }

.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 0;
    text-align: center;
}
.footer-bar p { font-size: 0.78rem; color: var(--mid-gray); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
    padding: calc(var(--nav-h) + 3rem) 1.25rem 3rem;
    background: var(--overlay);
    text-align: center;
}
@media (min-width: 600px)  { .page-hero { padding-left: 1.75rem; padding-right: 1.75rem; } }
@media (min-width: 900px)  { .page-hero { padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 4rem; } }

.page-hero-light {
    padding: calc(var(--nav-h) + 1.25rem) 1.25rem 1.25rem;
    text-align: center;
}
@media (min-width: 600px)  { .page-hero-light { padding-left: 1.75rem; padding-right: 1.75rem; } }
@media (min-width: 900px)  { .page-hero-light { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 2rem; } }

.page-hero-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.page-hero-logo {
    width: clamp(80px, 18vw, 130px);
    height: auto;
}
.page-hero-logos .page-hero-logo:first-child {
    width: clamp(104px, 23.4vw, 169px);
}
.page-hero-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 3.5vw, 1.4rem);
    letter-spacing: 0.12em;
    color: var(--silver);
}
.page-hero-byline {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--mid-gray);
    margin-top: 0.35rem;
}
.page-hero-sub2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(0.85rem, 2.8vw, 1.1rem);
    letter-spacing: 0.1em;
    color: var(--mid-gray);
    margin-top: 0.2rem;
}

.about-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem 1.25rem 4rem;
}
@media (min-width: 600px)  { .about-content { padding: 2.5rem 1.75rem 4rem; } }
@media (min-width: 900px)  { .about-content { padding: 3rem 2rem 5rem; } }

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
.stat-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255,107,53,0.3);
    border-radius: 4px;
    background: rgba(255,107,53,0.06);
}
.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 7vw, 3rem);
    background: var(--grad-oy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--silver);
    margin-top: 0.35rem;
    display: block;
}

.about-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 2.5rem 0;
}
.about-photos img {
    border-radius: 4px;
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center top;
}
@media (min-width: 600px) { .about-photos img { height: 300px; } }

.about-photo-single {
    margin: 2.5rem 0;
    border-radius: 4px;
    overflow: hidden;
}
.about-photo-single img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    display: block;
}

.about-photo-small {
    margin: 2.5rem auto;
    max-width: 50%;
    border-radius: 4px;
    overflow: hidden;
}
.about-photo-small img {
    width: 100%;
    border-radius: 4px;
    display: block;
}
@media (max-width: 600px) { .about-photo-small { max-width: 70%; } }

.about-bio { display: flex; flex-direction: column; gap: 1.35em; }
.about-bio p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--light-silver);
}
.about-bio p:first-child { font-size: 1.05rem; color: var(--off-white); }
.about-quote {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 1.08rem;
    color: #FFD700;
    padding-left: 1.25rem;
    border-left: 3px solid var(--rsk-orange);
    margin: 0.5rem 0;
    line-height: 1.6;
    font-weight: 400;
}
.about-pullquote {
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem) !important;
    font-weight: 600;
    color: var(--rsk-yellow);
    line-height: 1.25;
    padding: 1.25rem 0;
    margin: 1rem auto;
    text-align: center;
    border-left: none;
    border-top: none;
    border-bottom: none;
    text-shadow: 0 0 80px rgba(255,215,0,0.2);
    display: block;
    position: relative;
}
.about-pullquote::before,
.about-pullquote::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255,215,0,0.4);
    margin: 0 auto;
}
.about-pullquote::before {
    margin-bottom: 0.6rem;
}
.about-pullquote::after {
    margin-top: 0.6rem;
}

/* ============================================================
   SHOWS PAGE
   ============================================================ */
.shows-page {
    padding: calc(var(--nav-h) + 3rem) 1.25rem 5rem;
    min-height: 100vh;
}
@media (min-width: 600px)  { .shows-page { padding-left: 1.75rem; padding-right: 1.75rem; } }
@media (min-width: 900px)  { .shows-page { padding-top: calc(var(--nav-h) + 4rem); } }
@media (min-width: 1200px) { .shows-page { max-width: var(--max-w); margin: 0 auto; } }

.shows-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.shows-header h1 {
    line-height: 0;
    margin: 0;
    padding: 0;
}
.shows-header p { color: var(--silver); margin-top: 0.4rem; }

.shows-list { display: flex; flex-direction: column; gap: 1rem; }

.show-card {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem 1rem;
    align-items: start;
}
@media (min-width: 600px) {
    .show-card {
        grid-template-columns: 44px 1fr auto;
        grid-template-rows: auto;
        align-items: center;
    }
}

.show-icon { width: 44px; height: 44px; object-fit: contain; }
.show-info { display: flex; flex-direction: column; gap: 0.2rem; }
.show-venue {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem; letter-spacing: 0.04em;
    color: var(--off-white);
}
.show-favicon { width: 16px; height: 16px; border-radius: 3px; }
.show-date   { font-size: 0.82rem; color: var(--rsk-orange); font-weight: 500; letter-spacing: 0.04em; }
.show-time   { font-size: 0.82rem; color: var(--silver); }
.show-loc    { font-size: 0.82rem; color: var(--silver); }
.show-actions {
    grid-column: 2;
    display: flex; align-items: center;
}
@media (min-width: 600px) { .show-actions { grid-column: auto; justify-content: flex-end; } }
.show-map {
    font-size: 0.82rem; color: var(--rsk-cyan);
    display: inline-flex; align-items: center; gap: 0.3rem;
    transition: color var(--ease);
}
.show-map:hover { color: var(--rsk-yellow); }
.show-inactive { opacity: 0.4; pointer-events: none; }

.shows-empty {
    text-align: center; padding: 4rem 1rem;
}
.shows-empty h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem; margin-bottom: 1rem;
    color: var(--off-white);
}
.shows-empty p { color: var(--silver); margin-bottom: 2rem; }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-page {
    padding: calc(var(--nav-h) + 3rem) 1.25rem 6rem;
    min-height: 100vh;
}
@media (min-width: 600px)  { .privacy-page { padding: calc(var(--nav-h) + 3.5rem) 1.75rem 6rem; } }
@media (min-width: 900px)  { .privacy-page { padding-top: calc(var(--nav-h) + 5rem); } }

.privacy-inner { max-width: 760px; margin: 0 auto; }

.privacy-inner h1 {
    font-size: clamp(2.4rem, 7vw, 4rem);
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}
.privacy-updated { font-size: 0.82rem; color: var(--mid-gray); margin-bottom: 2.5rem; }
.privacy-card {
    background: rgba(18, 18, 18, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: 2rem 1.5rem;
}
@media (min-width: 600px) { .privacy-card { padding: 2.5rem 2.5rem; } }
@media (min-width: 900px) { .privacy-card { padding: 3rem 3.5rem; } }
.privacy-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem; letter-spacing: 0.06em;
    color: var(--rsk-orange);
    margin: 2.5rem 0 0.75rem;
}
.privacy-inner p,
.privacy-inner li {
    font-size: 0.93rem;
    line-height: 1.78;
    color: var(--light-silver);
    margin-bottom: 0.85em;
}
.privacy-inner ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1em; }
.privacy-inner a { color: var(--rsk-cyan); text-decoration: underline; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
/* Skip to main content link — hidden until focused */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--rsk-orange);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    z-index: 9999;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* Screen reader only — visually hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.privacy-inner a:hover { color: var(--rsk-yellow); }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { padding: 1.5rem 0; }
.video-wrapper { width: 100%; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.video-container { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
