/* ============================================
   THE RITUAL — Photography & AI
   Layout ref: Hans Neumann Studio
   Aesthetic ref: Handcrafted Modern
   ============================================ */

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

:root {
    --black: #2c2420;
    --dark: #4a3f37;
    --grey: #8a7e74;
    --light: #d6cfc7;
    --faint: #ede8e2;
    --cream: #f5f1ec;
    --bg: #faf8f5;
    --white: #fdfcfa;
    --serif: 'EB Garamond', 'Georgia', serif;
    --mono: 'Inconsolata', 'Courier New', monospace;
    --sans: 'Inconsolata', monospace;
    --margin: clamp(20px, 4vw, 64px);
    --narrow: min(640px, 90vw);
    --wide: min(1400px, 94vw);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--serif);
    color: var(--black);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
::selection { background: var(--black); color: var(--white); }


/* ========= HEADER ========= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: baseline;
    padding: 22px var(--margin);
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-left {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.logo {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--black);
}

.site-tagline {
    font-family: var(--serif);
    font-size: 13px;
    font-style: italic;
    color: var(--grey);
    font-weight: 400;
}

.header-center {
    text-align: center;
}

.site-title {
    font-family: var(--serif);
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--black);
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    gap: 24px;
}

.site-nav {
    display: flex;
    gap: 24px;
    align-items: baseline;
}

.site-nav a {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 400;
    color: var(--grey);
    transition: color 0.3s;
    position: relative;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--black);
}

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 18px;
    position: relative;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--black);
    transition: 0.25s;
}

.menu-toggle span:first-child { margin-bottom: 8px; }

.nav-open .menu-toggle span:first-child {
    transform: rotate(45deg) translate(3px, 3px);
}
.nav-open .menu-toggle span:last-child {
    transform: rotate(-45deg) translate(3px, -3px);
}

@media (max-width: 768px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 0;
    }
    .header-center { display: none; }
    .header-left .site-tagline { display: none; }
    .menu-toggle { display: flex; flex-direction: column; justify-content: center; }
    .site-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 75vw; max-width: 300px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 100px 40px;
        gap: 20px;
        transition: right 0.35s ease;
        box-shadow: -4px 0 30px rgba(44, 36, 32, 0.06);
    }
    .site-nav a { font-size: 16px; }
    .nav-open .site-nav { right: 0; }
}


/* ========= HOME ========= */
main.home {
    padding: 100px var(--margin) 60px;
    max-width: var(--wide);
    margin: 0 auto;
}

/* Section label — mono small caps */
.section-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 8px;
}

.section-label .bracket {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--light);
}

/* Filter bar */
.filter-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-items: baseline;
}

.filter-bar .filter-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    margin-right: 12px;
}

.filter-btn {
    background: none;
    border: none;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--grey);
    cursor: pointer;
    padding: 6px 12px;
    transition: all 0.25s;
    border-radius: 0;
}

.filter-btn:hover {
    color: var(--black);
}

.filter-btn.active {
    color: var(--black);
    background: var(--faint);
}

.filter-btn .count {
    font-size: 10px;
    color: var(--light);
    margin-left: 2px;
}

/* --- ASYMMETRIC GRID --- */
.projects {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    row-gap: 48px;
}

/* Alternating sizes — large, medium, small */
.project-card {
    display: block;
    transition: opacity 0.4s;
}

/* Pattern: 1st = span 5, 2nd = span 4, 3rd = span 3 */
.project-card:nth-child(6n+1) { grid-column: span 5; }
.project-card:nth-child(6n+2) { grid-column: span 4; }
.project-card:nth-child(6n+3) { grid-column: span 3; }
/* Row 2: 3, 4, 5 reversed */
.project-card:nth-child(6n+4) { grid-column: span 3; }
.project-card:nth-child(6n+5) { grid-column: span 5; }
.project-card:nth-child(6n+6) { grid-column: span 4; }

.project-img {
    overflow: hidden;
    line-height: 0;
    background: var(--faint);
}

/* Varying aspect ratios */
.project-card:nth-child(6n+1) .project-img { aspect-ratio: 4 / 5; }
.project-card:nth-child(6n+2) .project-img { aspect-ratio: 3 / 4; }
.project-card:nth-child(6n+3) .project-img { aspect-ratio: 1 / 1; }
.project-card:nth-child(6n+4) .project-img { aspect-ratio: 3 / 4; }
.project-card:nth-child(6n+5) .project-img { aspect-ratio: 4 / 5; }
.project-card:nth-child(6n+6) .project-img { aspect-ratio: 1 / 1; }

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.project-card:hover .project-img img {
    transform: scale(1.025);
}

