/* ==========================================
   RESET & BASE
   ========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Georgia', serif;
    background-color: #fff;
    color: #1a1a1a;
    overflow-x: hidden;
    cursor: none;
}
@media (max-width: 900px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none !important; }
}

/* ==========================================
   CUSTOM CURSOR
   ========================================== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, left 0.08s ease, top 0.08s ease;
    mix-blend-mode: difference;
}

body.cursor-hover .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: #fff;
}

/* ==========================================
   PAGE LOADER
   ========================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-text {
    font-family: 'Georgia', serif;
    font-size: 14px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #1a1a1a;
    overflow: hidden;
}

.loader-text span {
    display: inline-block;
    animation: loaderReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    opacity: 0;
    transform: translateY(100%);
}

@keyframes loaderReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.93);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Mobile: faster + simpler reveal, no side translations */
@media (max-width: 900px) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .reveal-left.visible, .reveal-right.visible {
        transform: translateY(0);
    }
    .delay-1, .delay-2, .delay-3, .delay-4, .delay-5, .delay-6 {
        transition-delay: 0s;
    }
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* ==========================================
   HERO TEXT ENTRANCE
   ========================================== */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroLineGrow {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

/* ==========================================
   IMAGE REVEAL WIPE
   ========================================== */
.img-wrap {
    position: relative;
    overflow: hidden;
}

.img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(1);
    transform-origin: right;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

.img-wrap.visible::after {
    transform: scaleX(0);
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 900px) {
    .navbar { backdrop-filter: none; background: rgba(255,255,255,0.98); }
}

.nav-logo {
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #1a1a1a;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1a1a1a;
}

.nav-admin-btn {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    border: 1px solid #ccc;
    padding: 6px 14px;
    border-radius: 3px;
    background: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-admin-btn:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

/* ── Language Switcher ── */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: 10px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    padding: 4px 5px;
    opacity: 0.45;
    transition: opacity 0.2s, color 0.2s;
    line-height: 1;
}

.lang-btn.active {
    opacity: 1;
    color: #1a1a1a;
    font-weight: 700;
}

.lang-btn:hover {
    opacity: 0.8;
}

.lang-sep {
    color: #bbb;
    font-size: 10px;
    line-height: 1;
    user-select: none;
}

/* ── Admin Sidebar ── */
#adminSidebarOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

#adminSidebarOverlay.asb-open {
    opacity: 1;
    pointer-events: all;
}

#adminSidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 340px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 52px 40px 40px;
    box-shadow: -6px 0 40px rgba(0, 0, 0, 0.13);
    transition: right 0.38s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

#adminSidebar.asb-open {
    right: 0;
}

.asb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 1px solid #e0e0e0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.asb-close:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.asb-logo {
    font-family: Georgia, serif;
    font-size: 15px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.asb-sub {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 36px;
}

.asb-lock {
    font-size: 30px;
    margin-bottom: 28px;
    opacity: 0.18;
}

.asb-fg {
    margin-bottom: 14px;
}

.asb-fg label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 7px;
}

.asb-fg input {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 11px 14px;
    font-size: 13px;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s;
    background: #fafafa;
}

.asb-fg input:focus {
    border-color: #1a1a1a;
    background: #fff;
}

.asb-pw {
    position: relative;
}

.asb-pw input {
    padding-right: 42px;
}

.asb-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #bbb;
    transition: color 0.15s;
}

.asb-eye:hover {
    color: #555;
}

.asb-login-btn {
    width: 100%;
    padding: 13px;
    margin-top: 4px;
    background: #1a1a1a;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s;
}

.asb-login-btn:hover {
    background: #333;
}

.asb-login-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.asb-err {
    margin-top: 12px;
    font-size: 11px;
    color: #e05252;
    min-height: 16px;
    line-height: 1.5;
}

.asb-note {
    margin-top: auto;
    padding-top: 20px;
}

.asb-note-divider {
    height: 1px;
    background: #eee;
    margin-bottom: 20px;
}

.asb-note-tagline {
    font-family: 'Georgia', serif;
    font-size: 13px;
    color: #1a1a1a;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.asb-note-item {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.05em;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
}

.asb-note-socials {
    margin-top: 18px;
    display: flex;
    gap: 10px;
}

