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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #c9a96e;
    --accent-light: #dfc08a;
    --accent-dark: #a88a4e;
    --border: #222222;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

body.loading {
    overflow: hidden;
}

::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--text-primary);
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: -3px;
    transition: transform 0.1s, opacity 0.3s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: absolute;
    top: -18px;
    left: -18px;
    transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s, border-color 0.3s, background 0.3s;
}

.cursor-label {
    display: none;
}

body.cursor-hover-play .cursor-ring,
body.cursor-hover-expand .cursor-ring {
    width: 50px;
    height: 50px;
    top: -25px;
    left: -25px;
    border-color: var(--accent);
    background: rgba(201, 169, 110, 0.08);
}

body.cursor-hover-play .cursor-dot,
body.cursor-hover-expand .cursor-dot {
    background: var(--accent);
    transform: scale(1.5);
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
    .custom-cursor { display: none; }
    body { cursor: auto; }
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s;
}

.loader.done {
    pointer-events: none;
}

.loader-inner {
    text-align: center;
    z-index: 2;
}

.loader-text {
    display: flex;
    gap: 0.3rem;
    justify-content: center;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.loader-letter {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: letterReveal 0.6s forwards;
    text-shadow: 0 0 40px rgba(201, 169, 110, 0.3);
}

.loader-letter:nth-child(1) { animation-delay: 0.3s; }
.loader-letter:nth-child(2) { animation-delay: 0.45s; }
.loader-letter:nth-child(3) { animation-delay: 0.6s; }
.loader-letter:nth-child(4) { animation-delay: 0.75s; }

@keyframes letterReveal {
    0% { opacity: 0; transform: translateY(100%); }
    60% { opacity: 1; transform: translateY(-10%); }
    100% { opacity: 1; transform: translateY(0); }
}

.loader-drone {
    width: 90px;
    height: 65px;
    color: var(--accent);
    position: absolute;
    top: 50%;
    transform: translateY(-130%);
    opacity: 0;
    animation: dronefly 4s 0.9s ease-in-out forwards;
    filter: drop-shadow(0 0 12px rgba(201, 169, 110, 0.6));
    margin-top: -1rem;
}

.loader-drone svg {
    width: 100%;
    height: 100%;
}

/* Spinning propeller blades */
.blade-1, .blade-2 {
    transform-origin: 10px 7.5px;
    animation: spinBlade 0.15s linear infinite;
}

.blade-3, .blade-4 {
    transform-origin: 54px 7.5px;
    animation: spinBlade 0.15s linear infinite;
}

.blade-2 { animation-delay: 0.075s; }
.blade-4 { animation-delay: 0.075s; }

@keyframes spinBlade {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Propeller motion blur disc */
.prop-disc {
    animation: discPulse 0.2s ease-in-out infinite alternate;
}

@keyframes discPulse {
    0% { opacity: 0.1; }
    100% { opacity: 0.25; }
}

/* Lens sparkle */
.lens-sparkle {
    animation: sparkle 1.5s ease-in-out infinite;
}

.lens-sparkle-2 {
    animation: sparkle 1.5s 0.75s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; r: 0.4; }
    50% { opacity: 1; r: 0.7; }
}

@keyframes dronefly {
    0% {
        left: -60px;
        opacity: 0;
        transform: translateY(-220%) rotate(-3deg);
    }
    10% {
        opacity: 1;
        transform: translateY(-220%) rotate(0deg);
    }
    35% {
        transform: translateY(-240%) rotate(2deg);
    }
    50% {
        transform: translateY(-215%) rotate(-1deg);
    }
    65% {
        transform: translateY(-235%) rotate(1deg);
    }
    90% {
        opacity: 1;
        transform: translateY(-220%) rotate(0deg);
    }
    100% {
        left: calc(100% + 60px);
        opacity: 0;
        transform: translateY(-220%) rotate(3deg);
    }
}

.loader-sub {
    font-size: 0.75rem;
    letter-spacing: 8px;
    color: var(--text-secondary);
    opacity: 0;
    animation: fadeUp 0.6s 1s forwards;
}

.loader-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 2rem;
    transform: scaleX(0);
    animation: lineGrow 0.8s 0.1s forwards;
}

@keyframes lineGrow {
    to { transform: scaleX(1); }
}

.loader-progress {
    width: 200px;
    height: 1px;
    background: var(--border);
    margin: 1.5rem auto 0;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.4s 1.2s forwards;
}

.loader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
    animation: progressFill 1.5s 1.4s ease-in-out forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    30% { width: 40%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* Shutter reveal */
.loader-shutter {
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--bg-primary);
    z-index: 1;
    transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}

.loader-shutter-top { top: 0; }
.loader-shutter-bottom { bottom: 0; }

.loader.done .loader-shutter-top {
    transform: translateY(-100%);
}

.loader.done .loader-shutter-bottom {
    transform: translateY(100%);
}

.loader.done .loader-inner {
    animation: loaderFade 0.4s forwards;
}

