:root {
    --bg-color: #ffffff !important; 
    --text-color: #3e3d3b !important; 
    --accent-vermilion: #E83C28; 
    --accent-color: var(--accent-vermilion); 
}

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

body { 
    background-color: var(--bg-color); /* Guaranteed White Background */
    font-family: 'Inter', sans-serif; 
    font-weight: 300;
    overflow-x: hidden; 
    color: var(--text-color);
    margin: 0; padding: 0;
    -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; 
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 24 24" fill="none" stroke="%233e3d3b" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M15 5h-6"/><path d="M14 5v-2c0-.6-.4-1-1-1h-2c-.6 0-1 .4-1 1v2"/><path d="M17 5v14c0 1.1-.9 2-2 2H9c-1.1 0-2-.9-2-2V5"/><circle cx="12" cy="11" r="1"/><path d="M19 12h-1"/><path d="M22 10h-1"/><path d="M22 14h-1"/></svg>') 15 0, crosshair;
}

body.veil-active { overflow: hidden; }

footer, footer a, footer p, footer span, #content-wrap * {
    -webkit-user-select: auto; -moz-user-select: auto; -ms-user-select: auto; user-select: auto; pointer-events: auto;
}

a, button { cursor: pointer; color: var(--text-color); text-decoration: none; transition: opacity 0.2s ease, color 0.2s ease; }
a:hover, button:hover { opacity: 1 !important; color: var(--accent-color) !important; }

.eyebrow-heading { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--accent-vermilion); }
.layout-container { width: 100%; max-width: 1400px; margin: 0 auto; padding-left: 8%; padding-right: 8%; }

/* Gravity-defying Canvas sits above everything. Fades out smoothly when veil drops */
#graffitiCanvas { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; transition: opacity 0.2s ease; }

/* The underlying site is clean white. */
.navbar, footer, #lightbox { background-color: #ffffff !important; }

/* Frosted glass navbar ensures legibility but keeps the white aesthetic */
.navbar { 
    padding-top: 1rem; padding-bottom: 1rem; transition: all 0.3s ease; 
    z-index: 1030; width: 100%; border-bottom: 1px solid rgba(0,0,0,0.03); 
    background-color: rgba(255, 255, 255, 0.98) !important; 
    backdrop-filter: blur(10px);
}

