*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --text-primary: #e8e4df;
    --text-secondary: #8a857e;
    --text-muted: #5a5650;
    --accent: #c4956a;
    --accent-dim: #a07a56;
    --accent-glow: rgba(196, 149, 106, 0.12);
    --border: #222222;
    --border-light: #2a2a2a;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --radius: 2px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

    nav.scrolled {
        border-bottom-color: var(--border);
    }

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    text-decoration: none;
}

    .nav-brand span {
        color: var(--accent);
        font-style: italic;
        font-weight: 300;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

    .nav-links a {
        font-size: 0.8rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--text-secondary);
        text-decoration: none;
        transition: color var(--transition);
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width var(--transition);
        }

        .nav-links a:hover {
            color: var(--text-primary);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

        .nav-links a.active {
            color: var(--accent);
        }

            .nav-links a.active::after {
                width: 100%;
            }

        .nav-links {
            display: flex;
        }

/* ========== HAMBURGER BUTTON ========== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

    .nav-hamburger span {
        display: block;
        width: 100%;
        height: 1.5px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    .nav-hamburger.is-open span:nth-child(1) {
        transform: translateY(8.25px) rotate(45deg);
    }

    .nav-hamburger.is-open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-hamburger.is-open span:nth-child(3) {
        transform: translateY(-8.25px) rotate(-45deg);
    }

/* ========== MOBILE MENU ========== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: all;
    }

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

    .mobile-nav-links a {
        font-family: var(--font-display);
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: 0.06em;
        color: var(--text-secondary);
        text-decoration: none;
        transition: color var(--transition);
    }

        .mobile-nav-links a:hover,
        .mobile-nav-links a.active {
            color: var(--accent);
        }

@media (max-width: 550px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('https://img.jkenny.photography/IMG_9485.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
} 

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 30%, rgba(10, 10, 10, 0.2) 60%, rgba(10, 10, 10, 0.15) 100% );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2.5rem 5rem;
    max-width: 700px;
    animation: fadeUp 1.2s ease-out 0.3s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .hero-label::before {
        content: '';
        width: 30px;
        height: 1px;
        background: var(--accent);
    }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

    .hero h1 em {
        font-style: italic;
        color: var(--accent);
    }

.hero p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 520px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeUp 1.2s ease-out 0.8s both;
}

    .scroll-indicator span {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-muted);
        writing-mode: vertical-rl;
    }

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--text-muted);
    position: relative;
    overflow: hidden;
}

    .scroll-line::after {
        content: '';
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--accent);
        animation: scrollPulse 2s ease-in-out infinite;
    }

@keyframes scrollPulse {
    0% {
        top: -100%;
    }

    50% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

/* ========== SECTION COMMON ========== */
section {
    padding: 6rem 2.5rem;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
    line-height: 1.2;
}

.section-link {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition);
}

    .section-link:hover {
        gap: 0.85rem;
    }

    .section-link svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }

/* ========== FEATURED / FAVOURITES ========== */
.favourites {
    background: var(--bg-primary);
}

.favourites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 6px;
}

.fav-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius);
}

    .fav-item.span-2 {
        grid-column: span 2;
    }

    .fav-item.tall {
        grid-row: span 2;
    }

    .fav-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .fav-item:hover img {
        transform: scale(1.04);
    }

.fav-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.fav-item:hover .fav-item-overlay {
    opacity: 1;
}

.fav-item-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: white;
}

/* ========== TAGS / FILTER BAR ========== */
.tags-bar {
    padding: 0 2.5rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.tags-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.tags-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-right: 0.75rem;
}

.tag-pill {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

    .tag-pill:hover {
        color: var(--text-primary);
        border-color: var(--text-muted);
    }

    .tag-pill.active {
        color: var(--accent);
        border-color: var(--accent);
        background: var(--accent-glow);
    }

    .tag-pill {
        display: none;
    }

/* ========== LATEST COLLECTIONS ========== */
.collections {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
}

.collection-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

    .collection-card:hover {
        background: var(--bg-card-hover);
        border-color: var(--border-light);
        transform: translateY(-2px);
    }

.collection-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

    .collection-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

.collection-card:hover .collection-card-image img {
    transform: scale(1.03);
}

.collection-photo-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

    .collection-photo-count svg {
        width: 12px;
        height: 12px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }

.collection-card-body {
    padding: 1.5rem;
}

.collection-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.65rem;
}

.collection-date {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.collection-type {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--accent-dim);
    border-radius: 100px;
    opacity: 0.8;
}

