/* ========================================
   CUSTOM CURSOR
   ======================================== */

/* Hide native cursor on desktop only */
@media (pointer: fine) {
    *,
    *::before,
    *::after {
        cursor: none !important;
    }
}

/* Cursor dot - precise center point */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--white, #ffffff);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
    will-change: transform;
    opacity: 0;
}

.cursor-dot.is-visible {
    opacity: 1;
}

.cursor-dot.is-link {
    opacity: 0;
    width: 0;
    height: 0;
}

.cursor-dot.is-bento {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Cursor ring - delayed follower */
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition:
        width 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
        height 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
        border-color 0.3s ease,
        background-color 0.3s ease,
        opacity 0.2s ease;
    mix-blend-mode: difference;
    will-change: transform;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.cursor-ring.is-visible {
    opacity: 1;
}

/* "VIEW" text inside ring */
.cursor-text {
    font-family: var(--font-sans, 'Outfit', sans-serif);
    font-size: 0;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white, #ffffff);
    opacity: 0;
    transition: font-size 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* Link hover state: ring expands slightly, border brightens */
.cursor-ring.is-link {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.06);
}

/* Bento item hover state: ring expands large with VIEW text */
.cursor-ring.is-bento {
    width: 100px;
    height: 100px;
    border-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.05);
}

.cursor-ring.is-bento .cursor-text {
    font-size: 0.6rem;
    opacity: 1;
}

/* Lightbox state: smaller ring, subtle */
.cursor-ring.is-lightbox {
    width: 50px;
    height: 50px;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hide custom cursor on touch/mobile */
@media (pointer: coarse), (hover: none) {
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
}

/* ========================================
   RESET & VARIABLES
   ======================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #000000;
    --fg: #e8e8e8;
    --fg-muted: rgba(232, 232, 232, 0.5);
    --fg-faint: rgba(232, 232, 232, 0.2);
    --fg-ghost: rgba(232, 232, 232, 0.08);
    --font-display: 'Bodoni Moda', 'Didot', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(232, 232, 232, 0.1) var(--bg);
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
    cursor: pointer;
}

input,
textarea {
    font-family: inherit;
    border: none;
    background: none;
    color: inherit;
    outline: none;
}

/* ========================================
   FILM GRAIN OVERLAY
   ======================================== */

.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

/* ========================================
   SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--fg-faint);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--fg-muted);
}

/* ========================================
   NAVIGATION
   ======================================== */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference;
}

.nav-logo {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    color: var(--fg);
    text-decoration: none;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.nav-logo:hover {
    opacity: 0.6;
}

/* Hamburger toggle */
.nav-toggle {
    position: relative;
    z-index: 1001;
    width: 32px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--fg);
    transition: transform 0.5s var(--ease), opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.is-open span:first-child {
    transform: translateY(9.25px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
    transform: translateY(-9.25px) rotate(-45deg);
}

/* ========================================
   FULL-SCREEN OVERLAY MENU
   ======================================== */

#menuOverlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 6rem 6vw;
    clip-path: circle(0% at calc(100% - 3.5rem) 2.8rem);
    transition: clip-path 0.9s var(--ease);
    visibility: hidden;
}

#menuOverlay.is-open {
    clip-path: circle(150% at calc(100% - 3.5rem) 2.8rem);
    visibility: visible;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-link {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3rem, 15vw, 12rem);
    line-height: 1;
    color: var(--fg);
    text-decoration: none;
    position: relative;
    padding-left: 2.5rem;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), color 0.3s ease;
}

.menu-link::before {
    content: attr(data-index);
    position: absolute;
    left: 0;
    top: 0.3em;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--fg-muted);
}

.menu-link:hover {
    color: var(--fg-muted);
}

#menuOverlay.is-open .menu-link {
    opacity: 1;
    transform: translateY(0);
}

#menuOverlay.is-open .menu-link:nth-child(1) { transition-delay: 0.15s; }
#menuOverlay.is-open .menu-link:nth-child(2) { transition-delay: 0.25s; }
#menuOverlay.is-open .menu-link:nth-child(3) { transition-delay: 0.35s; }
#menuOverlay.is-open .menu-link:nth-child(4) { transition-delay: 0.45s; }
#menuOverlay.is-open .menu-link:nth-child(5) { transition-delay: 0.55s; }

.menu-footer {
    position: absolute;
    bottom: 3rem;
    left: 6vw;
    right: 6vw;
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid var(--fg-ghost);
    padding-top: 2rem;
}

.menu-footer a {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--fg-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-footer a:hover {
    color: var(--fg);
}

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

#hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0 6vw 8vh;
}

.hero-bg {
    position: absolute;
    inset: -5%;
    z-index: -1;
    background: url('../images/hero.jpg') center/cover no-repeat;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.25;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 40%,
        rgba(0, 0, 0, 0.5) 75%,
        rgba(0, 0, 0, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--fg-muted);
    margin-bottom: 2rem;
    opacity: 0;
    animation: heroFadeIn 1s var(--ease) 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(5rem, 13vw, 15rem);
    line-height: 0.88;
    letter-spacing: -0.03em;
    user-select: none;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
    animation: heroLineReveal 1.4s var(--ease) forwards;
}

.hero-line:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-line:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-line-indent {
    margin-left: clamp(3rem, 15vw, 18rem);
}

.hero-location {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--fg-faint);
    margin-top: 3rem;
    opacity: 0;
    animation: heroFadeIn 1s var(--ease) 1s forwards;
}

/* Hero scroll indicator - bottom right */
.hero-scroll {
    position: absolute;
    bottom: 8vh;
    right: 6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: heroFadeIn 1s var(--ease) 1.4s forwards;
}