.navbar-brand { transition: opacity 0.2s ease; }
.navbar-brand:hover { opacity: 0.7; }
.navbar-nav .nav-link {
    position: relative; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; margin-left: 0.5rem; padding: 0.5rem 1rem !important; 
    color: var(--text-color) !important; background-color: transparent; border-radius: 2px; overflow: hidden; transition: color 0.2s ease !important; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
}
.navbar-nav .nav-link::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--text-color); z-index: -1; transform: scaleY(0); transform-origin: bottom center; transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}
.navbar-nav .nav-link:hover { color: #ffffff !important; opacity: 1 !important; }
.navbar-nav .nav-link:hover::after { transform: scaleY(1); }

/* Hide content wrap completely while veil is up */
body.veil-active #content-wrap { opacity: 0; pointer-events: none; }

#content-wrap { position: relative; z-index: 2; padding-top: 100px; pointer-events: auto; }


/* ========================================================= */
/* 1. FIXED VEIL OVERLAY (THE PULSE & PUSH TRANSITION)       */
/* ========================================================= */

/* The Veil holds the puddle background */
.veil-grid {
    position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important; 
    width: 100% !important; height: 100% !important; margin: 0 !important; 
    z-index: 9000 !important; 
    padding: 0; display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(12, 1fr);
    pointer-events: auto; text-align: left; 
    
    background-color: #f4f3f0; 
    background-image: 
        radial-gradient(ellipse 45vw 35vh at 25% 20%, rgba(220, 217, 212, 0.9) 0%, rgba(220, 217, 212, 0) 65%),
        radial-gradient(ellipse 60vw 45vh at 75% 30%, rgba(232, 230, 225, 0.95) 0%, rgba(232, 230, 225, 0) 70%),
        radial-gradient(ellipse 40vw 55vh at 30% 75%, rgba(208, 205, 199, 0.85) 0%, rgba(208, 205, 199, 0) 60%),
        radial-gradient(ellipse 55vw 30vh at 80% 85%, rgba(220, 217, 212, 0.9) 0%, rgba(220, 217, 212, 0) 65%),
        radial-gradient(ellipse 50vw 50vh at 50% 55%, rgba(232, 230, 225, 0.85) 0%, rgba(232, 230, 225, 0) 70%); 
}

/* The Pulse Out (Inhale, then burst out) */
.veil-grid.lifted {
    animation: veilPulseOut 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    pointer-events: none;
}
@keyframes veilPulseOut {
    0%   { transform: scale(1); opacity: 1; filter: brightness(1) blur(0px); }
    75%  { transform: scale(0.95); opacity: 1; filter: brightness(0.9) blur(2px); } /* Deep inhale, NO opacity drop */
    90%  { transform: scale(1.05); opacity: 1; filter: brightness(1.2) blur(5px); } /* Push out, STILL no opacity drop */
    100% { transform: scale(1.1); opacity: 0; filter: brightness(1.5) blur(10px); visibility: hidden; } /* Instant snap fade */
}

/* The Pump Forward (Wait for veil inhale, then push through) */
#content-wrap.content-revealed {
    animation: pumpForward 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    pointer-events: auto;
}
@keyframes pumpForward {
    0%   { transform: scale(0.92); opacity: 0; filter: blur(10px); }
    75%  { transform: scale(0.95); opacity: 0; filter: blur(10px); } 
    90%  { transform: scale(0.98); opacity: 0.8; filter: blur(2px); } 
    100% { transform: scale(1); opacity: 1; filter: blur(0px); }
}


