/* ============================================
   LUMIERE STUDIO — Cinematic Poetic Design
   ============================================ */

:root {
    --bg: #f5f0eb;
    --bg-dark: #1a1714;
    --bg-warm: #ece5dc;
    --text: #1a1714;
    --text-light: #6b6560;
    --accent: #c47d5a;
    --accent2: #a8643e;
    --cream: #faf7f3;
    --white: #ffffff;
    --serif: 'DM Serif Display', 'Georgia', serif;
    --sans: 'Space Grotesk', 'Helvetica Neue', sans-serif;
    --display: 'Italiana', serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); overflow-x: hidden; -webkit-font-smoothing: antialiased; cursor: none; }
::selection { background: var(--accent); color: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }

/* ============ CUSTOM CURSOR ============ */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s, opacity 0.3s;
    opacity: 0.5;
}

body.cursor-hover .cursor-dot {
    width: 14px; height: 14px;
    background: var(--accent2);
}

body.cursor-hover .cursor-ring {
    width: 60px; height: 60px;
    opacity: 0.2;
}

/* ============ PRELOADER ============ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner { text-align: center; }

.preloader-line {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto 24px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--accent);
    animation: preloaderSlide 1.5s ease-in-out forwards;
}

@keyframes preloaderSlide {
    to { left: 0; }
}

.preloader-text {
    font-family: var(--serif);
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* ============ NAVIGATION ============ */
.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 50px;
    transition: all 0.5s var(--ease);
}

.main-nav.scrolled {
    padding: 16px 50px;
    background: rgba(245, 240, 235, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.05);
}

.main-nav.scrolled .nav-brand,
.main-nav.scrolled .nav-links a { color: var(--text); }

.nav-brand {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color 0.4s;
}

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

.nav-links a {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.main-nav.scrolled .nav-links a:hover { color: var(--accent); }

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.nav-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.4s var(--ease);
}

.main-nav.scrolled .nav-menu-btn span { background: var(--text); }

.nav-menu-btn.open span:first-child { transform: rotate(45deg) translate(5px, 6px); background: var(--white); }
.nav-menu-btn.open span:last-child { transform: rotate(-45deg) translate(5px, -6px); background: var(--white); }

/* ============ MOBILE OVERLAY ============ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-overlay-content a {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 4px;
    transition: color 0.3s;
}

.mobile-overlay-content a:hover { color: var(--accent); }

/* ============ HERO ============ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 120px 80px 80px;
    position: relative;
    z-index: 2;
}

.hero-text-block { max-width: 540px; }

.hero-eyebrow {
    margin-bottom: 28px;
    overflow: hidden;
}

.hero-eyebrow span {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    transform: translateY(100%);
    animation: lineReveal 0.8s var(--ease-out) 1.6s forwards;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero-title .anim-line {
    display: block;
    overflow: hidden;
}

.hero-title .anim-line span {
    display: inline-block;
    transform: translateY(100%);
    animation: lineReveal 0.9s var(--ease-out) forwards;
}

.hero-title .anim-line:nth-child(1) span { animation-delay: 1.8s; }
.hero-title .anim-line:nth-child(2) span { animation-delay: 2s; }

.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-desc {
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-desc span {
    display: inline-block;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    transform: translateY(100%);
    animation: lineReveal 0.8s var(--ease-out) 2.2s forwards;
}

.hero-cta {
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-cta a {
    transform: translateY(100%);
    animation: lineReveal 0.8s var(--ease-out) 2.4s forwards;
}

@keyframes lineReveal {
    to { transform: translateY(0); }
}

/* Explore button */
.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    padding: 18px 36px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-explore::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
    z-index: -1;
}

.btn-explore:hover::before { transform: scaleX(1); }
.btn-explore:hover { border-color: var(--accent); }

.btn-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.btn-explore:hover .btn-arrow { transform: translateX(6px); }

/* Hero meta */
.hero-meta {
    display: flex;
    gap: 50px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 2.8s forwards;
}

