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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #f5f5f5;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: #b31b1b;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
    background: #b31b1b;
    border-radius: 3px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.logo__main {
    color: #b31b1b;
}

.logo__sub {
    font-weight: 300;
    font-size: 14px;
    color: #aaa;
    letter-spacing: 4px;
}

.nav__list {
    display: flex;
    gap: 32px;
    list-style: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav__link {
    color: #aaa;
    transition: color 0.3s;
}

.nav__link:hover {
    color: #fff;
}

.header__cta {
    padding: 8px 24px;
    border: 1px solid #b31b1b;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    transition: all 0.3s;
}

.header__cta:hover {
    background: #b31b1b;
    border-color: #b31b1b;
}

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

.burger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
    opacity: 0;
}
.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 400px;
        height: 100vh;
        background: #0a0a0a;
        padding: 80px 40px;
        transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        border-left: 1px solid #222;
    }
    .nav.open {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        gap: 24px;
    }
    .burger {
        display: flex;
    }
    .header__cta {
        display: none;
    }
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero__logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.95;
    letter-spacing: -2px;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.6);
}

.hero__logo-main {
    display: block;
    color: #fff;
}

.hero__logo-sub {
    display: block;
    color: #b31b1b;
    font-size: 0.45em;
    letter-spacing: 12px;
    margin-top: -0.05em;
}

.hero__tagline {
    margin-top: 24px;
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    letter-spacing: 4px;
    color: #ccc;
    font-weight: 300;
    text-transform: uppercase;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn--primary {
    background: #b31b1b;
    color: #fff;
}

.btn--primary:hover {
    background: #8a1515;
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(179, 27, 27, 0.3);
}

.btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: #b31b1b;
    color: #b31b1b;
    background: rgba(179, 27, 27, 0.05);
}

.btn--large {
    padding: 20px 60px;
    font-size: 16px;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 11px;
    letter-spacing: 4px;
    color: #888;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 48px;
}

.section-title--centered {
    text-align: center;
}

.highlight {
    color: #b31b1b;
    font-weight: 600;
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
}

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

.about__image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.about__desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    max-width: 540px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .about__inner {
        grid-template-columns: 1fr;
    }
    .about__text {
        order: -1;
    }
    .about__desc {
        max-width: 100%;
    }
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: #111;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.service-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    transition: all 0.4s;
}

.service-card:hover {
    border-color: #b31b1b;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card__icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #fff;
}

.service-card p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

/* ===== CREATIVE ===== */
.creative {
    padding: 100px 0;
}

.creative__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.creative__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background: #1a1a1a;
    cursor: pointer;
}

.creative__item--large {
    grid-column: span 2;
    aspect-ratio: auto;
}

.creative__item img,
.creative__item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.creative__item:hover img,
.creative__item:hover video {
    transform: scale(1.05);
}

.creative__label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .creative__grid {
        grid-template-columns: 1fr;
    }
    .creative__item--large {
        grid-column: span 1;
    }
}

/* ===== WORKS ===== */
.works {
    padding: 100px 0;
    background: #0f0f0f;
}

.works__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 28px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 40px;
    color: #aaa;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.filter-btn:hover {
    color: #fff;
    border-color: #555;
}

.filter-btn.active {
    background: #b31b1b;
    border-color: #b31b1b;
    color: #fff;
}

.works__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.work-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #1a1a1a;
    cursor: pointer;
    transition: transform 0.4s;
}

.work-item:hover {
    transform: scale(1.02);
}

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

.work-item__info {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s;
    padding: 20px;
    text-align: center;
}

.work-item:hover .work-item__info {
    opacity: 1;
}

.work-item__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.work-item__cat {
    font-size: 12px;
    color: #b31b1b;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== SHOWREEL ===== */
.showreel {
    padding: 80px 0;
}

.showreel__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

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

.showreel__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.4s;
}

.showreel__overlay:hover {
    background: rgba(0, 0, 0, 0.1);
}

.showreel__play {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.showreel__play:hover {
    background: #b31b1b;
    border-color: #b31b1b;
    transform: scale(1.05);
}

.showreel__label {
    position: absolute;
    bottom: 30px;
    right: 40px;
    font-size: 14px;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

/* ===== WHY ===== */
.why {
    padding: 100px 0;
    background: #111;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.why__item {
    border-left: 2px solid #b31b1b;
    padding-left: 20px;
}

.why__number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #b31b1b;
    display: block;
    margin-bottom: 8px;
}

.why__item h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.why__item p {
    font-size: 14px;
    color: #aaa;
}

/* ===== TOOLS ===== */
.tools {
    padding: 80px 0;
}

.tools__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.tools__grid img {
    border-radius: 12px;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(0.6);
    transition: all 0.4s;
    border: 1px solid #2a2a2a;
}

.tools__grid img:hover {
    filter: grayscale(0);
    border-color: #b31b1b;
    transform: scale(1.03);
}

/* ===== BACKSTAGE ===== */
.backstage {
    padding: 80px 0;
    background: #0f0f0f;
}

.backstage__slider {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.backstage__slider .swiper-slide img {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

.swiper-pagination-bullet {
    background: #666;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: #b31b1b;
}

/* ===== PROCESS ===== */
.process {
    padding: 100px 0;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
}

.process__step {
    text-align: center;
    padding: 30px 20px;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    transition: all 0.4s;
}

.process__step:hover {
    border-color: #b31b1b;
    transform: translateY(-4px);
}

.process__num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: #b31b1b;
    display: block;
    margin-bottom: 8px;
}

.process__step h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.process__step p {
    font-size: 13px;
    color: #aaa;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: #0a0a0a;
    border-top: 1px solid #1a1a1a;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__tagline {
    font-size: 24px;
    font-weight: 300;
    color: #888;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.contact__social {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin-bottom: 40px;
}

.contact__social a {
    font-size: 15px;
    color: #aaa;
    transition: color 0.3s;
}

.contact__social a:hover {
    color: #b31b1b;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__form input,
.contact__form textarea {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    transition: border 0.3s;
    outline: none;
}

.contact__form input:focus,
.contact__form textarea:focus {
    border-color: #b31b1b;
}

.contact__form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact__form button {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .contact__inner {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid #1a1a1a;
    text-align: center;
    font-size: 13px;
    color: #555;
    letter-spacing: 1px;
}