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

:root {
    --primary-color: #ffffff;
    --secondary-color: rgba(255, 255, 255, 0.4);
    --bg-dark: #080808;
    --sidebar-bg: rgba(12, 12, 12, 0.96);
    --cubic-premium: cubic-bezier(0.16, 1, 0.3, 1);
    --blue: #4682A0;
    --rose: #C86482;
    --blue-glow: rgba(70, 130, 160, 0.5);
    --rose-glow: rgba(200, 100, 130, 0.5);
    --gradient: linear-gradient(135deg, #4682A0 0%, #C86482 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(70,130,160,0.18) 0%, rgba(200,100,130,0.18) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--primary-color);
    overflow-x: hidden;
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

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

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(70, 130, 160, 0.88) 0%, rgba(200, 100, 130, 0.88) 100%);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 3.5rem;
    z-index: 100;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.5s ease;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1.5rem 3.5rem;
    border-bottom: 1px solid rgba(70, 130, 160, 0.12);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    z-index: 100;
}

.logo-svg {
    height: 28px;
    width: auto;
}

.logo-agency {
    display: block;
    font-size: 0.38rem;
    font-weight: 300;
    letter-spacing: 0.55rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 4px;
    padding-left: 4px;
    text-align: justify;
    text-align-last: justify;
}

/* ============================================
   HAMBURGER
   ============================================ */
.hamburger {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.08);
}

.line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--primary-color);
    transition: transform 0.5s var(--cubic-premium), opacity 0.3s ease;
}

.hamburger.open .line1 {
    transform: translateY(3.5px) rotate(-45deg);
}
.hamburger.open .line2 {
    transform: translateY(-3.5px) rotate(45deg);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--cubic-premium), visibility 0.6s var(--cubic-premium);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    height: 100vh;
    background: var(--sidebar-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 50;
    transform: translateX(100%);
    transition: transform 1s var(--cubic-premium);
    display: flex;
    align-items: center;
    padding: 0 5rem;
}

.sidebar-menu.active {
    transform: translateX(0);
}

.sidebar-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 70%;
    justify-content: space-between;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 3rem;
    font-weight: 200;
    letter-spacing: 0.05rem;
    display: flex;
    align-items: center;
    transform: translateY(40px);
    opacity: 0;
    transition: transform 1s var(--cubic-premium), opacity 1s var(--cubic-premium), color 0.4s ease, padding-left 0.4s ease;
}

.menu-link:hover {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 16px;
}

.menu-link:hover .nav-number {
    color: var(--primary-color);
}

.nav-number {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.sidebar-menu.active .menu-link {
    transform: translateY(0);
    opacity: 1;
}

.sidebar-menu.active .menu-link:nth-child(1) { transition-delay: 0.08s; }
.sidebar-menu.active .menu-link:nth-child(2) { transition-delay: 0.14s; }
.sidebar-menu.active .menu-link:nth-child(3) { transition-delay: 0.20s; }
.sidebar-menu.active .menu-link:nth-child(4) { transition-delay: 0.26s; }

.sidebar-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--cubic-premium) 0.35s, transform 0.8s var(--cubic-premium) 0.35s;
}

.sidebar-menu.active .sidebar-footer {
    opacity: 1;
    transform: translateY(0);
}

.social-links a {
    display: block;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.08rem;
    transition: color 0.3s ease;
}

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

.contact-info p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    text-align: right;
    letter-spacing: 0.08rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    padding: 0 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: 0.05rem;
}

/* ============================================
   SUBTITLE TAGS
   ============================================ */
.subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.subtitle .tag {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.subtitle .dot {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

.tag-pr:hover {
    color: #4682A0;
    text-shadow: 0 0 24px var(--blue-glow);
}
.tag-influencer:hover {
    color: #a8c8d8;
    text-shadow: 0 0 24px var(--blue-glow);
}
.tag-model:hover {
    color: #C86482;
    text-shadow: 0 0 24px var(--rose-glow);
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInScroll 1s var(--cubic-premium) 2s forwards;
}

.scroll-text {
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    animation: scrollTextBob 3s ease-in-out infinite;
}

@keyframes scrollTextBob {
    0%, 100% { transform: translateY(0); opacity: 0.45; }
    50%       { transform: translateY(-4px); opacity: 0.8; }
}

.scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--blue), var(--rose));
    animation: scrollPulse 2s ease-in-out infinite;
    transform-origin: top center;
}

@keyframes scrollPulse {
    0%   { transform: scaleY(0); opacity: 0; transform-origin: top; }
    50%  { transform: scaleY(1); opacity: 1; transform-origin: top; }
    100% { transform: scaleY(0); opacity: 0; transform-origin: bottom; }
}

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

/* ============================================
   TALENTS SECTION
   ============================================ */
.talents-section {
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, transparent 0%, #080808 120px);
    padding: 8rem 3.5rem 6rem;
}

.talents-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.35rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.talents-header h2 {
    font-size: 2.8rem;
    font-weight: 200;
    letter-spacing: 0.05rem;
}

/* 6-column talent grid */
.talents-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.talent-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 2/3;
    cursor: pointer;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.talent-img {
    width: 100%;
    height: 100%;
}