.hero-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-num {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--white);
}

.meta-label {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero right */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-stack { position: relative; width: 100%; height: 100%; }

.hero-img-main {
    position: absolute;
    top: 10%; right: 5%;
    width: 65%; height: 75%;
    overflow: hidden;
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    animation: heroImgZoom 1.5s var(--ease-out) 1s forwards;
}

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

.hero-img-frame {
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(196, 125, 90, 0.3);
    pointer-events: none;
    transform: translate(15px, 15px);
}

.hero-img-float {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 35%;
    height: 40%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 2.6s forwards;
}

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

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scroll-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: scrollBounce 2s ease infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.4; }
}

.hero-scroll-indicator span {
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ============ MARQUEE ============ */
.marquee-strip {
    padding: 24px 0;
    background: var(--accent);
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-track span {
    font-family: var(--display);
    font-size: 1.2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--white);
}

.marquee-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    display: inline-block;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ SECTION SHARED ============ */
.section-number {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-style: italic;
    color: rgba(196, 125, 90, 0.15);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.section-tag {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 16px;
}

/* ============ STORY ============ */
.story-section { padding: 140px 0; }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-wrap {
    position: relative;
    overflow: hidden;
}

.story-image-wrap img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.story-image-wrap:hover img { transform: scale(1.04); }

.story-image-tag {
    position: absolute;
    bottom: 20px; right: 20px;
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--accent);
    padding: 8px 16px;
}

.story-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 30px;
}

.story-heading em {
    font-style: italic;
    color: var(--accent);
}

.story-text {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-signature {
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.signature-img {
    width: 140px;
    opacity: 0.4;
    margin-bottom: 8px;
    filter: contrast(0.3);
}

.story-signature span {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ============ SERVICES ============ */
.services-section {
    padding: 100px 0 120px;
    background: var(--bg-warm);
    position: relative;
}

.services-header { margin-bottom: 60px; }

.services-list { position: relative; }

.service-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: all 0.4s var(--ease);
    position: relative;
}

.service-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }

.service-item:hover { padding-left: 20px; }

.service-num {
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--accent);
    min-width: 40px;
}

.service-title {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--text);
    flex: 1;
    transition: color 0.3s;
}

.service-item:hover .service-title { color: var(--accent); }

.service-desc {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 300px;
}

.service-arrow {
    font-size: 1.2rem;
    color: var(--accent);
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s var(--ease);
}

.service-item:hover .service-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* Service preview image */
.service-preview {
    position: fixed;
    width: 350px;
    height: 230px;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-preview.visible { opacity: 1; }
.service-preview img { width: 100%; height: 100%; object-fit: cover; }

/* ============ HORIZONTAL SCROLL ============ */
.hscroll-section {
    padding: 120px 0 80px;
    background: var(--bg-dark);
    color: var(--white);
    overflow: hidden;
}

.hscroll-header {
    padding: 0 50px;
    margin-bottom: 60px;
}

.hscroll-header .section-number { color: rgba(196,125,90,0.25); }
.hscroll-header .section-tag { color: var(--accent); }

.hscroll-title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--white);
}

.hscroll-title em {
    font-style: italic;
    color: var(--accent);
}

.hscroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 50px;
}

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

.hscroll-track {
    display: flex;
    gap: 24px;
    padding-bottom: 10px;
}

.hscroll-item {
    flex: 0 0 380px;
    position: relative;
}

.hscroll-item.hscroll-wide { flex: 0 0 580px; }

.hscroll-img {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.hscroll-wide .hscroll-img { height: 500px; }

.hscroll-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

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

.hscroll-caption {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hsc-name {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--white);
}

.hsc-location {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* Progress bar */
.hscroll-progress {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 40px auto 0;
    border-radius: 2px;
    overflow: hidden;
}

.hscroll-progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s;
    border-radius: 2px;
}

/* ============ CINEMA SECTION ============ */
.cinema-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinema-image {
    position: absolute;
    inset: -60px;
}

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

.cinema-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 23, 20, 0.55);
}

