:root {
    --bg: #080808;
    --bg-card: #0f0f0f;
    --bg-elevated: #151515;
    --text: #f0ece4;
    --text-muted: #8a857d;
    --yellow: #e1ce11;
    --border: #1c1c1c;
    --border-light: #262626;
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', sans-serif;
    --header-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { border: none; background: none; font-family: inherit; cursor: pointer; color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
::selection { background: var(--yellow); color: var(--bg); }

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 64px);
}

/* PAGE TRANSITION */
.page-transition {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--yellow); z-index: 10001;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
.page-transition-inner {
    font-family: var(--font-display); font-size: clamp(20px, 3vw, 32px);
    font-weight: 700; letter-spacing: 0.15em; color: var(--bg);
}

/* FILM GRAIN */
.grain-overlay {
    position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
    pointer-events: none; z-index: 9999; opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    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(3%, 3%); }
}

/* CUSTOM CURSOR */
.cursor { position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none; }
.cursor-dot { width: 6px; height: 6px; background: var(--yellow); border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-ring {
    position: absolute; top: -14px; left: -14px; width: 34px; height: 34px;
    border: 1px solid rgba(225, 206, 17, 0.3); border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cursor.hovering .cursor-ring {
    width: 64px; height: 64px; top: -29px; left: -29px;
    border-color: var(--yellow); background: rgba(225, 206, 17, 0.06);
}
.cursor.hovering .cursor-dot { transform: translate(-50%, -50%) scale(0); }

/* IMAGE TILT */
.tilt-card { transform-style: preserve-3d; perspective: 800px; }

/* HEADER */
.header {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-h);
    z-index: 100; border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.header.scrolled {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: 0.08em; display: flex; align-items: center; }
.logo span { color: var(--yellow); }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav-link { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; color: var(--text-muted); transition: color 0.3s; }
.nav-link:hover { color: var(--text); }
.nav-cta {
    color: var(--bg) !important; background: var(--yellow);
    padding: 10px 28px; border-radius: 100px; font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(225, 206, 17, 0.3); }
.menu-btn { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 101; }
.menu-btn span { width: 28px; height: 2px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.menu-btn.active span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-btn.active span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg); z-index: 99; flex-direction: column;
    align-items: center; justify-content: center; gap: 32px;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav.active { opacity: 1; pointer-events: all; }
.mobile-nav-link {
    font-family: var(--font-display); font-size: clamp(28px, 6vw, 48px);
    font-weight: 700; color: var(--text-muted); transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--yellow); }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-size: 14px; font-weight: 600;
    letter-spacing: 0.04em; padding: 16px 36px; border-radius: 100px;
    background: var(--yellow); color: var(--bg);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(225, 206, 17, 0.25); }
.btn-outline {
    background: transparent; border: 1px solid var(--border-light); color: var(--text);
}
.btn-outline:hover { border-color: var(--text); box-shadow: none; }
.btn-ghost {
    background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--text);
}
.btn-ghost:hover { border-color: var(--text); }

/* SECTION LABEL */
.section-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--yellow);
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--yellow); }

/* HERO REEL */
.hero-reel {
    position: relative; width: 100%; height: 100vh; min-height: 600px;
    display: flex; align-items: flex-end; overflow: hidden;
}
.hero-reel-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.hero-video {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-reel-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to top,
        var(--bg) 0%,
        rgba(8, 8, 8, 0.7) 30%,
        rgba(8, 8, 8, 0.3) 60%,
        rgba(8, 8, 8, 0.5) 100%
    );
}
.hero-reel-content {
    position: relative; z-index: 2; padding-bottom: 100px;
}
.hero-reel-tag {
    display: inline-block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--yellow); margin-bottom: 20px;
}
.hero-reel-title {
    font-family: var(--font-display); font-size: clamp(40px, 7vw, 100px);
    font-weight: 800; line-height: 0.95; letter-spacing: -0.03em;
    margin-bottom: 24px; color: var(--text);
}
.hero-reel-title span { color: var(--yellow); }
.hero-reel-subtitle {
    font-size: clamp(14px, 2vw, 20px); color: var(--text-muted);
    font-weight: 400; margin-bottom: 16px; max-width: 560px; line-height: 1.6;
}
.hero-reel-line { width: 48px; height: 2px; background: var(--yellow); margin-bottom: 32px; }
.hero-reel-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-reel-scroll {
    position: absolute; bottom: 40px; right: clamp(20px, 4vw, 64px);
    display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero-reel-scroll span {
    font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--text-muted); writing-mode: vertical-rl;
}
.scroll-line { width: 1px; height: 48px; background: var(--border); position: relative; overflow: hidden; }
.scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: var(--yellow); animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; } }

