/* ============================================
   ANIMATIONS & KEYFRAMES
   ============================================ */

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

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Initial hidden state for animated elements */
.slide-in-item,
.fade-in-up,
.slide-in-left,
.slide-in-right {
    opacity: 0;
}

/* Animate when in view */
.slide-in-item.in-view {
    animation: slideInFromBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-up.in-view {
    animation: slideInFromBottom 0.6s ease-out forwards;
}

.slide-in-left.in-view {
    animation: slideInFromLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-in-right.in-view {
    animation: slideInFromRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Hero animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out 0.3s forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideInFromBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.9s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 1.2s forwards;
    opacity: 0;
}

/* ============================================
   BACK TO HUB BUTTON
   ============================================ */

.back-to-hub {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.back-to-hub:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(-4px);
}

.back-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.back-to-hub:hover .back-icon {
    transform: translateX(-3px);
}

.back-text {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* ============================================
   QUICK JUMP NAVIGATION
   ============================================ */

.quick-jump {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.jump-toggle {
    width: 56px;
    height: 56px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
}

.jump-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.jump-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.jump-toggle.active .jump-icon {
    transform: rotate(180deg);
}

.jump-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    padding: 0.5rem;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.jump-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.jump-link {
    display: block;
    padding: 0.9rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.jump-link:last-child {
    border-bottom: none;
}

.jump-link:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.archive-hero-full {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 0.1em;
    line-height: 0.9;
    margin: 0 0 2rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
    animation: floatUpDown 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
}

/* ============================================
   CONTAINER
   ============================================ */

.archive-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* ============================================
   FEATURED MOMENT
   ============================================ */

.featured-moment {
    padding: 8rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image-large {
    position: relative;
}

.featured-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.6s ease;
}

.featured-image-large:hover .featured-img {
    transform: scale(1.02);
}

.featured-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 2rem;
}

.caption-year,
.caption-location {
    padding: 0.7rem 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.featured-content {
    padding: 2rem 0;
}

.featured-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2rem;
}

.featured-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.05em;
    margin: 0 0 1.5rem;
    line-height: 1;
}

.featured-text {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 3rem;
}

.featured-meta {
    display: grid;
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.5;
    font-weight: 600;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   SECTION INTROS
   ============================================ */

.section-intro {
    margin-bottom: 5rem;
}

.section-intro.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5rem;
}

.intro-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title-large {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.08em;
    margin: 0 0 1rem;
    line-height: 1;
}

.section-intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 600px;
}

.section-intro.centered .section-intro-text {
    margin: 0 auto;
}

/* ============================================
   TIMELINE / ERA BLOCKS
   ============================================ */

.timeline-section {
    padding: 8rem 0;
}

.era-block {
    margin-bottom: 10rem;
}

.era-header {
    margin-bottom: 4rem;
}

.era-years {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.era-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.08em;
    margin: 0 0 0.5rem;
}

.era-subtitle {
    font-size: 1rem;
    opacity: 0.6;
    font-style: italic;
    margin: 0;
}

/* ============================================
   FLEXIBLE GALLERY LAYOUTS
   ============================================ */

.gallery-flex {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-flex.reverse {
    flex-direction: row-reverse;
}

.gallery-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-large {
    flex: 1.5;
    min-height: 500px;
}

.gallery-tall {
    flex: 0.8;
    min-height: 600px;
}

.gallery-wide {
    width: 100%;
    height: 350px;
}

/* Album-specific gallery item - preserves square ratio */
.gallery-album {
    aspect-ratio: 1 / 1;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

/* For album art - use contain to show full cover */
.gallery-album .gallery-img {
    object-fit: contain;
    background: #0a0a0a;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
}

.overlay-year {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.overlay-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
}

.overlay-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
    margin: 0;
}

/* 2x2 Album Grid */
.album-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    flex: 1;
}

/* ============================================
   ALBUM SHOWCASE - PROPER SQUARE CARDS
   ============================================ */

.album-showcase {
    margin-bottom: 4rem;
}

.album-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.album-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.album-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
}

.album-art {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.album-card:hover .album-img {
    transform: scale(1.08);
}

.album-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-hover {
    opacity: 1;
}

.album-play {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.album-card:hover .album-play {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.album-info {
    padding: 1.5rem;
}

.album-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    letter-spacing: 0.02em;
}

.album-year {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    opacity: 0.5;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.album-note {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.7;
    margin: 0;
}

/* ============================================
   HIGHLIGHT GRID
   ============================================ */

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.highlight-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.highlight-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.highlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.highlight-card:hover .highlight-img {
    transform: scale(1.08);
}

.highlight-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-year {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    opacity: 0.5;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.highlight-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.75;
    margin: 0;
}

/* ============================================
   VAULT SECTION
   ============================================ */

.vault-section {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.vault-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.vault-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
}

.vault-item.featured-vault {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.vault-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.vault-item.featured-vault .vault-image-container {
    aspect-ratio: auto;
}

.vault-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vault-item:hover .vault-img {
    transform: scale(1.05);
}

.vault-stamp {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.vault-stamp.highlight {
    border-color: rgba(255, 255, 255, 0.6);
}

.vault-info {
    padding: 2rem;
}

.vault-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vault-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
}

.vault-year {
    font-size: 0.8rem;
    opacity: 0.5;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.vault-description {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 1.5rem;
}

.vault-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================
   STUDIO SECTION
   ============================================ */

.studio-section {
    padding: 8rem 0;
}

.studio-showcase {
    display: grid;
    gap: 3rem;
}

.studio-feature {
    position: relative;
    height: 600px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.studio-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.7) 60%,
        transparent 100%
    );
}

.studio-caption {
    max-width: 600px;
}

.caption-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.caption-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
}

.caption-text {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.caption-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.studio-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.studio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.studio-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.studio-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.studio-card:hover .studio-card-img {
    transform: scale(1.08);
}

.studio-card-info {
    padding: 1.5rem;
}

.studio-year {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    opacity: 0.5;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.studio-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

.studio-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
    margin: 0;
}

/* ============================================
   PERSONAL SECTION
   ============================================ */

.personal-section {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.01);
}

.personal-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.personal-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease;
}

.personal-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.personal-item.span-wide {
    grid-column: span 2;
}

.personal-item.span-tall {
    grid-row: span 2;
}

.personal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.4s ease;
}

.personal-item:hover .personal-img {
    transform: scale(1.1);
    opacity: 0.6;
}

.personal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 70%,
        transparent 100%
    );
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.personal-item:hover .personal-caption {
    transform: translateY(0);
}