.asb-social-btn {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 6px 14px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.asb-social-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.asb-note-copy {
    margin-top: 16px;
    font-size: 10px;
    color: #ccc;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: #1a1a1a;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
    display: flex;
}

.mobile-menu a {
    font-size: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1a1a1a;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    animation: heroZoom 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    will-change: transform;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
}

.hero-text h1 {
    font-family: 'Georgia', serif;
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: heroFadeUp 1s ease 0.6s forwards;
}

.hero-name-first {
    border-bottom: 2px solid rgba(255,255,255,0.8);
    padding-bottom: 4px;
}

.hero-text .btn {
    opacity: 0;
    animation: heroFadeUp 1s ease 1s forwards;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid #fff;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.btn:hover {
    background: #fff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* ==========================================
   INTRO SECTION
   ========================================== */
.intro {
    padding: 100px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro h2 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #555;
}

/* ==========================================
   FEATURED GRID
   ========================================== */
.featured {
    padding: 0 20px 80px;
}

/* Bento Grid */
.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 460px 260px;
    gap: 20px;
}

.featured-item {
    overflow: hidden;
    background: #f5f5f5;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.featured-item:hover img {
    transform: scale(1.06);
}

/* Bento placement */
.featured-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; } /* big left — full height */
.featured-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; } /* top mid */
.featured-item:nth-child(3) { grid-column: 3 / 4; grid-row: 1 / 2; } /* top right */
.featured-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2 / 3; } /* bottom mid+right wide */
.featured-item:nth-child(5) { display: none; }
.featured-item:nth-child(6) { display: none; }

/* ==========================================
   FULL WIDTH IMAGE
   ========================================== */
