/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- REDESIGNED HEADER - Always visible --- */
.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
}

/* --- LOGO IMAGE --- */
.logo-image {
    height: 35px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
}

.logo-dot {
    font-size: 0.8rem;
    color: #888;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.header-right nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

/* --- PANORAMIC HERO SECTION --- */
.panoramic-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

/* Panoramic background (runway image) */
.panoramic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: panoramicZoom 20s ease-in-out infinite alternate;
}

@keyframes panoramicZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* --- MAIN FIGURE (FACING WALL) --- */
.main-figure {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 4px 4px 0 0;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.main-figure::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 140px;
    background: rgba(20,20,20,0.8);
    border-radius: 60px 60px 20px 20px;
    filter: blur(4px);
}

.main-figure::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #000, transparent);
    opacity: 0.7;
}

/* Wall text */
.wall-text {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.02);
    font-size: 8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
    user-select: none;
    pointer-events: none;
    animation: wallTextFade 8s ease-in-out infinite;
}

@keyframes wallTextFade {
    0%, 100% { opacity: 0.02; text-shadow: 0 0 20px rgba(255,255,255,0.1); }
    50% { opacity: 0.05; text-shadow: 0 0 40px rgba(255,255,255,0.2); }
}

/* --- ARTWORK GRID (FLOATING FRAMES) - GRAYSCALE BLEND --- */
.artwork-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.artwork-frame {
    position: absolute;
    width: 200px;
    height: 260px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    overflow: hidden;
    animation: floatArtwork 8s ease-in-out infinite;
    pointer-events: auto;
    transition: all 0.5s ease;
    opacity: 0.7;
    filter: grayscale(0.8) contrast(0.9) brightness(0.7);
    mix-blend-mode: luminosity;
}

.artwork-frame:hover {
    transform: scale(1.02) translateY(-5px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    opacity: 0.9;
    filter: grayscale(0.4) contrast(1.1) brightness(0.9);
    mix-blend-mode: normal;
}

.artwork-frame:hover .artwork-image {
    filter: grayscale(0.3) contrast(1.1);
}

.artwork-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.9) contrast(0.8) brightness(0.8);
    transition: all 0.5s ease;
    opacity: 0.8;
}

.artwork-shadow {
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: rgba(0,0,0,0.6);
    filter: blur(10px);
    z-index: -1;
    opacity: 0.5;
}

.artwork-caption {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    text-transform: uppercase;
    background: rgba(0,0,0,0.4);
    padding: 0.3rem 0.8rem;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.artwork-frame:hover .artwork-caption {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255,255,255,0.9);
}

.frame-1 {
    top: 15%;
    left: 10%;
    transform: rotate(-3deg);
    animation-delay: 0s;
    --rotate: -3deg;
}

.frame-2 {
    top: 15%;
    right: 8%;
    transform: rotate(2deg);
    animation-delay: 1.5s;
    --rotate: 2deg;
}

.frame-3 {
    bottom: 15%;
    left: 15%;
    transform: rotate(4deg);
    animation-delay: 0.8s;
    --rotate: 4deg;
}

.frame-4 {
    bottom: 15%;
    right: 15%;
    transform: rotate(-4deg);
    animation-delay: 1.2s;
    --rotate: -4deg;
}

@keyframes floatArtwork {
    0%, 100% { 
        transform: translateY(0) rotate(var(--rotate, 0deg)); 
        filter: grayscale(0.8) contrast(0.9) brightness(0.7);
    }
    50% { 
        transform: translateY(-8px) rotate(var(--rotate, 0deg)); 
        filter: grayscale(0.7) contrast(1) brightness(0.8);
    }
}

/* Add a subtle color wash over frames */
.panoramic-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(0,0,0,0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 6;
    mix-blend-mode: multiply;
}

/* Runway lights effect */
.runway-lights {
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.8) 20%,
        rgba(255,255,255,1) 50%,
        rgba(255,255,255,0.8) 80%,
        transparent 100%);
    filter: blur(4px);
    animation: lightsPulse 3s ease-in-out infinite;
    z-index: 4;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.runway-lights.right {
    bottom: 15%;
    width: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(200,200,255,0.6) 30%,
        rgba(220,220,255,0.8) 50%,
        rgba(200,200,255,0.6) 70%,
        transparent 100%);
    animation: lightsPulse 4s ease-in-out infinite reverse;
}

@keyframes lightsPulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(2); }
}