.personal-caption h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.personal-caption p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}

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

.archive-footer-modern {
    margin-top: 10rem;
    padding: 4rem 4rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin: 0 0 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.6;
    margin: 0;
    font-style: italic;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
    color: white;
    text-decoration: none;
}

.footer-link:hover {
    opacity: 1;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    font-size: 0.8rem;
    opacity: 0.5;
    margin: 0.5rem 0;
    letter-spacing: 0.05em;
}

.footer-copyright {
    opacity: 0.3 !important;
    font-size: 0.75rem !important;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1200px) {
    .archive-container {
        padding: 0 2rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .featured-img {
        height: 500px;
    }

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

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

    .gallery-large,
    .gallery-tall {
        min-height: 400px;
    }

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

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

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        grid-template-columns: 1fr 1.5fr;
    }

    .vault-grid {
        grid-template-columns: 1fr;
    }

    .vault-item.featured-vault {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

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

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

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .archive-container {
        padding: 0 1.5rem;
    }

    .back-to-hub {
        top: 1.5rem;
        left: 1.5rem;
        padding: 0.8rem 1.2rem;
    }

    .back-text {
        font-size: 0.7rem;
    }

    .quick-jump {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .jump-toggle {
        width: 50px;
        height: 50px;
    }

    .archive-hero-full {
        height: 80vh;
        min-height: 400px;
    }

    .hero-main-title {
        font-size: 3.5rem;
    }

    .featured-moment {
        padding: 5rem 0;
    }

    .featured-img {
        height: 350px;
    }

    .featured-caption {
        flex-direction: column;
        gap: 1rem;
        left: 1rem;
        bottom: 1rem;
    }

    .timeline-section,
    .vault-section,
    .studio-section,
    .personal-section {
        padding: 5rem 0;
    }

    .era-block {
        margin-bottom: 6rem;
    }

    .gallery-large,
    .gallery-tall,
    .gallery-wide {
        min-height: 300px;
        height: auto;
    }

    .gallery-stack {
        flex-direction: row;
    }

    .gallery-album {
        aspect-ratio: 1 / 1;
    }

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

    .album-grid-2x2 {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        grid-template-columns: 1fr;
    }

    .highlight-image {
        aspect-ratio: 16 / 9;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.3) 60%,
            transparent 100%
        );
    }

    .vault-image-container {
        aspect-ratio: 16 / 10;
    }

    .studio-grid-small {
        grid-template-columns: 1fr;
    }

    .studio-feature {
        height: 450px;
    }

    .studio-caption-overlay {
        padding: 2rem 1.5rem;
    }

    .caption-stats {
        gap: 2rem;
    }

    .personal-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .personal-item.span-wide,
    .personal-item.span-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .personal-caption {
        transform: translateY(0);
    }

    .archive-footer-modern {
        padding: 3rem 1.5rem 2rem;
    }

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

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .back-to-hub {
        top: 1rem;
        left: 1rem;
        padding: 0.7rem 1rem;
    }

    .back-icon {
        width: 16px;
        height: 16px;
    }

    .archive-hero-full {
        height: 70vh;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .scroll-indicator {
        display: none;
    }

    .archive-container {
        padding: 0 1rem;
    }

    .featured-img {
        height: 280px;
    }

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

    .album-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .album-info {
        padding: 1rem;
    }

    .album-name {
        font-size: 0.95rem;
    }

    .album-note {
        font-size: 0.75rem;
    }

    .studio-feature {
        height: 350px;
    }

    .studio-caption-overlay {
        padding: 1.5rem 1rem;
    }

    .caption-title {
        font-size: 1.8rem;
    }

    .vault-info {
        padding: 1.5rem;
    }
}