* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dark: #8B6914;
    --blue: #1A6BAF;
    --bg: #050505;
    --display: 'Cormorant Garamond', serif;
    --body: 'Montserrat', sans-serif;
}

body {
    background: var(--bg);
    color: white;
    font-family: var(--body);
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 2px
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6
    }

    50% {
        opacity: 1
    }
}

/* LANG SWITCHER */
.lang-sw {
    position: fixed;
    top: 10px;
    right: 68px;
    z-index: 1100;
    display: flex;
    gap: 5px;
    align-items: center;
}

@media(max-width:768px) {
    .lang-sw {
        top: 7px;
        right: 58px;
        gap: 3px;
    }
}

.lang-btn {
    font-size: 9px;
    letter-spacing: .1em;
    padding: 3px 7px;
    border: 1px solid rgba(201, 168, 76, .3);
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    background: transparent;
    font-family: var(--body);
    border-radius: 2px;
    transition: all .25s;
}

.lang-btn.active,
.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .08)
}

@media(max-width:480px) {
    .lang-btn {
        font-size: 8px;
        padding: 2px 5px;
    }
}

/* LOADER */
#loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity .8s ease;
}

#loader.hide {
    opacity: 0;
    pointer-events: none
}

.ld-beam {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(201, 168, 76, .12), transparent);
    clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
    opacity: 0;
    transition: opacity 1s;
}

.ld-logo {
    opacity: 0;
    transform: scale(.8);
    transition: all .8s cubic-bezier(.34, 1.56, .64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.ld-logo.show {
    opacity: 1;
    transform: scale(1)
}

.ld-title {
    opacity: 0;
    transform: translateY(18px);
    transition: all .6s ease;
    text-align: center;
}

.ld-title.show {
    opacity: 1;
    transform: translateY(0)
}

.ld-bar {
    position: absolute;
    bottom: 56px;
    width: 180px;
    height: 2px;
    /* чуть толще */
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
    /* ← обязательно */
    border-radius: 2px;
}

.ld-fill {
    width: 0;
    height: 100%;
    background: var(--gold);
    /* ← убираем градиент, просто золотой */
    transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.ld-fill.go {
    width: 100%;
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all .5s;
}

#navbar.scrolled {
    background: rgba(5, 5, 5, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, .15);
    padding: 9px 0;
}

@media(max-width:768px) {
    #navbar {
        padding: 8px 0;
    }

    #navbar.scrolled {
        padding: 5px 0;
    }
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    text-decoration: none
}

.nav-brand img {
    width: 60px;
    height: 60px;
    transition: all .3s;
    flex-shrink: 0;
}

@media(max-width:768px) {
    .nav-brand img {
        width: 26px;
        height: 26px;
    }
}

.brand-main {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--gold);
    font-family: var(--body)
}

.brand-sub {
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    font-family: var(--body)
}

@media(max-width:768px) {
    .brand-sub {
        display: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px
}

.nav-link {
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    border: none;
    background: none;
    position: relative;
    transition: color .3s;
    font-family: var(--body);
    padding: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s;
}

.nav-link:hover {
    color: var(--gold)
}

.nav-link:hover::after {
    width: 100%
}

.nav-cta {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 7px 18px;
    border: 1px solid rgba(201, 168, 76, .4);
    color: var(--gold);
    cursor: pointer;
    background: transparent;
    transition: all .3s;
    font-family: var(--body);
}

.nav-cta:hover {
    background: var(--gold);
    color: #000
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px
}

.ham-ln {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold);
    transition: all .3s
}

.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(5, 5, 5, .98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s;
}

.mob-menu.open {
    opacity: 1;
    pointer-events: all
}

.mob-lnk {
    font-size: 1.5rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--display);
    transition: color .3s;
}

.mob-lnk:hover {
    color: var(--gold)
}

@media(max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none !important
    }

    .hamburger {
        display: flex
    }

    .mob-menu {
        display: flex
    }
}

section {
    position: relative;
    overflow: hidden
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px
}

@media(max-width:768px) {
    .container {
        padding: 0 14px;
    }
}