.hero-scroll span {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--fg-muted);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--fg-muted), transparent);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--fg);
    animation: scrollLine 2s var(--ease) infinite;
}

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

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

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    50.01% { top: -100%; }
    100% { top: 100%; }
}

/* ========================================
   FEATURED FILM STRIP
   ======================================== */

#featured {
    padding: 10rem 0 8rem;
    overflow: hidden;
}

.strip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6vw;
    margin-bottom: 3rem;
}

.strip-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--fg-muted);
}

.strip-drag {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--fg-faint);
}

.film-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 6vw;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.film-strip::-webkit-scrollbar {
    display: none;
}

.film-strip:active {
    cursor: grabbing;
}

.film-item {
    flex: 0 0 auto;
    min-width: 70vw;
    aspect-ratio: 3 / 2;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
}

.film-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: transform 0.8s var(--ease), filter 0.6s ease;
}

.film-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.film-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.6s var(--ease);
}

.film-item:hover .film-item-info {
    transform: translateY(0);
}

.film-item-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--fg);
}

.film-item-location {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--fg-muted);
    margin-top: 0.4rem;
}

@media (min-width: 768px) {
    .film-item {
        min-width: 35vw;
    }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    padding: 0 6vw;
    margin-bottom: 4rem;
}

.section-number {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--fg-faint);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--fg);
}

/* ========================================
   WORK / BENTO GRID
   ======================================== */

#work {
    padding: 8rem 6vw;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    grid-auto-rows: 280px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.8s var(--ease), filter 0.6s ease;
}

.bento-item:hover img {
    transform: scale(1.04);
    filter: brightness(1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0) 50%
    );
    opacity: 0;
    transition: opacity 0.5s var(--ease);
    pointer-events: none;
}

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

.bento-overlay-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    color: var(--fg);
    transform: translateY(12px);
    transition: transform 0.5s var(--ease);
}

.bento-item:hover .bento-overlay-title {
    transform: translateY(0);
}

.bento-overlay-location {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--fg-muted);
    margin-top: 0.3rem;
    transform: translateY(12px);
    transition: transform 0.5s var(--ease) 0.05s;
}

.bento-item:hover .bento-overlay-location {
    transform: translateY(0);
}

/* Bento responsive grid */
@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 320px;
    }

    .bento-item.size-2x2 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-item.size-2x1 {
        grid-column: span 2;
    }

    .bento-item.size-1x2 {
        grid-row: span 2;
    }
}

@media (min-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   ABOUT
   ======================================== */

#about {
    padding: 12rem 6vw;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.about-image {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.05);
}

.about-content {
    max-width: 620px;
}

.about-quote {
    position: relative;
    padding-left: 2rem;
    border-left: 1px solid var(--fg-faint);
}

.about-quote blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.7;
    color: var(--fg);
}

.about-bio {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--fg-muted);
    margin-top: 3rem;
}

.about-link {
    display: inline-block;
    margin-top: 3rem;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--fg-muted);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.about-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--fg-faint);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.about-link:hover {
    color: var(--fg);
}

.about-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* About desktop: asymmetric side-by-side */
@media (min-width: 900px) {
    .about-container {
        flex-direction: row;
        align-items: stretch;
        gap: 6vw;
    }

    .about-image {
        width: 55%;
        flex-shrink: 0;
        height: auto;
        min-height: 70vh;
    }

    .about-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* ========================================
   CONTACT
   ======================================== */

#contact {
    padding: 12rem 6vw;
}

.contact-main {
    max-width: 1200px;
    margin: 0 auto 8rem;
    text-align: center;
}

.contact-cta {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--fg-muted);
    margin-bottom: 2rem;
}

.contact-email {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    color: var(--fg);
    text-decoration: none;
    transition: color 0.4s var(--ease);
}

.contact-email:hover {
    color: var(--fg-muted);
}

/* Contact form */
.contact-form {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--fg-faint);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.form-group:focus-within .form-label {
    color: var(--fg-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    padding: 0.8rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--fg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group textarea {
    resize: none;
}

/* Animated underline */
.form-line {
    position: relative;
    width: 100%;
    height: 1px;
    background: var(--fg-ghost);
}

.form-line-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--fg-muted);
    transition: width 0.6s var(--ease);
}

.form-group:focus-within .form-line-fill {
    width: 100%;
}

.form-error {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: #ef4444;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group.error .form-error {
    opacity: 1;
}

.form-group.error .form-line {
    background: rgba(239, 68, 68, 0.3);
}

/* Submit button */
.form-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border: 1px solid var(--fg-faint);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--fg);
    cursor: pointer;
    transition: all 0.5s var(--ease);
    margin-top: 1rem;
}

.form-submit svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--ease);
}

.form-submit:hover {
    background: var(--fg);
    color: var(--bg);
    border-color: var(--fg);
    letter-spacing: 0.4em;
}

.form-submit:hover svg {
    transform: translateX(4px);
}

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

#footer {
    padding: 3rem 6vw;
    border-top: 1px solid var(--fg-ghost);
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-name {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--fg-muted);
}

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

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--fg-faint);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--fg);
}

.footer-copy {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--fg-faint);
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    z-index: 10;
    background: transparent;
    border: none;
    color: var(--fg-faint);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s var(--ease);
    padding: 1rem;
}

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--fg);
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) translateX(-4px);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) translateX(4px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1536px;
    max-height: 85vh;
    padding: 4rem 5rem;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
}

.lightbox-title {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--fg);
}

.lightbox-location {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--fg-faint);
    margin-top: 0.3rem;
}

.lightbox-counter {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--fg-faint);
}

/* ========================================
   SCROLL REVEAL ANIMATIONS
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
