/* Reset & Base for Voyage Page */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}
body {
    margin: 0;
    background-color: var(--v-bg);
    color: var(--v-text);
    font-family: var(--v-font-body);
    -webkit-font-smoothing: antialiased;
}

/* Typography Resets */
h1, h2, h3, p { margin: 0; }
a { text-decoration: none; }

.v-main {
    width: 100%;
}

/* ==================== */
/* ANIMATION KEYFRAMES  */
/* ==================== */
@keyframes smoothReveal {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ==================== */
/* HERO SECTION         */
/* ==================== */
.v-hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 6vw;
    overflow: hidden;
}

.v-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
}

.v-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.1);
}

.v-hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
    padding-top: 5vh;
}

.v-kicker {
    font-family: var(--v-font-meta);
    color: var(--v-accent);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    opacity: 0;
    animation: smoothReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.v-title {
    font-family: var(--v-font-title);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1; /* Giving slight breathing room */
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    letter-spacing: -0.04em;
    color: var(--v-text);
    opacity: 0;
    animation: smoothReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.v-italic {
    font-family: var(--v-font-serif);
    font-size: clamp(3.5rem, 9vw, 7rem);
    color: var(--v-accent);
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
    display: block;
    margin-top: -0.2rem;
    margin-bottom: 0.2rem;
}

.v-desc {
    font-family: var(--v-font-meta);
    color: var(--v-muted);
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    max-width: 500px;
    line-height: 1.5;
    margin-top: 1.5rem;
    opacity: 0;
    animation: smoothReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* ==================== */
/* STATS SECTION        */
/* ==================== */
.v-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--v-panel);
    border-top: 1px solid var(--v-border);
    border-bottom: 1px solid var(--v-border);
    padding: 1.5rem 0;
    opacity: 0;
    animation: smoothReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.v-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    text-align: center;
}

.v-stat-num {
    font-family: var(--v-font-title);
    font-size: 2rem;
    font-weight: 700;
    color: var(--v-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.v-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--v-muted);
    text-transform: uppercase;
    font-family: var(--v-font-meta);
    font-weight: 600;
}

.v-stat-divider {
    width: 1px;
    height: 30px;
    background-color: var(--v-border);
}

/* ==================== */
/* FEATURED SECTION     */
/* ==================== */
.v-featured {
    padding: 5rem 6vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.v-feat-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.v-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
    transition: filter 0.8s ease, transform 0.8s ease;
    transform: scale(1.05);
}

.v-feat-img:hover img {
    filter: grayscale(0%) contrast(1.0);
    transform: scale(1.02);
}

.v-feat-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(4px);
    color: var(--v-text);
    font-family: var(--v-font-meta);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
}

.v-feat-content {
    display: flex;
    flex-direction: column;
}

.v-feat-kicker {
    color: var(--v-accent);
    font-family: var(--v-font-meta);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.v-feat-title {
    font-family: var(--v-font-title);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: var(--v-text);
    letter-spacing: -0.04em;
}

.v-feat-year {
    color: var(--v-accent);
    font-family: var(--v-font-serif);
    font-style: italic;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.v-feat-desc {
    color: var(--v-muted);
    font-family: var(--v-font-meta);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.v-feat-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    color: var(--v-text);
    font-family: var(--v-font-meta);
}

.v-feat-meta-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.v-feat-meta-item svg {
    color: var(--v-accent);
}

.v-feat-btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--v-accent);
    background: transparent;
    color: var(--v-accent);
    text-decoration: none;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-family: var(--v-font-meta);
    font-weight: 600;
    border-radius: 4px;
}

.v-feat-btn:hover {
    background-color: var(--v-accent);
    color: var(--v-bg);
}

/* ==================== */
/* ARCHIVE BENTO GRID   */
/* ==================== */
.v-archive {
    padding: 0 6vw 6rem;
    max-width: 1400px;
    margin: 0 auto;
}

.v-arch-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.v-arch-kicker {
    color: var(--v-accent);
    font-family: var(--v-font-meta);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.v-arch-title {
    font-family: var(--v-font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    font-style: italic;
    font-weight: 700;
    margin: 0;
    color: var(--v-text);
}

.v-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
}

.bento-tile {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    border-radius: 6px;
}

.bento-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: brightness(0.6);
}

.bento-tile:hover img {
    transform: scale(1.06);
    filter: brightness(0.85);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 80%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
}

.bento-year {
    font-family: var(--v-font-meta);
    font-size: 0.7rem;
    color: var(--v-accent);
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.bento-title {
    font-family: var(--v-font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 0.4rem 0;
}

.bento-loc {
    font-family: var(--v-font-meta);
    font-size: 0.65rem;
    color: var(--v-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.bento-tall {
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
}

/* ==================== */
/* MEDIA QUERIES        */
/* ==================== */
@media(max-width: 1100px) {
    .v-featured {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 700px;
    }
    .v-feat-img { aspect-ratio: 16/9; }
}

@media(max-width: 900px) {
    .v-stats { flex-direction: column; gap: 2rem; padding: 2rem 0; }
    .v-stat-divider { width: 50px; height: 1px; }
    
    .v-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px; 
    }
    .bento-tall, .bento-wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

@media(max-width: 480px) {
    .v-hero {
        padding: 0 1rem;
        text-align: center;
        min-height: 400px;
    }
    
    .v-title {
        font-size: clamp(2.5rem, 12vw, 3rem);
    }
    
    .v-italic {
        font-size: clamp(3rem, 14vw, 3.5rem);
    }
    
    .v-desc {
        margin: 1.5rem auto 0;
        font-size: 0.9rem;
    }
    
    .v-featured {
        padding: 3rem 1rem;
        gap: 2rem;
    }
    
    .v-feat-img {
        border-radius: 0;
    }
    
    .v-archive {
        padding: 0 1rem 4rem;
    }
    
    .v-arch-title {
        font-size: 2rem;
    }
}