/* HERO */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.hero-ov1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 5, 5, .92), rgba(5, 5, 5, .65) 50%, rgba(5, 5, 5, .45))
}

.hero-ov2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 1) 0%, transparent 40%)
}

#particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .45
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 110px 22px 110px;
    width: 100%;
}

@media(max-width:768px) {
    .hero-content {
        padding: 88px 14px 100px;
    }
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    animation: fadeInUp .8s ease .3s both;
}

.htl {
    width: 26px;
    height: 1px;
    background: var(--gold)
}

.hero-tag span {
    font-size: .58rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--body)
}

.hero-name {
    margin-bottom: 12px;
    line-height: 1;
    animation: fadeInUp .8s ease .5s both;
    font-family: var(--display);
}

.hn-first {
    display: block;
    color: white;
    font-weight: 300;
    font-size: clamp(2.2rem, 7vw, 7rem)
}

.hn-last {
    display: block;
    font-weight: 700;
    font-size: clamp(2.2rem, 7vw, 7rem);
    background: linear-gradient(135deg, #8B6914, #C9A84C, #E8C97A, #C9A84C);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.hero-roles {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    font-size: .62rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    animation: fadeInUp .8s ease .7s both;
    font-family: var(--body);
}

.hdot {
    color: var(--gold)
}

.hero-quote {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 32px;
    max-width: 460px;
    line-height: 1.7;
    font-family: var(--display);
    font-size: 1.1rem;
    font-style: italic;
    animation: fadeInUp .8s ease .9s both;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeInUp .8s ease 1.1s both
}

.btn-prim {
    padding: 13px 26px;
    font-size: .58rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 600;
    background: linear-gradient(135deg, #8B6914, #C9A84C);
    color: #000;
    border: none;
    cursor: pointer;
    transition: opacity .3s;
    font-family: var(--body);
}

.btn-prim:hover {
    opacity: .85
}

.btn-out {
    padding: 13px 26px;
    font-size: .58rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 168, 76, .4);
    color: var(--gold);
    background: transparent;
    cursor: pointer;
    transition: all .3s;
    font-family: var(--body);
}

.btn-out:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, .05)
}

.hero-scroll {
    position: absolute;
    bottom: 96px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    animation: fadeIn 1s ease 2s both;
}

.hero-scroll span {
    font-size: 9px;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
    font-family: var(--body)
}

.scroll-ln {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--gold), transparent)
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(201, 168, 76, .15);
    animation: fadeInUp .8s ease 1.4s both;
}

.hs-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

@media(max-width:580px) {
    .hs-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 9px 14px;
    }
}

.hs {
    text-align: center
}

.hs-num {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--display)
}