.fullwidth-img {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.fullwidth-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

/* ==========================================
   STUDIO / CONTACT
   ========================================== */
.studio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.studio-inner {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background: #f9f9f9;
}

.studio-inner h2 {
    font-family: 'Georgia', serif;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.studio-inner p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.studio-inner a {
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 1px;
    transition: opacity 0.2s;
}

.studio-inner a:hover {
    opacity: 0.6;
}

.studio-img {
    overflow: hidden;
}

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

/* ==========================================
   FOOTER
   ========================================== */
footer {
    padding: 30px 60px;
    border-top: 1px solid #eee;
    text-align: center;
}

footer p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #999;
    text-transform: uppercase;
}

/* ==========================================
   WORK PAGE
   ========================================== */
.page-header {
    padding: 160px 60px 60px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: normal;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #1a1a1a;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 60px 20px 20px;
}

.category-card {
    overflow: hidden;
}

.category-img {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-img:hover img {
    transform: scale(1.07);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.category-img:hover .category-overlay {
    opacity: 1;
}

.category-overlay span {
    font-family: 'Georgia', serif;
    font-size: 22px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
}

/* Work Gallery */
.work-gallery {
    padding: 20px 20px 80px;
}

.gallery-grid {
    columns: 3;
    column-gap: 12px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    will-change: transform;
}

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

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-hero {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    margin-top: 65px;
    background: #111;
}

.about-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-content {
    padding: 80px 60px;
}

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

.about-text h1 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
}

.about-text h2 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-text p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.about-portrait {
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 4px;
}

.about-portrait img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
}

/* Exhibitions */
.exhibitions {
    padding: 60px 60px 80px;
    border-top: 1px solid #eee;
}

.exhibitions-inner {
    max-width: 800px;
    margin: 0 auto;
}

.exhibitions-inner h2 {
    font-family: 'Georgia', serif;
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.exhibitions-inner ul {
    list-style: none;
}

.exhibitions-inner li {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.exhibitions-inner li span {
    font-style: italic;
    color: #999;
    margin-right: 4px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {

    .navbar {
        padding: 14px 20px;
    }

    .nav-logo {
        font-size: 13px;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }

    .nav-admin-btn {
        font-size: 9px;
        padding: 5px 10px;
        letter-spacing: 0.12em;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-text {
        left: 30px;
        bottom: 40px;
    }

    .intro {
        padding: 60px 30px;
    }

    .featured-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
        grid-auto-rows: 260px;
    }

    .featured-item:nth-child(1),
    .featured-item:nth-child(2),
    .featured-item:nth-child(3),
    .featured-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .featured-item.large {
        grid-column: span 2;
    }

    .featured-item img,
    .featured-item.large img {
        height: 100%;
    }

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

    .studio-inner {
        padding: 50px 30px;
    }

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

    .category-img img {
        height: 300px;
    }

    .gallery-grid {
        columns: 2;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding: 50px 30px;
    }

    .exhibitions {
        padding: 40px 30px 60px;
    }

    .page-header {
        padding: 130px 30px 40px;
    }
}

@media (max-width: 600px) {

    .featured-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .featured-item:nth-child(1),
    .featured-item:nth-child(2),
    .featured-item:nth-child(3),
    .featured-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .featured-item.large {
        grid-column: span 1;
    }

    .gallery-grid {
        columns: 1;
    }

    .fullwidth-img {
        height: 40vh;
    }
}

/* ==========================================
   1. SCROLL PROGRESS BAR
   ========================================== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: #1a1a1a;
    width: 0%;
    z-index: 10000;
    transition: width 0.08s linear;
}

/* ==========================================
   2. GRAIN / NOISE TEXTURE
   ========================================== */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9992;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grainAnim 0.6s steps(2) infinite;
}
@media (max-width: 900px) {
    .grain { animation: none; display: none; }
}

@keyframes grainAnim {
    0% {
        background-position: 0 0;
    }

    33% {
        background-position: 80px -40px;
    }

    66% {
        background-position: -60px 30px;
    }

    100% {
        background-position: 20px 70px;
    }
}

/* ==========================================
   3. MARQUEE / TICKER STRIP
   ========================================== */
.marquee-strip {
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
    background: #fff;
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marqueeScroll 22s linear infinite;
}

.marquee-track span {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #aaa;
    flex-shrink: 0;
    padding: 0 40px;
}

.marquee-track span.dot {
    color: #ccc;
    padding: 0 10px;
    letter-spacing: 0;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-strip:hover .marquee-track {
    animation-play-state: paused;
}

/* ==========================================
   4. BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s, background 0.3s;
    border-radius: 50%;
    letter-spacing: 0;
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #444;
}

/* ==========================================
   5. LIGHTBOX
   ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
    z-index: 9995;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 88vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: scale(0.88);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 28px;
    right: 36px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 32px;
    cursor: none;
    background: none;
    border: none;
    line-height: 1;
    transition: color 0.2s, transform 0.3s;
}

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

.lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   6. 3D TILT (handled via JS + inline style)
   ========================================== */
.gallery-item,
.featured-item,
.category-img {
    transform-style: preserve-3d;
}

/* ==========================================
   7. FLOATING ANIMATION
   ========================================== */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-anim {
    animation: floatY 5s ease-in-out infinite;
}

/* ==========================================
   8. SPLIT WORD REVEAL
   ========================================== */
.split-word {
    display: block;
    overflow: hidden;
}

.split-word .word {
    display: inline-block;
    transform: translateY(105%);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.75s ease;
}

.split-word.visible .word {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================
   9. PAGE TRANSITION OVERLAY
   ========================================== */
.page-transition {
    position: fixed;
    inset: 0;
    background: #1a1a1a;
    z-index: 9996;
    transform: scaleY(0);
    transform-origin: bottom;
    pointer-events: none;
}

.page-transition.slide-in {
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    transform: scaleY(1);
    transform-origin: bottom;
    pointer-events: all;
}

.page-transition.slide-out {
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
    transform: scaleY(0);
    transform-origin: top;
}

/* ==========================================
   10. TYPEWRITER CURSOR
   ========================================== */
.typewriter-typing::after {
    content: '|';
    animation: blink 0.9s step-end infinite;
    margin-left: 1px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ==========================================
   MONDRIAN BENTO GRID
   ========================================== */
.mondrian-section {
    padding: 0;
    margin: 0;
}

.mondrian-grid {
    display: grid;
    grid-template-columns: 3fr 1fr 2fr;
    grid-template-rows: 320px 200px 260px;
    gap: 6px;
}

.mondrian-item {
    overflow: hidden;
    position: relative;
}

.mondrian-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

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

/* Color fills — show behind transparent images for non-img cells */
.m-red   { background: #D62828; }
.m-blue  { background: #1B4FD8; }
.m-yellow { background: #F7C948; }
.m-white { background: #f9f9f9; }

/* Bento placement */
.mondrian-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }   /* big left tall */
.mondrian-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }   /* top mid small */
.mondrian-item:nth-child(3) { grid-column: 3 / 4; grid-row: 1 / 2; }   /* top right */
.mondrian-item:nth-child(4) { grid-column: 2 / 4; grid-row: 2 / 3; }   /* mid right wide */
.mondrian-item:nth-child(5) { grid-column: 1 / 2; grid-row: 3 / 4; }   /* bottom left */
.mondrian-item:nth-child(6) { grid-column: 2 / 3; grid-row: 3 / 4; }   /* bottom mid */
.mondrian-item:nth-child(7) { grid-column: 3 / 4; grid-row: 3 / 4; }   /* bottom right */

/* ==========================================
   11. STATS / COUNTER SECTION
   ========================================== */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    padding: 60px 40px;
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Georgia', serif;
    font-size: 56px;
    font-weight: normal;
    color: #1a1a1a;
    line-height: 1;
    display: block;
}

.stat-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #999;
    margin-top: 12px;
    display: block;
}

/* ==========================================
   12. GALLERY CAPTION ON HOVER
   ========================================== */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item .img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 28px 12px 10px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ==========================================
   HERO SUBTITLE
   ========================================== */
.hero-subtitle {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
    margin-bottom: 30px;
    opacity: 0;
    animation: heroFadeUp 1s ease 0.3s forwards;
    min-height: 16px;
}

/* ==========================================
   STATS RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .stats-section {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 40px 30px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .back-to-top {
        bottom: 24px;
        right: 24px;
        width: 42px;
        height: 42px;
    }
}

/* ==========================================
   SECTION LABEL
   ========================================== */
.section-label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 16px;
}

/* ==========================================
   QUOTE SECTION
   ========================================== */
.quote-section {
    padding: 120px 60px;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
}

.quote-inner {
    max-width: 860px;
    text-align: center;
    position: relative;
}

.quote-mark {
    font-family: 'Georgia', serif;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.08);
    line-height: 0.5;
    display: block;
    margin-bottom: 20px;
}

.quote-inner blockquote {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-weight: normal;
    font-style: italic;
    line-height: 1.55;
    color: #fff;
    margin-bottom: 28px;
}

.quote-inner cite {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 640px;
}

.process-text {
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: #fafafa;
}

.process-text h2 {
    font-family: 'Georgia', serif;
    font-size: 34px;
    font-weight: normal;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.process-text p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: #666;
}

.btn-dark {
    display: inline-block;
    margin-top: 10px;
    padding: 13px 34px;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    width: fit-content;
    transition: background 0.3s, transform 0.3s;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

.process-images {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    padding: 8px 8px 8px 0;
}

.process-img-top,
.process-img-bottom {
    overflow: hidden;
    min-height: 280px;
}

.process-img-top img,
.process-img-bottom img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.process-img-top:hover img,
.process-img-bottom:hover img {
    transform: scale(1.05);
}

/* ==========================================
   HORIZONTAL SCROLL SECTION
   ========================================== */
.hscroll-section {
    padding: 80px 0 40px;
    overflow: hidden;
}

.hscroll-header {
    padding: 0 60px 40px;
}

.hscroll-header h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: normal;
    color: #1a1a1a;
}

.hscroll-track-wrap {
    position: relative;
}

.hscroll-track {
    display: flex;
    gap: 16px;
    padding: 0 60px 20px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    scrollbar-width: none;
}

.hscroll-track::-webkit-scrollbar {
    display: none;
}

.hscroll-track:active {
    cursor: grabbing;
}

.hscroll-item {
    flex: 0 0 380px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.hscroll-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
}

.hscroll-item:hover img {
    transform: scale(1.04);
}

.hscroll-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.hscroll-caption span {
    display: block;
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.hscroll-hint {
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #ccc;
    padding: 14px 0 30px;
}

/* ==========================================
   PRESS SECTION
   ========================================== */
.press-section {
    padding: 80px 60px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.press-label {
    margin-bottom: 40px;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.press-item {
    font-family: 'Georgia', serif;
    font-size: 18px;
    font-style: italic;
    color: #bbb;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.press-item:hover {
    color: #1a1a1a;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 100px 60px;
    background: #f9f9f9;
}

.testi-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.testi-inner>.section-label {
    margin-bottom: 50px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testi-card {
    background: #fff;
    padding: 40px 36px;
    border-top: 2px solid #1a1a1a;
}

.testi-card p {
    font-family: 'Georgia', serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.85;
    color: #444;
    margin-bottom: 24px;
}

.testi-card cite {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
}

/* ==========================================
   EXHIBITION FEATURE SECTION
   ========================================== */
.exhibition-feature {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.exhib-img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.exhib-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: transform 8s ease;
}

.exhibition-feature:hover .exhib-img img {
    transform: scale(1.05);
}

.exhib-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 40px;
    gap: 14px;
}

.exhib-overlay .section-label {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.exhib-overlay h2 {
    font-family: 'Georgia', serif;
    font-size: 52px;
    font-weight: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.1;
}

.exhib-overlay p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.05em;
}

.exhib-overlay .btn {
    margin-top: 10px;
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */
.newsletter-section {
    padding: 110px 60px;
    background: #1a1a1a;
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-inner .section-label {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-inner h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 16px;
}

.newsletter-inner>p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    color: #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 14px 26px;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #fff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.3s, color 0.3s;
}

.newsletter-form button:hover {
    background: #ddd;
}

.newsletter-thanks {
    margin-top: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: none;
}

/* ==========================================
   NEW SECTIONS RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    .quote-section {
        padding: 80px 30px;
    }

    .quote-inner blockquote {
        font-size: 18px;
    }

    .process-section {
        grid-template-columns: 1fr;
    }

    .process-text {
        padding: 60px 30px;
    }

    .process-images {
        grid-template-rows: 250px 250px;
        padding: 0 0 8px;
    }

    .hscroll-header {
        padding: 0 30px 30px;
    }

    .hscroll-track {
        padding: 0 30px 20px;
    }

    .hscroll-item {
        flex: 0 0 280px;
    }

    .hscroll-item img {
        height: 360px;
    }

    .press-section {
        padding: 60px 30px;
    }

    .press-logos {
        gap: 30px;
    }

    .testimonials-section {
        padding: 70px 30px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .exhibition-feature {
        height: 60vh;
    }

    .exhib-overlay h2 {
        font-size: 32px;
    }

    .newsletter-section {
        padding: 70px 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: none;
    }
}

/* ==========================================
   SITE FOOTER
   ========================================== */
footer.site-footer {
    background: #111;
    color: #fff;
    padding: 28px 48px 0;
    text-align: left;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(320px, 1.5fr) minmax(220px, 0.8fr);
    align-items: start;
    gap: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 0;
}

.footer-brand p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.5);
    max-width: 34ch;
    text-transform: none;
}

.footer-nav {
    justify-self: end;
    text-align: right;
}

.footer-nav h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 10px;
}

.footer-nav a {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 6px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-address {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.footer-bottom p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

/* ==========================================
   STUDIO PAGE STYLES
   ========================================== */
.studio-page-intro {
    padding: 100px 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.studio-page-intro h2 {
    font-family: 'Georgia', serif;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.studio-page-intro p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}

.studio-full {
    width: 100%;
    height: 75vh;
    overflow: hidden;
}

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

.studio-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.sp-text {
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.sp-text h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: normal;
    color: #1a1a1a;
}

.sp-text p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: #666;
}

.sp-img {
    overflow: hidden;
}

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

.sp-img:hover img {
    transform: scale(1.04);
}

/* Studio photo grid */
.studio-grid-section {
    padding: 80px 20px;
}

.sp-grid-header {
    padding: 0 40px 40px;
}

.sp-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sp-photo {
    overflow: hidden;
}

.sp-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.sp-photo:hover img {
    transform: scale(1.05);
}

.sp-photo-large {
    grid-column: span 2;
}

.sp-photo-large img {
    height: 320px;
}

/* Process steps */
.process-steps {
    padding: 100px 60px;
    background: #f9f9f9;
}

.ps-header {
    text-align: center;
    margin-bottom: 70px;
}

.ps-header h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: normal;
    color: #1a1a1a;
}

.ps-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ps-step {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-top: 2px solid #eee;
    transition: border-color 0.3s;
}

.ps-step:hover {
    border-color: #1a1a1a;
}

.ps-num {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 36px;
    color: #eee;
    margin-bottom: 16px;
}

.ps-step h3 {
    font-family: 'Georgia', serif;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.ps-step p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    line-height: 1.8;
    color: #888;
}

/* Studio visit */
.studio-visit {
    padding: 100px 60px;
    text-align: center;
}

.sv-inner {
    max-width: 800px;
    margin: 0 auto;
}

.sv-inner h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.sv-inner>p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.9;
    color: #888;
    margin-bottom: 50px;
}

.sv-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border: 1px solid #eee;
}

.sv-item {
    padding: 40px 30px;
    border-right: 1px solid #eee;
}

.sv-item:last-child {
    border-right: none;
}

.sv-item span {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 12px;
}

.sv-item p {
    font-family: 'Georgia', serif;
    font-size: 15px;
    color: #1a1a1a;
}

.sv-item a {
    font-family: 'Georgia', serif;
    font-size: 15px;
    color: #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 1px;
}

/* ==========================================
   INSTALLATION VIEW STYLES
   ========================================== */
.inst-intro {
    padding: 100px 60px;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.inst-intro-inner h2 {
    font-family: 'Georgia', serif;
    font-size: 30px;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.inst-intro-inner p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #666;
}

.inst-exhibition {
    padding: 80px 60px;
    border-top: 1px solid #eee;
}

.inst-exh-header {
    margin-bottom: 40px;
}

.inst-exh-header h2 {
    font-family: 'Georgia', serif;
    font-size: 30px;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.inst-exh-meta {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #aaa;
}

.inst-main-img {
    width: 100%;
    height: 65vh;
    overflow: hidden;
    margin-bottom: 12px;
}

.inst-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.inst-main-img:hover img {
    transform: scale(1.03);
}

.inst-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.inst-sub-item {
    overflow: hidden;
}

.inst-sub-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

/* Installation quote strip */
.inst-quote {
    padding: 80px 60px;
    background: #1a1a1a;
    text-align: center;
}

.inst-quote p {
    font-family: 'Georgia', serif;
    font-size: 24px;
    font-style: italic;
    color: #fff;
    margin-bottom: 20px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.inst-quote cite {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* Masonry layout */
.inst-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 12px;
}

.inst-masonry-item {
    overflow: hidden;
}

.inst-masonry-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.inst-masonry-item:hover img {
    transform: scale(1.04);
}

.inst-masonry-tall img {
    height: 652px;
}

/* Past exhibitions list */
.inst-past-list {
    padding: 80px 60px;
    background: #f9f9f9;
}

.ipl-inner {
    max-width: 900px;
    margin: 0 auto;
}

.ipl-header {
    margin-bottom: 50px;
}

.ipl-header h2 {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-weight: normal;
    color: #1a1a1a;
}

.ipl-list {
    display: flex;
    flex-direction: column;
}

.ipl-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 22px 0;
    border-bottom: 1px solid #e8e8e8;
    transition: background 0.2s;
}

.ipl-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.ipl-year {
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-style: italic;
    color: #bbb;
}

.ipl-details h4 {
    font-family: 'Georgia', serif;
    font-size: 16px;
    font-weight: normal;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.ipl-details p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: #aaa;
}

.ipl-type {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #bbb;
    border: 1px solid #e0e0e0;
    padding: 4px 10px;
}

/* ==========================================
   FOOTER & NEW PAGE RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
    footer.site-footer {
        padding: 40px 30px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer-nav {
        justify-self: start;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

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

    .sp-text {
        padding: 60px 30px;
    }

    .sp-photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sp-photo-large {
        grid-column: span 2;
    }

    .ps-steps {
        grid-template-columns: 1fr 1fr;
    }

    .sv-contact {
        grid-template-columns: 1fr;
    }

    .sv-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .sv-item:last-child {
        border-bottom: none;
    }

    .inst-exhibition {
        padding: 60px 30px;
    }

    .inst-intro {
        padding: 70px 30px;
    }

    .inst-sub-grid {
        grid-template-columns: 1fr 1fr;
    }

    .inst-masonry {
        grid-template-columns: 1fr;
    }

    .inst-masonry-tall img {
        height: 320px;
    }

    .inst-past-list {
        padding: 60px 30px;
    }

    .ipl-item {
        grid-template-columns: 60px 1fr;
    }

    .ipl-type {
        display: none;
    }
}