/* Chrome overlay effects */
.chrome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.05) 25%, 
        transparent 50%, 
        rgba(0,0,0,0.2) 75%, 
        rgba(0,0,0,0.3) 100%);
    pointer-events: none;
    z-index: 10;
    mix-blend-mode: overlay;
}

.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wMyIgLz48L3N2Zz4=');
    pointer-events: none;
    z-index: 11;
    opacity: 0.4;
    mix-blend-mode: multiply;
}

.hero-lens-flare {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: lensMove 15s ease-in-out infinite;
    z-index: 8;
}

@keyframes lensMove {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    33% { transform: translate(-30px, 20px) scale(1.2); opacity: 0.5; }
    66% { transform: translate(20px, -20px) scale(0.9); opacity: 0.2; }
}

/* Panoramic hero content */
.panoramic-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 15;
    width: 100%;
    padding: 0 2rem;
}

.content-wrapper {
    display: inline-block;
    position: relative;
}

.pre-title {
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: #aaa;
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
}

.panoramic-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    line-height: 0.9;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 
        0 0 20px rgba(255,255,255,0.5),
        0 0 40px rgba(255,255,255,0.2);
    margin-bottom: 0.5rem;
    position: relative;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 0 40px rgba(255,255,255,0.2); }
    50% { text-shadow: 0 0 30px rgba(255,255,255,0.8), 0 0 60px rgba(255,255,255,0.4); }
}

.title-reflect {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
    filter: blur(10px);
    transform: scaleY(-1);
    opacity: 0.5;
}

.panoramic-subtitle {
    font-size: 1rem;
    letter-spacing: 0.4em;
    color: #ccc;
    margin: 2rem 0 3rem;
    font-weight: 300;
    text-transform: uppercase;
}

/* Chrome button */
.chrome-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.chrome-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255,255,255,0.1) 50%,
        transparent 70%
    );
    animation: chromeShine 6s linear infinite;
}

@keyframes chromeShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.button-reflect {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    filter: blur(5px);
}

.chrome-button:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

/* Panoramic scroll indicator */
.panoramic-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 15;
    color: #fff;
}

.panoramic-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    font-weight: 300;
}

.scroll-line {
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, #fff, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.5); opacity: 1; }
}

/* --- SECTIONS --- */
.section {
    min-height: 100vh;
    padding: 8rem 4rem 4rem 4rem;
    background: #0a0a0a;
    position: relative;
    display: block;
}

.active-section {
    display: block;
}

/* Chrome elements throughout */
.chrome-marquee {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
}

.chrome-block {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 2rem;
    transition: border-color 0.3s ease;
}

.chrome-block:hover {
    border-left-color: #fff;
}

.chrome-title {
    font-weight: 200;
    letter-spacing: 0.1em;
}

.chrome-title span {
    color: #666;
    font-weight: 100;
}

.chrome-link {
    color: #888;
    border-bottom: 1px solid #333;
}

.chrome-link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.chrome-grid {
    gap: 2rem;
}

.chrome-item {
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s ease;
}

.chrome-item:hover {
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.chrome-cta {
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.chrome-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: chromeShine 8s linear infinite;
}

.chrome-cta:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.02);
}

.chrome-text {
    color: #aaa;
    letter-spacing: 0.2em;
}

.chrome-email {
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
}

.chrome-email:hover {
    border-bottom-color: #fff;
    color: #fff;
}

.chrome-social .social-link {
    color: #666;
    border: 1px solid #222;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.chrome-social .social-link:hover {
    color: #fff;
    border-color: #fff;
}

/* Marquee */
.marquee {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-weight: 300;
    color: #666;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Statement Block */
.statement-block {
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 700px;
}

.statement-text {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 200;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.4;
}

.statement-text.accent {
    color: #888;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 100;
}

.statement-line {
    width: 100px;
    height: 1px;
    background: #333;
    margin: 2rem auto;
}

/* Manifesto Grid */
.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 2rem 0;
}

.manifesto-block h3 {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 0.2em;
    font-weight: 300;
}

.manifesto-block p {
    font-size: 1.1rem;
    font-weight: 200;
    color: #aaa;
    line-height: 1.8;
}

/* Founder Quote */
.founder-quote {
    text-align: center;
    margin: 5rem auto 2rem;
    max-width: 600px;
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: #222;
    font-family: serif;
    line-height: 0;
    display: block;
}