.hs-lbl {
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    font-family: var(--body)
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal-l {
    opacity: 0;
    transform: translateX(-56px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal-l.visible {
    opacity: 1;
    transform: translateX(0)
}

.reveal-r {
    opacity: 0;
    transform: translateX(56px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal-r.visible {
    opacity: 1;
    transform: translateX(0)
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

.d5 {
    transition-delay: .5s
}

.d6 {
    transition-delay: .6s
}

/* SECTION COMMON */
.sec-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.stl {
    width: 42px;
    height: 1px;
    background: var(--gold)
}

.sec-tag span {
    font-size: .58rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--body)
}

.sec-title {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
}

.sec-title strong {
    background: linear-gradient(135deg, #8B6914, #C9A84C, #E8C97A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ABOUT */
#about {
    padding: 90px 0;
    background: linear-gradient(to bottom, #050505, #0A0A0F, #050505);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 56px
}

@media(max-width:860px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.photo-wrap {
    position: relative
}

.pc-tl {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 72px;
    height: 72px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    opacity: .6
}

.pc-br {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 72px;
    height: 72px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    opacity: .6
}

.photo-main {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden
}

.photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.pm-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, .5), transparent 60%)
}

.photo-lbl {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(5, 5, 5, .85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, .2);
    padding: 9px 13px;
}

.pl-tag {
    font-size: .5rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--body)
}

.pl-name {
    font-family: var(--display);
    font-size: .95rem;
    color: white;
    margin-top: 2px
}

.photo-sec {
    position: relative;
    height: 170px;
    overflow: hidden;
    margin-top: 12px
}

.photo-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ps-lbl {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: .5rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    font-family: var(--body);
}

.abt p {
    color: rgba(255, 255, 255, .72);
    margin-bottom: 18px;
    line-height: 1.8;
    font-family: var(--display);
    font-size: 1.05rem;
}

.abt p span.hi {
    color: var(--gold)
}

.sk-title {
    font-size: .5rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-family: var(--body)
}

.sk-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px
}

.sk-tag {
    font-size: .58rem;
    padding: 5px 10px;
    border: 1px solid rgba(201, 168, 76, .22);
    color: rgba(255, 255, 255, .62);
    font-family: var(--body);
    background: rgba(201, 168, 76, .03);
}

.tline {
    border-left: 2px solid var(--gold);
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.tl-item {
    display: flex;
    gap: 12px
}

.tl-yr {
    color: var(--gold);
    font-size: .72rem;
    font-weight: 700;
    width: 52px;
    flex-shrink: 0;
    font-family: var(--body)
}

.tl-tx {
    color: rgba(255, 255, 255, .48);
    font-size: .72rem;
    line-height: 1.6;
    font-family: var(--body)
}

.sg {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
}

@media(max-width:680px) {
    .sg {
        grid-template-columns: repeat(2, 1fr)
    }
}

.sc {
    text-align: center;
    padding: 24px 12px;
    border: 1px solid rgba(201, 168, 76, .14);
    background: rgba(255, 255, 255, .02);
    transition: all .3s;
    cursor: default;
}

.sc:hover {
    background: rgba(201, 168, 76, .05);
    border-color: var(--gold)
}

.sc-icon {
    font-size: 1.3rem;
    margin-bottom: 5px
}

.sc-num {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--display);
    background: linear-gradient(135deg, #8B6914, #C9A84C, #E8C97A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sc-lbl {
    font-size: .5rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    font-family: var(--body);
    line-height: 1.5;
    white-space: pre-line
}

/* FILMOGRAPHY */
#filmography {
    padding: 90px 0;
    background: linear-gradient(to bottom, #050505, #080810, #050505)
}

.fl-list {
    display: flex;
    flex-direction: column;
    gap: 18px
}

.fc {
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .02);
    transition: all .4s;
    cursor: default;
    overflow: hidden;
    display: grid;
    grid-template-columns: 250px 1fr;
}

@media(max-width:680px) {
    .fc {
        grid-template-columns: 1fr
    }
}

.fc:hover {
    border-color: var(--cc);
    background: rgba(201, 168, 76, .03)
}

.fi {
    position: relative;
    height: 250px;
    overflow: hidden
}

.fi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s
}

.fc:hover .fi img {
    transform: scale(1.05)
}

.fi-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 5, 5, .3), rgba(5, 5, 5, .8))
}

.fi-yr {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .07);
    line-height: 1;
}

.fb {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.fb-badges {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 5px;
    flex-wrap: wrap
}

.badge {
    font-size: .48rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    padding: 3px 6px;
}

.badge.rel {
    background: rgba(42, 171, 238, .1);
    color: #2AABEE;
    border: 1px solid rgba(42, 171, 238, .3)
}

.badge.prod {
    background: rgba(201, 168, 76, .15);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, .4);
    animation: pulse 2s ease infinite
}

.badge.imdb {
    background: rgba(245, 197, 24, .1);
    color: #F5C518;
    border: 1px solid rgba(245, 197, 24, .3)
}

.fb-yr {
    font-size: .58rem;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .28);
    font-family: var(--body)
}

.ft {
    font-family: var(--display);
    font-size: clamp(1.3rem, 2.4vw, 2.1rem);
    font-weight: 600;
    line-height: 1.1;
    transition: color .3s;
    margin-bottom: 3px;
}

.fsub {
    color: rgba(255, 255, 255, .3);
    font-size: .8rem;
    font-style: italic;
    font-family: var(--display);
    margin-bottom: 9px
}

.fd {
    color: rgba(255, 255, 255, .48);
    font-size: .72rem;
    line-height: 1.7;
    margin-bottom: 12px;
    max-width: 520px;
    font-family: var(--body)
}