.cinema-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.cinema-tag {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 24px;
}

.cinema-quote {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
}

.cinema-quote em {
    font-style: italic;
    color: var(--accent);
}

/* Film strip decoration */
.cinema-film-strip {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 30px;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 30px;
}

.film-hole {
    width: 14px;
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

/* ============ MOSAIC ============ */
.mosaic-section { padding: 100px 50px; }

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.mosaic-item:hover img { transform: scale(1.08); }

.mosaic-tall { grid-row: span 2; }
.mosaic-wide { grid-column: span 2; }

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(26,23,20,0.7));
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.5s;
}

.mosaic-item:hover .mosaic-overlay { opacity: 1; }

.mosaic-overlay span {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
}

/* ============ JOURNAL / TESTIMONIALS ============ */
.journal-section {
    padding: 120px 0;
    background: var(--bg-warm);
}

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

.journal-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text);
}

.journal-title em { font-style: italic; color: var(--accent); }

.journal-slider { position: relative; overflow: hidden; }

.journal-slide {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s var(--ease);
}

.journal-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.journal-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.journal-img {
    overflow: hidden;
    border-radius: 4px;
    height: 480px;
}

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

.journal-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 0.9rem;
}

.journal-text blockquote {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 30px;
}

.journal-author strong {
    display: block;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 4px;
}

.journal-author span {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--accent);
}

.journal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
}

.jnav-btn {
    width: 50px; height: 50px;
    border: 1px solid var(--text-light);
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s;
}

.jnav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.jnav-counter {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    letter-spacing: 3px;
}

/* ============ PROCESS ============ */
.process-section {
    padding: 120px 0;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text);
}

.process-title em { font-style: italic; color: var(--accent); }

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: 32px;
    width: 1px;
    background: rgba(0,0,0,0.08);
}

.process-step {
    display: flex;
    gap: 40px;
    padding: 30px 0;
    position: relative;
}

.step-number {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent);
    min-width: 64px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 12px; height: 12px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg);
    display: none;
}

.step-content h4 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
}

.step-content p {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============ CONTACT ============ */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.contact-image-side {
    position: relative;
    overflow: hidden;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(26,23,20,0.6));
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 40px;
}

.contact-year {
    font-family: var(--serif);
    font-size: 6rem;
    font-style: italic;
    color: rgba(255,255,255,0.12);
    line-height: 1;
}

.contact-form-side {
    background: var(--bg-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.contact-form-inner { max-width: 520px; width: 100%; }

.contact-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 40px;
}

.contact-heading em { font-style: italic; color: var(--accent); }

/* Form */
.cf-form { margin-bottom: 40px; }

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.cf-group {
    position: relative;
    margin-bottom: 0;
}

.cf-full { margin-bottom: 24px; }

.cf-group input,
.cf-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.9rem;
    padding: 16px 0 8px;
    outline: none;
    transition: border-color 0.3s;
}

.cf-group textarea { resize: none; }

.cf-group label {
    position: absolute;
    top: 16px; left: 0;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.cf-group input:focus ~ label,
.cf-group input:not(:placeholder-shown) ~ label,
.cf-group textarea:focus ~ label,
.cf-group textarea:not(:placeholder-shown) ~ label {
    top: -4px;
    font-size: 0.6rem;
    color: var(--accent);
}

.cf-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width 0.4s var(--ease);
}

.cf-group input:focus ~ .cf-line,
.cf-group textarea:focus ~ .cf-line { width: 100%; }

.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 18px 40px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.cf-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
    z-index: -1;
}

.cf-submit:hover::before { transform: scaleX(1); }
.cf-submit:hover { border-color: var(--accent); }

.cf-btn-arrow {
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}

.cf-submit:hover .cf-btn-arrow { transform: translateX(6px); }