.context-header { grid-area: 2 / 2 / 3 / 6; display: flex; align-items: center; opacity: 0; animation: fadeIn 0.8s forwards; animation-delay: 0.1s; }
.curtain-link-block { grid-area: 3 / 2 / 12 / 12; display: grid; grid-template-columns: repeat(11, 1fr); grid-template-rows: repeat(8, 1fr); gap: 0; align-items: end; z-index: 50; position: relative; }
.teaser-instruction { grid-area: 11 / 2 / 13 / 6; font-size: 0.85rem; font-style: italic; opacity: 0; color: var(--text-color); align-self: end; animation: fadeIn 1s ease forwards; animation-delay: 2s; display: flex; align-items: center; }
.teaser-instruction::before { content: ''; display: inline-block; width: 6px; height: 6px; background-color: var(--accent-vermilion); margin-right: 12px; transform: translateY(-1px); animation: pulseNode 2s infinite; }
@keyframes pulseNode { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.vm-option { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 0.9; letter-spacing: -0.04em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden; display: block; color: var(--text-color) !important; }
.vm-work-link    { grid-area: 1 / 1 / 4 / 12; font-size: 9rem; }
.vm-about-link   { grid-area: 4 / 1 / 6 / 10; font-size: 6.5rem; margin-top: -2rem; }
.vm-contact-link { grid-area: 6 / 1 / 7 / 6; font-size: 4rem; margin-top: -1rem; }

.reveal-1 { opacity: 0; clip-path: inset(0 100% 0 0); filter: blur(5px); animation: technicalReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards; animation-delay: 0.2s; }
@keyframes technicalReveal { to { opacity: 1; clip-path: inset(0 0% 0 0); filter: blur(0px); } }
.reveal-2 { opacity: 0; animation: decryptFocus 1s ease forwards; animation-delay: 0.4s; }
@keyframes decryptFocus { 0%, 15% { opacity: 0; filter: brightness(10); } 10% { opacity: 0.3; } 30% { opacity: 1; filter: brightness(2); } 50%, to { opacity: 1; filter: brightness(1); } }
.reveal-3 { opacity: 0; filter: blur(3px); animation: staticTechnicalFade 1s ease-out forwards; animation-delay: 0.6s; }
@keyframes staticTechnicalFade { 0% { opacity: 0; filter: blur(3px); } 100% { opacity: 1; filter: blur(0px); } }

.vm-option::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--text-color); transform: scaleY(0); transform-origin: bottom center; transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); z-index: 10; }
.vm-option:hover { color: #fff !important; transform: translateX(15px); }
.vm-option:hover::before { transform: scaleY(1); }
.vm-text-wrap { position: relative; z-index: 20; transition: opacity 0.3s ease; }
.vm-option:hover .vm-text-wrap { opacity: 0; }
@keyframes fadeIn { to { opacity: 0.5; } }


/* ========================================================= */
/* 2. THE CONDENSED ABOUT DRAWER (EMERGE EFFECT)             */
/* ========================================================= */

/* Grid handles the physical push down smoothly */
.about-wrapper { 
    display: grid; 
    grid-template-rows: 0fr; 
    transition: grid-template-rows 0.7s cubic-bezier(0.22, 1, 0.36, 1); 
}
.about-wrapper.active { 
    grid-template-rows: 1fr; 
}
.about-inner { 
    overflow: hidden; 
}

/* Inner content handles the visual 'emerge' from the background */
.about-content {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(10px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center top;
}
.about-wrapper.active .about-content {
    opacity: 1;
    transform: scale(1);
    filter: blur(0px);
    transition-delay: 0.1s; 
}

.about-image { width: 100%; height: auto; border-radius: 4px; object-fit: cover; max-width: 350px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); mix-blend-mode: multiply !important; background-color: transparent !important; }
.about-text-link { color: var(--accent-vermilion); text-decoration: none; font-weight: 400; border-bottom: 1px solid transparent; transition: border-bottom 0.2s ease, opacity 0.2s ease; }
.about-text-link:hover { color: var(--accent-vermilion) !important; border-bottom: 1px solid var(--accent-vermilion); opacity: 0.8; }
.award-list { list-style: none; padding: 0; margin: 0; }
.award-item { display: flex; align-items: flex-start; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.award-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.award-year { flex: 0 0 80px; font-weight: 600; font-size: 0.9rem; color: var(--text-color); opacity: 0.7; padding-top: 2px; }
.award-details h4 { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.3rem; color: var(--text-color); }
.award-details p { font-size: 0.9rem; line-height: 1.6; margin: 0; opacity: 0.85; }


/* ========================================================= */
/* 3. GALLERY, GRID, FILTER & PIN MODAL LOGIC                */
/* ========================================================= */

.gallery-filter-nav { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; align-items: center; }

.filter-btn {
    position: relative; background: transparent; border: 1px solid rgba(62, 61, 59, 0.15); padding: 0.4rem 1.25rem; border-radius: 50px; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-color); cursor: pointer; transition: color 0.25s ease, border-color 0.25s ease; overflow: hidden; z-index: 1;
}
.filter-btn::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--text-color); z-index: -1; transform: scaleY(0); transform-origin: bottom center; transition: transform 0.25s cubic-bezier(0.19, 1, 0.22, 1); border-radius: 50px;
}
.filter-btn:hover { color: #ffffff !important; border-color: var(--text-color); }
.filter-btn:hover::after, .filter-btn.active::after { transform: scaleY(1); }
.filter-btn.active { color: #ffffff !important; border-color: var(--text-color); }

.unlock-btn { background-color: rgba(62, 61, 59, 0.05); border: 1px dashed rgba(62, 61, 59, 0.3); margin-left: auto; }
.unlock-btn svg { transition: color 0.25s ease; }

.pin-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(244, 243, 240, 0.95); z-index: 3000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.pin-modal-overlay.active { display: flex; opacity: 1; }
.pin-modal-content { background: #ffffff; padding: 3rem; border-radius: 4px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); text-align: center; max-width: 400px; width: 90%; position: relative; }
.pin-input { width: 100%; padding: 0.75rem; margin: 1.5rem 0; border: 1px solid rgba(0,0,0,0.2); border-radius: 2px; font-family: 'Inter', sans-serif; text-align: center; letter-spacing: 0.5em; font-size: 1.25rem; outline: none; transition: border-color 0.3s ease; }
.pin-input:focus { border-color: var(--text-color); }
.pin-input.error { border-color: var(--accent-color); color: var(--accent-color); }
.pin-submit { background: var(--text-color); color: white; border: none; padding: 0.75rem 2rem; border-radius: 2px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; width: 100%; }
.pin-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; color: var(--text-color); opacity: 0.5; cursor: pointer; }
.pin-close:hover { opacity: 1; }

.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; grid-auto-flow: dense; transition: all 0.5s ease; }
.project-card { display: block; width: 100%; height: 100%; transition: opacity 0.4s ease, filter 0.4s ease; order: 0; }
.project-card.inactive-sort { opacity: 0.2; pointer-events: none; }

.project-card.locked-card .project-img-container { background-color: #e5e5e5; }
.project-card.locked-card .project-img { filter: grayscale(100%) blur(12px) contrast(0.8); opacity: 0.4; transform: scale(1.1); }
.project-card.locked-card .project-info { opacity: 1; background-color: rgba(255, 255, 255, 0.6); }
.project-card.locked-card:hover .project-img { transform: scale(1.1); }

.span-col-2 { grid-column: span 2; } .span-row-2 { grid-row: span 2; } .span-col-2.span-row-2 { grid-column: span 2; grid-row: span 2; }
.project-card-link { text-decoration: none; color: inherit; display: block; height: 100%; }
.project-img-container { background-color: #f4f3f0; background-image: radial-gradient(ellipse 45vw 35vh at 25% 20%, rgba(220, 217, 212, 0.9) 0%, rgba(220, 217, 212, 0) 65%), radial-gradient(ellipse 60vw 45vh at 75% 30%, rgba(232, 230, 225, 0.95) 0%, rgba(232, 230, 225, 0) 70%); background-attachment: fixed; background-size: 100vw 100vh; height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; border-radius: 4px; transition: all 0.5s ease; }
.project-grid .project-img { max-width: 85%; max-height: 85%; object-fit: contain; width: auto; height: auto; transition: transform 0.4s ease; padding: 1rem; position: relative; z-index: 1; mix-blend-mode: multiply; }
.project-info { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.92); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 2rem; opacity: 0; transition: opacity 0.3s ease; z-index: 2; }
.project-card:not(.locked-card) .project-card-link:hover .project-info { opacity: 1; }
.project-card:not(.locked-card) .project-card-link:hover .project-img { transform: scale(1.05); }
.project-title { font-weight: 500; font-size: 1.1rem; display: block; margin-bottom: 0.5rem; color: var(--text-color); }
.project-desc { font-size: 0.85rem; line-height: 1.6; font-weight: 300; margin: 0; display: block; color: var(--text-color); }


/* ========================================================= */
/* 4. PROJECT PAGES & MISC                                   */
/* ========================================================= */

.project-hero-block { display: flex; align-items: flex-start; justify-content: space-between; padding: 1rem 0 5rem 0; background-color: transparent; gap: 4%; }
.project-img { width: 100%; height: auto; display: block; transition: opacity 0.5s ease; mix-blend-mode: multiply; }
.hero-image-col { flex: 1 1 63%; height: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; background-color: transparent !important; }
.hero-image { max-width: 100%; max-height: 65vh; width: auto !important; height: auto; object-fit: contain; }
.hero-image-col:hover .project-img { opacity: 1 !important; }
.hero-text-col { flex: 0 0 auto; width: 32%; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
.project-hero-title { font-size: 1.85rem; font-weight: 400; margin-bottom: 0.5rem; color: var(--text-color); letter-spacing: -0.02em; }
.project-details-list { list-style: none; padding: 0; margin: 0; font-size: 0.85rem; line-height: 1.2; }
.project-details-list li { display: flex; align-items: center; margin-bottom: 0.25rem; }
.project-details-list li strong { font-weight: 600; width: 80px; display: inline-block; color: #000000; }
.project-description { font-size: 0.85rem; line-height: 1.5; margin-top: 1.5rem; color: var(--text-color); opacity: 0.85; }

.masonry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; width: 100%; margin-bottom: 6rem;}
.masonry-item { position: relative; cursor: pointer; background-color: rgba(62, 61, 59, 0.04) !important; border-radius: 4px; }
.span-2 { grid-column: span 2; }
.masonry-item:hover .project-img { opacity: 0.85; }

.image-label { font-size: 0.75rem; font-weight: 400; color: var(--text-color); opacity: 0.7; margin-top: 1.5rem; margin-bottom: 0; letter-spacing: 0.02em; pointer-events: none; text-align: left; display: block; }
.social-icon { color: var(--text-color); transition: color 0.2s ease, opacity 0.2s ease; opacity: 0.7; }
.social-icon:hover { color: var(--accent-color); opacity: 1; }

#lightbox { display: none; position: fixed; z-index: 9999; top: 0; left: 0; width: 100vw; height: 100vh; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.lightbox-content { display: flex; flex-direction: column; align-items: flex-start; max-width: 90vw; max-height: 90vh; }
#lightbox-img { max-width: 100%; max-height: 80vh; width: auto; height: auto; box-shadow: 0 15px 50px rgba(0,0,0,0.15); }
.lightbox-btn { position: absolute; background: none; border: none; font-size: 2.5rem; color: var(--text-color); cursor: pointer; padding: 1rem; z-index: 10000; transition: transform 0.2s, opacity 0.2s; opacity: 0.7; }
.lightbox-btn:hover { transform: scale(1.1); opacity: 1; color: var(--accent-color); }
#prev-btn { left: 3%; top: 50%; transform: translateY(-50%); }
#next-btn { right: 3%; top: 50%; transform: translateY(-50%); }
#close-btn { top: 2%; right: 3%; font-size: 2rem; }
#lightbox-caption { margin-top: 1rem; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em; color: var(--text-color); opacity: 0.9; pointer-events: none; }

footer { position: relative; z-index: 2; color: var(--text-color); padding-top: 4rem; padding-bottom: 4rem; border-top: 1px solid rgba(0,0,0,0.03); }
.vm-navbar-logo, .vm-footer-logo { opacity: 0.8; }
.vm-teaser-option { display: flex; flex-direction: column; align-items: flex-end; text-decoration: none; padding: 2rem 0; max-width: 65%; margin-left: auto; }
.teaser-element-wrap { position: relative; padding: 0.5rem 1.25rem; margin-bottom: 0.5rem; background-color: rgba(62, 61, 59, 0.04); border-radius: 4px; overflow: hidden; }
.teaser-element-wrap::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: var(--text-color); z-index: 10; transform: scaleY(0); transform-origin: bottom center; transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1); border-radius: 4px; }
.vm-teaser-option:has(.teaser-element-wrap:hover) .teaser-element-wrap::after { transform: scaleY(1); }
.teaser-element-wrap > * { position: relative; z-index: 1; color: var(--text-color); transition: transform 0.3s ease; margin: 0; }
.teaser-eyebrow-wrap { margin-bottom: 1.5rem; }
.teaser-text-group-wrap { padding: 1.25rem 1.25rem; } 
.vm-teaser-option:has(.teaser-element-wrap:hover) .eyebrow-heading, .vm-teaser-option:has(.teaser-element-wrap:hover) .teaser-title, .vm-teaser-option:has(.teaser-element-wrap:hover) .teaser-subtitle { transform: translateY(-8px); }
.teaser-title { font-size: 2.2rem; font-weight: 400; letter-spacing: -0.02em; margin-bottom: 0.2rem; margin-top: 0; }
.teaser-subtitle { font-size: 0.9rem; opacity: 0.7; margin-bottom: 0; }
.teaser-img-wrap { width: 100%; padding: 2rem; margin-bottom: 2rem; }
.teaser-img-wrap img { width: 100%; max-height: 50vh; object-fit: contain; object-position: right; transform-origin: center right; transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); }
.vm-teaser-option:has(.teaser-element-wrap:hover) .teaser-img-wrap img { transform: scale(1.03); }