.fm {
    display: flex;
    flex-wrap: wrap;
    gap: 18px
}

.fm-lbl {
    font-size: .48rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
    margin-bottom: 3px;
    font-family: var(--body)
}

.fm-val {
    font-size: .68rem;
    font-family: var(--body)
}

/* PARTNERS */
#partners {
    padding: 90px 0;
    background: linear-gradient(to bottom, #050505, #0A0A0F)
}

.ctags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 36px
}

.ctag {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 12px;
    border: 1px solid rgba(201, 168, 76, .2);
    color: rgba(255, 255, 255, .48);
    font-size: .68rem;
    font-family: var(--body);
    background: rgba(201, 168, 76, .03);
}

.pg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
    margin-bottom: 48px
}

@media(max-width:860px) {
    .pg {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .pg {
        grid-template-columns: 1fr
    }
}

.pc {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .02);
    transition: all .3s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.ph {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px
}

.pi {
    font-size: 1.7rem;
    flex-shrink: 0
}

.pt {
    font-size: .48rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-family: var(--body)
}

.pn {
    font-weight: 700;
    font-size: .95rem;
    line-height: 1.2;
    font-family: var(--display)
}

.pco {
    font-size: .58rem;
    color: rgba(255, 255, 255, .28);
    margin-top: 2px;
    font-family: var(--body)
}

.pd {
    font-size: .68rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .38);
    margin-bottom: 12px;
    font-family: var(--body)
}

.pr {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.pr-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%
}

.pr-txt {
    font-size: .52rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-family: var(--body)
}

.pp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px
}

@media(max-width:560px) {
    .pp {
        grid-template-columns: 1fr
    }
}

.pp-item {
    position: relative;
    height: 180px;
    overflow: hidden;
    cursor: pointer
}

.pp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s
}

.pp-item:hover img {
    transform: scale(1.05)
}

.pp-ov {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    transition: background .3s
}

.pp-item:hover .pp-ov {
    background: rgba(0, 0, 0, .2)
}

.pp-lbl {
    position: absolute;
    bottom: 9px;
    left: 9px;
    font-size: .5rem;
    letter-spacing: .13em;
    color: rgba(255, 255, 255, .55);
    font-family: var(--body);
}

/* ACHIEVEMENTS */
#achievements {
    padding: 90px 0;
    background: linear-gradient(to bottom, #0A0A0F, #050505)
}

.ag {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px
}

@media(max-width:860px) {
    .ag {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .ag {
        grid-template-columns: 1fr
    }
}

.ac {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: rgba(255, 255, 255, .01);
    transition: all .3s;
    cursor: default;
}

.ac:hover {
    background: rgba(201, 168, 76, .03);
    border-color: rgba(201, 168, 76, .28)
}

.ai {
    display: flex;
    gap: 13px
}

.a-icon {
    font-size: 1.7rem;
    flex-shrink: 0
}

.a-yr {
    font-size: .5rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
    font-family: var(--body)
}

.a-title {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 3px;
    line-height: 1.3;
    font-family: var(--display)
}

.a-sub {
    font-size: .58rem;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 9px;
    font-family: var(--body)
}

.a-desc {
    font-size: .68rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .38);
    font-family: var(--body)
}

/* GALLERY */
#gallery {
    padding: 90px 0;
    background: #050505
}

.gf {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 32px
}

.gfb {
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 6px 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    background: transparent;
    transition: all .3s;
    font-family: var(--body);
}

.gfb.active,
.gfb:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, .06)
}

.gg {
    columns: 1;
    gap: 13px;
}

@media(min-width:580px) {
    .gg {
        columns: 2
    }
}

@media(min-width:980px) {
    .gg {
        columns: 3
    }
}

.gi {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 13px;
    break-inside: avoid;
    border: 1px solid transparent;
    transition: border-color .3s;
}

.gi:hover {
    border-color: rgba(201, 168, 76, .38)
}

.gi img {
    width: 100%;
    display: block;
    transition: transform .7s
}

.gi:hover img {
    transform: scale(1.05)
}

.go {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, .85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 13px;
}

.gi:hover .go {
    opacity: 1
}