/* Success */
.cf-success {
    text-align: center;
    padding: 60px 0;
}

.cf-success-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.cf-success h4 {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cf-success p {
    font-family: var(--sans);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* Contact info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.ci-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--sans);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.ci-item i { color: var(--accent); font-size: 1rem; }

/* ============ INSTAGRAM ============ */
.insta-section {
    padding: 80px 0 0;
    background: var(--bg);
}

.insta-top {
    text-align: center;
    margin-bottom: 50px;
}

.insta-handle {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--text);
    display: inline-block;
    margin-top: 12px;
    transition: color 0.3s;
}

.insta-handle:hover { color: var(--accent); }

.insta-filmstrip {
    overflow: hidden;
    position: relative;
}

.insta-filmstrip::before,
.insta-filmstrip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.insta-filmstrip::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.insta-filmstrip::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.insta-filmstrip-track {
    display: flex;
    gap: 8px;
    animation: instaScroll 30s linear infinite;
}

.insta-frame {
    flex: 0 0 220px;
    height: 220px;
    overflow: hidden;
}

.insta-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
    transition: filter 0.4s, transform 0.4s;
}

.insta-frame:hover img {
    filter: grayscale(0);
    transform: scale(1.06);
}

@keyframes instaScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============ FOOTER ============ */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-dark);
    color: rgba(255,255,255,0.4);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 1.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.footer-logo:hover { color: var(--accent); }

.footer-tagline {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.35);
}

.footer-col h5 {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    padding: 6px 0;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom span {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============ REVEAL ANIMATION ============ */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease, transform 0.9s var(--ease);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 140px 50px 60px; }
    .hero-right { height: 60vh; }
    .hero-img-main { top: 5%; right: 5%; width: 70%; height: 80%; }
    .hero-img-float { left: 3%; bottom: 5%; width: 40%; height: 45%; }
    .contact-section { grid-template-columns: 1fr; }
    .contact-image-side { height: 50vh; }
    .contact-form-side { padding: 60px 40px; }
}

@media (max-width: 991px) {
    body { cursor: auto; }
    body * { cursor: auto !important; }
    .cursor-dot, .cursor-ring { display: none; }
    .nav-links { display: none; }
    .nav-menu-btn { display: flex; }
    .main-nav { padding: 20px 30px; }
    .hero-left { padding: 120px 30px 50px; }
    .story-grid { grid-template-columns: 1fr; gap: 50px; }
    .story-image-wrap img { height: 450px; }
    .service-desc { display: none; }
    .hscroll-header { padding: 0 30px; }
    .hscroll-container { padding: 0 30px; }
    .hscroll-item { flex: 0 0 300px; }
    .hscroll-item.hscroll-wide { flex: 0 0 460px; }
    .hscroll-img { height: 400px; }
    .mosaic-section { padding: 80px 20px; }
    .mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .mosaic-wide { grid-column: span 2; }
    .journal-slide-inner { grid-template-columns: 1fr; gap: 30px; }
    .journal-img { height: 350px; }
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
    .hero-left { padding: 100px 20px 40px; }
    .hero-title { font-size: 2.5rem; }
    .hero-meta { gap: 30px; }
    .meta-num { font-size: 1.5rem; }
    .hero-right { height: 50vh; }
    .hero-scroll-indicator { display: none; }
    .story-image-wrap img { height: 350px; }
    .service-item { gap: 16px; padding: 24px 0; }
    .hscroll-item { flex: 0 0 260px; }
    .hscroll-item.hscroll-wide { flex: 0 0 360px; }
    .hscroll-img { height: 340px; }
    .mosaic-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
    .mosaic-tall { grid-row: span 1; }
    .mosaic-wide { grid-column: span 1; }
    .cinema-section { height: 60vh; }
    .cf-row { grid-template-columns: 1fr; }
    .contact-form-side { padding: 50px 20px; }
    .footer-main { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .insta-frame { flex: 0 0 180px; height: 180px; }
}