.project-meta {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.project-number {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--light);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.project-title {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.3;
}

.project-client {
    font-family: var(--serif);
    font-size: 14px;
    font-style: italic;
    color: var(--grey);
}

.project-detail {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 300;
    color: var(--light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .projects {
        grid-template-columns: repeat(6, 1fr);
        row-gap: 36px;
    }
    .project-card:nth-child(6n+1) { grid-column: span 3; }
    .project-card:nth-child(6n+2) { grid-column: span 3; }
    .project-card:nth-child(6n+3) { grid-column: span 3; }
    .project-card:nth-child(6n+4) { grid-column: span 3; }
    .project-card:nth-child(6n+5) { grid-column: span 3; }
    .project-card:nth-child(6n+6) { grid-column: span 3; }
}

@media (max-width: 540px) {
    .projects {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
    .project-card:nth-child(n) { grid-column: span 1; }
    .project-card:nth-child(n) .project-img { aspect-ratio: 4 / 5; }
}


/* ========= PROJECT PAGE ========= */
.project-page {
    padding: 110px var(--margin) 60px;
    max-width: var(--wide);
    margin: 0 auto;
}

.project-header {
    max-width: 680px;
    margin-bottom: 56px;
}

.back-link {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--light);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 28px;
    transition: color 0.25s;
}

.back-link:hover {
    color: var(--black);
}

.project-header h1 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--black);
}

.project-info {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    color: var(--grey);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.project-info span {
    padding-right: 16px;
    margin-right: 16px;
    border-right: 1px solid var(--light);
}

.project-info span:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.project-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark);
    max-width: 540px;
}

/* Project photos — mixed widths */
.project-photos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
}

.project-photo {
    line-height: 0;
    width: 100%;
}

.project-photo:nth-child(3n+2) {
    width: 75%;
    margin-left: auto;
}

.project-photo:nth-child(3n+3) {
    width: 85%;
    margin-right: auto;
}

.project-photo img {
    width: 100%;
    height: auto;
}

.project-video-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--black);
    margin-bottom: 48px;
}

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

/* Project navigation */
.project-nav {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 0;
    margin-top: 56px;
    border-top: 1px solid var(--light);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.project-nav a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: color 0.25s;
}

.project-nav a:hover { color: var(--grey); }

.project-nav small {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light);
}

.project-nav span {
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
}

.nav-next { text-align: right; }


/* ========= ABOUT ========= */
.about-page {
    padding: 130px var(--margin) 80px;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.about-portrait { width: 100%; }
.about-portrait img { width: 100%; }

.about-right .section-label {
    margin-bottom: 24px;
}

.about-text {
    font-size: 18px;
    line-height: 1.85;
    color: var(--dark);
    margin-bottom: 48px;
}

.about-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--light);
}

.about-contact a {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--grey);
    transition: color 0.25s;
}

.about-contact a:hover { color: var(--black); }

@media (max-width: 700px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-portrait { max-width: 340px; }
}


/* ========= CONTACT ========= */
.contact-page {
    padding: 130px var(--margin) 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.contact-content {
    max-width: var(--narrow);
    margin: 0 auto;
    width: 100%;
}

.contact-content h1 {
    font-family: var(--serif);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--black);
    line-height: 1.1;
}

.contact-intro {
    font-size: 16px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 48px;
    font-family: var(--serif);
    font-style: italic;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 0;
    border-top: 1px solid var(--light);
    transition: padding-left 0.3s;
}

.contact-link:last-child {
    border-bottom: 1px solid var(--light);
}

.contact-link:hover { padding-left: 8px; }

.contact-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light);
}

.contact-link span:last-child {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--black);
}


/* ========= SHOP ========= */
.shop-page {
    padding: 110px var(--margin) 80px;
    max-width: var(--wide);
    margin: 0 auto;
}

.shop-header {
    margin-bottom: 56px;
    max-width: var(--narrow);
}

.shop-header h1 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    margin-bottom: 12px;
}

.shop-header p {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.75;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
}

.shop-item { cursor: pointer; }

.shop-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.shop-item:hover img { transform: scale(1.01); }