/* SECTION */
.section { padding: 160px 0; }
.section-title {
    font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px);
    font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 20px;
}
.section-text { font-size: 16px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* MARQUEE */
.marquee-section {
    padding: 40px 0; border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); overflow: hidden;
}
.marquee-track { display: flex; width: fit-content; animation: marquee 25s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 32px; padding: 0 32px; white-space: nowrap; }
.marquee-item span {
    font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

/* TESTIMONIAL MARQUEE */
.testimonial-marquee { overflow: hidden; padding: 0 0 40px; }
.testimonial-marquee-track { display: flex; width: max-content; animation: testimonial-scroll 30s linear infinite; }
.testimonial-marquee-track:hover { animation-play-state: paused; }
@keyframes testimonial-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.testimonial-marquee-card {
    flex-shrink: 0; width: 400px; padding: 32px; margin: 0 12px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
    transition: border-color 0.3s;
}
.testimonial-marquee-card:hover { border-color: var(--yellow); }

/* SERVICES */
.services-section { padding: 160px 0; background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.services-header-left .section-title { margin-top: 20px; }
.services-header-right p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.service-card {
    background: var(--bg-card); padding: 48px 28px; position: relative; overflow: hidden;
    transition: background 0.3s;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: var(--yellow); transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover { background: var(--bg-elevated); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--yellow); margin-bottom: 28px; }
.service-name { font-family: var(--font-display); font-size: clamp(18px, 1.8vw, 24px); font-weight: 600; margin-bottom: 12px; line-height: 1.2; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* PORTFOLIO */
.portfolio-section { background: var(--bg); }
.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.portfolio-header .section-title { margin-top: 20px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.portfolio-card {
    position: relative; overflow: hidden; border-radius: 6px;
    background: var(--bg-elevated); border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}
.portfolio-card:hover { transform: translateY(-4px); border-color: var(--border-light); }
.portfolio-card:nth-child(1) { grid-column: 1 / 8; aspect-ratio: 16/10; }
.portfolio-card:nth-child(2) { grid-column: 8 / 13; aspect-ratio: 4/3; }
.portfolio-card:nth-child(3) { grid-column: 1 / 6; aspect-ratio: 3/4; }
.portfolio-card:nth-child(4) { grid-column: 6 / 13; aspect-ratio: 16/9; }
.portfolio-card:nth-child(5) { grid-column: 1 / 13; aspect-ratio: 21/9; }
.portfolio-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.portfolio-card:hover .portfolio-img { transform: scale(1.05); }
.portfolio-info {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 32px;
    background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, transparent 100%);
    transform: translateY(12px); opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-card:hover .portfolio-info { transform: translateY(0); opacity: 1; }
.portfolio-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.portfolio-name { font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px); font-weight: 600; }

/* PROCESS */
.process-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-header { text-align: center; margin-bottom: 80px; }
.process-header .section-title { margin-top: 20px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: var(--border); }
.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-num {
    width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    background: var(--bg-card); position: relative; z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-step:hover .step-num { background: var(--yellow); color: var(--bg); border-color: var(--yellow); transform: scale(1.15); }
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* STATS */
.stats-section { padding: 100px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(48px, 6vw, 72px); font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ABOUT */
.about-section { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
.about-image { position: relative; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; background: var(--bg-elevated); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
    content: ''; position: absolute; top: 16px; right: -16px; width: 100%; height: 100%;
    border: 1px solid var(--yellow); border-radius: 6px; z-index: -1; opacity: 0.2;
}
.about-content .section-title { margin-top: 20px; margin-bottom: 24px; }
.about-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; }
.about-feature-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

/* TESTIMONIALS */
.testimonials-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-header { text-align: center; margin-bottom: 80px; }
.testimonials-header .section-title { margin-top: 20px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
    background: var(--bg); border: 1px solid var(--border-light); border-radius: 6px;
    padding: 40px; transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.testimonial-quote { font-size: 16px; line-height: 1.7; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: var(--bg-elevated);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 16px; color: var(--yellow); overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 14px; font-weight: 600; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }

/* FAQ */
.faq-section { background: var(--bg); }
.faq-header { text-align: center; margin-bottom: 64px; }
.faq-header .section-title { margin-top: 20px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 28px 0; font-family: var(--font-display); font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 600; text-align: left; color: var(--text); transition: color 0.3s;
}
.faq-question:hover { color: var(--yellow); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; position: relative; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--text-muted); transition: background 0.3s; }
.faq-icon::before { width: 20px; height: 1px; top: 50%; left: 0; }
.faq-icon::after { width: 1px; height: 20px; left: 50%; top: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-icon::before, .faq-item.active .faq-icon::after { background: var(--yellow); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding-bottom: 28px; font-size: 15px; line-height: 1.7; color: var(--text-muted); }

/* CONTACT */
.contact-section { background: var(--bg-card); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.contact-info .section-title { margin-top: 20px; margin-bottom: 24px; }
.contact-text { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 48px; }
.contact-detail { margin-bottom: 28px; }
.contact-detail-label { font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-value { font-size: 16px; font-weight: 500; }
.contact-form { background: var(--bg); border: 1px solid var(--border-light); border-radius: 6px; padding: 48px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-control, .form-textarea {
    width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 15px;
    color: var(--text); background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: 6px; outline: none; transition: border-color 0.3s;
}
.form-control:focus, .form-textarea:focus { border-color: var(--yellow); }
.form-textarea { min-height: 120px; resize: vertical; }
select.form-control {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238a857d' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
select.form-control option { background: var(--bg-card); color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-message { font-size: 14px; margin-top: 12px; }
.form-message.success { color: #22c55e; }
.form-message.error { color: #ef4444; }

/* FOOTER */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-left { display: flex; flex-direction: column; gap: 8px; }
.footer-logo-link { display: flex; align-items: center; }
.footer-logo-img { height: 36px; width: auto; object-fit: contain; }
.footer-logo { font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.1em; }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-right { display: flex; gap: 28px; }
.footer-link { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
.footer-link:hover { color: var(--yellow); }

/* PORTFOLIO LIST PAGE */
.page-hero { padding: calc(var(--header-h) + 80px) 0 60px; text-align: center; }
.page-hero .section-title { font-size: clamp(36px, 6vw, 72px); font-weight: 800; line-height: 1; margin-top: 20px; }
.portfolio-filters { display: flex; justify-content: center; gap: 8px; margin-top: 40px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 24px; font-size: 13px; font-weight: 500; letter-spacing: 0.05em;
    color: var(--text-muted); border: 1px solid var(--border); border-radius: 100px;
    transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--yellow); color: var(--bg); border-color: var(--yellow); }
.portfolio-list-section { padding: 60px 0 160px; }
.portfolio-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 16px; }
.portfolio-list-item {
    position: relative; overflow: hidden; border-radius: 6px;
    background: var(--bg-elevated); aspect-ratio: 16/10;
    border: 1px solid var(--border); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}
.portfolio-list-item:hover { transform: translateY(-4px); border-color: var(--border-light); }
.portfolio-list-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.portfolio-list-item:hover img { transform: scale(1.05); }

/* PORTFOLIO DETAIL */
.portfolio-detail-hero { padding: calc(var(--header-h) + 60px) 0 40px; }
.portfolio-detail-hero .section-title { font-size: clamp(36px, 6vw, 72px); font-weight: 800; line-height: 1; margin-top: 20px; }
.portfolio-detail-meta { display: flex; gap: 48px; margin-top: 32px; }
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.meta-value { font-size: 15px; font-weight: 500; }
.portfolio-detail-image { width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 6px; margin: 60px auto; max-width: 1400px; }
.portfolio-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-detail-content { max-width: 760px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }
.portfolio-detail-content .section-title { font-size: clamp(28px, 4vw, 48px); font-weight: 700; line-height: 1.1; margin-bottom: 24px; margin-top: 20px; }
.portfolio-detail-content .about-text { margin-bottom: 32px; }
.portfolio-nav {
    display: flex; justify-content: space-between; padding-top: 60px;
    border-top: 1px solid var(--border); margin-top: 60px; max-width: 1400px;
    margin-left: auto; margin-right: auto;
    padding-left: clamp(20px, 4vw, 64px); padding-right: clamp(20px, 4vw, 64px);
    padding-bottom: 80px;
}
.portfolio-nav-link { transition: color 0.3s; }
.portfolio-nav-link:hover { color: var(--yellow); }
.portfolio-nav-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.portfolio-nav-title { font-family: var(--font-display); font-size: 16px; font-weight: 600; }

/* SEARCH */
.search-section { padding: calc(var(--header-h) + 80px) 0 120px; }
.search-form { max-width: 560px; margin: 0 auto 60px; }
.search-input {
    width: 100%; padding: 16px 0; font-family: var(--font-body); font-size: 18px;
    color: var(--text); background: transparent; border: none;
    border-bottom: 2px solid var(--border); outline: none; transition: border-color 0.3s;
}
.search-input::placeholder { color: var(--text-muted); }
.search-input:focus { border-color: var(--yellow); }
.search-results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 16px; }
.no-results { text-align: center; padding: 80px 0; }
.no-results .section-title { margin-top: 20px; margin-bottom: 12px; }

/* BIRD */
.bird-trail-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 50; }
.bird { position: fixed; z-index: 51; pointer-events: none; width: 100px; height: 80px; opacity: 0; }
.bird-svg { width: 100%; height: 100%; }
@keyframes wingFlap {
    0%, 100% { transform: rotate(0deg) scaleY(1); }
    25% { transform: rotate(-12deg) scaleY(0.75); }
    50% { transform: rotate(0deg) scaleY(1); }
    75% { transform: rotate(8deg) scaleY(0.85); }
}
.bird.flapping .bird-svg { animation: wingFlap 0.35s ease-in-out infinite; }

/* PAGE HERO */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
}
.section-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* TEAM SECTION */
.team-header { text-align: center; margin-bottom: 60px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.team-card { text-align: center; }
.team-img-wrap { position: relative; margin-bottom: 20px; border-radius: 16px; overflow: hidden; }
.team-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px; }
.team-socials {
    position: absolute; bottom: 0; left: 0; width: 100%;
    display: flex; justify-content: center; gap: 12px;
    padding: 16px; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.team-img-wrap:hover .team-socials { opacity: 1; }
.team-social {
    font-size: 12px; font-weight: 600; color: var(--yellow);
    padding: 6px 12px; background: rgba(225, 206, 17, 0.1);
    border-radius: 100px; transition: background 0.3s;
}
.team-social:hover { background: rgba(225, 206, 17, 0.2); }
.team-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--yellow); font-weight: 500; margin-bottom: 8px; }
.team-bio { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* SERVICES PAGE */
.services-list { display: flex; flex-direction: column; gap: 32px; }
.service-detail-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 40px; transition: border-color 0.3s;
}
.service-detail-card:hover { border-color: var(--border-light); }
.service-detail-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.service-detail-num {
    font-family: var(--font-display); font-size: 48px; font-weight: 800;
    color: var(--border-light); line-height: 1;
}
.service-detail-icon {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: rgba(225, 206, 17, 0.1); border-radius: 12px; color: var(--yellow); font-size: 24px;
}
.service-detail-title {
    font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 12px;
}
.service-detail-desc { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.service-detail-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.service-feature-tag {
    font-size: 12px; font-weight: 600; padding: 6px 14px;
    background: var(--bg-elevated); border: 1px solid var(--border);
    border-radius: 100px; color: var(--text-muted);
}
.service-detail-price {
    font-size: 14px; font-weight: 600; color: var(--yellow);
}

/* CONTACT PAGE */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.contact-info-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 28px;
}
.contact-info-item { display: flex; align-items: center; gap: 16px; }
.contact-info-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: rgba(225, 206, 17, 0.1); border-radius: 12px; color: var(--yellow); font-size: 18px; flex-shrink: 0;
}
.contact-info-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 2px; }
.contact-info-value { font-size: 16px; font-weight: 600; }
.contact-social-links { display: flex; gap: 12px; margin-top: 24px; }
.contact-social-link {
    display: flex; align-items: center; gap: 8px; padding: 12px 20px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
    font-size: 14px; font-weight: 500; color: var(--text-muted);
    transition: border-color 0.3s, color 0.3s;
}
.contact-social-link:hover { border-color: var(--yellow); color: var(--yellow); }
.contact-page-form-wrap {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px;
}

/* FAQ PAGE */
.faq-page-filters { display: flex; gap: 8px; margin-bottom: 40px; justify-content: center; flex-wrap: wrap; }
.faq-filter-btn {
    padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 600;
    color: var(--text-muted); border: 1px solid var(--border); background: transparent;
    transition: all 0.3s;
}
.faq-filter-btn:hover { border-color: var(--border-light); color: var(--text); }
.faq-filter-btn.active { background: var(--yellow); color: var(--bg); border-color: var(--yellow); }

/* TESTIMONIALS PAGE */
.testimonials-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-page-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px;
    transition: border-color 0.3s, transform 0.3s;
}
.testimonial-page-card:hover { border-color: var(--border-light); transform: translateY(-4px); }
.testimonial-stars { margin-bottom: 16px; }
.star { font-size: 18px; color: var(--border-light); }
.star.filled { color: var(--yellow); }
.testimonial-quote {
    font-size: 15px; line-height: 1.7; color: var(--text-muted);
    margin-bottom: 24px; font-style: italic;
}

/* CAREERS PAGE */
.careers-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 80px; }
.careers-value-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 32px; text-align: center;
    transition: border-color 0.3s;
}
.careers-value-card:hover { border-color: var(--border-light); }
.careers-value-icon {
    width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
    background: rgba(225, 206, 17, 0.1); border-radius: 12px;
    color: var(--yellow); font-size: 22px; margin: 0 auto 16px;
}
.careers-value-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.careers-value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.careers-header { margin-bottom: 40px; }
.careers-list { display: flex; flex-direction: column; gap: 16px; }
.career-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden; transition: border-color 0.3s;
}
.career-card:hover { border-color: var(--border-light); }
.career-card-header { display: flex; justify-content: space-between; align-items: center; padding: 28px 32px; }
.career-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.career-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.career-dept, .career-location, .career-type {
    font-size: 13px; color: var(--text-muted); font-weight: 500;
}
.career-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-light); }
.career-apply-btn { flex-shrink: 0; }
.career-card-body { padding: 0 32px 28px; border-top: 1px solid var(--border); padding-top: 20px; }
.career-desc { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.careers-empty {
    text-align: center; padding: 80px 32px;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
}
.careers-empty h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; }
.careers-empty p { color: var(--text-muted); font-size: 15px; }
.careers-empty a { color: var(--yellow); font-weight: 600; }