.talent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(25%) brightness(0.85);
    transition: transform 0.7s var(--cubic-premium), filter 0.5s ease;
    display: block;
}

.talent-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    transform: translateY(100%);
    transition: transform 0.5s var(--cubic-premium);
}

.talent-label span {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.talent-card:hover .talent-img img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
}

.talent-card:hover .talent-label {
    transform: translateY(0);
}

.talent-card:hover {
    border-color: rgba(200, 100, 130, 0.4);
    box-shadow: 0 20px 60px rgba(70, 130, 160, 0.15), 0 0 0 1px rgba(200, 100, 130, 0.15);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    position: relative;
    z-index: 10;
    background: #080808;
    padding: 8rem 3.5rem;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card {
    padding: 3.5rem 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: background 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.6s var(--cubic-premium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--gradient-subtle);
}

.service-card:last-child {
    border-right: none;
}

.service-number {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    color: rgba(255, 255, 255, 0.25);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 0.05rem;
}

.service-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
    margin-top: 1rem;
}

.service-link span {
    transition: transform 0.4s var(--cubic-premium);
}

.service-link:hover {
    color: #a8c8d8;
    gap: 1rem;
}

.service-link:hover span {
    transform: translateX(4px);
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1.4s var(--cubic-premium), transform 1.4s var(--cubic-premium);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MANIFESTO / STATS SECTION
   ============================================ */
.manifesto-section {
    position: relative;
    z-index: 10;
    padding: 10rem 3.5rem;
    overflow: hidden;
    background: #080808; /* fallback */
}

/* Video background */
.manifesto-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35; /* subtle — content is king */
    filter: grayscale(60%) brightness(0.5);
    z-index: 0;
    transform: scaleX(-1); /* mirror for variety */
}

.manifesto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 18, 28, 0.55) 0%,
        rgba(28, 10, 18, 0.50) 50%,
        rgba(8, 18, 28, 0.58) 100%
    );
    z-index: 1;
}

.manifesto-inner {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7rem;
}

/* Quote */
.manifesto-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.quote-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(70,130,160,0.5), rgba(200,100,130,0.5), transparent);
}

.manifesto-quote blockquote {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 100;
    line-height: 1.35;
    letter-spacing: 0.02rem;
    color: rgba(255, 255, 255, 0.88);
    border: none;
    padding: 0;
    margin: 0;
}

.manifesto-quote blockquote em {
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats row */
.manifesto-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 3.5rem 0;
}

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

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 100;
    letter-spacing: -0.02rem;
    line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 1rem;
    font-weight: 300;
    color: var(--rose);
    opacity: 0.7;
    margin-top: -0.5rem;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    z-index: 10;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 5rem 3.5rem 3rem;
}

.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
}

/* Top: logo + nav */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-logo-svg {
    height: 22px;
    width: auto;
    opacity: 0.85;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.footer-link {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient);
    transition: width 0.4s var(--cubic-premium);
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-link:hover::after {
    width: 100%;
}

/* Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin-bottom: 3.5rem;
}

/* Big tagline */
.footer-tagline {
    margin-bottom: 4rem;
    overflow: hidden;
}

.footer-tagline span {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 100;
    letter-spacing: 0.03rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.18;
    transition: opacity 0.6s ease;
    animation: taglinePulse 4s ease-in-out infinite;
}

@keyframes taglinePulse {
    0%, 100% { opacity: 0.12; }
    50%       { opacity: 0.3; }
}

.footer-tagline:hover span {
    animation-play-state: paused;
    opacity: 0.55;
}

/* Bottom row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-copy,
.footer-email {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    color: rgba(255, 255, 255, 0.2);
}

.footer-socials {
    display: flex;
    gap: 2rem;
}

.footer-social {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
    .talents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card:nth-child(2) {
        border-right: none;
    }
    .service-card:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .service-card:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 900px) {
    .navbar { padding: 2rem; }
    .hero h1 { font-size: 3rem; }
    .sidebar-menu { width: 100vw; padding: 0 3rem; }
    .services-section { padding: 5rem 2rem; }
    .service-card { padding: 2.5rem 2rem; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.2rem; }
    .navbar { padding: 1.5rem 1.5rem; }

    .subtitle {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    .subtitle .tag {
        font-size: 0.45rem;
        letter-spacing: 0.04rem;
        white-space: nowrap;
    }
    .subtitle .dot {
        font-size: 0.5rem;
    }

    .menu-link { font-size: 2.2rem; }
    .sidebar-menu { padding: 0 2rem; }
    .sidebar-footer { flex-direction: column; gap: 1.5rem; }
    .contact-info p { text-align: left; }

    .talents-section { padding: 5rem 1.2rem 4rem; }
    .talents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .talents-header h2 { font-size: 1.8rem; }

    .services-section { padding: 4rem 1.2rem; }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 2rem 1.2rem;
    }
    .service-card:nth-child(3),
    .service-card:nth-child(4) {
        border-right: none;
    }

    /* Footer mobile */
    .site-footer { padding: 3.5rem 1.2rem 2rem; }
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-nav {
        flex-wrap: wrap;
        gap: 1.2rem 2rem;
    }
    .footer-tagline span { font-size: 2rem; }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .footer-socials { gap: 1.5rem; }
}