.gc {
    font-size: .48rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
    font-family: var(--body)
}

.gl {
    font-size: .78rem;
    color: white;
    font-family: var(--display)
}

.gal-hint {
    font-size: .55rem;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .15em;
    margin-top: 4px;
    font-family: var(--body)
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .95);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    padding: 18px;
}

#lightbox.open {
    display: flex
}

.lb-in {
    position: relative;
    max-width: 960px;
    width: 100%
}

.lb-img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto
}

.lb-info {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.lb-cat {
    font-size: .48rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    font-family: var(--body)
}

.lb-title {
    font-size: .95rem;
    color: white;
    font-family: var(--display)
}

.lb-cnt {
    font-size: .62rem;
    color: rgba(255, 255, 255, .28);
    font-family: var(--body)
}

.lb-x {
    position: absolute;
    top: -34px;
    right: 0;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, .45);
    cursor: pointer;
    background: none;
    border: none;
    transition: color .3s;
}

.lb-x:hover {
    color: white
}

.lb-p,
.lb-n {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, .3);
    color: var(--gold);
    cursor: pointer;
    background: none;
    transition: all .3s;
}

.lb-p {
    left: -52px
}

.lb-n {
    right: -52px
}

.lb-p:hover,
.lb-n:hover {
    background: rgba(201, 168, 76, .1)
}

@media(max-width:680px) {
    .lb-p {
        left: 0;
        top: auto;
        bottom: 50px
    }

    .lb-n {
        right: 0;
        top: auto;
        bottom: 50px
    }
}

/* CONTACT */
#contact {
    padding: 90px 0;
    background: linear-gradient(to bottom, #050505, #020205)
}

.ct-bg {
    position: absolute;
    inset: 0;
    opacity: .05
}

.ct-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.ct-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, .05), transparent 70%)
}

.ct-hdr {
    text-align: center;
    margin-bottom: 48px
}

.ct-hdr .sec-tag {
    justify-content: center
}

.ct-sub {
    color: rgba(255, 255, 255, .38);
    margin-top: 12px;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-family: var(--display);
    font-size: 1rem
}

.ct-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

@media(max-width:780px) {
    .ct-grid {
        grid-template-columns: 1fr
    }
}

/* SOCIAL ICONS */
.soc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px
}

.soc-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .02);
    transition: all .3s;
    text-decoration: none;
    min-width: 0;
    overflow: hidden;
}

.soc-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.soc-info {
    min-width: 0;
    flex: 1;
}