/* MODAL */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); z-index: 10000;
    align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 40px; width: 100%; max-width: 560px;
    max-height: 90vh; overflow-y: auto; position: relative;
}
.modal-close {
    position: absolute; top: 16px; right: 20px;
    font-size: 28px; color: var(--text-muted);
    transition: color 0.3s; background: none; border: none; cursor: pointer;
}
.modal-close:hover { color: var(--text); }
.modal-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 28px; }

/* CTA SECTION */
.cta-section { padding: 80px 0; }

/* CONTACT HOME PREVIEW */
.contact-home-preview { display: flex; flex-direction: column; gap: 20px; }
.contact-preview-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px; display: flex; align-items: center; gap: 20px;
    transition: border-color 0.3s, transform 0.3s;
}
.contact-preview-card:hover { border-color: var(--border-light); transform: translateX(4px); }
.contact-preview-icon {
    width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
    background: rgba(225, 206, 17, 0.1); border-radius: 12px; color: var(--yellow); font-size: 18px; flex-shrink: 0;
}
.contact-preview-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.contact-preview-card p { font-size: 14px; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-steps::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-card:nth-child(1) { grid-column: 1 / 7; }
    .portfolio-card:nth-child(2) { grid-column: 7 / 13; }
    .portfolio-card:nth-child(3) { grid-column: 1 / 7; }
    .portfolio-card:nth-child(4) { grid-column: 7 / 13; }
    .portfolio-card:nth-child(5) { grid-column: 1 / 13; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .careers-values { grid-template-columns: repeat(2, 1fr); }
    .testimonials-page-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 120px 0; }
    .service-detail-card { padding: 32px; }
    .career-card-header { padding: 24px; }
    .career-card-body { padding: 0 24px 24px; }
}
@media (max-width: 1024px) {
    .nav { display: none; }
    .menu-btn { display: flex; }
    .services-header { grid-template-columns: 1fr; gap: 24px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image { max-width: 400px; }
    .about-image::after { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-card:nth-child(n) { grid-column: 1 / -1; aspect-ratio: 16/10; }
    .section { padding: 100px 0; }
    .services-list { gap: 24px; }
    .service-detail-header { gap: 16px; }
    .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-page-grid { grid-template-columns: 1fr; }
    .faq-page-filters { gap: 6px; }
    .faq-filter-btn { padding: 8px 16px; font-size: 12px; }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .portfolio-list-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-reel-actions { flex-direction: column; align-items: flex-start; }
    .hero-reel-scroll { display: none; }
    .stats-grid { grid-template-columns: 1fr; }
    .portfolio-detail-meta { flex-direction: column; gap: 16px; }
    .portfolio-nav { flex-direction: column; gap: 20px; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .footer-left { align-items: center; }
    .portfolio-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .about-features { grid-template-columns: 1fr; }
    .bird { width: 70px; height: 56px; }
    .contact-form { padding: 28px; }
    .cursor { display: none; }
    body { cursor: auto; }
    a, button { cursor: pointer; }
    .grain-overlay { opacity: 0.02; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-page-grid { grid-template-columns: 1fr; gap: 32px; }
    .testimonials-page-grid { grid-template-columns: 1fr; }
    .careers-values { grid-template-columns: repeat(2, 1fr); }
    .career-card-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .career-apply-btn { align-self: flex-start; }
    .contact-home-preview { flex-direction: row; overflow-x: auto; gap: 12px; }
    .contact-preview-card { min-width: 200px; flex-shrink: 0; }
}

/* RESPONSIVE - SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
    .section { padding: 80px 0; }
    .page-hero { padding: 120px 0 40px; }
    .page-hero .section-title { font-size: clamp(28px, 8vw, 40px); }
    .hero-reel-content { padding-bottom: 60px; }
    .hero-reel-title { font-size: clamp(32px, 10vw, 48px); }
    .hero-reel-actions { width: 100%; }
    .hero-reel-actions .btn { width: 100%; justify-content: center; }
    .btn { padding: 14px 28px; font-size: 13px; }
    .btn-outline { padding: 14px 28px; font-size: 13px; }
    .team-grid { grid-template-columns: 1fr; }
    .careers-values { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-num { font-size: 36px; }
    .contact-home-preview { flex-direction: column; }
    .contact-preview-card { min-width: auto; }
    .contact-page-form-wrap { padding: 20px; }
    .contact-info-card { padding: 24px; }
    .service-detail-card { padding: 28px; }
    .service-detail-num { font-size: 36px; }
    .service-detail-title { font-size: 22px; }
    .career-card-header { padding: 20px; }
    .career-card-body { padding: 0 20px 20px; }
    .testimonial-page-card { padding: 24px; }
    .faq-question { padding: 20px 0; font-size: 15px; }
    .modal-content { padding: 28px; margin: 12px; }
    .process-steps { grid-template-columns: 1fr; gap: 32px; }
    .process-steps::before { display: none; }
    .about-grid { gap: 32px; }
    .about-image { max-width: 100%; }
    .contact-grid { gap: 32px; }
    .contact-form { padding: 20px; }
    .portfolio-detail-meta { padding: 0; }
    .portfolio-nav { padding: 0; }
    .blog-content { padding: 0; }
    .team-card { text-align: left; }
    .team-img-wrap { max-width: 200px; }
    .team-socials { opacity: 1; position: relative; background: none; padding: 8px 0; }
    .careers-empty { padding: 40px 20px; }
    .cta-section { padding: 60px 0; }
    .stats-section { padding: 60px 0; }
    .portfolio-card { aspect-ratio: 16/10 !important; }
    .portfolio-info { opacity: 1; transform: translateY(0); }
    .about-image::after { display: none; }
    .marquee-section { padding: 24px 0; }
    .marquee-item { padding: 0 16px; gap: 16px; }
    .blog-card { flex-direction: column; }
    .blog-card-img { width: 100%; aspect-ratio: 16/9; }
    .blog-card-content { padding: 20px; }
    .search-results-grid { grid-template-columns: 1fr; }
    .portfolio-list-grid { grid-template-columns: 1fr; }
}