@keyframes loaderFade {
    to { opacity: 0; transform: scale(0.9); }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--text-primary);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
    z-index: 1001;
    transition: width 0.05s linear;
    box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 2px;
    transition: color 0.3s;
}

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

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

.video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-video.active {
    opacity: 1;
}

.hero-video.first-load {
    opacity: 0;
    animation: videoFadeIn 1.5s 0.5s ease-in forwards;
}

@keyframes videoFadeIn {
    to { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.1) 40%,
        rgba(10, 10, 10, 0.2) 60%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 6px;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.5s forwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    letter-spacing: 4px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.8s forwards;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 1.1s forwards;
}

.hero-cert {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 1.2s forwards;
}

.hero-cert::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.hero-cta {
    display: inline-block;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 1.5s forwards;
}

.hero-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeUp 1s 2s forwards;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollBounce 2s infinite;
}

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

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

/* ===== SECTIONS SHARED ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 5px;
    color: var(--accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    padding: 8rem 4rem;
    background: var(--bg-primary);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: none;
    aspect-ratio: 16/9;
    background: var(--bg-card);
}

/* Stat cards */
.gallery-item.stat-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    cursor: none;
}

.stat-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-primary);
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 30px;
    height: 1px;
    background: var(--border);
    margin: 0.3rem 0;
}

.stat-detail {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s;
}

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

.gallery-tag {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.gallery-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: var(--transition);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
}

.gallery-item:hover .play-icon {
    opacity: 1;
    background: var(--accent);
    color: var(--bg-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== BEFORE & AFTER ===== */
.before-after {
    padding: 8rem 4rem;
    background: var(--bg-secondary);
}

.ba-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    letter-spacing: 0.5px;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ba-container {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.ba-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0.8rem 1rem;
    background: var(--bg-card);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.ba-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    background: var(--bg-card);
}

.ba-after {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-before-clip {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    z-index: 1;
}

.ba-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Force the before video to match the full container width so both sides align */
.ba-before-clip .ba-before {
    width: auto;
    min-width: 100%;
    min-height: 100%;
}

.ba-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    z-index: 3;
}

.ba-slider-line {
    position: absolute;
    inset: 0;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
}

.ba-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s;
}

.ba-slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.ba-arrow-left, .ba-arrow-right {
    font-size: 0.6rem;
    color: var(--bg-primary);
    font-weight: 700;
    line-height: 1;
}

.ba-label {
    position: absolute;
    bottom: 1rem;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 4;
    pointer-events: none;
}

.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

.ba-center {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
}

/* ===== SERVICES ===== */
.services {
    padding: 8rem 4rem;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-dark);
    transform: translateY(-4px);
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CONTACT ===== */
.contact {
    padding: 8rem 4rem;
    background: var(--bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    outline: none;
    cursor: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: none;
    color: var(--text-muted);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select:valid {
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: none;
    transition: var(--transition);
    align-self: flex-start;
}

.submit-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.submit-btn.sending {
    pointer-events: none;
    opacity: 0.6;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.form-success.show {
    display: block;
    animation: fadeUp 0.6s forwards;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.footer-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 0 auto 1.5rem;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== LIGHTBOX (CINEMATIC) ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.97);
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

/* Film grain overlay */
.lightbox-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    animation: grainShift 0.5s steps(4) infinite;
}

@keyframes grainShift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-5%, 5%); }
    50% { transform: translate(5%, -5%); }
    75% { transform: translate(-3%, -3%); }
    100% { transform: translate(0, 0); }
}

/* Letterbox bars */
.lightbox-letterbox {
    position: absolute;
    left: 0;
    right: 0;
    height: 8%;
    background: black;
    z-index: 2002;
    pointer-events: none;
}

.lightbox-letterbox-top { top: 0; }
.lightbox-letterbox-bottom { bottom: 0; }

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: none;
    z-index: 2003;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: none;
    z-index: 2003;
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    z-index: 2001;
}

.lightbox-video {
    max-width: 90vw;
    max-height: 75vh;
    display: none;
    border-radius: 4px;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 75vh;
    display: none;
    border-radius: 4px;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    body { cursor: auto; }

    .navbar {
        padding: 1.2rem 2rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
        cursor: pointer;
    }

    .hero {
        height: 85vh;
    }

    .hero-video {
        object-position: center;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 4px;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    .portfolio {
        padding: 5rem 1.5rem;
    }

    .gallery {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .gallery-item {
        cursor: pointer;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .before-after {
        padding: 5rem 1.5rem;
    }

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

    .ba-center {
        max-width: 100%;
    }

    .services {
        padding: 5rem 1.5rem;
    }

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

    .contact {
        padding: 5rem 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer {
        padding: 3rem 1.5rem;
    }

    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        cursor: pointer;
    }

    .lightbox-close {
        cursor: pointer;
    }

    .loader-letter {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        padding: 0.8rem 2rem;
        font-size: 0.75rem;
    }
}