.soc-lbl {
    font-size: .48rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-family: var(--body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.soc-val {
    font-size: .68rem;
    color: white;
    font-family: var(--body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media(max-width:420px) {
    .soc-grid {
        grid-template-columns: 1fr;
    }

    .soc-lbl,
    .soc-val {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

.studio-row {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    margin-bottom: 20px
}

.studio-lbl {
    font-size: .48rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 9px;
    font-family: var(--body)
}

.studio-links {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

.studio-lnk {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .02);
    transition: all .3s;
    text-decoration: none;
    font-size: .62rem;
    color: rgba(255, 255, 255, .55);
    font-family: var(--body);
}

.studio-lnk:hover {
    border-color: rgba(201, 168, 76, .38);
    color: var(--gold);
    background: rgba(201, 168, 76, .04)
}

.ct-quote {
    border-left: 2px solid var(--gold);
    padding-left: 18px
}

.ct-quote p {
    color: rgba(255, 255, 255, .48);
    font-style: italic;
    line-height: 1.8;
    font-family: var(--display);
    font-size: 1rem;
    margin-bottom: 12px
}

.ct-quote cite {
    font-size: .72rem;
    color: var(--gold);
    font-style: normal;
    font-family: var(--body)
}

.ct-form {
    padding: 24px;
    border: 1px solid rgba(201, 168, 76, .14);
    background: rgba(201, 168, 76, .02);
}

.form-ttl {
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-family: var(--display)
}

.fg {
    margin-bottom: 12px
}

.fl {
    display: block;
    font-size: .48rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 6px;
    font-family: var(--body)
}

.fi2,
.fta {
    width: 100%;
    padding: 9px 13px;
    color: white;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    font-family: var(--body);
    font-size: .72rem;
    outline: none;
    transition: border-color .3s;
}

.fi2::placeholder,
.fta::placeholder {
    color: rgba(255, 255, 255, .18)
}

.fi2:focus,
.fta:focus {
    border-color: rgba(201, 168, 76, .48)
}

.fta {
    resize: none
}

.btn-sub {
    width: 100%;
    padding: 13px;
    font-size: .58rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 600;
    background: linear-gradient(135deg, #8B6914, #C9A84C);
    color: #000;
    border: none;
    cursor: pointer;
    transition: opacity .3s;
    font-family: var(--body);
}

.btn-sub:hover {
    opacity: .85
}

.fs {
    text-align: center;
    padding: 36px 0
}

.fs-icon {
    font-size: 1.9rem;
    margin-bottom: 12px
}

.fs h3 {
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 6px;
    font-family: var(--display)
}

.fs p {
    font-size: .72rem;
    color: rgba(255, 255, 255, .38);
    font-family: var(--body)
}

.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #1a1a1a;
    border: 1px solid #c9a84c;
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(.4, 0, .2, 1);
    max-width: 320px;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 18px;
}

.phone-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0;
    background: none;
    gap: 0;
    min-width: 0;
    overflow: hidden;
}

.phone-wrap:focus-within {
    border-color: #c9a84c;
}

.flag-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    height: 100%;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.flag-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.phone-input {
    flex: 1;
    min-width: 0;
    background: none;
    border: none;
    padding: 0 12px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

@media(max-width:360px) {
    .flag-btn {
        padding: 0 8px;
        font-size: 12px;
    }

    .phone-input {
        padding: 0 8px;
        font-size: 12px;
    }
}

.dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 200px;
    background: #1a1a1a;
    border: 1px solid #444;
    border-radius: 8px;
    z-index: 999;
    display: none;
}

.dropdown.open {
    display: block;
}

.dd-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.dd-item:hover,
.dd-item.active {
    background: #c9a84c22;
    color: #c9a84c;
}

/* FOOTER - FULLY RESPONSIVE */
footer {
    padding: 42px 0;
    border-top: 1px solid rgba(201, 168, 76, .1);
    background: #020205;
}

.fg2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px
}

@media(max-width:720px) {
    .fg2 {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

.f-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px
}

.f-slogan {
    color: rgba(255, 255, 255, .22);
    font-style: italic;
    font-family: var(--display);
    font-size: .9rem;
    line-height: 1.6;
    white-space: pre-line
}

.f-sec-title {
    font-size: .48rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-family: var(--body);
}

.f-link {
    display: block;
    color: rgba(255, 255, 255, .28);
    font-size: .72rem;
    margin-bottom: 6px;
    cursor: pointer;
    transition: color .3s;
    border: none;
    background: none;
    text-align: left;
    font-family: var(--body);
    padding: 0;
}

.f-link:hover {
    color: var(--gold)
}

.f-pi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 9px;
}

.f-pn {
    color: rgba(255, 255, 255, .28);
    font-size: .72rem;
    font-family: var(--body)
}

.f-py {
    font-size: .48rem;
    letter-spacing: .12em;
    padding: 2px 6px;
    font-family: var(--body);
}

.f-py.prod {
    color: var(--gold);
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .28);
}

.f-py.done {
    color: rgba(255, 255, 255, .18)
}

/* FOOTER SOCIALS */
.f-soc {
    display: flex;
    gap: 9px;
    margin-top: 14px;
    flex-wrap: wrap
}

.f-sl {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    text-decoration: none;
    border-radius: 2px;
}

.f-sl:hover {
    border-color: var(--gold)
}

.f-bot {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media(min-width:560px) {
    .f-bot {
        flex-direction: row;
        justify-content: space-between;
    }
}

.f-copy {
    font-size: .58rem;
    letter-spacing: .09em;
    color: rgba(255, 255, 255, .18);
    font-family: var(--body);
    text-align: center
}

.f-tagline {
    font-size: .78rem;
    font-style: italic;
    color: rgba(255, 255, 255, .13);
    font-family: var(--display)
}