/* ========================================================= */
/* 5. RESPONSIVE BREAKPOINTS                                 */
/* ========================================================= */

@media (max-width: 1400px) {
    .vm-work-link    { font-size: 7.5rem; }
    .vm-about-link   { font-size: 5rem; margin-top: -1.5rem;}
    .vm-contact-link { font-size: 3rem; margin-top: -1rem; }
}

@media (max-width: 1100px) {
    .vm-work-link    { font-size: 6rem; }
    .vm-about-link   { font-size: 4.5rem; margin-top: -1.5rem;}
    .vm-contact-link { font-size: 2.5rem; margin-top: -0.5rem;}
}

@media (max-width: 1024px) {
    .hero-text-col { width: 35%; }
    .hero-image-col { flex: 1 1 60%; }
    .masonry-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .project-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .veil-grid { text-align: center; }
    .context-header { grid-area: 2 / 1 / 3 / 13; justify-content: center; padding: 0 5%; }
    .curtain-link-block { grid-area: 4 / 1 / 11 / 13; }
    .vm-work-link    { font-size: 3.5rem; grid-area: 1 / 1 / 4 / 12; margin-bottom: 1rem;}
    .vm-about-link   { font-size: 3.5rem; grid-area: 4 / 1 / 6 / 12; justify-self: center; margin-top: 0;}
    .vm-contact-link { font-size: 2rem; grid-area: 6 / 1 / 7 / 12; justify-self: center; margin-top: 1rem;}
    .vm-option:hover { transform: translateY(-5px); }
    .vm-option:hover span { opacity: 1 !important; transition: none !important;} 
    .vm-option:hover::before { transform: scaleY(1); }
    .teaser-instruction { grid-area: 11 / 1 / 13 / 13; text-align: center; padding: 0 5%; justify-content: center;}

    .project-hero-block { flex-direction: column; align-items: stretch; padding: 1rem 0 4rem 0; gap: 2rem; }
    .hero-text-col, .hero-image-col { width: 100%; }
    .masonry-grid { grid-template-columns: 1fr; }
    .span-2 { grid-column: span 1; }
    .navbar, footer, #lightbox, body:has(#veil-overlay) { background-attachment: scroll !important; }
    #lightbox-img { max-height: 70vh; }
    .vm-teaser-option { max-width: 100%; align-items: center; }
    .teaser-img-wrap img { object-position: center; transform-origin: center; }
    .teaser-element-wrap:hover > * { transform: none !important; }
    
    .project-grid { grid-template-columns: 1fr; grid-auto-rows: auto !important; }
    .project-card, .span-col-2, .span-row-2, .span-col-2.span-row-2 { grid-column: span 1 !important; grid-row: span 1 !important; }
    .project-img-container { background-attachment: scroll !important; aspect-ratio: 4/3; width: 100%; height: auto; }
    .project-grid .project-img { width: 85%; height: 85%; max-width: none; max-height: none; padding: 0; object-fit: contain; }
    .project-info { display: none !important; }
    .unlock-btn { margin-left: 0; width: 100%; margin-top: 1rem; }
}