.quote-text {
    font-size: 1.4rem;
    font-weight: 200;
    font-style: italic;
    color: #ccc;
    margin: 1rem 0;
    letter-spacing: 0.05em;
}

.quote-attr {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: #666;
    margin-top: 1rem;
}

/* Gallery Preview Section */
#gallery-preview {
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 200;
    letter-spacing: 0.1em;
}

.section-title span {
    font-size: 1rem;
    color: #666;
    margin-left: 1rem;
    font-weight: 100;
}

.view-all-link {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
    padding-bottom: 0.5rem;
}

.view-all-link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Preview Grid */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.preview-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.5s ease;
}

.preview-media {
    width: 100%;
    height: 100%;
    position: relative;
}

.preview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.8) contrast(1.1);
    transition: all 0.8s ease;
}

.preview-item:hover .preview-media img {
    filter: grayscale(0) contrast(1.2);
    transform: scale(1.08);
}

.preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.preview-item:hover .preview-overlay {
    opacity: 1;
    transform: translateY(0);
}

.preview-type {
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 300;
}

/* Preview CTA */
.preview-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    font-weight: 300;
    transition: all 0.4s ease;
}

.cta-button:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.02);
}

/* Contact Section */
#contact {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #050505;
}

.contact-container {
    max-width: 600px;
}

.contact-info {
    font-size: 1.2rem;
    margin: 2rem 0;
    color: #888;
    font-weight: 200;
}

.contact-email {
    display: inline-block;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    font-weight: 200;
    letter-spacing: 0.05em;
}

.contact-email:hover {
    border-bottom-color: #fff;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-link {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid #222;
}

.social-link:hover {
    color: #fff;
    border-color: #fff;
}

/* Animations */
.fade-elements {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-elements.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- NETFLIX STYLE HORIZONTAL SCROLL FOR MOBILE --- */
@media (max-width: 1024px) {
    .preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .frame-1, .frame-2, .frame-3, .frame-4 {
        width: 150px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-header {
        padding: 1rem 1.5rem;
    }
    
    .header-right nav ul {
        gap: 1.2rem;
    }
    
    .logo-image {
        height: 28px;
        max-width: 100px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-link {
        font-size: 0.7rem;
    }
    
    .panoramic-title {
        font-size: 3rem;
    }
    
    .pre-title {
        font-size: 0.7rem;
    }
    
    .section {
        padding: 6rem 1.5rem 4rem;
    }
    
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .preview-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-email {
        font-size: 1.3rem;
    }
    
    .main-figure {
        width: 200px;
        height: 350px;
    }
    
    .frame-1, .frame-2, .frame-3, .frame-4 {
        width: 120px;
        height: 160px;
    }
    
    .frame-1 { top: 10%; left: 5%; }
    .frame-2 { top: 15%; right: 5%; }
    .frame-3 { bottom: 20%; left: 5%; }
    .frame-4 { bottom: 20%; right: 5%; }
    
    .wall-text {
        font-size: 4rem;
    }
    
    /* Netflix-style horizontal scroll */
    .preview-grid.netflix-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem 0 2rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .preview-grid.netflix-row::-webkit-scrollbar {
        display: none;
    }
    
    .preview-grid.netflix-row .preview-item {
        flex: 0 0 70%;
        scroll-snap-align: start;
        aspect-ratio: 16/9;
        margin-bottom: 0;
    }
    
    .preview-grid.netflix-row .preview-item:first-child {
        margin-left: 1.5rem;
    }
    
    .preview-grid.netflix-row .preview-item:last-child {
        margin-right: 1.5rem;
    }
    
    .preview-grid.netflix-row .preview-media img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .header-right nav ul {
        gap: 0.8rem;
    }
    
    .nav-link {
        letter-spacing: 0.1em;
    }
    
    .logo-image {
        height: 22px;
        max-width: 80px;
    }
    
    .preview-grid {
        grid-template-columns: 1fr;
    }
    
    .panoramic-title {
        font-size: 2.2rem;
    }
    
    .chrome-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .frame-1, .frame-2, .frame-3, .frame-4 {
        width: 80px;
        height: 104px;
    }
    
    .frame-1 { top: 10%; left: 5%; }
    .frame-2 { top: 15%; right: 5%; }
    .frame-3 { bottom: 20%; left: 5%; }
    .frame-4 { bottom: 20%; right: 5%; }
    
    .preview-grid.netflix-row .preview-item {
        flex: 0 0 85%;
    }
}