.collection-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.collection-location {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

    .collection-location svg {
        width: 13px;
        height: 13px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
    }

.collection-tags {
    display: flex;
    gap: 0.4rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.collection-tag {
    font-size: 0.65rem;
    color: var(--text-muted);
    padding: 0.2rem 0.55rem;
    border: 1px solid var(--border-light);
    border-radius: 100px;
}

/* ========== COLLECTION DETAIL / GALLERY VIEW ========== */
.collection-detail {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.collection-detail-header {
    max-width: 700px;
    margin-bottom: 3rem;
}

    .collection-detail-header .collection-meta {
        margin-bottom: 1rem;
    }

.collection-detail-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 0.75rem;
    line-height: 1.15;
}

.collection-detail-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 600px;
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    margin: 0 -2.5rem;
    padding: 0 2.5rem;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2rem;
}

    .gallery-track::-webkit-scrollbar {
        display: none;
    }

.gallery-item {
    flex: 0 0 auto;
    height: 65vh;
    min-height: 400px;
    max-height: 700px;
    scroll-snap-align: center;
    position: relative;
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
}

    .gallery-item img {
        height: 100%;
        width: auto;
        max-width: none;
        display: block;
        transition: filter 0.4s ease;
    }

    .gallery-item:hover img {
        filter: brightness(1.05);
    }

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-info {
    opacity: 1;
}

.gallery-item-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: white;
    margin-bottom: 0.25rem;
}

.gallery-item-exif {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
}

/* Gallery navigation arrows */
.gallery-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

    .gallery-nav-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    .gallery-nav-btn svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }

.gallery-counter {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    font-variant-numeric: tabular-nums;
}

/* ========== EXIF PANEL (shown when image is selected) ========== */
.exif-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem 3rem;
    align-items: start;
}

.exif-panel-title {
    grid-column: 1 / -1;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.exif-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.exif-item {
}

.exif-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.exif-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

    .exif-value .camera-icon {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

        .exif-value .camera-icon svg {
            width: 15px;
            height: 15px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
        }

#lb-icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.device-icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

/* ========== NEWSLETTER ========== */
.newsletter {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    text-align: center;
    padding: 5rem 2.5rem;
}

.newsletter-inner {
    max-width: 520px;
    margin: 0 auto;
}

.newsletter .section-label {
    margin-bottom: 0.5rem;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.newsletter-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 420px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.85rem 1.15rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition);
}

    .newsletter-input::placeholder {
        color: var(--text-muted);
    }

    .newsletter-input:focus {
        border-color: var(--accent-dim);
    }

.newsletter-btn {
    padding: 0.85rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--bg-primary);
    background: var(--accent);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

    .newsletter-btn:hover {
        background: var(--accent-dim);
    }

.newsletter-privacy {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* ========== FOOTER ========== */
footer {
    padding: 3rem 2.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

    .footer-socials a {
        color: var(--text-muted);
        transition: color var(--transition);
    }

        .footer-socials a:hover {
            color: var(--accent);
        }

    .footer-socials svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

    footer {
        padding: 3rem 2.5rem;
        border-top: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-left {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .footer-socials {
        display: flex;
        gap: 1.25rem;
    }

        .footer-socials a {
            color: var(--text-muted);
            transition: color var(--transition);
        }

            .footer-socials a:hover {
                color: var(--accent);
            }

        .footer-socials svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.96);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    animation: lbFadeIn 0.3s ease;
}

    .lightbox.active {
        display: flex;
    }

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 10;
}

    .lightbox-close:hover {
        border-color: white;
    }

    .lightbox-close svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }

.lightbox-image {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-exif-bar {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    flex-wrap: wrap;
    justify-content: center;
}

.lightbox-exif-item {
    text-align: center;
}

.lightbox-exif-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.2rem;
}

.lightbox-exif-value {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    font-variant-numeric: tabular-nums;
}

    .lightbox-exif-value .camera-icon {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

        .lightbox-exif-value .camera-icon svg {
            width: 15px;
            height: 15px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
        }

.device-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* ========== DIVIDER ========== */
.section-divider {
    width: 40px;
    height: 1px;
    background: var(--accent-dim);
    margin: 0 auto;
    opacity: 0.5;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .favourites-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .nav-links {
        gap: 1.25rem;
    }

        .nav-links a {
            font-size: 0.7rem;
        }

    .favourites-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .fav-item.span-2 {
        grid-column: span 2;
    }

    .fav-item.tall {
        grid-row: span 1;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 50vh;
        min-height: 300px;
    }

    .exif-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .tags-bar {
        padding: 0 1.5rem;
    }

    .lightbox-exif-bar {
        gap: 1rem;
    }

    footer {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .favourites-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .fav-item.span-2 {
        grid-column: span 1;
    }
}

/* ========== PAGE SECTIONS LABEL ========== */
.page-section-indicator {
    position: fixed;
    bottom: 2rem;
    left: 2.5rem;
    z-index: 50;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.4;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* ========== MOCKUP SECTION LABELS (for presentation) ========== */
.mockup-label {
    text-align: center;
    padding: 3rem 2rem 1rem;
    background: var(--bg-primary);
}

.mockup-label-text {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.5rem 1.25rem;
    border: 1px dashed var(--accent-dim);
    border-radius: 100px;
    opacity: 0.7;
}

.device-icon {
    width: 24px;
    height: 24px;
    color: #fff /* inherits via currentColor */
}