.shop-item-info {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.shop-item-title {
    font-family: var(--serif);
    font-size: 15px;
}

.shop-item-price {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--grey);
    letter-spacing: 0.5px;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(44, 36, 32, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal.open { opacity: 1; pointer-events: auto; }

.modal-content {
    background: var(--bg);
    max-width: 900px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
}

@media (max-width: 700px) {
    .modal-content { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
    .modal { padding: 16px; }
}

.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 10;
    background: none; border: none;
    font-size: 24px; cursor: pointer;
    color: var(--grey);
    transition: color 0.25s;
}

.modal-close:hover { color: var(--black); }

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

.modal-info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.modal-info h2 { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.modal-info p { font-size: 15px; color: var(--dark); line-height: 1.75; }

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--grey);
    letter-spacing: 0.5px;
}

.inquiry-btn {
    display: inline-block;
    margin-top: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border: 1px solid var(--black);
    color: var(--black);
    text-align: center;
    transition: 0.25s;
}

.inquiry-btn:hover {
    background: var(--black);
    color: var(--white);
}


/* ========= FOOTER ========= */
.site-footer {
    padding: 28px var(--margin);
    border-top: 1px solid var(--light);
    margin-top: 48px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--grey);
    transition: color 0.25s;
}

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


/* ========= UTILITIES ========= */
.empty-state {
    text-align: center;
    padding: 120px 0;
    font-family: var(--mono);
    font-size: 12px;
    color: var(--grey);
    letter-spacing: 1px;
}

/* Scroll reveal — only activates when JS adds .reveal-ready to body */
body.reveal-ready .project-photo,
body.reveal-ready .project-card,
body.reveal-ready .shop-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

body.reveal-ready .project-photo.visible,
body.reveal-ready .project-card.visible,
body.reveal-ready .shop-item.visible {
    opacity: 1;
    transform: translateY(0);
}

@media print {
    .site-header, .site-footer, .filter-bar, .project-nav { display: none; }
    body { background: #fff; }
    main { padding-top: 20px !important; }
}


/* ========= DISCOVER LINK (HOME FILTER BAR) ========= */
.shuffle-link {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--grey);
    margin-left: auto;
    padding: 6px 14px;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: all 0.25s;
}

.shuffle-link:hover {
    color: var(--black);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}


/* ========= VIDEO PAGE ========= */
.video-page {
    padding: 110px var(--margin) 60px;
    max-width: var(--wide);
    margin: 0 auto;
}

.video-project {
    margin-bottom: 56px;
}

.video-project-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 16px;
}

.video-num {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--light);
    letter-spacing: 1px;
}

.video-project-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--black);
    transition: color 0.25s;
}

.video-project-title:hover {
    color: var(--grey);
}

.video-client {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--grey);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.video-stills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

@media (max-width: 600px) {
    .video-stills { grid-template-columns: 1fr 1fr; }
}

.video-still {
    overflow: hidden;
    line-height: 0;
    position: relative;
    cursor: pointer;
}

.video-still img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.3s;
}

.video-still:hover img {
    transform: scale(1.03);
    opacity: 0.85;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 36, 32, 0.2);
    opacity: 0;
    transition: opacity 0.3s;
}

.video-still:hover .play-overlay {
    opacity: 1;
}

.play-overlay span {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--black);
    padding-left: 3px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--black);
}

.video-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.video-separator {
    width: 40px;
    height: 1px;
    background: var(--light);
    margin: 48px auto;
}


/* ========= DISCOVER / COLLAGE ========= */
.discover-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.shuffle-btn {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid var(--black);
    background: none;
    cursor: pointer;
    transition: 0.25s;
    color: var(--black);
    text-decoration: none;
}

.shuffle-btn:hover {
    background: var(--black);
    color: var(--white);
}

.collage {
    columns: 3;
    column-gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) { .collage { columns: 2; } }
@media (max-width: 500px) { .collage { columns: 1; max-width: 440px; } }

.collage-item {
    break-inside: avoid;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    line-height: 0;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.collage-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.collage-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.collage-item:hover img {
    transform: scale(1.02);
}

.collage-item .caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 14px 10px;
    background: linear-gradient(transparent, rgba(44,36,32,0.5));
    opacity: 0;
    transition: opacity 0.3s;
}

.collage-item:hover .caption {
    opacity: 1;
}

.caption span {
    font-family: var(--mono);
    font-size: 10px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ========= LIGHTBOX ========= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(44, 36, 32, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 28px;
    background: none; border: none;
    font-size: 32px; color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.lightbox-close:hover { color: #fff; }

.lightbox img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
}

.lightbox-info {
    margin-top: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lightbox-info span {
    font-family: var(--serif);
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.lightbox-info a {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.lightbox-info a:hover { color: #fff; }


/* ========= UTILITY ========= */
.hidden { display: none !important; }
